/*!
 * Copyright (c) HANDSONCODE sp. z o. o.
 * 
 * HANDSONTABLE is a software distributed by HANDSONCODE sp. z o. o.,
 * a Polish corporation, based in Gdynia, Poland, at 96/98 Aleja Zwycięstwa,
 * registered with the National Court Register under number 538651,
 * EU tax ID number: PL5862294002, share capital: PLN 62,800.00.
 * 
 * This software is protected by applicable copyright laws, including
 * international treaties, and dual-licensed – depending on whether
 * your use is intended for or may result in commercial advantage
 * or monetary compensation (commercial purposes), or not.
 * 
 * If your use involves only such purposes as research, private study,
 * evaluation and the like, you agree to be bound by the terms included
 * in the "handsontable-non-commercial-license.pdf" file, available
 * in the main directory of this software repository.
 * 
 * By installing, copying, or otherwise using this software for
 * commercial purposes, you agree to be bound by the terms included
 * in the "handsontable-general-terms.pdf" file, available in the main
 * directory of this software repository.
 * 
 * HANDSONCODE PROVIDES THIS SOFTWARE ON AN "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND. IN NO EVENT
 * AND UNDER NO LEGAL THEORY, SHALL HANDSONCODE BE LIABLE
 * TO YOU FOR DAMAGES, INCLUDING ANY DIRECT, INDIRECT, SPECIAL,
 * INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING
 * FROM USE OR INABILITY TO USE THIS SOFTWARE.
 * 
 * Version: 8.4.0
 * Release date: 11/05/2021 (built at 11/05/2021 12:29:22)
 */
/**
 * Fix for bootstrap styles
 */
.handsontable .table th, .handsontable .table td {
  border-top: none;
}

.handsontable tr {
  background: #fff;
}

.handsontable td {
  background-color: inherit;
}

.handsontable .table caption + thead tr:first-child th,
.handsontable .table caption + thead tr:first-child td,
.handsontable .table colgroup + thead tr:first-child th,
.handsontable .table colgroup + thead tr:first-child td,
.handsontable .table thead:first-child tr:first-child th,
.handsontable .table thead:first-child tr:first-child td {
  border-top: 1px solid #CCCCCC;
}

/* table-bordered */
.handsontable .table-bordered {
  border: 0;
  border-collapse: separate;
}

.handsontable .table-bordered th,
.handsontable .table-bordered td {
  border-left: none;
}

.handsontable .table-bordered th:first-child,
.handsontable .table-bordered td:first-child {
  border-left: 1px solid #CCCCCC;
}

.handsontable .table > tbody > tr > td,
.handsontable .table > tbody > tr > th,
.handsontable .table > tfoot > tr > td,
.handsontable .table > tfoot > tr > th,
.handsontable .table > thead > tr > td,
.handsontable .table > thead > tr > th {
  line-height: 21px;
  padding: 0;
}

.col-lg-1.handsontable, .col-lg-10.handsontable, .col-lg-11.handsontable, .col-lg-12.handsontable,
.col-lg-2.handsontable, .col-lg-3.handsontable, .col-lg-4.handsontable, .col-lg-5.handsontable, .col-lg-6.handsontable, .col-lg-7.handsontable, .col-lg-8.handsontable, .col-lg-9.handsontable,
.col-md-1.handsontable, .col-md-10.handsontable, .col-md-11.handsontable, .col-md-12.handsontable,
.col-md-2.handsontable, .col-md-3.handsontable, .col-md-4.handsontable, .col-md-5.handsontable, .col-md-6.handsontable, .col-md-7.handsontable, .col-md-8.handsontable, .col-md-9.handsontable
.col-sm-1.handsontable, .col-sm-10.handsontable, .col-sm-11.handsontable, .col-sm-12.handsontable,
.col-sm-2.handsontable, .col-sm-3.handsontable, .col-sm-4.handsontable, .col-sm-5.handsontable, .col-sm-6.handsontable, .col-sm-7.handsontable, .col-sm-8.handsontable, .col-sm-9.handsontable
.col-xs-1.handsontable, .col-xs-10.handsontable, .col-xs-11.handsontable, .col-xs-12.handsontable,
.col-xs-2.handsontable, .col-xs-3.handsontable, .col-xs-4.handsontable, .col-xs-5.handsontable, .col-xs-6.handsontable, .col-xs-7.handsontable, .col-xs-8.handsontable, .col-xs-9.handsontable {
  padding-left: 0;
  padding-right: 0;
}

.handsontable .table-striped > tbody > tr:nth-of-type(even) {
  background-color: #FFF;
}

.handsontable {
  position: relative;
}

.handsontable .hide {
  display: none;
}

.handsontable .relative {
  position: relative;
}

.handsontable .wtHider {
  width: 0;
}

.handsontable .wtSpreader {
  position: relative;
  width: 0; /*must be 0, otherwise blank space appears in scroll demo after scrolling max to the right */
  height: auto;
}

.handsontable table,
.handsontable tbody,
.handsontable thead,
.handsontable td,
.handsontable th,
.handsontable input,
.handsontable textarea,
.handsontable div {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
}

.handsontable input,
.handsontable textarea {
  min-height: initial;
}

.handsontable table.htCore {
  border-collapse: separate;
  /* it must be separate, otherwise there are offset miscalculations in WebKit: http://stackoverflow.com/questions/2655987/border-collapse-differences-in-ff-and-webkit */
  /* this actually only changes appearance of user selection - does not make text unselectable */
  /* -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none; */ /* no browser supports unprefixed version */
  border-spacing: 0;
  margin: 0;
  border-width: 0;
  table-layout: fixed;
  width: 0;
  outline-width: 0;
  cursor: default;
  /* reset bootstrap table style. for more info see: https://github.com/handsontable/handsontable/issues/224 */
  max-width: none;
  max-height: none;
}

.handsontable col {
  width: 50px;
}

.handsontable col.rowHeader {
  width: 50px;
}

.handsontable th,
.handsontable td {
  border-top-width: 0;
  border-left-width: 0;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  height: 22px;
  empty-cells: show;
  line-height: 21px;
  padding: 0 4px 0 4px;
  /* top, bottom padding different than 0 is handled poorly by FF with HTML5 doctype */
  background-color: #fff;
  vertical-align: top;
  overflow: hidden;
  outline-width: 0;
  white-space: pre-wrap;
}

.handsontable th:last-child {
  /*Foundation framework fix*/
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.handsontable th:first-child,
.handsontable th:nth-child(2),
.handsontable td:first-of-type {
  border-left: 1px solid #ccc;
}

.handsontable.htRowHeaders thead tr th:nth-child(2) {
  border-left: 1px solid #ccc;
}

.handsontable tr:first-child th,
.handsontable tr:first-child td {
  border-top: 1px solid #ccc;
}

.ht_master:not(.innerBorderLeft):not(.emptyColumns) ~ .handsontable tbody tr th,
.ht_master:not(.innerBorderLeft):not(.emptyColumns) ~ .handsontable:not(.ht_clone_top) thead tr th:first-child {
  border-right-width: 0;
}

/*
innerBorderTop - Property controlled by top overlay
innerBorderBottom - Property controlled by bottom overlay
 */
.ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr:last-child th,
.ht_master:not(.innerBorderTop):not(.innerBorderBottom) ~ .handsontable thead tr:last-child th,
.ht_master:not(.innerBorderTop):not(.innerBorderBottom) thead tr.lastChild th,
.ht_master:not(.innerBorderTop):not(.innerBorderBottom) ~ .handsontable thead tr.lastChild th {
  border-bottom-width: 0;
}

.handsontable th {
  background-color: #f0f0f0;
  color: #222;
  text-align: center;
  font-weight: normal;
  white-space: nowrap;
}

.handsontable thead th {
  padding: 0;
}

.handsontable th.active {
  background-color: #ccc;
}
.handsontable thead th .relative {
  padding: 2px 4px;
}

.handsontable span.colHeader {
  display: inline-block;
  line-height: 1.1;
}

/* Selection */
.handsontable .wtBorder {
  position: absolute;
  font-size: 0;
}
.handsontable .wtBorder.hidden {
  display: none !important;
}

/* A layer order of the selection types */
.handsontable .wtBorder.current {
  z-index: 10;
}
.handsontable .wtBorder.area {
  z-index: 8;
}
.handsontable .wtBorder.fill {
  z-index: 6;
}

/* fill handle */

.handsontable .wtBorder.corner {
  font-size: 0;
  cursor: crosshair;
}

.ht_clone_master {
  z-index: 100;
}

.ht_clone_right {
  z-index: 110;
}

.ht_clone_left {
  z-index: 120;
}

.ht_clone_bottom {
  z-index: 130;
}

.ht_clone_bottom_right_corner {
  z-index: 140;
}

.ht_clone_bottom_left_corner {
  z-index: 150;
}

.ht_clone_top {
  z-index: 160;
}

.ht_clone_top_right_corner {
  z-index: 170;
}

.ht_clone_top_left_corner {
  z-index: 180;
}

/*
  Cell borders
  */
.handsontable tbody tr th:nth-last-child(2) {
  border-right: 1px solid #ccc;
}

.ht_clone_top_left_corner thead tr th:nth-last-child(2) {
  border-right: 1px solid #ccc;
}

.handsontable col.hidden {
  width: 0 !important;
}

.handsontable tr.hidden,
.handsontable tr.hidden td,
.handsontable tr.hidden th {
  display: none;
}

.ht_master,
.ht_clone_left,
.ht_clone_top,
.ht_clone_bottom {
  overflow: hidden;
}

.ht_master .wtHolder {
  overflow: auto;
}

.handsontable .ht_master thead,
.handsontable .ht_master tr th,
.handsontable .ht_clone_left thead {
  visibility: hidden;
}

.ht_clone_top .wtHolder,
.ht_clone_left .wtHolder,
.ht_clone_bottom .wtHolder {
  overflow: hidden;
}

.handsontable {
  touch-action: manipulation;
}

.handsontable.htAutoSize {
  visibility: hidden;
  left: -99000px;
  position: absolute;
  top: -99000px;
}

.handsontable td.htInvalid {
  background-color: #ff4c42 !important; /*gives priority over td.area selection background*/
}

.handsontable td.htNoWrap {
  white-space: nowrap;
}

#hot-display-license-info {
  font-size: 10px;
  color: #323232 ;
  padding: 5px 0 3px 0;
  font-family: Helvetica, Arial, sans-serif;
  text-align: left;
}

#hot-display-license-info a {
  font-size: 10px;
}

/* plugins */

/* row + column resizer*/
.handsontable .manualColumnResizer {
  position: absolute;
  top: 0;
  cursor: col-resize;
  z-index: 210;
  width: 5px;
  height: 25px;
}

.handsontable .manualRowResizer {
  position: absolute;
  left: 0;
  cursor: row-resize;
  z-index: 210;
  height: 5px;
  width: 50px;
}

.handsontable .manualColumnResizer:hover,
.handsontable .manualColumnResizer.active,
.handsontable .manualRowResizer:hover,
.handsontable .manualRowResizer.active {
  background-color: #34a9db;
}

.handsontable .manualColumnResizerGuide {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #34a9db;
  display: none;
  width: 0;
  border-right: 1px dashed #777;
  margin-left: 5px;
}

.handsontable .manualRowResizerGuide {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #34a9db;
  display: none;
  height: 0;
  border-bottom: 1px dashed #777;
  margin-top: 5px;
}

.handsontable .manualColumnResizerGuide.active,
.handsontable .manualRowResizerGuide.active {
  display: block;
  z-index: 209;
}

.handsontable .columnSorting {
  position: relative;
}

.handsontable .columnSorting.sortAction:hover {
  text-decoration: underline;
  cursor: pointer;
}/* Arrow position */
.handsontable span.colHeader.columnSorting::before {
  /* Centering start */
  top: 50%;
  margin-top: -6px; /* One extra pixel for purpose of proper positioning of sorting arrow, when `font-size` set to default */
  /* Centering end */

  padding-left: 8px; /* For purpose of continuous mouse over experience, when moving between the `span` and the `::before` elements */
  position: absolute;
  right: -9px;

  content: '';
  height: 10px;
  width: 5px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: right;
}

.handsontable span.colHeader.columnSorting.ascending::before {
  /* arrow up; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFNJREFUeAHtzjkSgCAUBNHPgsoy97+ulGXRqJE5L+xkxoYt2UdsLb5bqFINz+aLuuLn5rIu2RkO3fZpWENimNgiw6iBYRTPMLJjGFxQZ1hxxb/xBI1qC8k39CdKAAAAAElFTkSuQmCC");
}

.handsontable span.colHeader.columnSorting.descending::before {
  /* arrow down; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAoCAMAAADJ7yrpAAAAKlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKE86IAAAADXRSTlMABBEmRGprlJW72e77tTkTKwAAAFJJREFUeAHtzjkSgCAQRNFmQYUZ7n9dKUvru0TmvPAn3br0QfgdZ5xx6x+rQn23GqTYnq1FDcnuzZIO2WmedVqIRVxgGKEyjNgYRjKGkZ1hFIZ3I70LyM0VtU8AAAAASUVORK5CYII=");
}

.htGhostTable .htCore span.colHeader.columnSorting:not(.indicatorDisabled)::after {
  content: '*';
  display: inline-block;
  position: relative;
  /* The multi-line header and header with longer text need more padding to not hide arrow,
  we make header wider in `GhostTable` to make some space for arrow which is positioned absolutely in the main table */
  padding-right: 20px;
}

.handsontable td.area,
.handsontable td.area-1,
.handsontable td.area-2,
.handsontable td.area-3,
.handsontable td.area-4,
.handsontable td.area-5,
.handsontable td.area-6,
.handsontable td.area-7 {
  position: relative;
}

.handsontable td.area:before,
.handsontable td.area-1:before,
.handsontable td.area-2:before,
.handsontable td.area-3:before,
.handsontable td.area-4:before,
.handsontable td.area-5:before,
.handsontable td.area-6:before,
.handsontable td.area-7:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  bottom: -100%\9; /* Fix for IE9 to spread the ":before" pseudo element to 100% height of the parent element */
  background: #005eff;
}

/* Fix for IE10 and IE11 to spread the ":before" pseudo element to 100% height of the parent element */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .handsontable td.area:before,
  .handsontable td.area-1:before,
  .handsontable td.area-2:before,
  .handsontable td.area-3:before,
  .handsontable td.area-4:before,
  .handsontable td.area-5:before,
  .handsontable td.area-6:before,
  .handsontable td.area-7:before {
    bottom: -100%;
  }
}

.handsontable td.area:before {
  opacity: 0.1;
}
.handsontable td.area-1:before {
  opacity: 0.2;
}
.handsontable td.area-2:before {
  opacity: 0.27;
}
.handsontable td.area-3:before {
  opacity: 0.35;
}
.handsontable td.area-4:before {
  opacity: 0.41;
}
.handsontable td.area-5:before {
  opacity: 0.47;
}
.handsontable td.area-6:before {
  opacity: 0.54;
}
.handsontable td.area-7:before {
  opacity: 0.58;
}

.handsontable tbody th.ht__highlight,
.handsontable thead th.ht__highlight {
  background-color: #dcdcdc;
}

.handsontable tbody th.ht__active_highlight,
.handsontable thead th.ht__active_highlight {
  background-color: #8eb0e7;
  color: #000;
}

.handsontableInput {
  border: none;
  outline-width: 0;
  margin: 0;
  padding: 1px 5px 0 5px;
  font-family: inherit;
  line-height: 21px;
  font-size: inherit;
  box-shadow: 0 0 0 2px #5292F7 inset;
  resize: none;
  /*below are needed to overwrite stuff added by jQuery UI Bootstrap theme*/
  display: block;
  color: #000;
  border-radius: 0;
  background-color: #FFF;
  /*overwrite styles potentionally made by a framework*/
}

.handsontableInput:focus {
  outline: none;
}

.handsontableInputHolder {
  position: absolute;
  top: 0;
  left: 0;
}

.htSelectEditor {
  -webkit-appearance: menulist-button !important;
  position: absolute;
  width: auto;
}

.htSelectEditor:focus {
  outline: none;
}

/*
TextRenderer readOnly cell
*/

.handsontable .htDimmed {
  color: #777;
}

.handsontable .htSubmenu {
  position: relative;
}

.handsontable .htSubmenu :after{
  content: '\25B6';
  color: #777;
  position: absolute;
  right: 5px;
  font-size: 9px;
}


/*
TextRenderer horizontal alignment
*/
.handsontable .htLeft{
  text-align: left;
}
.handsontable .htCenter{
  text-align: center;
}
.handsontable .htRight{
  text-align: right;
}
.handsontable .htJustify{
  text-align: justify;
}
/*
TextRenderer vertical alignment
*/
.handsontable .htTop{
  vertical-align: top;
}
.handsontable .htMiddle{
  vertical-align: middle;
}
.handsontable .htBottom{
  vertical-align: bottom;
}

/*
TextRenderer placeholder value
*/

.handsontable .htPlaceholder {
  color: #999;
}

/**
 * Handsontable listbox theme
 */

.handsontable.listbox {
  margin: 0;
}

.handsontable.listbox .ht_master table {
  border: 1px solid #ccc;
  border-collapse: separate;
  background: white;
}

.handsontable.listbox th,
.handsontable.listbox tr:first-child th,
.handsontable.listbox tr:last-child th,
.handsontable.listbox tr:first-child td,
.handsontable.listbox td {
  border-color: transparent;
}

.handsontable.listbox th,
.handsontable.listbox td {
  white-space: nowrap;
  text-overflow: ellipsis;
}

.handsontable.listbox td.htDimmed {
  cursor: default;
  color: inherit;
  font-style: inherit;
}

.handsontable.listbox .wtBorder {
  visibility: hidden;
}

.handsontable.listbox tr td.current,
.handsontable.listbox tr:hover td {
  background: #eee;
}

.ht_editor_hidden {
  z-index: -1;
}

.ht_editor_visible {
  z-index: 200;
}

.handsontable td.htSearchResult {
  background: #fcedd9;
  color: #583707;
}

.collapsibleIndicator {
  position: absolute;
  top: 50%;
  transform: translate(0% ,-50%);
  right: 5px;
  border: 1px solid #A6A6A6;
  line-height: 10px;
  color: #222;
  border-radius: 10px;
  font-size: 10px;
  width: 10px;
  height: 10px;
  cursor: pointer;
  box-shadow: 0 0 0 6px rgba(238,238,238,1);
  background: #eee;
}

/*

 Handsontable Mobile Text Editor stylesheet

 */

.handsontable.mobile,
.handsontable.mobile .wtHolder {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-overflow-scrolling: touch;
}

.handsontable.mobile .handsontableInput:focus {
  box-shadow: 0 0 0 2px #5292f7 inset;
  -webkit-appearance: none;
}

.topLeftSelectionHandle:not(.ht_master .topLeftSelectionHandle),
.topLeftSelectionHandle-HitArea:not(.ht_master .topLeftSelectionHandle-HitArea) {
  z-index: 9999;
}

/* Initial left/top coordinates - overwritten when actual position is set */
.topLeftSelectionHandle,
.topLeftSelectionHandle-HitArea,
.bottomRightSelectionHandle,
.bottomRightSelectionHandle-HitArea {
  left: -10000px;
  top: -10000px;
}

.handsontable.hide-tween {
  animation: opacity-hide 0.3s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

.handsontable.show-tween {
  animation: opacity-show 0.3s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

@charset "UTF-8";

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
 */

.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
    content: " ";
    display: table;
}
.pika-single:after { clear: both }
.pika-single { *zoom: 1 }

.pika-single.is-hidden {
    display: none;
}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}

.pika-lendar {
    float: left;
    width: 240px;
    margin: 8px;
}

.pika-title {
    position: relative;
    text-align: center;
}

.pika-label {
    display: inline-block;
    *display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #fff;
}
.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0;
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    /* hide text using text-indent trick, using width value (it's enough) */
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
    *position: absolute;
    *top: 0;
}

.pika-prev:hover,
.pika-next:hover {
    opacity: 1;
}

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
    *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
    *right: 0;
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2;
}

.pika-select {
    display: inline-block;
    *display: inline;
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

.pika-table th,
.pika-table td {
    width: 14.285714285714286%;
    padding: 0;
}

.pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
}

.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5;
}

.pika-week {
    font-size: 11px;
    color: #999;
}

.is-today .pika-button {
    color: #33aaff;
    font-weight: bold;
}

.is-selected .pika-button,
.has-event .pika-button {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px;
}

.has-event .pika-button {
    background: #005da9;
    box-shadow: inset 0 1px 3px #0076c9;
}

.is-disabled .pika-button,
.is-inrange .pika-button {
    background: #D5E9F7;
}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    box-shadow: none;
    border-radius: 3px;
}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    box-shadow: none;
    border-radius: 3px;
}

.is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3;
}

.is-outside-current-month .pika-button {
    color: #999;
    opacity: .3;
}

.is-selection-disabled {
    pointer-events: none;
    cursor: default;
}

.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
    color: #fff;
    background: #ff8000;
    box-shadow: none;
    border-radius: 3px;
}

/* styling for abbr */
.pika-table abbr {
    border-bottom: none;
    cursor: help;
}


/*
AutocompleteRenderer down arrow
*/

.handsontable .htAutocompleteArrow {
  float: right;
  font-size: 10px;
  color: #EEE;
  cursor: default;
  width: 16px;
  text-align: center;
}

.handsontable td .htAutocompleteArrow:hover {
  color: #777;
}

.handsontable td.area .htAutocompleteArrow {
  color: #d3d3d3;
}

/*
CheckboxRenderer
*/
.handsontable .htCheckboxRendererInput {
  display: inline-block;
}
.handsontable .htCheckboxRendererInput.noValue {
  opacity: 0.5;
}
.handsontable .htCheckboxRendererLabel {
  font-size: inherit;
  vertical-align: middle;
  cursor: pointer;
  display: inline-block;
}

.htCommentCell {
  position: relative;
}

.htCommentCell:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-left: 6px solid transparent;
  border-top: 6px solid black;
}

.htComments {
  display: none;
  z-index: 1059;
  position: absolute;
}

.htCommentTextArea {
  box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 3px, rgba(0, 0, 0, 0.239216) 0 1px 2px;
  box-sizing: border-box;
  border: none;
  border-left: 3px solid #ccc;
  background-color: #fff;
  width: 215px;
  height: 90px;
  font-size: 12px;
  padding: 5px;
  outline: 0px !important;
  -webkit-appearance: none;
}

.htCommentTextArea:focus {
  box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 3px, rgba(0, 0, 0, 0.239216) 0 1px 2px, inset 0 0 0 1px #5292f7;
  border-left: 3px solid #5292f7;
}

/*!
 * Handsontable ContextMenu
 */

.htContextMenu:not(.htGhostTable) {
  display: none;
  position: absolute;
  z-index: 1060; /* needs to be higher than 1050 - z-index for Twitter Bootstrap modal (#1569) */
}

.htContextMenu .ht_clone_top,
.htContextMenu .ht_clone_left,
.htContextMenu .ht_clone_corner {
  display: none;
}

.htContextMenu .ht_master table.htCore {
  border: 1px solid #ccc;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.htContextMenu .wtBorder {
  visibility: hidden;
}

.htContextMenu table tbody tr td {
  background: white;
  border-width: 0;
  padding: 4px 6px 0 6px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.htContextMenu table tbody tr td:first-child {
  border: 0;
}

.htContextMenu table tbody tr td.htDimmed {
  font-style: normal;
  color: #323232;
}

.htContextMenu table tbody tr td.current,
.htContextMenu table tbody tr td.zeroclipboard-is-hover {
  background: #f3f3f3;
}

.htContextMenu table tbody tr td.htSeparator {
  border-top: 1px solid #e6e6e6;
  height: 0;
  padding: 0;
  cursor: default;
}

.htContextMenu table tbody tr td.htDisabled {
  color: #999;
  cursor: default;
}

.htContextMenu table tbody tr td.htDisabled:hover {
  background: #fff;
  color: #999;
  cursor: default;
}

.htContextMenu table tbody tr.htHidden {
  display: none;
}

.htContextMenu table tbody tr td .htItemWrapper {
  margin-left: 10px;
  margin-right: 6px;
}

.htContextMenu table tbody tr td div span.selected {
  margin-top: -2px;
  position: absolute;
  left: 4px;
}

.htContextMenu .ht_master .wtHolder {
  overflow: hidden;
}

textarea.HandsontableCopyPaste {
  position: fixed !important;
  top: 0 !important;
  right: 100% !important;
  overflow: hidden;
  opacity: 0;
  outline: 0 none !important;
}

.htRowHeaders .ht_master.innerBorderLeft ~ .ht_clone_top_left_corner th:nth-child(2),
.htRowHeaders .ht_master.innerBorderLeft ~ .ht_clone_left td:first-of-type {
  border-left: 0 none;
}

.handsontable .wtHider {
  position: relative;
}
.handsontable.ht__manualColumnMove.after-selection--columns thead th.ht__highlight {
  cursor: move;
  cursor: grab;
}
.handsontable.ht__manualColumnMove.on-moving--columns,
.handsontable.ht__manualColumnMove.on-moving--columns thead th.ht__highlight {
  cursor: move;
  cursor: grabbing;
}
.handsontable.ht__manualColumnMove.on-moving--columns .manualColumnResizer {
  display: none;
}
.handsontable .ht__manualColumnMove--guideline,
.handsontable .ht__manualColumnMove--backlight {
  position: absolute;
  height: 100%;
  display: none;
}
.handsontable .ht__manualColumnMove--guideline {
  background: #757575;
  width: 2px;
  top: 0;
  margin-left: -1px;
  z-index: 205;
}
.handsontable .ht__manualColumnMove--backlight {
  background: #343434;
  background: rgba(52, 52, 52, 0.25);
  display: none;
  z-index: 205;
  pointer-events: none;
}
.handsontable.on-moving--columns.show-ui .ht__manualColumnMove--guideline,
.handsontable.on-moving--columns .ht__manualColumnMove--backlight {
  display: block;
}

.handsontable .wtHider {
  position: relative;
}
.handsontable.ht__manualRowMove.after-selection--rows tbody th.ht__highlight {
  cursor: move;
  cursor: grab;
}
.handsontable.ht__manualRowMove.on-moving--rows,
.handsontable.ht__manualRowMove.on-moving--rows tbody th.ht__highlight {
  cursor: move;
  cursor: grabbing;
}
.handsontable.ht__manualRowMove.on-moving--rows .manualRowResizer {
  display: none;
}
.handsontable .ht__manualRowMove--guideline,
.handsontable .ht__manualRowMove--backlight {
  position: absolute;
  width: 100%;
  display: none;
}
.handsontable .ht__manualRowMove--guideline {
  background: #757575;
  height: 2px;
  left: 0;
  margin-top: -1px;
  z-index: 205;
}
.handsontable .ht__manualRowMove--backlight {
  background: #343434;
  background: rgba(52, 52, 52, 0.25);
  display: none;
  z-index: 205;
  pointer-events: none;
}
.handsontable.on-moving--rows.show-ui .ht__manualRowMove--guideline,
.handsontable.on-moving--rows .ht__manualRowMove--backlight {
  display: block;
}

.handsontable tbody td[rowspan][class*="area"][class*="highlight"]:not([class*="fullySelectedMergedCell"]):before {
  opacity: 0;
}

.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-multiple"]:before {
  opacity: 0.1;
}

.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-0"]:before {
  opacity: 0.1;
}

.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-1"]:before {
  opacity: 0.2;
}

.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-2"]:before {
  opacity: 0.27;
}

.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-3"]:before {
  opacity: 0.35;
}

.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-4"]:before {
  opacity: 0.41;
}

.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-5"]:before {
  opacity: 0.47;
}

.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-6"]:before {
  opacity: 0.54;
}

.handsontable tbody td[rowspan][class*="area"][class*="highlight"][class*="fullySelectedMergedCell-7"]:before {
  opacity: 0.58;
}

/* Column's number position */
.handsontable span.colHeader.columnSorting::after {
  /* Centering start */
  top: 50%;
  margin-top: -2px; /* Two extra pixels (-2 instead of -4) for purpose of proper positioning of numeric indicators, when `font-size` set to default */
  /* Centering end */

  position: absolute;
  right: -15px;
  padding-left: 5px; ; /* For purpose of continuous mouse over experience, when moving between the `::before` and the `::after` elements */

  font-size: 8px;
  height: 8px;
  line-height: 1.1;
  text-decoration: underline; /* Workaround for IE9 - IE11 */
}

/* Workaround for IE9 - IE11, https://stackoverflow.com/a/21902566, https://stackoverflow.com/a/32120247 */
.handsontable span.colHeader.columnSorting::after {
  text-decoration: none;
}

/* We support up to 7 numeric indicators, describing order of column in sorted columns queue */
.handsontable span.colHeader.columnSorting[class^="sort-"]::after,
.handsontable span.colHeader.columnSorting[class*=" sort-"]::after {
  content: "+"
}

.handsontable span.colHeader.columnSorting.sort-1::after {
  content: '1';
}

.handsontable span.colHeader.columnSorting.sort-2::after {
  content: '2';
}

.handsontable span.colHeader.columnSorting.sort-3::after {
  content: '3';
}

.handsontable span.colHeader.columnSorting.sort-4::after {
  content: '4';
}

.handsontable span.colHeader.columnSorting.sort-5::after {
  content: '5';
}

.handsontable span.colHeader.columnSorting.sort-6::after {
  content: '6';
}

.handsontable span.colHeader.columnSorting.sort-7::after {
  content: '7';
}

/* Drop-down menu widens header by 5 pixels, sort sequence numbers won't overlap the icon; mainly for the IE9+ */
.htGhostTable th div button.changeType + span.colHeader.columnSorting:not(.indicatorDisabled) {
  padding-right: 5px;
}

/*!
 * Handsontable DropdownMenu
 */
.handsontable .changeType {
  background: #eee;
  border-radius: 2px;
  border: 1px solid #bbb;
  color: #bbb;
  font-size: 9px;
  line-height: 9px;
  padding: 2px;
  margin: 3px 1px 0 5px;
  float: right;
}
.handsontable .changeType:before {
  content: '\25BC   ';
}

.handsontable .changeType:hover {
  border: 1px solid #777;
  color: #777;
  cursor: pointer;
}

.htDropdownMenu:not(.htGhostTable) {
  display: none;
  position: absolute;
  z-index: 1060; /* needs to be higher than 1050 - z-index for Twitter Bootstrap modal (#1569) */
}

.htDropdownMenu .ht_clone_top,
.htDropdownMenu .ht_clone_left,
.htDropdownMenu .ht_clone_corner {
  display: none;
}

.htDropdownMenu table.htCore {
  border: 1px solid #bbb;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.htDropdownMenu .wtBorder {
  visibility: hidden;
}

.htDropdownMenu table tbody tr td {
  background: white;
  border-width: 0;
  padding: 4px 6px 0 6px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.htDropdownMenu table tbody tr td:first-child {
  border: 0;
}

.htDropdownMenu table tbody tr td.htDimmed {
  font-style: normal;
  color: #323232;
}

.htDropdownMenu table tbody tr td.current,
.htDropdownMenu table tbody tr td.zeroclipboard-is-hover {
  background: #e9e9e9;
}

.htDropdownMenu table tbody tr td.htSeparator {
  border-top: 1px solid #e6e6e6;
  height: 0;
  padding: 0;
  cursor: default;
}

.htDropdownMenu table tbody tr td.htDisabled {
  color: #999;
}

.htDropdownMenu table tbody tr td.htDisabled:hover {
  background: #fff;
  color: #999;
  cursor: default;
}

.htDropdownMenu:not(.htGhostTable) table tbody tr.htHidden {
  display: none;
}

.htDropdownMenu table tbody tr td .htItemWrapper {
  margin-left: 10px;
  margin-right: 10px;
}

.htDropdownMenu table tbody tr td div span.selected {
  margin-top: -2px;
  position: absolute;
  left: 4px;
}

.htDropdownMenu .ht_master .wtHolder {
  overflow: hidden;
}

/*!
 * Handsontable Filters
 */

/* Conditions menu */
.htFiltersConditionsMenu:not(.htGhostTable) {
  display: none;
  position: absolute;
  z-index: 1070;
}

.htFiltersConditionsMenu .ht_clone_top,
.htFiltersConditionsMenu .ht_clone_left,
.htFiltersConditionsMenu .ht_clone_corner {
  display: none;
}

.htFiltersConditionsMenu table.htCore {
  border: 1px solid #bbb;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.htFiltersConditionsMenu .wtBorder {
  visibility: hidden;
}

.htFiltersConditionsMenu table tbody tr td {
  background: white;
  border-width: 0;
  padding: 4px 6px 0 6px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.htFiltersConditionsMenu table tbody tr td:first-child {
  border: 0;
}

.htFiltersConditionsMenu table tbody tr td.htDimmed {
  font-style: normal;
  color: #323232;
}

.htFiltersConditionsMenu table tbody tr td.current,
.htFiltersConditionsMenu table tbody tr td.zeroclipboard-is-hover {
  background: #e9e9e9;
}

.htFiltersConditionsMenu table tbody tr td.htSeparator {
  border-top: 1px solid #e6e6e6;
  height: 0;
  padding: 0;
}

.htFiltersConditionsMenu table tbody tr td.htDisabled {
  color: #999;
}

.htFiltersConditionsMenu table tbody tr td.htDisabled:hover {
  background: #fff;
  color: #999;
  cursor: default;
}

.htFiltersConditionsMenu table tbody tr td .htItemWrapper {
  margin-left: 10px;
  margin-right: 10px;
}

.htFiltersConditionsMenu table tbody tr td div span.selected {
  margin-top: -2px;
  position: absolute;
  left: 4px;
}

.htFiltersConditionsMenu .ht_master .wtHolder {
  overflow: hidden;
}

.handsontable .htMenuFiltering {
  border-bottom: 1px dotted #ccc;
  height: 135px;
  overflow: hidden;
}

.handsontable .ht_master table td.htCustomMenuRenderer {
  background-color: #fff;
  cursor: auto;
}

/* Menu label */
.handsontable .htFiltersMenuLabel {
  font-size: 0.75em;
}

/* Component action bar */
.handsontable .htFiltersMenuActionBar {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 3px;
}

/* Component filter by conditional */
.handsontable .htFiltersMenuCondition.border {
  border-bottom: 1px dotted #ccc !important;
}
.handsontable .htFiltersMenuCondition .htUIInput {
  padding: 0 0 5px 0;
}

/* Component filter by value */
.handsontable .htFiltersMenuValue {
  border-bottom: 1px dotted #ccc !important;
}
.handsontable .htFiltersMenuValue .htUIMultipleSelectSearch {
  padding: 0;
}
.handsontable .htFiltersMenuCondition .htUIInput input,
.handsontable .htFiltersMenuValue .htUIMultipleSelectSearch input {
  font-family: inherit;
  font-size: 0.75em;
  padding: 4px;
  box-sizing: border-box;
  width: 100%;
}

.htUIMultipleSelect .ht_master .wtHolder {
  overflow-y: scroll;
}

.handsontable .htFiltersActive .changeType {
  border: 1px solid #509272;
  color: #18804e;
  background-color: #d2e0d9;
}

.handsontable .htUISelectAll {
  margin-right: 10px;
}

.handsontable .htUIClearAll, .handsontable .htUISelectAll {
  display: inline-block;
}

.handsontable .htUIClearAll a, .handsontable .htUISelectAll a {
  color: #3283D8;
  font-size: 0.75em;
}

.handsontable .htUISelectionControls {
  text-align: right;
}

.handsontable .htCheckboxRendererInput {
  margin: 0 5px 0 0;
  vertical-align: middle;
  height: 1em;
}

/* UI elements */
/* Input */
.handsontable .htUIInput {
  padding: 3px 0 7px 0;
  position: relative;
  text-align: center;
}
.handsontable .htUIInput input {
  border-radius: 2px;
  border: 1px solid #d2d1d1;
}
.handsontable .htUIInput input:focus {
  outline: 0;
}
.handsontable .htUIInputIcon {
  position: absolute;
}

/* Button */
.handsontable .htUIInput.htUIButton {
  cursor: pointer;
  display: inline-block;
}
.handsontable .htUIInput.htUIButton input {
  background-color: #eee;
  color: #000;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.7em;
  font-weight: bold;
  height: 19px;
  min-width: 64px;
}
.handsontable .htUIInput.htUIButton input:hover {
  border-color: #b9b9b9;
}

.handsontable .htUIInput.htUIButtonOK {
  margin-right: 10px;
}

.handsontable .htUIInput.htUIButtonOK input {
  background-color: #0f9d58;
  border-color: #18804e;
  color: #fff;
}
.handsontable .htUIInput.htUIButtonOK input:hover {
  border-color: #1a6f46;
}

/* Select */
.handsontable .htUISelect {
  cursor: pointer;
  margin-bottom: 7px;
  position: relative;
}
.handsontable .htUISelectCaption {
  background-color: #e8e8e8;
  border-radius: 2px;
  border: 1px solid #d2d1d1;
  font-family: inherit;
  font-size: 0.7em;
  font-weight: bold;
  padding: 3px 20px 3px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.handsontable .htUISelectCaption:hover {
  background-color: #e8e8e8;
  border: 1px solid #b9b9b9;
}
.handsontable .htUISelectDropdown:after {
  content: '\25B2';
  font-size: 7px;
  position: absolute;
  right: 10px;
  top: 0;
}
.handsontable .htUISelectDropdown:before {
  content: '\25BC';
  font-size: 7px;
  position: absolute;
  right: 10px;
  top: 8px;
}

/* SelectMultiple */
.handsontable .htUIMultipleSelect .handsontable .htCore {
  border: none;
}
.handsontable .htUIMultipleSelect .handsontable .htCore td:hover {
  background-color: #F5F5F5;
}

.handsontable .htUIMultipleSelectSearch input {
  border-radius: 2px;
  border: 1px solid #d2d1d1;
  padding: 3px;
}

.handsontable .htUIRadio {
  display: inline-block;
  margin-right: 5px;
  height: 100%;
}

.handsontable .htUIRadio:last-child {
  margin-right: 0;
}

.handsontable .htUIRadio > input[type=radio] {
  margin-right: 0.5ex;
}

.handsontable .htUIRadio label {
  vertical-align: middle;
}

.handsontable .htFiltersMenuOperators {
  padding-bottom: 5px;
}

.handsontable thead th.hiddenHeader:not(:first-of-type) {
  display: none;
}

.handsontable th.ht_nestingLevels {
  text-align: left;
  padding-left: 7px;
}

.handsontable th div.ht_nestingLevels {
  display: inline-block;
  position: absolute;
  left: 11px;
}

.handsontable.innerBorderLeft th div.ht_nestingLevels,
.handsontable.innerBorderLeft ~ .handsontable th div.ht_nestingLevels {
  right: 10px;
}

.handsontable th span.ht_nestingLevel {
  display: inline-block;
}

.handsontable th span.ht_nestingLevel_empty {
  display: inline-block;
  width: 10px;
  height: 1px;
  float: left;
}

.handsontable th span.ht_nestingLevel::after {
  content: "\2510";
  font-size: 9px;
  display: inline-block;
  position: relative;
  bottom: 3px;
}


.handsontable th div.ht_nestingButton {
  display: inline-block;
  position: absolute;
  right: -2px;
  cursor: pointer;
}

.handsontable th div.ht_nestingButton.ht_nestingExpand::after {
  content: "+";
}

.handsontable th div.ht_nestingButton.ht_nestingCollapse::after {
  content: "-";
}

.handsontable.innerBorderLeft th div.ht_nestingButton,
.handsontable.innerBorderLeft ~ .handsontable th div.ht_nestingButton {
  right: 0;
}

/*
 * Handsontable HiddenColumns
 */
.handsontable th.beforeHiddenColumn {
  position: relative;
}

.handsontable th.beforeHiddenColumn::after,
.handsontable th.afterHiddenColumn::before {
  color: #bbb;
  position: absolute;
  top: 50%;
  font-size: 5pt;
  transform: translateY(-50%);
}

.handsontable th.afterHiddenColumn {
  position: relative;
}
.handsontable th.beforeHiddenColumn::after {
  right: 1px;
  content: '\25C0';
}
.handsontable th.afterHiddenColumn::before {
  left: 1px;
  content: '\25B6';
}

/*!
 * Handsontable HiddenRows
 */
.handsontable th.beforeHiddenRow::before,
.handsontable th.afterHiddenRow::after {
  color: #bbb;
  font-size: 6pt;
  line-height: 6pt;
  position: absolute;
  left: 2px;
}

.handsontable th.beforeHiddenRow,
.handsontable th.afterHiddenRow {
  position: relative;
}

.handsontable th.beforeHiddenRow::before {
  content: '\25B2';
  bottom: 2px;
}

.handsontable th.afterHiddenRow::after {
  content: '\25BC';
  top: 2px;
}
.handsontable.ht__selection--rows tbody th.beforeHiddenRow.ht__highlight:before,
.handsontable.ht__selection--rows tbody th.afterHiddenRow.ht__highlight:after {
  color: #eee;
}
.handsontable td.afterHiddenRow.firstVisibleRow,
.handsontable th.afterHiddenRow.firstVisibleRow {
  border-top: 1px solid #CCC;
}

@charset "UTF-8";

/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #88c349;
  --secondary: #55547A;
  --success: #00C99C;
  --info: #15B2EC;
  --warning: #F3AF4E;
  --danger: #FB7178;
  --light: #b9e18e;
  --dark: #55547A;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 1.2rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 2.5rem;
}

h2,
.h2 {
  font-size: 2rem;
}

h3,
.h3 {
  font-size: 1.75rem;
}

h4,
.h4 {
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014\A0";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #88c349;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm,
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto,
.col-xl-12,
.col-xl-11,
.col-xl-10,
.col-xl-9,
.col-xl-8,
.col-xl-7,
.col-xl-6,
.col-xl-5,
.col-xl-4,
.col-xl-3,
.col-xl-2,
.col-xl-1,
.col-lg,
.col-lg-auto,
.col-lg-12,
.col-lg-11,
.col-lg-10,
.col-lg-9,
.col-lg-8,
.col-lg-7,
.col-lg-6,
.col-lg-5,
.col-lg-4,
.col-lg-3,
.col-lg-2,
.col-lg-1,
.col-md,
.col-md-auto,
.col-md-12,
.col-md-11,
.col-md-10,
.col-md-9,
.col-md-8,
.col-md-7,
.col-md-6,
.col-md-5,
.col-md-4,
.col-md-3,
.col-md-2,
.col-md-1,
.col-sm,
.col-sm-auto,
.col-sm-12,
.col-sm-11,
.col-sm-10,
.col-sm-9,
.col-sm-8,
.col-sm-7,
.col-sm-6,
.col-sm-5,
.col-sm-4,
.col-sm-3,
.col-sm-2,
.col-sm-1,
.col,
.col-auto,
.col-12,
.col-11,
.col-10,
.col-9,
.col-8,
.col-7,
.col-6,
.col-5,
.col-4,
.col-3,
.col-2,
.col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

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

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

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

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

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

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #deeecc;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #c1e0a0;
}

.table-hover .table-primary:hover {
  background-color: #d2e8b9;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #d2e8b9;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #cfcfda;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #a7a6ba;
}

.table-hover .table-secondary:hover {
  background-color: #c1c1cf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c1c1cf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #b8f0e3;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #7ae3cc;
}

.table-hover .table-success:hover {
  background-color: #a3ecdb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #a3ecdb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bde9fa;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #85d7f5;
}

.table-hover .table-info:hover {
  background-color: #a5e1f8;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #a5e1f8;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #fce9cd;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #f9d5a3;
}

.table-hover .table-warning:hover {
  background-color: #fbdeb5;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #fbdeb5;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #fed7d9;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #fdb5b9;
}

.table-hover .table-danger:hover {
  background-color: #fdbec1;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #fdbec1;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #ebf7df;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #dbefc4;
}

.table-hover .table-light:hover {
  background-color: #def2cb;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #def2cb;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #cfcfda;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #a7a6ba;
}

.table-hover .table-dark:hover {
  background-color: #c1c1cf;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #c1c1cf;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size],
select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}

.form-row > .col > .valid-tooltip,
.form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated select.form-control:valid,
select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.form-row > .col > .invalid-tooltip,
.form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated select.form-control:invalid,
select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-plaintext {
    display: inline-block;
  }

  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }

  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }

  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }

  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }

  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

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

.btn-primary {
  color: #212529;
  background-color: #88c349;
  border-color: #88c349;
}

.btn-primary:hover {
  color: #fff;
  background-color: #75ad39;
  border-color: #6ea336;
}

.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #75ad39;
  border-color: #6ea336;
  box-shadow: 0 0 0 0.2rem rgba(121, 171, 68, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #212529;
  background-color: #88c349;
  border-color: #88c349;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #6ea336;
  border-color: #689a33;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(121, 171, 68, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #55547A;
  border-color: #55547A;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #454463;
  border-color: #403f5c;
}

.btn-secondary:focus,
.btn-secondary.focus {
  color: #fff;
  background-color: #454463;
  border-color: #403f5c;
  box-shadow: 0 0 0 0.2rem rgba(111, 110, 142, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #55547A;
  border-color: #55547A;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #403f5c;
  border-color: #3b3a54;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(111, 110, 142, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #00C99C;
  border-color: #00C99C;
}

.btn-success:hover {
  color: #fff;
  background-color: #00a37e;
  border-color: #009674;
}

.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #00a37e;
  border-color: #009674;
  box-shadow: 0 0 0 0.2rem rgba(38, 209, 171, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #00C99C;
  border-color: #00C99C;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #009674;
  border-color: #00896b;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 209, 171, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #15B2EC;
  border-color: #15B2EC;
}

.btn-info:hover {
  color: #fff;
  background-color: #1098ca;
  border-color: #0f8fbf;
}

.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #1098ca;
  border-color: #0f8fbf;
  box-shadow: 0 0 0 0.2rem rgba(56, 190, 239, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #15B2EC;
  border-color: #15B2EC;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #0f8fbf;
  border-color: #0f86b3;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(56, 190, 239, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #F3AF4E;
  border-color: #F3AF4E;
}

.btn-warning:hover {
  color: #212529;
  background-color: #f19f2a;
  border-color: #f0991e;
}

.btn-warning:focus,
.btn-warning.focus {
  color: #212529;
  background-color: #f19f2a;
  border-color: #f0991e;
  box-shadow: 0 0 0 0.2rem rgba(212, 154, 72, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #F3AF4E;
  border-color: #F3AF4E;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #f0991e;
  border-color: #ef9412;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(212, 154, 72, 0.5);
}

.btn-danger {
  color: #212529;
  background-color: #FB7178;
  border-color: #FB7178;
}

.btn-danger:hover {
  color: #fff;
  background-color: #fa4c55;
  border-color: #fa3f49;
}

.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #fa4c55;
  border-color: #fa3f49;
  box-shadow: 0 0 0 0.2rem rgba(218, 102, 108, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #212529;
  background-color: #FB7178;
  border-color: #FB7178;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #fa3f49;
  border-color: #f9333d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(218, 102, 108, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #b9e18e;
  border-color: #b9e18e;
}

.btn-light:hover {
  color: #212529;
  background-color: #a6d970;
  border-color: #a0d666;
}

.btn-light:focus,
.btn-light.focus {
  color: #212529;
  background-color: #a6d970;
  border-color: #a0d666;
  box-shadow: 0 0 0 0.2rem rgba(162, 197, 127, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #b9e18e;
  border-color: #b9e18e;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #a0d666;
  border-color: #9ad45c;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(162, 197, 127, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #55547A;
  border-color: #55547A;
}

.btn-dark:hover {
  color: #fff;
  background-color: #454463;
  border-color: #403f5c;
}

.btn-dark:focus,
.btn-dark.focus {
  color: #fff;
  background-color: #454463;
  border-color: #403f5c;
  box-shadow: 0 0 0 0.2rem rgba(111, 110, 142, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #55547A;
  border-color: #55547A;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #403f5c;
  border-color: #3b3a54;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(111, 110, 142, 0.5);
}

.btn-outline-primary {
  color: #88c349;
  border-color: #88c349;
}

.btn-outline-primary:hover {
  color: #212529;
  background-color: #88c349;
  border-color: #88c349;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(136, 195, 73, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #88c349;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #212529;
  background-color: #88c349;
  border-color: #88c349;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(136, 195, 73, 0.5);
}

.btn-outline-secondary {
  color: #55547A;
  border-color: #55547A;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #55547A;
  border-color: #55547A;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(85, 84, 122, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #55547A;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #55547A;
  border-color: #55547A;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(85, 84, 122, 0.5);
}

.btn-outline-success {
  color: #00C99C;
  border-color: #00C99C;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #00C99C;
  border-color: #00C99C;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 201, 156, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #00C99C;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #00C99C;
  border-color: #00C99C;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 201, 156, 0.5);
}

.btn-outline-info {
  color: #15B2EC;
  border-color: #15B2EC;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #15B2EC;
  border-color: #15B2EC;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(21, 178, 236, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #15B2EC;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #15B2EC;
  border-color: #15B2EC;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(21, 178, 236, 0.5);
}

.btn-outline-warning {
  color: #F3AF4E;
  border-color: #F3AF4E;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #F3AF4E;
  border-color: #F3AF4E;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(243, 175, 78, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #F3AF4E;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #F3AF4E;
  border-color: #F3AF4E;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(243, 175, 78, 0.5);
}

.btn-outline-danger {
  color: #FB7178;
  border-color: #FB7178;
}

.btn-outline-danger:hover {
  color: #212529;
  background-color: #FB7178;
  border-color: #FB7178;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(251, 113, 120, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #FB7178;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #212529;
  background-color: #FB7178;
  border-color: #FB7178;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(251, 113, 120, 0.5);
}

.btn-outline-light {
  color: #b9e18e;
  border-color: #b9e18e;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #b9e18e;
  border-color: #b9e18e;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(185, 225, 142, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #b9e18e;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #b9e18e;
  border-color: #b9e18e;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(185, 225, 142, 0.5);
}

.btn-outline-dark {
  color: #55547A;
  border-color: #55547A;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #55547A;
  border-color: #55547A;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(85, 84, 122, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #55547A;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #55547A;
  border-color: #55547A;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(85, 84, 122, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}

.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg,
.btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm,
.btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #040405;
  background-clip: padding-box;
  border: 1px solid #040405;
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

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

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

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

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

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

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top],
.dropdown-menu[x-placement^=right],
.dropdown-menu[x-placement^=bottom],
.dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #595959;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #fff;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #88c349;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #fff;
}

.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:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.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 > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.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,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

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

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: flex;
  align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group.has-validation > .form-control:nth-last-child(n+3),
.input-group.has-validation > .custom-select:nth-last-child(n+3),
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label,
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}

.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  print-color-adjust: exact;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.custom-control-input[disabled] ~ .custom-control-label,
.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input[disabled] ~ .custom-control-label::before,
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 1px solid #adb5bd;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50%/50% 50% no-repeat;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  display: none;
}

.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input[disabled] ~ .custom-file-label,
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-range:focus {
  outline: 0;
}

.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}

.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
  cursor: default;
}

.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

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

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

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

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

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

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row 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: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }

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

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row 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: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }

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

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row 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: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }

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

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row 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: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }

  .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 {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  flex-wrap: nowrap;
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }

  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }

  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }

  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }

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

  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }

  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }

  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}

a.badge:hover,
a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #212529;
  background-color: #88c349;
}

a.badge-primary:hover,
a.badge-primary:focus {
  color: #212529;
  background-color: #6ea336;
}

a.badge-primary:focus,
a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(136, 195, 73, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #55547A;
}

a.badge-secondary:hover,
a.badge-secondary:focus {
  color: #fff;
  background-color: #403f5c;
}

a.badge-secondary:focus,
a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(85, 84, 122, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #00C99C;
}

a.badge-success:hover,
a.badge-success:focus {
  color: #fff;
  background-color: #009674;
}

a.badge-success:focus,
a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 201, 156, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #15B2EC;
}

a.badge-info:hover,
a.badge-info:focus {
  color: #fff;
  background-color: #0f8fbf;
}

a.badge-info:focus,
a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(21, 178, 236, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #F3AF4E;
}

a.badge-warning:hover,
a.badge-warning:focus {
  color: #212529;
  background-color: #f0991e;
}

a.badge-warning:focus,
a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(243, 175, 78, 0.5);
}

.badge-danger {
  color: #212529;
  background-color: #FB7178;
}

a.badge-danger:hover,
a.badge-danger:focus {
  color: #212529;
  background-color: #fa3f49;
}

a.badge-danger:focus,
a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(251, 113, 120, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #b9e18e;
}

a.badge-light:hover,
a.badge-light:focus {
  color: #212529;
  background-color: #a0d666;
}

a.badge-light:focus,
a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(185, 225, 142, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #55547A;
}

a.badge-dark:hover,
a.badge-dark:focus {
  color: #fff;
  background-color: #403f5c;
}

a.badge-dark:focus,
a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(85, 84, 122, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #476526;
  background-color: #e7f3db;
  border-color: #deeecc;
}

.alert-primary hr {
  border-top-color: #d2e8b9;
}

.alert-primary .alert-link {
  color: #2d4018;
}

.alert-secondary {
  color: #2c2c3f;
  background-color: #dddde4;
  border-color: #cfcfda;
}

.alert-secondary hr {
  border-top-color: #c1c1cf;
}

.alert-secondary .alert-link {
  color: #171721;
}

.alert-success {
  color: #006951;
  background-color: #ccf4eb;
  border-color: #b8f0e3;
}

.alert-success hr {
  border-top-color: #a3ecdb;
}

.alert-success .alert-link {
  color: #00362a;
}

.alert-info {
  color: #0b5d7b;
  background-color: #d0f0fb;
  border-color: #bde9fa;
}

.alert-info hr {
  border-top-color: #a5e1f8;
}

.alert-info .alert-link {
  color: #073a4c;
}

.alert-warning {
  color: #7e5b29;
  background-color: #fdefdc;
  border-color: #fce9cd;
}

.alert-warning hr {
  border-top-color: #fbdeb5;
}

.alert-warning .alert-link {
  color: #583f1c;
}

.alert-danger {
  color: #833b3e;
  background-color: #fee3e4;
  border-color: #fed7d9;
}

.alert-danger hr {
  border-top-color: #fdbec1;
}

.alert-danger .alert-link {
  color: #602b2d;
}

.alert-light {
  color: #60754a;
  background-color: #f1f9e8;
  border-color: #ebf7df;
}

.alert-light hr {
  border-top-color: #def2cb;
}

.alert-light .alert-link {
  color: #465636;
}

.alert-dark {
  color: #2c2c3f;
  background-color: #dddde4;
  border-color: #cfcfda;
}

.alert-dark hr {
  border-top-color: #c1c1cf;
}

.alert-dark .alert-link {
  color: #171721;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}

.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }

  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }

  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }

  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }

  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

.list-group-flush {
  border-radius: 0;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #476526;
  background-color: #deeecc;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #476526;
  background-color: #d2e8b9;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #476526;
  border-color: #476526;
}

.list-group-item-secondary {
  color: #2c2c3f;
  background-color: #cfcfda;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: #2c2c3f;
  background-color: #c1c1cf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #2c2c3f;
  border-color: #2c2c3f;
}

.list-group-item-success {
  color: #006951;
  background-color: #b8f0e3;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #006951;
  background-color: #a3ecdb;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #006951;
  border-color: #006951;
}

.list-group-item-info {
  color: #0b5d7b;
  background-color: #bde9fa;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: #0b5d7b;
  background-color: #a5e1f8;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0b5d7b;
  border-color: #0b5d7b;
}

.list-group-item-warning {
  color: #7e5b29;
  background-color: #fce9cd;
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #7e5b29;
  background-color: #fbdeb5;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #7e5b29;
  border-color: #7e5b29;
}

.list-group-item-danger {
  color: #833b3e;
  background-color: #fed7d9;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #833b3e;
  background-color: #fdbec1;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #833b3e;
  border-color: #833b3e;
}

.list-group-item-light {
  color: #60754a;
  background-color: #ebf7df;
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: #60754a;
  background-color: #def2cb;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #60754a;
  border-color: #60754a;
}

.list-group-item-dark {
  color: #2c2c3f;
  background-color: #cfcfda;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: #2c2c3f;
  background-color: #c1c1cf;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #2c2c3f;
  border-color: #2c2c3f;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}

.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast.showing {
  opacity: 1;
}

.toast.show {
  display: block;
  opacity: 1;
}

.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -moz-min-content;
    height: min-content;
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow::before,
.popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top,
.bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}

.bs-popover-top > .arrow,
.bs-popover-auto[x-placement^=top] > .arrow {
  bottom: calc(-0.5rem - 1px);
}

.bs-popover-top > .arrow::before,
.bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top > .arrow::after,
.bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right,
.bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}

.bs-popover-right > .arrow,
.bs-popover-auto[x-placement^=right] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-right > .arrow::before,
.bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-right > .arrow::after,
.bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom,
.bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}

.bs-popover-bottom > .arrow,
.bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc(-0.5rem - 1px);
}

.bs-popover-bottom > .arrow::before,
.bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom > .arrow::after,
.bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before,
.bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left,
.bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}

.bs-popover-left > .arrow,
.bs-popover-auto[x-placement^=left] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-left > .arrow::before,
.bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-left > .arrow::after,
.bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 50%/100% 100% no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: none;
  }
}

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentcolor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    animation-duration: 1.5s;
  }
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #88c349 !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #6ea336 !important;
}

.bg-secondary {
  background-color: #55547A !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #403f5c !important;
}

.bg-success {
  background-color: #00C99C !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #009674 !important;
}

.bg-info {
  background-color: #15B2EC !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #0f8fbf !important;
}

.bg-warning {
  background-color: #F3AF4E !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #f0991e !important;
}

.bg-danger {
  background-color: #FB7178 !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #fa3f49 !important;
}

.bg-light {
  background-color: #b9e18e !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #a0d666 !important;
}

.bg-dark {
  background-color: #55547A !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #403f5c !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #88c349 !important;
}

.border-secondary {
  border-color: #55547A !important;
}

.border-success {
  border-color: #00C99C !important;
}

.border-info {
  border-color: #15B2EC !important;
}

.border-warning {
  border-color: #F3AF4E !important;
}

.border-danger {
  border-color: #FB7178 !important;
}

.border-light {
  border-color: #b9e18e !important;
}

.border-dark {
  border-color: #55547A !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

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

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #88c349 !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #61902f !important;
}

.text-secondary {
  color: #55547A !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #35354d !important;
}

.text-success {
  color: #00C99C !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #007d61 !important;
}

.text-info {
  color: #15B2EC !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #0e7ea7 !important;
}

.text-warning {
  color: #F3AF4E !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #e58d10 !important;
}

.text-danger {
  color: #FB7178 !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #f92731 !important;
}

.text-light {
  color: #b9e18e !important;
}

a.text-light:hover,
a.text-light:focus {
  color: #94d152 !important;
}

.text-dark {
  color: #55547A !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: #35354d !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

@page {
    size: a3;
}

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

.toast-title {
  font-weight: bold;
}

.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.toast-message a,
.toast-message label {
  color: #ffffff;
}

.toast-message a:hover {
  color: #cccccc;
  text-decoration: none;
}

.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}

.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/

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

.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-left {
  top: 12px;
  left: 12px;
}

.toast-top-right {
  top: 12px;
  right: 12px;
}

.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}

.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

#toast-container {
  position: fixed;
  z-index: 999999;
  /*overrides*/
}

#toast-container * {
  box-sizing: border-box;
}

#toast-container > div {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  box-shadow: 0 0 12px #999999;
  color: #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}

#toast-container > div:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}

#toast-container > .toast-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}

#toast-container > .toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}

#toast-container > .toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}

#toast-container > .toast-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}

#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.toast {
  background-color: #030303;
}

.toast-success {
  background-color: #51a351;
}

.toast-error {
  background-color: #bd362f;
}

.toast-info {
  background-color: #2f96b4;
}

.toast-warning {
  background-color: #f89406;
}

.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

/*Responsive Design*/

@media all and (max-width: 240px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }

  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }

  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

.skin-crater .main-content {
  background: #F9FBFF;
}

.skin-crater .no-data-info .title {
  font-weight: 500;
  font-size: 17.5px;
}

.skin-crater .no-data-info .description {
  font-size: 15px;
  color: #595959;
}

.skin-crater .site-header {
  background: linear-gradient(to right, #b9e18e, #88c349);
  border-bottom: 1px solid rgba(230, 230, 230, 0.7);
}

.skin-crater .site-header .brand-main {
  color: #fff;
  font-size: 20px;
  font-family: poppins, sans-serif;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 1px;
}

.skin-crater .site-header .nav-toggle {
  background-color: #fff;
  color: #040405;
}

.skin-crater .site-header .hamburger span {
  background: #040405;
}

.skin-crater .site-header .hamburger-inner,
.skin-crater .site-header .hamburger-inner::before,
.skin-crater .site-header .hamburger-inner::after {
  background-color: #040405;
}

.skin-crater .site-header .hamburger span::before,
.skin-crater .site-header .hamburger span::after {
  background-color: #040405;
}

.skin-crater .site-header .action-list li a {
  background-color: #fff;
  color: #040405;
}

.skin-crater .site-header .action-list li a:hover {
  background-color: #f2f2f2;
  color: #040405;
}

.skin-crater .site-header .dropdown-menu {
  background-color: #fff;
}

.skin-crater .site-header .notification-dropdown .dropdown-header {
  border-bottom: 1px solid #EBF1FA;
  color: #88c349;
}

.skin-crater .site-header .dropdown-divider {
  background-color: #A5ACC1;
}

.skin-crater .header-nav .dropdown-group.dropdown-group.active > .dropdown-activator > a {
  color: #88c349;
}

.skin-crater .header-nav .dropdown-group.has-child.toggle-arrow.active > .dropdown-activator::after {
  border-color: #88c349 transparent transparent;
}

.skin-crater .sidebar-left {
  background-color: #fff;
  border-right: 1px solid #EBF1FA;
}

.skin-crater .side-nav {
  margin: 20px 0 0 0;
}

.skin-crater .side-nav .side-nav-division {
  margin-bottom: 20px;
}

.skin-crater .side-nav .collapse-group .collapse-group-item a {
  color: #040405;
  font-family: poppins, sans-serif;
  font-size: 14px;
}

.skin-crater .side-nav .collapse-group .collapse-group-item a:hover {
  background-color: #d7e3f5;
}

.skin-crater .side-nav .collapse-group .collapse-group-item.active > .collapse-item-title > a {
  color: #88c349;
}

.skin-crater .side-nav .collapse-group .collapse-group-item .collapse-item-title i {
  color: #A5ACC1;
}

.skin-crater .side-nav .collapse-group .collapse-group-item.active i {
  color: #88c349;
}

.skin-crater .side-nav .collapse-group .collapse-group-item .collapse-group-items {
  background-color: #EBF1FA;
}

.skin-crater .side-nav .collapse-group .collapse-group-item .collapse-group-items .collapse-group-items {
  background-color: #d7e3f5;
}

.skin-crater .side-nav .collapse-group .collapse-group-item .collapse-group-items .collapse-group-items .collapse-group-items {
  background-color: #cadaf2;
}

.skin-crater .side-nav .collapse-group .collapse-group-item .collapse-group-items a.active {
  color: #88c349;
}

.skin-crater .header-bottom {
  background-color: #fff;
  border-bottom: 1px solid #B9C1D1;
}

.skin-crater .header-nav li a {
  color: #040405;
}

.skin-crater .header-nav li a:hover {
  background-color: #d7e3f5;
  color: #040405;
}

.skin-crater .header-nav li.active > a {
  color: #88c349;
  background-color: transparent;
}

.skin-crater .header-nav li.active > a:hover {
  color: #88c349;
  background-color: transparent;
}

.skin-crater .header-nav li .dropdown-item.active {
  color: #88c349;
  background-color: transparent;
}

.skin-crater .header-nav li .dropdown-item.active:hover,
.skin-crater .header-nav li .dropdown-item.active:focus,
.skin-crater .header-nav li .dropdown-item.active:active {
  color: #88c349;
  background-color: #d7e3f5;
}

.skin-crater .tabs-component.tabs-default .tabs-component-tab a {
  color: #040405;
}

.skin-crater .tabs-component.tabs-default .tabs-component-tab a:hover {
  color: #040405;
}

.skin-crater .tabs-component.tabs-default .tabs-component-tab.is-active {
  border: 1px solid #88c349;
  background: #88c349;
  color: #fff;
}

.skin-crater .tabs-component.tabs-default .tabs-component-tab.is-active a {
  color: #fff;
}

.skin-crater .tabs-component.tabs-default .tabs-component-tab:hover {
  border: 1px solid #88c349;
}

.skin-crater .tabs-component.tabs-default .tabs-component-panels {
  border-top: 1px solid #88c349 !important;
}

.skin-crater .tabs-component.tabs-vertical .tabs-component-tabs {
  border-right: 1px solid #88c349 !important;
}

.skin-crater .tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab a,
.skin-crater .tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab a:hover {
  color: #040405;
}

.skin-crater .tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab.is-active {
  background: #88c349;
}

.skin-crater .tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab.is-active a {
  color: #fff;
}

.skin-crater .tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab:hover {
  border: 1px solid #88c349;
}

.skin-crater .tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab a {
  color: #A5ACC1;
  font-weight: 500;
}

.skin-crater .tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab a:hover {
  color: #A5ACC1;
  border-bottom: 3px solid #A5ACC1;
}

.skin-crater .tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab.is-active {
  border-bottom: 3px solid #88c349;
  color: #fff;
}

.skin-crater .tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab.is-active a {
  color: #040405;
}

.skin-crater .tabs-component.tabs-simple .tabs-component-panels {
  border-top: 1px solid #EBF1FA !important;
}

.skin-crater .tabs-component.tabs-simple-vertical .tabs-component-tabs {
  border-right: 1px solid #ddd;
}

.skin-crater .tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab a {
  color: #A5ACC1;
  font-weight: 500;
}

.skin-crater .tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab a:hover {
  border-right: 3px solid #d3e9bc;
}

.skin-crater .tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab.is-active {
  border-right: 3px solid #88c349;
  color: #88c349;
}

.skin-crater code,
.skin-crater .code {
  background-color: #EBF1FA;
  color: #88c349;
}

.skin-crater mark,
.skin-crater .mark {
  background-color: #88c349;
  color: #fff;
}

.skin-crater .todo-container {
  background-color: #88c349 !important;
  color: #fff !important;
}

.skin-crater .todo-container h5 {
  color: #fff !important;
}

.skin-crater .vue-dropzone .dz-preview .dz-details {
  background-color: #88c349 !important;
  color: #fff !important;
}

.skin-crater .vue-dropzone .dz-preview .dz-upload {
  background: #fff !important;
}

.skin-crater .vue-dropzone .dz-preview .dz-error-mark svg #Page-1 g {
  fill: #fff !important;
}

.skin-crater .vue-dropzone .dz-preview .dz-success-mark svg g path {
  fill: white !important;
}

.skin-crater .vue-dropzone .dz-preview .dz-remove {
  color: #fff !important;
  border: 2px #fff solid !important;
}

.skin-crater .dropdown-group.active > .dropdown-activator > a {
  color: #88c349;
}

.skin-crater .dropdown-group .dropdown-activator a {
  color: #040405;
}

.skin-crater .dropdown-group .dropdown-activator a:hover {
  background-color: #EBF1FA;
}

.skin-crater .dropdown-group.has-child.toggle-arrow.active > .dropdown-activator::after {
  border-color: #88c349 transparent transparent;
}

.skin-crater .dropdown-group .dropdown-container {
  color: #040405;
  background-color: #fff;
}

.skin-crater .dropdown-group .dropdown-container .dropdown-group-item .dropdown-item {
  color: #040405;
  background-color: transparent;
  cursor: pointer;
}

.skin-crater .dropdown-group .dropdown-container .dropdown-group-item .dropdown-item.active {
  color: #88c349;
}

.skin-crater .dropdown-group .dropdown-container .dropdown-group-item .dropdown-item:hover {
  background-color: #EBF1FA;
}

.skin-crater .dropdown-group .dropdown-container .dropdown-activator::before {
  border-color: #040405 transparent transparent;
}

.skin-crater .dropdown-group .dropdown-container .dropdown-group.active .dropdown-activator a {
  color: #88c349;
}

.skin-crater .dropdown-group .dropdown-container .dropdown-group.active .dropdown-activator::before {
  border-color: #88c349 transparent transparent;
}

.skin-crater .dropdown-group .dropdown-item-divider {
  border-top: 1px solid #A5ACC1;
}

.skin-crater .btn-theme {
  background: #88c349;
  color: #fff;
}

.skin-crater .btn-theme:hover {
  color: #fff;
  background: #92c858;
}

.skin-crater .btn-theme-outline {
  color: #88c349;
  border-color: #88c349;
}

.skin-crater .btn-theme-outline:hover {
  color: #212529;
  background-color: #88c349;
  border-color: #88c349;
}

.skin-crater .btn-theme-outline:focus,
.skin-crater .btn-theme-outline.focus {
  box-shadow: 0 0 0 0.2rem rgba(136, 195, 73, 0.5);
}

.skin-crater .btn-theme-outline.disabled,
.skin-crater .btn-theme-outline:disabled {
  color: #88c349;
  background-color: transparent;
}

.skin-crater .btn-theme-outline:not(:disabled):not(.disabled):active,
.skin-crater .btn-theme-outline:not(:disabled):not(.disabled).active,
.show > .skin-crater .btn-theme-outline.dropdown-toggle {
  color: #212529;
  background-color: #88c349;
  border-color: #88c349;
}

.skin-crater .btn-theme-outline:not(:disabled):not(.disabled):active:focus,
.skin-crater .btn-theme-outline:not(:disabled):not(.disabled).active:focus,
.show > .skin-crater .btn-theme-outline.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(136, 195, 73, 0.5);
}

.skin-crater .form-control:focus {
  border: 1px solid #88c349;
}

.skin-crater .multiselect {
  color: #040405;
}

.skin-crater .multiselect .multiselect__option--highlight {
  background: #F9FBFF;
  color: #040405;
}

.skin-crater .multiselect .multiselect__option--highlight.multiselect__option--selected {
  background: #EBF1FA;
  color: #040405;
}

.skin-crater .multiselect .multiselect__option--highlight.multiselect__option--selected::after {
  background: #B9C1D1;
  color: #040405;
}

.skin-crater .multiselect .multiselect__option--highlight::after {
  background: #B9C1D1;
  color: #040405;
}

.skin-crater .multiselect .multiselect__tags-wrap .multiselect__tag {
  background: #88c349;
  color: #fff;
}

.skin-crater .multiselect .multiselect__tags-wrap .multiselect__tag .multiselect__tag-icon:hover {
  background: #88c349;
}

.skin-crater .multiselect .multiselect__tags-wrap .multiselect__tag .multiselect__tag-icon::after {
  color: #fff;
}

.skin-crater .vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day:hover,
.skin-crater .vdp-datepicker__calendar .cell:not(.blank):not(.disabled).month:hover,
.skin-crater .vdp-datepicker__calendar .cell:not(.blank):not(.disabled).year:hover {
  border: 1px solid #88c349 !important;
}

.skin-crater .vdp-datepicker__calendar .cell.selected {
  background: #88c349 !important;
  color: #fff;
}

.skin-crater .vdp-datepicker__calendar .cell.highlighted {
  background: #c7e3a9 !important;
  color: #fff;
}

.skin-crater .VueCarousel-dot .VueCarousel-dot-button {
  background: #A5ACC1 !important;
}

.skin-crater .VueCarousel-dot.VueCarousel-dot--active .VueCarousel-dot-button {
  background: #88c349 !important;
}

.skin-crater .mailbox .mailbox-content .table tr td .content-subject {
  color: #040405;
}

.skin-crater .mailbox .mailbox-content .mailbox-content-footer .page-link {
  color: #040405;
}

.skin-crater .mailbox .mailbox-content .mailbox-content-footer .active .page-link {
  background-color: #88c349;
  border-color: #88c349;
  color: #fff;
}

.skin-crater .mailbox .mailbox-content .btn-favorite .active {
  color: #88c349;
}

.skin-crater .mailbox-modal .mail-body .message-heading.email a {
  color: #040405;
}

.skin-crater .mailbox .mailbox-sidebar .sidebar-menu li.active {
  border-left: 5px solid #88c349;
}

.skin-crater .mailbox .mailbox-sidebar .sidebar-menu li a {
  color: #040405;
}

.skin-crater .mailbox .mailbox-sidebar .left-sidebar-btn {
  color: #040405;
}

@media (max-width: 480px) {
  .skin-crater .header-nav .dropdown-menu {
    border: 0 !important;
    background-color: #EBF1FA !important;
  }
}

html,
body,
.site-wrapper {
  height: 100%;
  font-size: 14px;
}

body {
  background-color: #EBF1FA;
  font-family: "Poppins", sans-serif;
  color: #262630;
  overflow-x: hidden;
}

body i {
  font-family: "Font Awesome 5 Free" !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #040405;
  font-weight: bold;
}

a {
  color: #263B5E;
}

a:hover,
a:focus {
  color: #355282;
  text-decoration: none;
  outline: none;
}

mark,
.mark {
  background-color: #efefef;
  border-radius: 5px;
  color: #040405;
  padding: 0.2em 0.4em;
  margin: 0 1px;
}

code,
.code {
  background-color: #040405;
  color: #88c349;
}

:active,
:focus,
:hover {
  outline: 0;
}

[v-cloak] {
  display: none;
}

.text-default {
  color: #040405 !important;
}

.text-blue {
  color: #185FEE;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.fa-spinner {
  animation: spinner 1.5s linear infinite;
}

.filter-section {
  background: #EBF1FA;
  position: relative;
  z-index: 2;
  padding: 30px;
  border-radius: 5px;
}

.clear-filter {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 14px;
  line-height: 21px;
  color: #040405;
  cursor: pointer;
}

.list-add-button {
  display: flex;
  width: 100%;
  padding: 13px 10px;
  background: #EBF1FA;
  justify-content: center;
  border: none;
  outline: none;
  align-items: center;
}

.list-add-button .icon {
  color: #b9e18e;
}

.list-add-button label {
  font-family: Poppins;
  font-size: 14px;
  margin: 0 0 0 10px !important;
  line-height: 14px;
  color: #b9e18e;
}

.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swal-icon--custom {
  height: 70px !important;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #88c349 !important;
  background-color: #88c349 !important;
}

.avatar-cropper-btn:hover {
  background-color: #88c349 !important;
  color: #fff;
}

.disabled {
  pointer-events: none;
  opacity: 0.3;
}

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.flex-content-right {
  display: flex;
  justify-content: flex-end;
}

.flex-vertical-center {
  display: flex;
  align-items: center;
}

.flex-vertical-end {
  display: flex;
  align-items: flex-end;
}

.flex-row {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.flex-row .flex-1 {
  flex: 1;
}

.flex-row .space-left {
  padding-left: 5px;
}

.flex-row.flex-right {
  justify-content: flex-end;
  padding-right: 10px;
}

.table-button {
  background: none;
  border: none;
  color: #b9e18e;
  font-size: 15px;
  padding: 0;
}

.bg-zebra {
  background: #ececec !important;
}

.bg-yellow {
  background: rgb(255, 247, 135) !important;
}

.bg-green {
  background: rgb(166, 255, 173) !important;
}

.bg-red {
  background: rgb(236, 110, 110) !important;
}

.bg-gray {
  background: #E5E7EB;
}

.clickable {
  cursor: pointer;
}

.nomina-icon {
  height: 16px;
  width: 16px;
}

.table-title {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  color: #263B5E;
  letter-spacing: 0.3px;
  padding: 0.5rem 0.3rem 0.5rem 0.9rem;
}

.margin-align-right {
  margin: 0 0 0 auto;
}

.site-header {
  background-color: #88c349;
  height: 60px;
  left: 0;
  padding: 12px 30px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.sidebar-left {
  background: #55547A;
  height: 100%;
  left: 0;
  padding: 60px 0 10px;
  position: fixed;
  top: 0;
  width: 240px;
  z-index: 30;
}

.sidebar-body {
  height: 100%;
  overflow-y: auto;
}

.sidebar-body::-webkit-scrollbar {
  -webkit-appearance: none;
}

.sidebar-body::-webkit-scrollbar:vertical {
  width: 8px;
}

.sidebar-body::-webkit-scrollbar:horizontal {
  height: 8px;
}

.sidebar-body::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0.3);
}

.sidebar-body::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 8px;
}

.mobile-menu-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 29;
  background: rgba(48, 75, 88, 0.5);
  display: none;
}

.layout-default .main-content,
.layout-icon-sidebar .main-content {
  padding: 90px 30px 10px 270px;
  min-height: calc(100% - 39px);
}

.site-footer {
  background-color: #fff;
  color: #818a91;
  font-size: 13px;
  font-weight: normal;
  padding: 10px 30px 10px 255px;
}

.site-footer a {
  color: #263B5E;
}

.page-header {
  margin-bottom: 30px;
  position: relative;
}

.page-header p {
  font-size: 13px;
}

.page-header select {
  border: none;
}

.page-header .breadcrumb {
  background: none;
  padding: 0;
}

.page-header .page-actions {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}

.template-container {
  height: 100%;
}

@media (max-width: 767px) {
  .site-header {
    padding: 12px 15px;
  }

  .sidebar-left {
    left: -240px;
    transition: left 0.3s ease;
  }

  .sidebar-open .sidebar-left {
    left: 0;
  }

  .sidebar-open .mobile-menu-overlay {
    display: block;
  }

  .layout-default .main-content,
  .layout-icon-sidebar .main-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .site-footer {
    padding-left: 15px;
  }
}

.sidebar-left .menu-group {
  margin-bottom: 40px;
}

.sidebar-left .menu-group:first-child {
  margin-top: 29px;
}

.sidebar-left .menu-item {
  cursor: pointer;
  padding: 10px 0px 11px 0px;
  display: block;
}

.sidebar-left .menu-item .menu-text {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #040405;
}

.sidebar-left .menu-item .menu-icon {
  margin-left: 25px;
  color: #A5ACC1;
  width: 30px;
  margin-left: 25px;
  display: inline-block;
  font-size: inherit;
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}

.sidebar-left .active {
  background-color: #F9FBFF;
  position: relative;
}

.sidebar-left .active::after {
  position: absolute;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  width: 3px;
  background-color: #88c349;
}

.sidebar-left .active .menu-text {
  color: #5c496c !important;
}

.sidebar-left .active .menu-icon {
  color: #88c349 !important;
}

.brand-main img {
  height: 45px;
}

.nav-toggle {
  background-color: #040405;
  border-radius: 2px;
  color: #fff;
  display: none;
  font-size: 14px;
  line-height: 9px;
  padding: 6px;
}

.nav-toggle:active,
.nav-toggle:focus,
.nav-toggle:visited {
  color: #fff;
}

.action-list {
  float: right;
  list-style: none;
  margin: 0;
}

.action-list li {
  display: block;
  float: left;
  position: relative;
  height: 36px;
  margin: 0;
  padding: 0 4px;
}

.action-list li.action-item a {
  padding: 11px;
}

.action-list li .icon {
  color: #9EA9C4;
}

.action-list li a {
  background-color: #040405;
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-size: 14px !important;
  line-height: 14px !important;
  padding: 11px !important;
}

.action-list li a:hover {
  background-color: #0f0f13;
  color: #fff;
}

.action-list .avatar {
  padding: 0 !important;
  background-color: transparent;
}

.action-list .avatar img {
  width: 36px;
  height: 36px;
  border-radius: 2px;
}

.action-list .dropdown-group {
  background-color: #040405;
}

.action-list .dropdown-group i {
  text-align: center;
  width: auto;
}

.action-list .dropdown-group.has-child > .dropdown-activator::after {
  content: none;
}

.action-list .dropdown-group .dropdown-group-item i {
  width: 25px;
}

.action-list .notification-dropdown {
  padding: 5px !important;
}

.action-list .notification-dropdown .dropdown-header {
  border-bottom: 1px solid #A5ACC1;
  color: #88c349;
  padding: 3px 10px 8px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .nav-toggle {
    display: inline-block;
    margin-left: 10px;
  }

  .brand-main {
    float: left;
  }

  .brand-main img {
    height: 36px;
    margin-bottom: 3px;
  }
}

.side-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-nav .current-customer {
  padding: 10px;
  background: #F9FBFF;
  margin-bottom: 15px;
}

.side-nav .collapse-group .collapse-group-item .collapse-item-title {
  display: block;
}

.side-nav .collapse-group .collapse-group-item .collapse-item-title > a > .icon-fa.arrow {
  float: right;
  line-height: 1.42857;
}

.side-nav .collapse-group .collapse-group-item .collapse-item-title > a > .icon-fa.arrow:before {
  content: "\F104";
}

.side-nav .collapse-group .collapse-group-item a {
  color: #fff;
  display: block;
  font-size: 14px;
  padding: 12px 12px 12px 30px;
  position: relative;
  text-decoration: none;
}

.side-nav .collapse-group .collapse-group-item a:hover {
  background-color: #1b1b21;
}

.side-nav .collapse-group .collapse-group-item .icon {
  width: 30px;
  color: #9EA9C4;
}

.side-nav .collapse-group .collapse-group-item.active > .collapse-item-title > a .icon {
  color: #88c349;
}

.side-nav .collapse-group .collapse-group-item.active > .collapse-item-title > a .icon > .icon-fa.arrow:before {
  content: "\F107";
}

.side-nav .collapse-group .collapse-group-item .collapse-group-items {
  background-color: #0b0b0e;
  padding: 0;
}

.side-nav .collapse-group .collapse-group-item .collapse-group-items .collapse-group-items {
  background-color: #16161c;
}

.side-nav .collapse-group .collapse-group-item .collapse-group-items .collapse-group-items .collapse-group-items {
  background-color: #1d1d24;
}

.side-nav .collapse-group .collapse-group-item .collapse-group-items a.active {
  color: #88c349;
}

.base-date-input {
  width: 100%;
  position: relative;
}

.base-date-input .date-field {
  width: 100%;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #EBF1FA;
  box-sizing: border-box;
  border-radius: 5px;
  display: inline-block;
  padding: 0px 6px 0px 40px;
  font-size: 1rem;
  line-height: 1.4;
  cursor: pointer;
}

.base-date-input .date-field:focus {
  border: 1px solid #b9e18e;
}

.base-date-input .date-field.invalid {
  border: 1px solid #FB7178 !important;
}

.vdp-datepicker__calendar-button {
  position: absolute;
  width: 13px;
  height: 18px;
  color: #B9C1D1;
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
  line-height: 16px;
  top: 50%;
  left: 20px;
  transform: translate(-50%, -50%);
}

.vdp-datepicker__calendar-button .icon-fa {
  color: #B9C1D1;
}

.base-input {
  width: 100%;
  position: relative;
}

.base-input .left-icon {
  position: absolute;
  width: 13px;
  height: 18px;
  min-width: 40px;
  color: #B9C1D1;
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
  line-height: 16px;
  top: 50%;
  left: 20px;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.base-input .right-input-group-text {
  position: absolute;
  width: 13px;
  height: 18px;
  min-width: 18px;
  color: #B9C1D1;
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
  line-height: 16px;
  top: 50%;
  right: 0px;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.base-input .right-icon {
  position: absolute;
  width: 13px;
  height: 18px;
  min-width: 18px;
  color: #B9C1D1;
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
  line-height: 16px;
  top: 50%;
  right: 0px;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.base-input .small-input {
  max-width: 100px;
}

.base-input .input-field {
  width: 100%;
  height: 40px;
  padding: 8px 13px;
  text-align: left;
  background: #FFFFFF;
  border: 1px solid #EBF1FA;
  box-sizing: border-box;
  border-radius: 5px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}

.base-input .input-field.v-money {
  font-family: Arial, Helvetica, sans-serif !important;
}

.base-input .input-field::-moz-placeholder {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #B9C1D1;
}

.base-input .input-field::placeholder {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #B9C1D1;
}

.base-input .input-field:focus {
  border: 1px solid #b9e18e;
}

.base-input .input-field.invalid {
  border: 1px solid #FB7178 !important;
}

.base-input .input-field.disabled {
  background: #EBF1FA !important;
  color: #A5ACC1 !important;
}

.base-input .input-field-left-icon {
  padding-left: 35px;
}

.base-input .input-field-right-icon {
  padding-right: 35px;
}

.base-button {
  height: 40px;
  padding: 6px 20px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  white-space: nowrap;
  line-height: 14px;
}

.base-button.btn-lg,
.btn-group-lg > .base-button.btn {
  height: 45px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.base-button.btn-sm,
.btn-group-sm > .base-button.btn {
  height: 34px;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.base-button.btn-danger {
  color: #ffffff !important;
}

.base-button.btn-outline-danger:hover {
  color: #ffffff !important;
}

.base-button .icon-button {
  text-align: center;
}

.base-button .icon-left {
  margin-right: 10px !important;
}

.base-button .icon-right {
  margin-left: 10px !important;
}

.base-button.btn-cursor-not-allowed {
  cursor: not-allowed !important;
}

.base-button .icon {
  margin-right: 5px;
}

.search-select {
  position: relative;
  width: 100%;
}

.search-select .activator {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.search-select .selector-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 100;
  width: 100%;
  top: 0;
  background: #FFFFFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

.search-select .selector-menu-above {
  top: unset !important;
  bottom: 100% !important;
}

.base-text-area {
  width: 100%;
}

.base-text-area.text-area-field {
  width: 100%;
  padding: 8px 13px;
  text-align: left;
  background: #FFFFFF;
  border: 1px solid #EBF1FA;
  box-sizing: border-box;
  border-radius: 5px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
}

.base-text-area.text-area-field::-moz-placeholder {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #B9C1D1;
}

.base-text-area.text-area-field::placeholder {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #B9C1D1;
}

.base-text-area.text-area-field:focus {
  border: 1px solid #b9e18e;
}

.base-text-area.text-area-field.invalid {
  border: 1px solid #FB7178 !important;
}

.base-text-area.text-area-field.disabled {
  background: #EBF1FA !important;
  color: #A5ACC1 !important;
}

.base-text-area.text-area-field-icon {
  padding-left: 35px;
}

.base-switch input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}

.base-switch label {
  cursor: pointer;
  text-indent: -9999px;
  width: 35px;
  height: 16px;
  background: #fff;
  border: 1px solid #B9C1D1;
  display: block;
  border-radius: 16px;
  position: relative;
}

.base-switch label:after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0px;
  width: 20px;
  height: 20px;
  background: #A5ACC1;
  border-radius: 15px;
  transition: 0.3s;
}

.base-switch input:checked + label {
  background: rgba(88, 81, 216, 0.2);
}

.base-switch input:checked + label:after {
  left: calc(100% - 0px);
  transform: translateX(-100%);
  background: #88c349;
}

.base-switch label:active:after {
  width: 20px;
}

@keyframes ball-scale-ripple-multiple {
  0% {
    transform: scale(0.1);
    opacity: 1;
  }

  70% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    opacity: 0;
  }
}

.loader {
  width: 100%;
  position: relative;
  min-height: 500px;
}

.ball-scale-ripple-multiple {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  transform: translateY(-25px);
  top: 60%;
  left: 40%;
  transform: translateY(-25px);
}

.ball-scale-ripple-multiple > div:nth-child(0) {
  animation-delay: -0.8s;
}

.ball-scale-ripple-multiple > div:nth-child(1) {
  animation-delay: -0.6s;
}

.ball-scale-ripple-multiple > div:nth-child(2) {
  animation-delay: -0.4s;
}

.ball-scale-ripple-multiple > div:nth-child(3) {
  animation-delay: -0.2s;
}

.ball-scale-ripple-multiple > div {
  animation-fill-mode: both;
  position: absolute;
  top: -2px;
  left: -26px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid #b9e18e;
  animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
}

.base-prefix-input {
  display: flex;
  position: relative;
  width: 100%;
  height: 40px;
  padding: 2px 2px;
  flex-direction: row;
  background: #FFFFFF;
  border: 1px solid #EBF1FA;
  border-radius: 5px;
}

.base-prefix-input .icon {
  width: 13px;
  height: 18px;
  color: #B9C1D1;
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
  line-height: 16px;
  margin-top: 17px;
  margin-left: 20px;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.base-prefix-input p {
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}

.base-prefix-input .prefix-label {
  display: flex;
  height: 18px;
  color: #55547A;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  padding: 9px 2px 9px 10px;
}

.base-prefix-input .prefix-input-field {
  width: 100%;
  padding: 8px 13px;
  padding-left: 1px;
  text-align: left;
  background: #FFFFFF;
  border: none;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}

.tooltip {
  display: block !important;
  z-index: 10000;
}

.tooltip .tooltip-inner {
  background: black;
  color: white;
  border-radius: 16px;
  padding: 5px 10px 4px;
}

.tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
  border-color: black;
  z-index: 1;
}

.tooltip[x-placement^=top] {
  margin-bottom: 5px;
}

.tooltip[x-placement^=top] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  bottom: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}

.tooltip[x-placement^=bottom] {
  margin-top: 5px;
}

.tooltip[x-placement^=bottom] .tooltip-arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top-color: transparent !important;
  top: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}

.tooltip[x-placement^=right] {
  margin-left: 5px;
}

.tooltip[x-placement^=right] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  left: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}

.tooltip[x-placement^=left] {
  margin-right: 5px;
}

.tooltip[x-placement^=left] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  right: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}

.tooltip.popover .popover-inner {
  background: #f9f9f9;
  color: black;
  padding: 24px;
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.tooltip.popover .popover-arrow {
  border-color: #f9f9f9;
}

.tooltip[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s, visibility 0.15s;
}

.tooltip[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.15s;
}

.btn {
  font-family: "Poppins", sans-serif;
}

.btn.btn-pressable:active {
  transform: translate(0px, 3px);
  -webkit-transform: translate(0px, 3px);
}

.btn:focus,
.btn.focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
  outline: none;
}

.btn-default {
  border: 1px solid #B9C1D1;
  background-color: #fff;
}

.btn-default:hover,
.btn-default:active,
.btn-default:focus {
  background-color: #EBF1FA;
}

.btn-outline-default {
  border: 1px solid #B9C1D1;
  background-color: #fff;
}

.btn-outline-default:hover,
.btn-outline-default:active,
.btn-outline-default:focus {
  background-color: #EBF1FA;
}

.btn-theme {
  color: #212529;
  background-color: #88c349;
  border-color: #88c349;
}

.btn-theme:hover {
  color: #fff;
  background-color: #75ad39;
  border-color: #6ea336;
}

.btn-theme:focus,
.btn-theme.focus {
  color: #fff;
  background-color: #75ad39;
  border-color: #6ea336;
  box-shadow: 0 0 0 0.2rem rgba(121, 171, 68, 0.5);
}

.btn-theme.disabled,
.btn-theme:disabled {
  color: #212529;
  background-color: #88c349;
  border-color: #88c349;
}

.btn-theme:not(:disabled):not(.disabled):active,
.btn-theme:not(:disabled):not(.disabled).active,
.show > .btn-theme.dropdown-toggle {
  color: #fff;
  background-color: #6ea336;
  border-color: #689a33;
}

.btn-theme:not(:disabled):not(.disabled):active:focus,
.btn-theme:not(:disabled):not(.disabled).active:focus,
.show > .btn-theme.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(121, 171, 68, 0.5);
}

.btn-outline-theme {
  color: #88c349;
  border-color: #88c349;
}

.btn-outline-theme:hover {
  color: #212529;
  background-color: #88c349;
  border-color: #88c349;
}

.btn-outline-theme:focus,
.btn-outline-theme.focus {
  box-shadow: 0 0 0 0.2rem rgba(136, 195, 73, 0.5);
}

.btn-outline-theme.disabled,
.btn-outline-theme:disabled {
  color: #88c349;
  background-color: transparent;
}

.btn-outline-theme:not(:disabled):not(.disabled):active,
.btn-outline-theme:not(:disabled):not(.disabled).active,
.show > .btn-outline-theme.dropdown-toggle {
  color: #212529;
  background-color: #88c349;
  border-color: #88c349;
}

.btn-outline-theme:not(:disabled):not(.disabled):active:focus,
.btn-outline-theme:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-theme.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(136, 195, 73, 0.5);
}

.btn-theme-light {
  color: #212529;
  background-color: #b9e18e;
  border-color: #b9e18e;
}

.btn-theme-light:hover {
  color: #212529;
  background-color: #a6d970;
  border-color: #a0d666;
}

.btn-theme-light:focus,
.btn-theme-light.focus {
  color: #212529;
  background-color: #a6d970;
  border-color: #a0d666;
  box-shadow: 0 0 0 0.2rem rgba(162, 197, 127, 0.5);
}

.btn-theme-light.disabled,
.btn-theme-light:disabled {
  color: #212529;
  background-color: #b9e18e;
  border-color: #b9e18e;
}

.btn-theme-light:not(:disabled):not(.disabled):active,
.btn-theme-light:not(:disabled):not(.disabled).active,
.show > .btn-theme-light.dropdown-toggle {
  color: #212529;
  background-color: #a0d666;
  border-color: #9ad45c;
}

.btn-theme-light:not(:disabled):not(.disabled):active:focus,
.btn-theme-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-theme-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(162, 197, 127, 0.5);
}

.btn-rounded {
  border-radius: 20px;
}

.btn i {
  width: 1.2em;
  text-align: left;
}

.btn-icon {
  padding: 0.6rem;
  line-height: 1em;
}

.btn-icon i {
  text-align: center;
}

.btn-xs {
  font-size: 12px;
  padding: 3px 10px;
}

.btn-full {
  width: 100%;
}

.ladda-button {
  overflow: visible !important;
}

.btn-success,
.btn-warning,
.btn-info {
  color: #fff;
}

.btn-success:hover,
.btn-warning:hover,
.btn-info:hover {
  color: #fff;
}

.btn-group .btn-group .dropdown-group .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

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

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

.btn-group-vertical > .btn-group .dropdown-group .btn {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.btn-crater {
  width: 148px;
  height: 45px;
  border-radius: 5px;
  font-family: poppins;
  font-weight: 600;
  font-size: 15px;
}

.btn-crater .btn-label {
  margin: 0 0 0 0;
}

.btn-crater:focus {
  outline: 10px auto #b9e18e;
}

.btn-crater:disabled {
  opacity: 0.5;
}

.btn-crater-default {
  color: #FFFFFF;
  background: #88c349;
  border: 1px solid #88c349;
}

.btn-crater-default .icon-fa-spinner {
  color: #ffffff;
}

.btn-crater-default:hover {
  background: #635BF2;
}

.btn-crater-hollow {
  border: 1px solid #88c349;
  color: #88c349;
  background: #ffffff;
}

.btn-crater-hollow .icon-fa-spinner {
  color: #88c349;
}

.btn-crater-hollow:hover {
  opacity: 0.9;
  color: #88c349;
}

.form-control:focus {
  border-color: #ffde00;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 222, 0, 0.1607843137);
}

.card {
  margin-bottom: 1.5rem;
  border: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.card .card-header {
  position: relative;
  border-bottom: 1px solid #EBF1FA;
}

.card .card-header::after {
  display: block;
  clear: both;
  content: "";
}

.card .card-header i {
  width: 1.3em;
}

.card .card-header h6 {
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
}

.card .card-header h3 {
  font-weight: normal;
  margin: 0;
  font-size: 1.25rem;
}

.card .card-header h5 {
  margin: 0;
  font-weight: normal;
}

.card .card-header.bg-dark {
  background-color: #55547A;
  color: #fff;
}

.card .card-header .caption {
  display: inline-block;
  padding: 8px 0;
}

.card .card-header .actions {
  float: right;
  margin: auto;
}

.card .card-body {
  padding: 30px;
}

.card .section-semi-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 400;
}

.card .card-footer {
  background-color: #fff;
}

.card.with-tabs .card-header {
  padding: 0;
}

.card.with-tabs .card-header .caption {
  padding: 20px;
}

.card.with-tabs .card-header .actions {
  padding-right: 20px;
}

.card.with-tabs .card-header .nav-tabs {
  border-bottom: none;
}

.card.with-tabs .card-header .nav-link {
  padding: 1em 1.5em;
}

.card .bg-primary h3,
.card .bg-primary h5,
.card .bg-primary h6,
.card .bg-info h3,
.card .bg-info h5,
.card .bg-info h6,
.card .bg-primary h3,
.card .bg-primary h5,
.card .bg-primary h6,
.card .bg-dark h3,
.card .bg-dark h5,
.card .bg-dark h6,
.card .bg-success h3,
.card .bg-success h5,
.card .bg-success h6,
.card .bg-danger h3,
.card .bg-danger h5,
.card .bg-danger h6,
.card .bg-warning h3,
.card .bg-warning h5,
.card .bg-warning h6 {
  color: #fff;
}

@media (max-width: 992px) {
  .card .card-body {
    padding: 15px;
  }
}

.tabs .tab-content {
  margin-top: 1.2rem;
}

.tabs-default .nav-link.active {
  background-color: #55547A;
  color: #88c349;
}

.tabs-default .nav-link.active:hover,
.tabs-default .nav-link.active:active,
.tabs-default .nav-link.active:focus {
  background-color: #55547A;
  color: #88c349;
}

.tabs-default .nav-link:hover {
  border: 1px solid #55547A;
}

.tabs-default .nav-tabs {
  border-bottom: 1px solid #55547A;
}

.tabs-primary .nav-link.active {
  background-color: #88c349;
  color: #fff;
}

.tabs-primary .nav-link.active:hover,
.tabs-primary .nav-link.active:active,
.tabs-primary .nav-link.active:focus {
  background-color: #88c349;
  color: #fff;
}

.tabs-primary .nav-link:hover {
  border: 1px solid #88c349;
}

.tabs-primary .nav-tabs {
  border-bottom: 1px solid #88c349;
}

.tabs-simple .nav-link {
  border: 0;
  background-color: transparent;
  border-radius: 0;
  color: #263B5E;
}

.tabs-simple .nav-link:hover,
.tabs-simple .nav-link:active,
.tabs-simple .nav-link:focus {
  border-bottom: 3px solid #88c349;
  border-color: #d3e9bc;
}

.tabs-simple .nav-link.active {
  background-color: transparent;
  border-bottom: 3px solid #88c349;
  color: #040405;
}

.tabs-simple .nav-link.active:hover,
.tabs-simple .nav-link.active:active,
.tabs-simple .nav-link.active:focus {
  border-bottom: 3px solid #88c349;
  border-color: #88c349;
  color: #040405;
}

.tabs-vertical::after {
  display: block;
  clear: both;
  content: "";
}

.tabs-vertical .nav-tabs {
  float: left;
  border-right: 1px solid #55547A;
  border-bottom: none;
  overflow: hidden;
  margin-right: 1.2rem;
  display: block;
}

.tabs-vertical .nav-tabs li {
  float: none;
  margin-right: -1px;
  margin-bottom: 0;
}

.tabs-vertical .nav-tabs li a {
  margin-right: 0;
  border-radius: 4px 0 0 4px;
  margin-bottom: 0.2rem;
  background-color: #fff;
  border-color: transparent;
  border-right-color: #55547A;
}

.tabs-vertical .nav-tabs li a:hover,
.tabs-vertical .nav-tabs li a:active,
.tabs-vertical .nav-tabs li a:focus {
  background-color: #fff;
  border-color: #55547A;
}

.tabs-vertical .nav-tabs li a.active {
  background-color: #55547A;
  color: #88c349;
}

.tabs-vertical .nav-tabs li a.active:hover,
.tabs-vertical .nav-tabs li a.active:active,
.tabs-vertical .nav-tabs li a.active:focus {
  background-color: #55547A;
  color: #88c349;
}

.tabs-vertical.tabs-primary .nav-tabs {
  border-right: 1px solid #88c349;
}

.tabs-vertical.tabs-primary .nav-tabs li a {
  border-right-color: #88c349;
}

.tabs-vertical.tabs-primary .nav-tabs li a:hover,
.tabs-vertical.tabs-primary .nav-tabs li a:active,
.tabs-vertical.tabs-primary .nav-tabs li a:focus {
  background-color: #fff;
  border-color: #88c349;
}

.tabs-vertical.tabs-primary .nav-tabs li a.active {
  background-color: #88c349;
  color: #fff;
}

.tabs-vertical.tabs-primary .nav-tabs li a.active:hover,
.tabs-vertical.tabs-primary .nav-tabs li a.active:active,
.tabs-vertical.tabs-primary .nav-tabs li a.active:focus {
  background-color: #88c349;
  color: #fff;
}

.tabs-vertical.tabs-simple .nav-tabs {
  border-right: 1px solid #ddd;
}

.tabs-vertical.tabs-simple .nav-tabs li {
  margin: 0;
}

.tabs-vertical.tabs-simple .nav-tabs li a {
  background: transparent;
  border-right: 3px solid transparent;
  border-radius: 0;
}

.tabs-vertical.tabs-simple .nav-tabs li a.active {
  border-bottom: 0;
  color: #040405;
  border-right: 3px solid #88c349;
  background: transparent;
}

.tabs-vertical.tabs-simple .nav-tabs li a:hover,
.tabs-vertical.tabs-simple .nav-tabs li a:active,
.tabs-vertical.tabs-simple .nav-tabs li a:focus {
  background-color: transparent;
  border-right: 3px solid #88c349;
  border-bottom: 0;
}

.panel {
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel .panel-heading a {
  text-decoration: none;
}

.panel .panel-title {
  display: block;
  padding: 1rem 1.25rem;
}

.panel .panel-content {
  padding: 0 1.25rem;
}

.panel-group .panel + .panel {
  margin-top: 10px;
}

.tabs {
  width: 100%;
  padding-left: 0px;
  display: flex;
  align-items: center;
  list-style: none;
  border-bottom: 2px solid #EBF1FA;
}

.tab {
  display: block;
  padding: 10px 30px;
  color: #A5ACC1;
  font-style: normal;
  font-size: 14px;
  line-height: 21px;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}

.tab .tab-link {
  color: #A5ACC1;
}

.tab::after {
  width: 100%;
  background: #A5ACC1;
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  height: 3px;
  opacity: 0;
  transition: 0.3s;
}

.tab:hover::after {
  display: block;
  content: "";
  opacity: 1;
}

.tab .a-active {
  font-weight: 500;
  color: #263B5E !important;
}

.tab .a-active::after {
  height: 3px;
  display: block;
  width: 100%;
  background: #88c349;
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
}

.tab .router-link-exact-active.active::after {
  height: 3px;
  display: block;
  width: 100%;
  background: #88c349;
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
}

.tab .router-link-exact-active.active {
  font-weight: 500;
  color: #263B5E !important;
}

.table th,
.table td {
  color: #040405;
  font-weight: 300;
  border-top: none;
  font-size: 15px;
  vertical-align: middle;
}

.table td {
  border-right: 0;
  border-left: 0;
  padding: 0.3rem;
}

.table th {
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  color: #263B5E;
  letter-spacing: 0.3px;
  padding: 0.5rem 0.3rem 0.5rem 0.9rem;
}

.table .table__actions {
  display: flex;
}

.table .table__actions .btn {
  padding: 2px 0.5rem;
}

.table .table__actions a:not(:last-child) {
  border-right: 1px solid #d9d9d9;
  margin-right: 8px;
  padding-right: 8px;
}

.table thead th {
  border: 0;
  position: relative;
  top: 5px;
}

.table .table-component__table__body {
  position: relative;
}

.table .table-component__table__body tr:first-child td {
  border-top: 0;
}

.table .table-component__table__body tr {
  border-radius: 10px;
  transition: all ease-in-out 0.2s;
  background: white;
}

.table .table-component__table__body tr:hover {
  box-shadow: 0px 5px 15px 2px rgba(0, 0, 0, 0.03);
}

.table .table-component__table__body td {
  font-size: 14px;
}

.table .table-component__table__body td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.table .table-component__table__body td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.table td.primary {
  font-weight: 400;
  font-size: 16px;
}

.table .action-dropdown .dropdown-container {
  margin: 10px 5px 0 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px;
  border: none;
}

.table .action-dropdown .dropdown-item {
  justify-content: space-between;
  color: #040405;
  padding: 10px 20px;
}

.card-body .table {
  margin-top: -10px;
}

.card-body .table th {
  border-top: none;
}

.table-component {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 200px;
}

.table-component__filter {
  align-self: flex-end;
  position: relative;
}

.table-component__filter__field {
  padding: 0.15em 1.25em 0.15em 0.75em;
  border: solid 1px #e0e0e0;
  font-size: 15px;
  border-radius: 3px;
}

.table-component__filter__clear {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  color: #007593;
  font-weight: bold;
  cursor: pointer;
}

.table-component__filter__field:focus {
  outline: 0;
  border-color: #88c349;
}

.table-component__table-wrapper {
  width: 100%;
}

.table-component__table {
  min-width: 100%;
  table-layout: auto;
  margin-bottom: 0;
  border-spacing: 0 10px;
}

.table-component__table__caption {
  position: absolute;
  top: auto;
  left: -10000px;
  overflow: hidden;
  width: 1px;
  height: 1px;
}

.table-component__table th,
.table-component__table td {
  vertical-align: top;
  text-align: left;
}

.table-component__message {
  color: #999;
  text-align: center;
  padding-top: 10px;
}

.table-component__th--sort,
.table-component__th--sort-asc,
.table-component__th--sort-desc {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.table-component__th--sort-asc:after,
.table-component__th--sort-desc:after {
  position: absolute;
  left: 0.25em;
  display: inline-block;
  color: #bbb;
}

.table-component__th--sort-asc:after {
  content: "\2191";
}

.table-component__th--sort-desc:after {
  content: "\2193";
}

.table-component .pagination {
  justify-content: flex-end !important;
  margin-top: 10px;
}

.table-component .pagination .page-item {
  overflow: hidden;
}

.table-component .pagination .page-item.active .page-link {
  color: #fff !important;
}

.table-component .pagination a i {
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  background-color: #fff;
  border: 1px solid #dee2e6;
  font-style: normal;
  cursor: pointer;
}

.table-component .pagination a.disabled i {
  color: #d9d9d9;
  pointer-events: none;
  cursor: auto;
}

table.full-width {
  width: 100%;
}

.table-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  border-bottom: 2px solid #EBF1FA;
  height: 40px;
  position: relative;
}

.table-actions .table-actions-button {
  display: block;
  font-weight: 500;
  cursor: pointer;
  color: #b9e18e;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.table-actions .table-actions-button::after {
  vertical-align: 0.1em;
}

.table-actions .dropdown-group.active .dropdown-container {
  z-index: 10;
}

.table-actions .table-stats {
  margin: 0;
}

.selectall {
  position: absolute;
  cursor: pointer;
  top: 10px;
  left: 25px;
  z-index: 10;
}

.table-component td > span:first-child {
  background: #EBF1FA;
  color: #55547A;
  display: none;
  font-size: 10px;
  font-weight: bold;
  padding: 5px;
  left: 0;
  position: absolute;
  text-transform: uppercase;
  top: 0;
}

.select-all-label {
  display: none !important;
}

@media (max-width: 768px) {
  .select-all-label {
    display: inline !important;
    color: #55547A;
    cursor: pointer;
  }

  .selectall {
    top: 20px;
  }

  .table-component .dropdown-group {
    position: absolute;
    visibility: visible;
    top: 15px;
    right: 10px;
  }

  .table-component thead {
    left: -9999px;
    position: absolute;
    visibility: hidden;
  }

  .table-component tr {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 50px;
    position: relative;
  }

  .table-component td {
    margin: 0 -1px -1px 0;
    padding-top: 40px !important;
    position: relative;
    width: 50%;
    left: 0;
    border: 1px solid #EBF1FA !important;
  }

  .table-component td:not(:first-child) {
    text-align: center !important;
  }

  .table-component td:first-child {
    display: flex;
    justify-content: space-between;
    flex: 1 100%;
    height: 50px;
    padding-top: 25px !important;
    align-items: center;
    border-bottom-left-radius: 0px !important;
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
  }

  .table-component td:last-child {
    position: unset;
    visibility: hidden;
    height: 0px !important;
    padding: 0px !important;
  }

  .table-component td:nth-last-child(3) {
    border-bottom-left-radius: 5px !important;
  }

  .table-component td:nth-last-child(2) {
    border-bottom-right-radius: 5px !important;
  }

  .table-component td > span:first-child {
    display: block;
  }

  .table-component .dropdown-container {
    right: 0;
    left: 120px;
  }
}

.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger-box {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  left: 4.5px;
  right: 4.5px;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
  width: 100%;
}

.hamburger-inner::before {
  top: -5px;
}

.hamburger-inner::after {
  bottom: -5px;
}

.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(3px, 1px, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(3px, -1px, 0) rotate(-45deg) scale(0.7, 1);
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.2s;
}

.fade-enter,
.fade-leave-active {
  opacity: 0;
}

.gauge {
  position: relative;
  display: flex;
  align-items: center;
}

.gauge-lg .basic-gauge,
.gauge-lg .donut-gauge,
.gauge-lg .color-gauge {
  height: 250px;
}

.gauge-lg .gauge-label {
  font-size: 40px;
}

.gauge-md .basic-gauge,
.gauge-md .donut-gauge,
.gauge-md .color-gauge {
  height: 180px;
}

.gauge-sm .basic-gauge,
.gauge-sm .donut-gauge,
.gauge-sm .color-gauge {
  height: 120px;
}

.gauge-sm .gauge-label {
  font-size: 20px;
}

.gauge-label {
  display: inline-block;
  position: absolute;
  top: 60%;
  left: 0px;
  width: 100%;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}

.gauge-label.middle-label {
  top: 50%;
  transform: translateY(-50%);
}

.gauge {
  position: relative;
}

@media (max-width: 480px) {
  .gauge-lg .basic-gauge,
  .gauge-lg .donut-gauge,
  .gauge-lg .color-gauge {
    height: 180px !important;
    width: auto !important;
  }

  .gauge-lg .gauge-label {
    font-size: 28px;
  }
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #547d29;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

.pace .pace-progress-inner {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #6ea336, 0 0 5px #6ea336;
  opacity: 1;
  transform: rotate(3deg) translate(0px, -4px);
}

.pace .pace-activity {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 15px;
  right: 15px;
  width: 14px;
  height: 14px;
  border: solid 2px transparent;
  border-top-color: #6ea336;
  border-left-color: #6ea336;
  border-radius: 10px;
  animation: pace-spinner 400ms linear infinite;
}

@keyframes pace-spinner {
  0% {
    transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.vue-tabs-demo .card-body .default .tabs-component .tabs-component-tabs {
  padding-left: 0px;
}

.vue-tabs-demo .card-body .default .suffix {
  background-color: #c03;
  color: #fff;
  margin-left: 0.35em;
}

.vue-tabs-demo .card-body .default .prefix {
  background-color: #d1e8eb;
  color: #0c5174;
  margin-right: 0.35em;
}

.vue-tabs-demo .card-body .default .prefix,
.vue-tabs-demo .card-body .default .suffix {
  align-items: center;
  border-radius: 1.25rem;
  display: flex;
  font-size: 0.75rem;
  flex-shrink: 0;
  height: 1.25rem;
  justify-content: center;
  line-height: 1.25rem;
  min-width: 1.25rem;
  padding: 0 0.1em;
}

.vue-tabs-demo .card-body .default .tabs-component {
  margin: 2em 0;
}

.vue-tabs-demo .card-body .default .page-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1em;
  padding-top: 0.25em;
}

.suffix {
  position: absolute;
  right: -0.725em;
  top: -0.725em;
}

.tabs-component {
  margin: 0 !important;
}

.tabs-component.tabs-default .tabs-component-tabs {
  padding: 0px;
}

.tabs-component.tabs-default .tabs-component-tab {
  border: none;
  background-color: none;
  border-radius: none;
  margin-right: 0.1rem !important;
  transform: none;
  transition: none;
}

.tabs-component.tabs-default .tabs-component-tab {
  margin: 0px;
  border: 1px solid transparent;
}

.tabs-component.tabs-default .tabs-component-tab a {
  padding: 0.75em 2rem !important;
  color: #333333;
  font-weight: normal;
}

.tabs-component.tabs-default .tabs-component-tab a:hover {
  color: #333333;
  text-decoration: none;
}

.tabs-component.tabs-default .tabs-component-tab.is-active {
  border: 1px solid #333;
  background: #333;
  color: #ffde00;
}

.tabs-component.tabs-default .tabs-component-tab.is-active a {
  color: #ffde00;
}

.tabs-component.tabs-default .tabs-component-tab:hover {
  border: 1px solid #333;
}

.tabs-component.tabs-default .tabs-component-panels {
  border-top: 1px solid #333333 !important;
  border: none;
  position: relative;
  border-radius: 0;
  padding: 1em 0em !important;
  box-shadow: none;
}

.tabs-component.tabs-default.primary .tabs-component-tab a {
  color: #333333;
}

.tabs-component.tabs-default.primary .tabs-component-tab.is-active {
  border: 1px solid #007dcc;
  background: #007dcc;
  color: #fff;
}

.tabs-component.tabs-default.primary .tabs-component-tab.is-active a {
  color: #fff;
}

.tabs-component.tabs-default.primary .tabs-component-tab:hover {
  border: 1px solid #007dcc;
}

.tabs-component.tabs-default.primary .tabs-component-panels {
  border-top: 1px solid #007dcc !important;
}

.tabs-component.tabs-vertical {
  display: flex !important;
}

.tabs-component.tabs-vertical .tabs-component-tabs {
  display: inline-block !important;
  border-right: 1px solid #333333 !important;
  border-radius: 0;
  padding: 0px;
}

.tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab {
  border: none;
  background-color: none;
  border-radius: 4px 0 0 4px;
  margin-bottom: 0.2rem !important;
  transform: none;
  transition: none;
}

.tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab {
  margin: 0px;
  border: 1px solid transparent;
  border-right: 0;
}

.tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab a {
  padding: 0.75em 2rem !important;
  color: #333333;
  font-weight: normal;
}

.tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab a:hover {
  color: #333333;
  text-decoration: none;
}

.tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab.is-active {
  border: 1px solid transparent;
  border-right: 0;
  background: #333333;
}

.tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab.is-active a {
  color: #ffde00;
}

.tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab:hover {
  border: 1px solid #333333;
  border-right: 0;
}

.tabs-component.tabs-vertical .tabs-component-panels {
  border: none;
  position: relative;
  border-radius: 0;
  padding: 0em 0em !important;
  padding-left: 2em !important;
  box-shadow: none;
}

.tabs-component.tabs-vertical.primary .tabs-component-tabs {
  border-right: 1px solid #007dcc !important;
}

.tabs-component.tabs-vertical.primary .tabs-component-tabs .tabs-component-tab.is-active {
  background: #007dcc;
  color: #fff;
}

.tabs-component.tabs-vertical.primary .tabs-component-tabs .tabs-component-tab.is-active a {
  color: #fff;
}

.tabs-component.tabs-vertical.primary .tabs-component-tabs .tabs-component-tab:hover {
  border: 1px solid #007dcc;
  border-right: 0;
}

.tabs-component.tabs-simple .tabs-component-tabs {
  padding: 0px;
}

.tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab {
  border: none;
  background-color: none;
  border-radius: none;
  transform: none;
  transition: none;
}

.tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab {
  margin: 0px;
}

.tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab a {
  padding: 0.75em 2rem !important;
  color: #333333;
}

.tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab a:hover {
  color: #333333;
  outline: none;
  border-bottom: 3px solid #fff299;
}

.tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab.is-active {
  border-bottom: 3px solid #ffde00;
  color: #333;
}

.tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab.is-active a:hover {
  border-bottom: none;
}

.tabs-component.tabs-simple .tabs-component-panels {
  border-top: 1px solid #ddd !important;
  border: none;
  position: relative;
  border-radius: 0;
  padding: 1em 0em !important;
  box-shadow: none;
}

.tabs-component.tabs-simple-vertical {
  display: flex !important;
}

.tabs-component.tabs-simple-vertical .tabs-component-tabs {
  padding: 0px;
  display: inline-block !important;
  border-bottom: none;
  border-right: 1px solid #ddd !important;
  border-radius: 0;
}

.tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab {
  border: none;
  background-color: none;
  border-radius: none;
  transform: none;
  transition: none;
}

.tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab {
  margin: 0px;
}

.tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab a {
  padding: 0.75em 2rem !important;
  color: #333333;
  border-right: 3px solid transparent;
  background: transparent;
}

.tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab a:hover {
  background-color: transparent;
  border-right: 3px solid #fff299;
  border-radius: 0;
}

.tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab.is-active {
  border-right: 3px solid #ffde00;
  color: #333;
}

.tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab.is-active a:hover {
  border-color: transparent;
}

.tabs-component.tabs-simple-vertical .tabs-component-panels {
  border: none;
  position: relative;
  border-radius: 0;
  padding: 0em 0em !important;
  padding-left: 2em !important;
  box-shadow: none;
}

.tabs-component-tabs {
  border: none !important;
}

.dropdown-group {
  position: relative;
}

.dropdown-group.active .dropdown-container {
  display: block;
}

.dropdown-group .dropdown-container {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem;
  margin: 0.125rem 0 0 0.125rem;
  font-size: 1rem;
  color: #fff;
  text-align: left;
  list-style: none;
  background-color: #040405;
  background-clip: padding-box;
  border-radius: 0.25rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  border: none;
}

.dropdown-group .dropdown-container.align-right {
  right: 0;
  left: auto;
}

.dropdown-group .dropdown-container .dropdown-group {
  display: block;
  margin: 0;
}

.dropdown-group .dropdown-container .dropdown-group-item .dropdown-item {
  display: block;
  font-size: 15px;
  padding: 8px 12px;
  font-weight: 300;
  color: #040405;
  background-color: transparent;
  border-radius: 5px;
}

.dropdown-group .dropdown-container .dropdown-group-item .dropdown-item:hover {
  background-color: #EBF1FA;
}

.dropdown-group .dropdown-container .dropdown-group-item .dropdown-item.active {
  color: #88c349;
}

.dropdown-group .dropdown-container .dropdown-group-item .dropdown-item i {
  color: #A5ACC1;
  margin-right: 5px;
}

.dropdown-group .dropdown-container .dropdown-activator {
  position: relative;
}

.dropdown-group .dropdown-container .dropdown-activator::after {
  content: none !important;
}

.dropdown-group .dropdown-container .dropdown-activator::before {
  border-color: #fff transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: 10px;
  top: 18px;
  transition: all 0.2s ease-in-out;
  width: 0;
  transform: rotate(90deg);
}

.dropdown-group .dropdown-container .dropdown-group.active .dropdown-activator a {
  color: #88c349;
}

.dropdown-group .dropdown-container .dropdown-group.active .dropdown-activator::before {
  transform: rotate(-90deg);
  border-color: #88c349 transparent transparent;
}

.dropdown-group .dropdown-container .dropdown-container {
  display: block;
  margin: 0;
  left: 100%;
  top: 0;
  position: absolute;
  margin: 0.125rem 0.125rem 0;
}

.dropdown-group .dropdown-container .dropdown-container.align-right {
  right: 100%;
  left: auto;
}

.dropdown-group .dropdown-container .dropdon-group-item {
  position: relative;
}

.dropdown-group .dropdown-item-divider {
  border-top: 1px solid #fff;
  height: 1px;
  margin: 0.5rem 0;
  overflow: hidden;
}

.dropdown-group.dropdown-light .dropdown-container {
  color: #040405;
  background-color: #fff;
  border: 1px solid #c3c8d6;
}

.dropdown-group.dropdown-light .dropdown-container .dropdown-group-item a {
  color: #040405;
}

.dropdown-group.dropdown-light .dropdown-container .dropdown-group-item a.active {
  color: #040405;
  background-color: #cfd4df;
}

.dropdown-group.dropdown-light .dropdown-container .dropdown-group-item a:hover {
  background-color: #cfd4df;
}

.dropdown-group.dropdown-light .dropdown-container .dropdown-activator::before {
  border-color: #A5ACC1 transparent transparent;
}

.dropdown-group.dropdown-light .dropdown-container .dropdown-group.active .dropdown-activator a {
  color: #040405;
  background-color: #cfd4df;
}

.dropdown-group.dropdown-light .dropdown-container .dropdown-group.active .dropdown-activator::before {
  border-color: #A5ACC1 transparent transparent;
}

.dropdown-group.dropdown-light .dropdown-item-divider {
  border-top: 1px solid #040405;
}

.dropdown-item .dropdown-item-icon {
  width: 20px;
  height: 14px;
  margin-right: 6px;
  color: #55547A;
}

.action {
  position: absolute;
  right: 0;
  z-index: 1;
}

.action .action-btn {
  color: #88c349;
  background: transparent;
  border: none;
}

.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day:hover,
.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).month:hover,
.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).year:hover {
  border: 1px solid #88c349 !important;
}

.vdp-datepicker__calendar .cell.selected {
  background: #88c349 !important;
}

.vdp-datepicker__calendar .cell.highlighted {
  background: #c7e3a9 !important;
}

fieldset[disabled] .multiselect {
  pointer-events: none;
}

.in-valid {
  border: 1px solid #FB7178 !important;
}

.multiselect {
  min-height: 40px;
}

.multiselect__spinner {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 48px;
  height: 35px;
  background: #fff;
  display: block;
}

.multiselect__spinner:before,
.multiselect__spinner:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
  z-index: 5;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border-color: #41b883 transparent transparent;
  border-style: solid;
  border-width: 2px;
  box-shadow: 0 0 0 1px transparent;
}

.multiselect__spinner:before {
  animation: spinning 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
  animation-iteration-count: infinite;
}

.multiselect__spinner:after {
  animation: spinning 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
  animation-iteration-count: infinite;
}

.multiselect__loading-enter-active,
.multiselect__loading-leave-active {
  transition: opacity 0.4s ease-in-out;
  opacity: 1;
}

.multiselect__loading-enter,
.multiselect__loading-leave-active {
  opacity: 0;
}

.multiselect,
.multiselect__input,
.multiselect__single {
  font-family: inherit;
  font-size: 14px;
  touch-action: manipulation;
}

.multiselect {
  box-sizing: content-box;
  display: block;
  position: relative;
  width: 100%;
  min-height: 40px;
  text-align: left;
  color: #35495e;
}

.multiselect * {
  box-sizing: border-box;
}

.multiselect:focus {
  border: 1px solid #b9e18e !important;
}

.multiselect--disabled {
  pointer-events: none;
  opacity: 0.6;
}

.multiselect--active {
  z-index: 50;
}

.multiselect--active:not(.multiselect--above) .multiselect__current,
.multiselect--active:not(.multiselect--above) .multiselect__input,
.multiselect--active:not(.multiselect--above) .multiselect__tags {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.multiselect--active .multiselect__select {
  transform: rotateZ(180deg);
}

.multiselect--above.multiselect--active .multiselect__current,
.multiselect--above.multiselect--active .multiselect__input,
.multiselect--above.multiselect--active .multiselect__tags {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.multiselect__input,
.multiselect__single {
  position: relative;
  display: inline-block;
  min-height: 20px;
  line-height: 20px;
  border: none;
  border-radius: 5px;
  background: #fff;
  padding: 0 0 0 5px;
  width: 100%;
  transition: border 0.1s ease;
  box-sizing: border-box;
  vertical-align: top;
}

.multiselect__input::-moz-placeholder {
  color: #B9C1D1;
}

.multiselect__input::placeholder {
  color: #B9C1D1;
}

.multiselect__tag ~ .multiselect__input,
.multiselect__tag ~ .multiselect__single {
  width: auto;
}

.multiselect__input:hover,
.multiselect__single:hover {
  border-color: #cfcfcf;
}

.multiselect__input:focus,
.multiselect__single:focus {
  border-color: #a8a8a8;
  outline: none;
}

.multiselect__single {
  padding-left: 5px;
  margin-bottom: 8px;
}

.multiselect__tags-wrap {
  display: inline;
}

.multiselect__tags {
  min-height: 40px;
  display: block;
  padding: 8px 40px 0 8px;
  border-radius: 5px;
  border: 1px solid #EBF1FA;
  background: #fff;
  font-size: 14px;
}

.multiselect__tag {
  position: relative;
  display: inline-block;
  padding: 4px 26px 4px 10px;
  border-radius: 5px;
  margin-right: 10px;
  color: #fff;
  line-height: 1;
  background: #41b883;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}

.multiselect__tag-icon {
  cursor: pointer;
  margin-left: 7px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  font-weight: 700;
  font-style: initial;
  width: 22px;
  text-align: center;
  line-height: 22px;
  transition: all 0.2s ease;
  border-radius: 5px;
}

.multiselect__tag-icon:after {
  content: "\D7";
  color: #266d4d;
  font-size: 14px;
}

.multiselect__tag-icon:focus,
.multiselect__tag-icon:hover {
  background: #369a6e;
}

.multiselect__tag-icon:focus:after,
.multiselect__tag-icon:hover:after {
  color: white;
}

.multiselect__current {
  line-height: 16px;
  min-height: 40px;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  padding: 8px 12px 0;
  padding-right: 30px;
  white-space: nowrap;
  margin: 0;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #EBF1FA;
  cursor: pointer;
}

.multiselect__select {
  line-height: 20px;
  display: block;
  position: absolute;
  box-sizing: border-box;
  width: 30px;
  height: 40px;
  right: 1px;
  top: 1px;
  padding: 4px 8px;
  margin: 0;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.multiselect__select:before {
  position: relative;
  right: 0;
  top: 65%;
  color: #A5ACC1;
  margin-top: 4px;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #A5ACC1 transparent transparent transparent;
  content: "";
}

.multiselect__placeholder {
  color: #B9C1D1;
  display: inline-block;
  margin-bottom: 10px;
  padding-top: 2px;
}

.multiselect--active .multiselect__placeholder {
  display: none;
}

.multiselect__content-wrapper {
  position: absolute;
  display: block;
  background: #fff;
  width: 100%;
  max-height: 240px;
  overflow: auto;
  border: 1px solid #EBF1FA;
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 50;
  -webkit-overflow-scrolling: touch;
}

.multiselect__content {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0;
  min-width: 100%;
  vertical-align: top;
}

.multiselect--above .multiselect__content-wrapper {
  bottom: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: none;
  border-top: 1px solid #e8e8e8;
}

.multiselect__content::webkit-scrollbar {
  display: none;
}

.multiselect__element {
  display: block;
}

.multiselect__option {
  display: block;
  padding: 12px;
  min-height: 40px;
  line-height: 16px;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}

.multiselect__option:after {
  top: 0;
  right: 0;
  position: absolute;
  line-height: 40px;
  padding-right: 12px;
  padding-left: 20px;
  font-size: 13px;
}

.multiselect__option--highlight {
  background: #41b883;
  outline: none;
  color: white;
}

.multiselect__option--highlight:after {
  content: attr(data-select);
  background: #41b883;
  color: white;
}

.multiselect__option--selected {
  background: #f3f3f3;
  color: #35495e;
  font-weight: bold;
}

.multiselect__option--selected:after {
  content: attr(data-selected);
  color: silver;
}

.multiselect__option--selected.multiselect__option--highlight {
  background: #ff6a6a;
  color: #fff;
}

.multiselect__option--selected.multiselect__option--highlight:after {
  background: #ff6a6a;
  content: attr(data-deselect);
  color: #fff;
}

.multiselect--disabled .multiselect__current,
.multiselect--disabled .multiselect__select {
  background: #EBF1FA;
  color: #B9C1D1;
}

.multiselect--disabled .multiselect__tags {
  background: #EBF1FA;
  color: #B9C1D1;
}

.multiselect--disabled .multiselect__input,
.multiselect--disabled .multiselect__single {
  background: #EBF1FA;
  color: #B9C1D1;
}

.multiselect__option--disabled {
  background: transparent !important;
  color: #dddddd !important;
  cursor: text;
  pointer-events: none;
}

.multiselect__option--group {
  background: #ededed;
  color: #35495e;
}

.multiselect__option--group.multiselect__option--highlight {
  background: #35495e;
  color: #fff;
}

.multiselect__option--group.multiselect__option--highlight:after {
  background: #35495e;
}

.multiselect__option--disabled.multiselect__option--highlight {
  background: #dedede;
}

.multiselect__option--group-selected.multiselect__option--highlight {
  background: #ff6a6a;
  color: #fff;
}

.multiselect__option--group-selected.multiselect__option--highlight:after {
  background: #ff6a6a;
  content: attr(data-deselect);
  color: #fff;
}

.multiselect-enter-active,
.multiselect-leave-active {
  transition: all 0.15s ease;
}

.multiselect-enter,
.multiselect-leave-active {
  opacity: 0;
}

.multiselect__strong {
  margin-bottom: 8px;
  line-height: 20px;
  display: inline-block;
  vertical-align: top;
}

*[dir=rtl] .multiselect {
  text-align: right;
}

*[dir=rtl] .multiselect__select {
  right: auto;
  left: 1px;
}

*[dir=rtl] .multiselect__tags {
  padding: 8px 8px 0px 40px;
}

*[dir=rtl] .multiselect__content {
  text-align: right;
}

*[dir=rtl] .multiselect__option:after {
  right: auto;
  left: 0;
}

*[dir=rtl] .multiselect__clear {
  right: auto;
  left: 12px;
}

*[dir=rtl] .multiselect__spinner {
  right: auto;
  left: 1px;
}

@keyframes spinning {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(2turn);
  }
}

.multiselect .multiselect__option--highlight {
  background: #88c349;
  color: #040405;
  font-weight: normal !important;
}

.multiselect .multiselect__option--highlight.multiselect__option--selected {
  background: #EBF1FA;
  color: #040405;
  font-size: 1rem;
  font-weight: normal !important;
}

.multiselect .multiselect__option--highlight.multiselect__option--selected::after {
  background: #040405;
  color: #fff;
}

.multiselect .multiselect__option--highlight::after {
  background: #040405;
  color: #fff;
}

.multiselect .multiselect__option--selected {
  font-weight: normal !important;
  background: #EBF1FA;
}

.multiselect .multiselect__tags-wrap .multiselect__tag {
  background: #88c349;
  color: #040405;
}

.multiselect .multiselect__tags-wrap .multiselect__tag .multiselect__tag-icon:hover {
  background: #88c349;
}

.multiselect .multiselect__tags-wrap .multiselect__tag .multiselect__tag-icon::after {
  color: #040405;
}

.multiselect.error {
  border: 1px solid #FB7178;
  border-radius: 5px;
}

.customer-select label {
  cursor: pointer;
}

.customer-select .main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.customer-select .main .search-bar {
  display: flex;
  padding: 15px 15px 5px 15px;
}

.customer-select .main .search-bar .search-icon {
  color: #B9C1D1;
  font-size: 14px;
  font-weight: 900;
  margin: 4px 0 0 0;
}

.customer-select .main .no-data-label {
  display: flex;
  justify-content: center;
  color: #B9C1D1;
  padding: 20px 20px;
}

.customer-select .main .no-data-label label {
  margin: 0 0 0 0;
}

.customer-select .list {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: auto;
  max-height: 173px;
  min-height: 173px;
}

.customer-select .list .list-item {
  display: flex;
  padding: 10px 23px;
  border-bottom: 1px solid rgba(185, 193, 209, 0.41);
  cursor: pointer;
}

.customer-select .list .avatar {
  width: 35px;
  height: 35px;
  background: #B9C1D1;
  border-radius: 50%;
  margin: 1px 21px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

.customer-select .list .name {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.customer-select .list .name .title {
  font-size: 16px;
  font-family: Poppins;
  margin: 0 0 0 0;
  line-height: 1.2;
}

.customer-select .list .name .sub-title {
  font-family: Poppins;
  font-weight: 500;
  font-size: 12px;
  color: #A5ACC1;
  letter-spacing: 0.5px;
  margin: 0 0 0 0;
}

.customer-select .list .list-item:last-child {
  border: none;
}

.customer-select .list .list-item:hover {
  background: #F9FBFF;
  cursor: pointer;
}

.item-select .main-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 15px 15px 0 15px;
}

.item-select .main-section .search-bar {
  display: flex;
  position: relative;
  width: 100%;
}

.item-select .main-section .no-data-label {
  display: flex;
  justify-content: center;
  color: #B9C1D1;
  padding: 20px 20px;
}

.item-select .main-section .no-data-label label {
  margin: 0 0 0 0;
}

.item-select .list {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: auto;
}

.item-select .list .list-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 23px;
  max-height: 56px;
  border-bottom: 1px solid rgba(185, 193, 209, 0.41);
  cursor: pointer;
}

.item-select .list .list-item .title {
  font-size: 16px;
  color: black;
  cursor: pointer;
}

.item-select .list .list-item .price {
  font-size: 16px;
  color: black;
  cursor: pointer;
}

.item-select .list .list-item:last-child {
  border: none;
}

.item-select .list .list-item:hover {
  background: #F9FBFF;
}

.tax-select .main-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 15px 15px 0 15px;
}

.tax-select .search-bar {
  display: flex;
  position: relative;
  width: 100%;
}

.tax-select .no-data-label {
  display: flex;
  justify-content: center;
  color: #B9C1D1;
  padding: 20px 20px;
}

.tax-select .no-data-label label {
  margin: 0 0 0 0;
}

.tax-select .list {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: auto;
  max-height: 112px;
}

.tax-select .list .list-item {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  max-height: 56px;
  border-bottom: 1px solid rgba(185, 193, 209, 0.41);
  cursor: pointer;
}

.tax-select .list .list-item label {
  font-size: 16px;
  margin: 0;
  font-weight: normal;
  color: #262630;
  line-height: 1.2;
  display: inline-block;
  cursor: pointer;
}

.tax-select .list .list-item:last-child {
  border: none;
}

.tax-select .list .list-item:hover {
  background: #F9FBFF;
  cursor: pointer;
}

.tax-select .list .item-disabled {
  background: #F9FBFF;
  cursor: not-allowed !important;
  opacity: 0.5;
  z-index: -10;
  pointer-events: none !important;
}

.image-upload-box {
  height: 110px;
  padding: 20px;
  background-color: transparent;
  border: 2px dashed #EBF1FA;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.image-upload-box .preview-logo {
  max-height: 80%;
  position: absolute;
  opacity: 1;
  animation: fadeIn 2s ease;
}

.image-upload-box .upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-upload-box .upload-text {
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #B9C1D1;
}

.image-upload-box .upload-icon {
  font-size: 20px;
  line-height: 23px;
  color: #B9C1D1;
  margin-bottom: 10px;
}

.image-upload-box .white-icon {
  font-size: 30px;
  line-height: 23px;
  color: #fff;
  margin-bottom: 10px;
}

.image-upload-box .overlay {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  transition: 0.5s ease;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
}

.image-upload-box:hover .overlay {
  opacity: 1;
}

.avatar-upload {
  height: 130px;
  width: 130px;
}

.avatar-upload .preview-logo {
  max-width: 80% !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.payment-modes-modal .card-footer {
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px;
}

.payment-modes-modal .input-label {
  text-align: end;
  padding-right: 0;
  position: relative;
}

.payment-modes-modal .required {
  position: absolute;
  color: #FB7178;
}

.payment-modes-modal .compound-tax-toggle {
  display: flex;
  align-items: center;
  margin-top: 9px;
}

@media (max-width: 480px) {
  .base-modal .payment-modes-modal-modal {
    width: 100vw;
  }

  .base-modal .payment-modes-modal-modal .input-label {
    text-align: left;
  }
}

.item-unit-modal .card-footer {
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px;
}

.item-unit-modal .input-label {
  text-align: end;
  padding-right: 0;
  position: relative;
}

.item-unit-modal .required {
  position: absolute;
  color: #FB7178;
}

.item-unit-modal .compound-tax-toggle {
  display: flex;
  align-items: center;
  margin-top: 9px;
}

@media (max-width: 480px) {
  .base-modal .item-unit-modal {
    width: 100vw;
  }

  .base-modal .item-unit-modal .input-label {
    text-align: left;
  }
}

.mail-test-modal .card-footer {
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px;
}

.mail-test-modal .input-label {
  text-align: end;
  padding-right: 0;
  position: relative;
}

.mail-test-modal .required {
  position: absolute;
  margin-left: 4px;
  color: #FB7178;
}

.mail-test-modal .compound-tax-toggle {
  display: flex;
  align-items: center;
  margin-top: 9px;
}

@media (max-width: 480px) {
  .base-modal .mail-test-modal {
    width: 100vw;
  }

  .base-modal .mail-test-modal .input-label {
    text-align: left;
  }
}

.base-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(4, 4, 5, 0.1);
  z-index: 10001;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.base-modal .modal-header {
  display: flex;
  justify-content: space-between;
  height: 70px;
  border-bottom: 1px solid #EBF1FA;
  padding: 30px 30px 20px 30px !important;
}

.base-modal .modal-header::before {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 10px;
  background: #88c349;
}

.base-modal .modal-header .modal-heading {
  font-size: 17.5px;
  font-weight: 500;
  margin: 0;
}

.base-modal .modal-body {
  background: white;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
  max-width: 600px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
}

.base-modal.size-lg .modal-body {
  max-width: 800px;
}

.base-modal.size-sm .modal-body {
  max-width: 400px;
}

.base-modal .close-icon {
  position: absolute;
  padding: 6px;
  top: 23px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-content: center;
  width: 20px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .base-modal .modal-body {
    height: 100%;
    overflow: scroll;
    border-radius: 0px;
  }
}

.base-modal .modal-body {
  overflow: visible !important;
}

.item-modal .card-footer {
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px;
}

.item-modal .col-form-label {
  text-align: end;
  padding-right: 0;
  position: relative;
}

.item-modal .required {
  position: absolute;
  right: -10px;
  color: #FB7178;
}

@media (max-width: 480px) {
  .base-modal .item-modal .input-label {
    text-align: left;
  }

  .base-modal .item-modal .input-label .item-modal {
    width: 100vw;
  }

  .base-modal .item-modal .input-label .item-modal .input-label {
    text-align: left;
  }

  .base-modal .item-modal .input-label .required {
    position: absolute;
    right: auto;
    margin-left: 5px;
    color: #FB7178;
  }
}

.template-modal .template-container {
  display: flex;
  justify-content: flex-start;
  overflow-x: auto;
  flex-wrap: wrap;
  padding: 5px;
}

.template-modal .template-img {
  margin: 12px;
  border: 1px solid #EBF1FA;
}

.template-modal .selected-template {
  border: 1px solid #88c349;
  position: relative;
}

.template-modal .check-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  color: #88c349;
  top: -6px;
  right: -5px;
  z-index: 10;
}

.template-modal .card-footer {
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px;
}

.template-modal .card-footer .btn-crater {
  margin-left: 15px;
}

@media (max-width: 480px) {
  .base-modal .template-modal {
    width: 100vw;
  }

  .base-modal .template-modal .template-container {
    justify-content: center;
  }
}

.customer-modal .card-body {
  padding-bottom: 4px;
}

.customer-modal .col-form-label {
  text-align: end;
  font-family: poppins, sans-serif;
  padding-right: 0;
  font-size: 14px;
  position: relative;
}

.customer-modal .required {
  position: absolute;
  color: #FB7178;
  right: -10px;
}

.customer-modal .card-footer {
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px;
}

.customer-modal .card-footer .btn-crater {
  margin-left: 15px;
}

.customer-modal .copy-address-button {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 480px) {
  .base-modal .customer-modal {
    width: 100vw;
  }

  .base-modal .customer-modal .required {
    position: relative;
  }

  .base-modal .customer-modal .input-label {
    text-align: left;
  }
}

.tax-type-modal .card-footer {
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px;
}

.tax-type-modal .input-label {
  text-align: end;
  padding-right: 0;
  position: relative;
}

.tax-type-modal .required {
  position: absolute;
  left: -10px;
  color: #FB7178;
}

.tax-type-modal .compound-tax-toggle {
  display: flex;
  align-items: center;
  margin-top: 9px;
}

@media (max-width: 480px) {
  .base-modal .tax-type-modal {
    width: 100vw;
  }

  .base-modal .tax-type-modal .input-label {
    text-align: left;
  }
}

.category-modal .card-footer {
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px;
}

.category-modal .col-form-label {
  text-align: end;
  padding-right: 0;
  position: relative;
}

.category-modal .required {
  position: absolute;
  right: -10px;
  color: #FB7178;
}

@media (max-width: 480px) {
  .base-modal .category-modal .input-label {
    text-align: left;
  }
}

.dashboard .dashboard-table .table-component .dashboard-recent-invoice-options .dropdown-container {
  margin: 10px 5px 0 -75px;
}

.dashbox {
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  margin-bottom: 30px;
  padding: 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.dashbox i {
  font-size: 30px;
  left: 40px;
  position: absolute;
  top: 53px;
}

.dashbox .title {
  color: #A5ACC1;
  display: block;
  font-size: 17.5px;
  line-height: 21px;
  margin-top: 5px;
}

.dashbox .amount {
  color: #040405;
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
}

.dashbox:active,
.dashbox:focus,
.dashbox:hover {
  text-decoration: none;
  background-color: #F9FBFF;
}

.dash-item {
  flex: 3;
  padding: 0 15px 0 15px;
}

.dash-item:first-child {
  flex: 5;
}

.dashboard-card .card-header {
  border: none !important;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  padding-left: 10px;
}

.dashboard-card .card-header h6 {
  font-weight: 500;
  font-size: 17.5px;
  line-height: 21px;
  letter-spacing: 0.1px;
  flex: 1;
}

.dashboard-card .card-header .year-selector {
  height: 50px;
  width: 150px;
}

.graph-body {
  display: flex !important;
}

.graph-body .chart-desc {
  border-left: 1px solid #EBF1FA;
  padding: 0;
}

.graph-body .stats {
  text-align: right;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.graph-body .stats .description {
  padding-top: 30px;
  flex: 1;
}

.graph-body .stats .description:last-child {
  border-top: 1px solid #EBF1FA;
  padding-top: 30px;
}

.graph-body .stats .title {
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.01em;
  padding-right: 25px;
}

.graph-body .stats .total {
  display: block;
  margin-top: 6px;
  font-weight: 600;
  font-size: 24.5px;
  line-height: 29px;
  padding-right: 25px;
}

.table-row {
  margin-top: 20px;
}

.table-row .table-header {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  z-index: 1;
  margin-bottom: 10px;
}

.table-row .table-header .table-title {
  font-weight: 600;
  font-size: 21px;
  line-height: 25px;
  margin-bottom: 0;
}

.dashbox-line-progress {
  padding: 30px;
  text-align: left;
}

.dashbox-line-progress i {
  right: 30px;
  left: auto;
  top: 30px;
}

.dashbox-line-progress .progress {
  height: 0.5rem;
  margin-bottom: 0;
  background-color: #EBF1FA;
}

.dashbox-line-progress .title {
  margin-bottom: 15px;
  font-size: 26px;
}

.dashbox-circle-progress {
  text-align: left;
  padding: 30px;
}

.dashbox-circle-progress .easy-pie-chart {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translate(0, -50%);
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .dashbox {
    padding: 15px;
  }

  .dashbox i {
    left: 30px;
    top: 25px;
  }

  .dashbox.dashbox-line-progress i {
    right: 15px;
    left: auto;
    top: 15px;
  }

  .dashbox-circle-progress {
    padding: 30px;
  }
}

@media (max-width: 1200px) {
  .dashbox {
    padding: 12px;
  }

  .dashbox .title {
    font-size: 14px;
    line-height: 16px;
    margin-top: 3px;
  }

  .dashbox .amount {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
  }

  .graph-body {
    display: block !important;
  }

  .graph-body .stats {
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    border-top: 1px solid #EBF1FA;
  }

  .graph-body .stats .total {
    padding-right: 0;
  }

  .graph-body .stats .description {
    padding: 30px 25px;
  }

  .graph-body .stats .description:last-child {
    border-top: none;
    padding-top: 30px;
    border-left: 1px solid #EBF1FA;
  }
}

@media (max-width: 992px) {
  .dashbox .icon .card-icon {
    height: 40px;
    width: 40px;
  }

  .dashboard-card .card-header {
    margin-bottom: 20px;
  }

  .dashboard-card .card-header .year-selector {
    height: 40px;
  }

  .dashboard-card .card-header {
    padding-left: 0;
  }

  .dashboard-card .card-header h6 {
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0;
  }

  .dash-item {
    flex: 3px;
    padding: 0 15px 0 15px;
  }

  .dash-item:nth-child(odd) {
    padding: 0 15px 0 15px;
    flex: 100%;
  }

  .dash-item:nth-child(even) {
    padding: 0 15px 0 15px;
    flex: 100%;
  }

  .graph-body .stats .title {
    font-size: 12px;
    line-height: 12px;
    padding-right: 0;
  }

  .graph-body .stats .total {
    display: block;
    margin-top: 3px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
  }

  .graph-body .stats .description {
    padding: 10px;
  }

  .graph-body .stats .description:last-child {
    padding: 10px;
    flex: 100%;
    border-top: 1px solid #EBF1FA;
  }

  .graph-body .stats .description:last-child .title {
    padding-right: 0;
  }

  .table-row .mob-table {
    margin-top: 25px !important;
  }
}

.card.with-tabs .tabs-component .tabs-component-tabs {
  position: absolute;
  right: 1.25rem;
  top: 14px;
}

.card.with-tabs .tabs-component .tabs-component-panels {
  border: 0 !important;
}

@media (max-width: 768px) {
  .card.with-tabs .tabs-component .tabs-component-tabs {
    position: relative;
    display: block;
    margin-right: -41px;
    border-radius: 0;
    top: -21px;
    margin-left: -1px;
  }

  .card.with-tabs .tabs-component .tabs-component-tab:not(:last-child) {
    border-bottom: dotted 1px #B9C1D1;
  }

  .dashboard-table .table-component tr:first-child {
    margin-top: 20px;
  }

  .dashboard-table .table-component td:first-child {
    padding-top: 40px !important;
    justify-content: center;
  }
}

.login-page {
  height: 100%;
  background-color: #F9FBFF;
}

.login-page .login-wrapper {
  height: 100%;
  padding-top: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-page .login-box {
  color: #fff;
  padding: 20px;
  width: 100%;
  max-width: 400px;
}

.login-page .login-box .input-label {
  padding-bottom: 5px;
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #55547A;
}

.login-page .login-box .other-actions {
  margin-bottom: 10px;
  margin-top: 20px;
}

.login-page .login-box .page-copyright {
  font-size: 14px;
  margin-top: 50px;
  text-align: center;
}

.login-page .login-box .page-copyright p {
  margin-bottom: 10px;
}

.login-page .login-box a {
  color: #88c349;
}

.login-page .login-box a:hover {
  color: #7bb63c;
}

.login-page .login-box .btn-login {
  background-color: #88c349;
  color: white;
}

.login-page .login-box .btn-login:hover {
  background-color: #7bb63c;
}

.login-page .login-box .c-input {
  color: #fff;
}

.login-page .login-box .c-input .c-indicator {
  top: 2px;
}

.login-page .login-wrapper .c-input > input:checked ~ .c-indicator {
  background-color: #333;
}

.login-page .login-wrapper .c-input > input:focus ~ .c-indicator {
  box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #262626;
}

.login-page .login-wrapper .c-input > input:active ~ .c-indicator {
  background-color: #262626;
}

.login-page .logo-main {
  margin-bottom: 127px;
  text-align: left;
}

.login-page .logo-main img {
  height: auto;
  width: 300px;
}

.login-page .other-options {
  border-top: 1px solid #fff;
  padding: 1rem 0;
  padding-top: 2rem;
}

.login-page .other-options h6 {
  color: #c7cbd1;
  font-size: 15px;
  margin-top: 12px;
}

.login-page .other-options a,
.login-page .other-options a:hover {
  color: #fff;
}

.login-page .actions {
  margin-top: 30px;
}

.login-page .actions .btn-theme {
  margin-right: 20px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .login-page .other-actions {
    font-size: 14px;
  }

  .login-page .logo-main img {
    height: auto;
    max-width: 100%;
  }
}

.login-page .social-links {
  margin-top: 40px;
}

.login-page .social-links .link-text {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 17px;
  color: #B9C1D1;
}

.login-page .social-links .social-logo {
  display: flex;
  align-items: center;
  padding-top: 25px;
}

.login-page .social-links .social-logo .icon {
  display: block;
  margin-right: 30px;
  cursor: pointer;
}

.login-page.login-3 .site-wrapper {
  display: flex;
}

.login-page.login-3 .login-box {
  color: #333;
  flex: 2;
  padding: 150px 60px 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  min-width: 450px;
}

.login-page.login-3 .login-box .box-wrapper {
  width: 100%;
}

.login-page.login-3 .content-box {
  background-image: url("/images/imagen.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  flex: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.login-page.login-3 .content-box h1 {
  color: #fff;
  font-size: 50px;
}

.login-page.login-3 .content-box p {
  color: #F9FBFF;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}

.login-page.login-3 .content-bottom {
  background-image: url("/images/login-vector3.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 100;
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: 0;
  right: 32%;
}

.login-page.login-3 .content-box::before {
  content: "";
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 300px;
  right: 0;
  position: absolute;
  top: 0;
  width: 420px;
  z-index: 1;
}

.login-page.login-3 .content-box::after {
  background-image: url("/images/login-vector2.svg");
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  right: 7.5%;
  position: absolute;
}

.login-page.login-3 .c-input {
  color: #555;
}

.login-page.login-3 .login-box a {
  color: #b9e18e;
}

.login-page.login-3 .login-box a:hover {
  color: #4d4d4d;
}

.login-page.login-3 .other-options h6 {
  color: #555;
}

.login-page.login-3 .page-copyright {
  margin-top: 0;
  padding-top: 150px;
  color: #A5ACC1;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 17px;
  text-align: left;
}

.login-page.login-3 .page-copyright a {
  color: #88c349;
}

.login-page.login-3 .page-copyright a:hover {
  color: #6ea336;
}

.login-page.login-3 .logo-main img {
  width: 200px;
}

@media (max-width: 1240px) {
  .login-page.login-3 .content-box h1 {
    display: none;
  }

  .login-page.login-3 .content-box p {
    display: none;
  }

  .login-page.login-3 .content-box::before {
    height: 250px;
    width: 350px;
  }

  .login-page.login-3 .content-box::after {
    right: 13%;
  }
}

@media (max-width: 992px) {
  .login-page.login-3 .content-box h1 {
    font-size: 15px;
    margin-left: 50px;
  }

  .login-page.login-3 .content-box p {
    display: none;
  }

  .login-page.login-3 .content-bottom {
    width: 600px;
    height: 0px;
  }

  .login-page.login-3 .content-box::before {
    height: 150px;
    width: 250px;
  }
}

@media (max-width: 768px) {
  .login-page.login-3 .page-copyright {
    padding-top: 110px;
  }

  .login-page.login-3 .login-box {
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 30px;
  }

  .login-page.login-3 .content-box {
    display: none;
  }
}

.page-error-404 {
  background: #55547A;
}

.page-error-404 .error-box {
  border-radius: 4px;
  left: 50%;
  margin: 0 auto;
  margin-bottom: 45px;
  padding: 20px;
  position: absolute;
  top: 50%;
  color: #fff;
  transform: translate(-50%, -60%);
  width: 800px;
}

.page-error-404 h1 {
  font-size: 10rem;
  color: #88c349;
  margin-bottom: 2rem;
}

.page-error-404 h5 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 40px;
}

.bg-yellow {
  background-color: #88c349;
  color: #55547A;
}

.bg-yellow:hover {
  background-color: #7bb63c;
}

.customization .prefix-input {
  max-width: 30%;
}

.customization .form-section {
  padding: 8px 15px;
}

.customization .invoice-customization-card {
  border: 1px solid #EBF1FA;
  border-radius: 5px;
}

@media (max-width: 480px) {
  .customization .address-customization-card .address-fields-container {
    display: flex;
    flex-wrap: wrap;
  }

  .customization .address-customization-card .address-fields-container .fields-list {
    border-right: 0px;
  }

  .customization .tabs .tab {
    padding: 10px 10px;
  }
}

.settings-container {
  margin-top: 40px;
}

.settings-container .settings-sidebar {
  list-style-type: none;
  padding: 0px;
}

.settings-container .settings-sidebar .settings-menu-item {
  padding: 10px 0px;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #040405;
}

.settings-container .settings-sidebar .settings-menu-item .setting-icon {
  width: 25px;
  color: #B9C1D1;
  font-size: 16px;
}

.settings-container .settings-sidebar .link-color {
  color: #A5ACC1;
  display: flex;
  align-items: center;
}

.settings-container .settings-sidebar .active-setting {
  color: #88c349 !important;
  cursor: pointer;
}

.settings-container .settings-sidebar .active-setting .setting-icon {
  color: #88c349 !important;
}

.settings-container .setting-main-container .setting-card {
  padding: 30px;
  min-height: 620px;
}

.settings-container .setting-main-container .page-header {
  margin: 0px;
}

.settings-container .setting-main-container .page-header .page-title {
  margin: 0;
  padding-bottom: 10px;
  font-weight: 500;
  font-size: 17.5px;
  line-height: 21px;
  letter-spacing: 0.1px;
  color: #000000;
}

.settings-container .setting-main-container .page-header .page-sub-title {
  max-width: 480px;
  font-size: 14px;
  line-height: 21px;
  color: #A5ACC1;
  margin-bottom: 30px;
}

.settings-container .setting-main-container .input-label {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #55547A;
}

.settings-container .expense-category td {
  background-color: #F9FBFF !important;
}

.settings-container .tax-table td {
  background-color: #F9FBFF !important;
}

.settings-container .tax-table .compound-tax {
  display: inline;
  padding: 2px 8px;
  font-size: 10px;
  line-height: 15px;
  background: #FED7D7;
  color: #9B2C2C;
}

.settings-container .payment-tab .dropdown-container {
  right: 0;
  left: auto;
}

.settings-container .item-tab .dropdown-container {
  right: 0;
  left: auto;
}

.settings-container .update-container .update-spinner {
  font-size: 30px;
  color: #A5ACC1;
}

.settings-container .update-container .update-steps-container {
  list-style-type: none;
  width: 100%;
  padding: 0px;
}

.settings-container .update-container .update-steps-container .update-step {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 10px 0px;
  border-bottom: 1px solid #EBF1FA;
}

.settings-container .update-container .update-steps-container .update-step:last-child {
  border-bottom: 0px solid;
}

.settings-container .update-container .update-step-text {
  font-size: 1rem;
  margin: 0px;
  line-height: 2rem;
}

.settings-container .update-container .update-status-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.settings-container .update-container .update-status-container .update-time {
  font-size: 10px;
  color: #A5ACC1;
  margin-right: 10px;
}

.settings-container .update-container .update-status-container .update-status {
  font-size: 13px;
  width: 88px;
  height: 28px;
  display: block;
  text-align: center;
  border-radius: 30px;
  text-transform: uppercase;
  line-height: 2rem;
}

.settings-container .update-container .update-status-container .status-pending {
  background-color: #EAF1FB;
  color: #55547A;
}

.settings-container .update-container .update-status-container .status-running {
  background-color: rgba(21, 178, 236, 0.15);
  color: #15B2EC;
}

.settings-container .update-container .update-status-container .status-finished {
  background-color: #D4F6EE;
  color: #00C99C;
}

.settings-container .update-container .update-status-container .status-error {
  background-color: rgba(251, 113, 120, 0.22);
  color: #FB7178;
}

.settings-container .add-new-tax {
  height: 45px;
  white-space: nowrap;
  z-index: 1;
}

.settings-container .flex-box {
  display: flex;
}

.settings-container .left {
  position: relative;
  width: 50px;
}

.settings-container .btn-switch {
  position: absolute;
  top: -18px;
}

.settings-container .box-title {
  margin-bottom: 5px;
  padding: 0;
  font-size: 16px;
  line-height: 21px;
  color: #55547A;
}

.settings-container .box-desc {
  margin: 0;
  padding: 0;
  max-width: 480px;
  font-size: 12px;
  line-height: 18px;
  color: #A5ACC1;
}

.settings-container .notes {
  overflow: hidden;
  width: 200px;
}

.settings-container .notes .note {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.settings-container .version {
  background: #EAF1FB;
  color: #A5ACC1;
  border: 1px solid #EAF1FB;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 15px;
}

@media (max-width: 480px) {
  .settings-container .setting-main-container .setting-card {
    overflow: scroll;
  }

  .settings-container .setting-main-container .ml-15 {
    margin-left: 15px;
  }

  .settings-container .setting-main-container .page-header {
    flex-wrap: wrap;
  }

  .settings-container .table-component td:first-child {
    height: auto;
    min-height: 10px;
    text-align: center;
    justify-content: center;
  }

  .settings-container .tax-table .tax-name {
    margin-top: 21px;
    width: 76%;
  }

  .settings-container .expense-category .table-component__table__body tr:first-child td:nth-child(2) {
    height: auto;
    width: 101%;
  }

  .settings-container .add-new-tax {
    position: relative;
    z-index: 1;
  }
}

.invoice-create-page {
  position: relative;
}

.invoice-create-page .page-header {
  margin: 0 0 40px 0;
}

.invoice-create-page .page-header .page-title {
  font-size: 24.5px;
  margin: 0 0 15px 0;
}

.invoice-create-page .page-header .breadcrumb .breadcrumb-item {
  font-size: 14px;
}

.invoice-create-page .page-header .page-actions .btn-crater {
  margin: 0 0 0 14px;
}

.invoice-create-page .invoice-input {
  padding-left: 40px;
}

.invoice-create-page .show-customer {
  background: #FFFFFF;
  padding: 0 10px 0 10px;
  min-height: 170px;
  border: 1px solid #EBF1FA;
}

.invoice-create-page .show-customer label {
  font-size: 14px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

.invoice-create-page .address-menu {
  display: flex;
  flex-direction: column;
}

.invoice-create-page .address-menu .title {
  font-size: 15px;
  white-space: nowrap;
  color: #B9C1D1;
  font-weight: 500;
}

.invoice-create-page .address-menu .content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.invoice-create-page .address-menu .content label {
  position: relative;
  white-space: nowrap;
  width: 90%;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.invoice-create-page .customer-content {
  display: flex;
  justify-content: space-between;
}

.invoice-create-page .customer-content .email {
  flex: 8;
}

.invoice-create-page .customer-content .action {
  cursor: pointer;
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #88c349;
  margin: 0 9px 0 0;
  position: relative;
}

.invoice-create-page .add-customer {
  padding: 0 0 0 0;
}

.invoice-create-page .add-customer .add-customer-action {
  position: relative;
  display: flex;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #EBF1FA;
  min-height: 170px;
  border-radius: 5px;
  padding: 64px 0;
}

.invoice-create-page .add-customer .add-customer-action .customer-icon {
  display: flex;
  justify-content: center;
  background: #EBF1FA;
  width: 40px;
  color: white;
  height: 40px;
  font-size: 14px;
  font-family: Poppins;
  padding: 11px 14px 11px 13px;
  border-radius: 50%;
  margin: 0 15px 0 0;
}

.invoice-create-page .add-customer .add-customer-action label {
  font-size: 17.5px;
  margin: 7px 0 0 0;
}

.invoice-create-page .customer-required {
  border: 1px solid #FB7178;
  border-radius: 5px;
}

.invoice-create-page .offset-md-1 {
  margin-left: 5%;
}

.invoice-create-page .invoice-input-group {
  margin-bottom: 41px;
  margin-right: 0;
}

.invoice-create-page .invoice-input-group .invoice-input {
  padding-right: 0;
}

.invoice-create-page .invoice-input-group .invoice-input label {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: #263B5E;
  margin: 0 0 10px 0;
}

.invoice-create-page .item-table {
  width: 100%;
  text-align: center;
}

.invoice-create-page .item-table .item-table-header {
  border: 1px solid #EBF1FA;
  background: white;
}

.invoice-create-page .item-table .item-table-header th {
  padding: 10px 20px;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  color: #55547A;
  border-top: 1px solid #EBF1FA;
  border-bottom: 1px solid #EBF1FA;
}

.invoice-create-page .item-table .item-table-header .item-heading {
  padding-left: 50px;
}

.invoice-create-page .item-table .item-table-header .amount-heading {
  padding-right: 50px;
}

.invoice-create-page .item-table .item-table-header th:first-child {
  padding-left: 0 !important;
  border-left: 1px solid #EBF1FA;
}

.invoice-create-page .item-table .item-table-header th:last-child {
  padding-right: 0 !important;
  border-right: 1px solid #EBF1FA;
}

.invoice-create-page .item-table .item-body td:first-child {
  padding-left: 0 !important;
}

.invoice-create-page .item-table .item-body td:last-child {
  padding-right: 0 !important;
}

.invoice-create-page .item-table .item-body .item-row {
  background: #FFFFFF;
  border: 1px solid #EBF1FA;
  box-sizing: border-box;
  border-radius: 0px 0px 5px 5px;
}

.invoice-create-page .item-table .item-body .item-row td {
  padding: 15px 20px;
  text-align: left;
  vertical-align: top;
}

.invoice-create-page .item-table .item-body .item-row > td {
  padding: 0;
}

.invoice-create-page .item-table .item-body .item-row .item-select {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #A5ACC1;
  overflow: auto !important;
  max-height: 250px !important;
}

.invoice-create-page .item-table .item-body .item-row .search-select .selector-menu {
  top: 45px !important;
}

.invoice-create-page .item-table .item-body .item-row .main {
  padding: 0 !important;
}

.invoice-create-page .item-table .item-body .item-row .item-amount {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.invoice-create-page .item-table .item-body .item-row .item-select-wrapper {
  display: flex;
  justify-content: flex-start;
}

.invoice-create-page .item-table .item-body .item-row .item-selector {
  flex: 1;
}

.invoice-create-page .item-table .item-body .item-row .selected-item {
  display: flex;
  align-items: center;
  height: 40px;
  padding-left: 10px;
  border: 1px solid #EBF1FA;
  background: #F9FBFF;
  border-radius: 5px;
  position: relative;
}

.invoice-create-page .item-table .item-body .item-row .deselect-icon {
  color: #B9C1D1;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.invoice-create-page .item-table .item-body .item-row .sort-icon-wrapper,
.invoice-create-page .item-table .item-body .item-row .remove-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 15px;
  height: 40px;
  width: 20px;
  cursor: pointer;
}

.invoice-create-page .item-table .item-body .item-row .sort-icon-wrapper {
  color: #B9C1D1;
  height: 20px;
  margin-top: 8px;
  cursor: move;
}

.invoice-create-page .item-table .item-body .item-row .remove-icon {
  color: #55547A;
}

.invoice-create-page .tax-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.invoice-create-page .tax-row .tax-amount {
  flex: 3;
}

.invoice-create-page .tax-row .tax-select {
  flex: 4;
}

.invoice-create-page .tax-tr td {
  padding: 0 21px;
}

.invoice-create-page .multi-select-item .multiselect,
.invoice-create-page .multi-select-item .multiselect__input,
.invoice-create-page .multi-select-item .multiselect__single {
  border: none;
  display: flex;
  align-items: center;
}

.invoice-create-page .multi-select-item .multiselect:focus {
  outline: none;
}

.invoice-create-page .multi-select-item .multiselect__input,
.invoice-create-page .multi-select-item .multiselect__single {
  min-height: 40px;
  padding-left: 10px;
  border: 1px solid rgb(234, 241, 251);
}

.invoice-create-page .multi-select-item .multiselect__tags {
  min-height: 30px;
  padding: 0;
  border: 0px;
}

.invoice-create-page .multi-select-item .multiselect__select {
  line-height: 16px;
  width: 40px;
  height: 38px;
  transition: transform 0.2s ease;
}

.invoice-create-page .multi-select-item .multiselect__content-wrapper {
  overflow: hidden;
  border: 1px solid #EBF1FA;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0px 0px 5px 5px;
}

.invoice-create-page .multi-select-item .multiselect__content {
  max-height: 240px;
  overflow: auto;
}

.invoice-create-page .add-item-action {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #b9e18e;
  padding: 13px 23px;
  width: 100%;
  font-size: 15px;
  border-bottom: 1px solid #EBF1FA;
  cursor: pointer;
}

.invoice-create-page .add-item-action:hover {
  background: #EBF1FA;
}

.invoice-create-page .add-item-action .icon-fa {
  margin: 2px 11px 0 0;
}

.invoice-create-page .invoice-foot {
  display: flex;
  justify-content: space-between;
  margin: 35px 0;
}

.invoice-create-page .invoice-foot .btn-template {
  background: #EBF1FA;
  border: 1px solid #EBF1FA;
  color: #040405;
  font-size: 14px;
}

.invoice-create-page .invoice-foot .icon-button {
  color: #A5ACC1;
}

.invoice-create-page .invoice-foot label {
  font-size: 14px;
  margin: 0 0 0 0;
}

.invoice-create-page .invoice-foot .invoice-notes {
  display: flex;
  flex-direction: column;
  margin: 5px 0 0 0;
}

.invoice-create-page .invoice-foot .invoice-notes textarea {
  border: 1px solid #EBF1FA;
  border-radius: 5px;
  width: 100%;
  min-height: 100px;
  padding: 0 0 0 0;
}

.invoice-create-page .invoice-foot .invoice-total {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  min-width: 390px;
  padding: 15px 20px;
  border: 1px solid #EBF1FA;
  border-radius: 5px;
}

.invoice-create-page .invoice-foot .invoice-total > label {
  text-transform: uppercase;
}

.invoice-create-page .invoice-foot .invoice-total .section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 7px 0;
}

.invoice-create-page .invoice-foot .invoice-total .section .invoice-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 21px;
  color: #A5ACC1;
}

.invoice-create-page .invoice-foot .invoice-total .section .invoice-amount {
  font-size: 18px;
  color: #55547A;
  display: flex;
  justify-content: center;
  align-items: center;
}

.invoice-create-page .invoice-foot .invoice-total .section .total {
  color: #b9e18e;
}

.invoice-create-page .invoice-foot .invoice-total .section .discount-drop-down {
  width: 105px;
}

.invoice-create-page .invoice-foot .invoice-total .section .item-dropdown {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 16px;
}

.invoice-create-page .invoice-foot .invoice-total .border-top {
  margin: 0;
  padding-top: 7px;
  border-top: 1px solid #EBF1FA;
}

.invoice-create-page .invoice-foot .invoice-total .tax-selector {
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
  line-height: 21px;
  color: #b9e18e;
}

.invoice-create-page .item-row .item-name {
  font-weight: 500;
  text-align: left;
  font-size: 14px;
}

.invoice-create-page .item-row .item-description {
  width: 100%;
  font-weight: 300;
  font-size: 12px;
  padding-top: 2px;
}

.invoice-create-page .item-row .item-description textarea {
  border: none;
  resize: none;
  width: 100%;
  padding-left: 11px;
  color: #595959;
}

.invoice-create-page .item-row .item-description textarea::-moz-placeholder {
  font-family: Poppins;
  font-style: normal;
  font-size: 12px;
  color: #B9C1D1;
}

.invoice-create-page .item-row .item-description textarea::placeholder {
  font-family: Poppins;
  font-style: normal;
  font-size: 12px;
  color: #B9C1D1;
}

.invoice-create-page .item-row .action {
  font-weight: 500;
  font-size: 14px;
  color: #88c349;
  cursor: pointer;
}

.invoice-create-page .item-row .activator label {
  color: #A5ACC1;
  font-size: 14px;
}

.invoice-create-page .item-dropdown {
  display: flex;
  border: 1px solid #EBF1FA !important;
  background-color: #fff !important;
  border-radius: 0px 5px 5px 0px !important;
  justify-content: center;
  align-items: center;
  height: 40px;
}

.invoice-create-page .item-dropdown:focus {
  box-shadow: none !important;
}

.invoice-create-page .item-discount {
  border-radius: 5px 0px 0px 5px !important;
  height: 40px;
}

@media (max-width: 480px) {
  .invoice-create-page .page-header {
    margin-bottom: 13px;
  }

  .invoice-create-page .page-header .invoice-action-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 15px;
    margin-right: 0px !important;
  }

  .invoice-create-page .invoice-customer-container {
    padding-right: 0px;
  }

  .invoice-create-page .collapse-input {
    padding-right: 0px;
  }

  .invoice-create-page .page-actions {
    position: relative;
    transform: none;
    display: flex;
    flex-wrap: wrap;
  }

  .invoice-create-page .page-actions button {
    margin-bottom: 10px;
  }

  .invoice-create-page .invoice-input-group .invoice-input {
    padding-right: 15px;
    padding-left: 20px;
    margin-top: 1.5rem;
  }

  .invoice-create-page .invoice-foot {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .invoice-create-page .invoice-foot .btn-template {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .invoice-create-page .invoice-foot .invoice-total {
    min-width: 384px;
    margin-top: 25px;
  }
}

.invoice-create-page .center-content {
  display: flex;
  justify-content: center;
}

.invoice-view-page {
  padding-left: 570px !important;
}

.invoice-view-page .invoice-sidebar {
  width: 300px;
  height: 100vh;
  height: 100%;
  left: 240px;
  padding: 60px 0 10px;
  position: fixed;
  top: 0;
  width: 300px;
  z-index: 25;
  background: #FFFFFF;
}

.invoice-view-page .inv-search {
  background: #F9FBFF !important;
}

.invoice-view-page .side-invoice {
  cursor: pointer;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(185, 193, 209, 0.41);
  border-left: 3px solid transparent;
}

.invoice-view-page .side-invoice:last-child {
  margin-bottom: 98px;
}

.invoice-view-page .side-invoice.router-link-exact-active {
  border-left: 3px solid #88c349;
  background-color: #F9FBFF;
}

.invoice-view-page .side-invoice:hover {
  background-color: #F9FBFF;
}

.invoice-view-page .side-invoice .left .inv-name {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  text-transform: capitalize;
  color: #040405;
  margin-bottom: 6px;
}

.invoice-view-page .side-invoice .left .inv-number {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #A5ACC1;
  margin-bottom: 6px;
}

.invoice-view-page .side-invoice .left .inv-status {
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 15px;
  padding: 2px 10px;
  display: inline-block;
}

.invoice-view-page .side-invoice .right .inv-amount {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-align: right;
  color: #263B5E;
}

.invoice-view-page .side-invoice .right .inv-date {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  text-align: right;
  color: #A5ACC1;
}

.invoice-view-page .no-result {
  color: #B9C1D1;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.invoice-view-page .side-header {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 15px;
  border-bottom: 1px solid rgba(185, 193, 209, 0.41);
}

.invoice-view-page .side-header .inv-button {
  background: #F9FBFF;
  border: 1px solid #EBF1FA;
  box-sizing: border-box;
  color: #B9C1D1;
  box-shadow: none !important;
}

.invoice-view-page .side-content {
  overflow-y: scroll;
  height: 100%;
}

.invoice-view-page .invoice-view-page-container {
  display: flex;
  flex-direction: column;
  height: 75vh;
  min-height: 0;
  overflow: hidden;
}

.invoice-view-page .frame-style {
  flex: 1 1 auto;
  border: 1px solid #B9C1D1;
  border-radius: 7px;
}

.invoice-view-page .inv-filter-fields-btn:focus,
.invoice-view-page .inv-filter-sorting-btn:focus {
  border-color: inherit;
  box-shadow: none;
  outline: none !important;
}

.invoice-view-page .filter-container {
  margin-left: 12px;
}

.invoice-view-page .filter-container .filter-title {
  padding: 5px 10px;
  border-bottom: 1px solid rgba(185, 193, 209, 0.41);
  margin-bottom: 10px;
}

.invoice-view-page .filter-container .filter-items {
  display: flex;
  padding: 4px 9px;
  cursor: pointer;
}

.invoice-view-page .filter-container .filter-items:first-child {
  margin-top: auto;
}

.invoice-view-page .filter-container .inv-label {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 12px;
  text-transform: capitalize;
  color: #040405;
  margin-bottom: 6px;
  margin-left: 10px;
  cursor: pointer;
}

.invoice-view-page .filter-container .base-input {
  width: 20%;
}

.invoice-view-page .filter-container .dropdown-container {
  padding: 0px !important;
  left: auto;
  right: 0px;
  width: 155px;
}

.invoice-view-page .filter-invoice-date .vdp-datepicker div .vdp-datepicker__clear-button {
  margin-left: -21px;
  margin-top: 2px;
  font-size: 20px;
  font-weight: 800;
}

.invoice-view-page .date-group {
  display: flex;
}

.invoice-view-page .to-text {
  padding: 8px;
}

@media (max-width: 768px) {
  .invoice-view-page {
    padding-left: 310px !important;
  }

  .invoice-sidebar {
    transition: 0.2s all;
    left: 0px !important;
  }
}

.invoice-index-page .table-actions {
  position: relative;
  border: none;
}

.invoice-index-page .table-actions .table-actions-button {
  position: absolute;
  right: 0px;
  top: -15px;
}

.invoice-index-page .table-actions .table-stats {
  margin: 0;
  position: absolute;
  right: 0px;
  top: 40px;
}

.invoice-index-page .filter-container {
  display: flex;
  justify-content: space-between;
}

.invoice-index-page .filter-customer,
.invoice-index-page .filter-status {
  margin-right: 40px;
  flex: 1;
}

.invoice-index-page .filter-date {
  flex: 2;
  display: flex;
  margin-right: 40px;
  align-items: center;
}

.invoice-index-page .filter-date .from {
  flex: 1;
}

.invoice-index-page .filter-date .to {
  flex: 1;
}

.invoice-index-page .filter-invoice {
  flex: 1;
}

.invoice-index-page .dashed {
  border: 1px solid #B9C1D1;
  width: 10px;
  margin-top: 28px;
}

@media (max-width: 1240px) {
  .invoice-index-page .filter-container {
    flex-direction: column;
  }

  .invoice-index-page .filter-invoice {
    margin-right: 40px;
  }

  .invoice-index-page .filter-customer,
  .invoice-index-page .filter-status,
  .invoice-index-page .filter-date,
  .invoice-index-page .filter-invoice {
    margin-bottom: 10px;
    margin-right: 0px;
  }
}

@media (max-width: 480px) {
  .invoice-index-page .page-actions {
    position: relative;
    transform: none;
    display: flex;
    flex-wrap: wrap;
  }

  .invoice-index-page .page-actions button {
    margin-bottom: 10px;
  }
}

.estimate-create-page {
  position: relative;
}

.estimate-create-page .page-header {
  margin: 0 0 40px 0;
}

.estimate-create-page .page-header .page-title {
  font-size: 24.5px;
  margin: 0 0 15px 0;
}

.estimate-create-page .page-header .breadcrumb .breadcrumb-item {
  font-size: 14px;
}

.estimate-create-page .page-header .page-actions .btn-crater {
  margin: 0 0 0 14px;
}

.estimate-create-page .estimate-input {
  padding-left: 40px;
}

.estimate-create-page .show-customer {
  background: #FFFFFF;
  padding: 0 10px 0 10px;
  min-height: 170px;
  border: 1px solid #EBF1FA;
}

.estimate-create-page .show-customer label {
  font-size: 14px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

.estimate-create-page .address-menu {
  display: flex;
  flex-direction: column;
}

.estimate-create-page .address-menu .title {
  font-size: 15px;
  white-space: nowrap;
  color: #B9C1D1;
  font-weight: 500;
}

.estimate-create-page .address-menu .content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.estimate-create-page .address-menu .content label {
  position: relative;
  white-space: nowrap;
  width: 90%;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.estimate-create-page .customer-content {
  display: flex;
  justify-content: space-between;
}

.estimate-create-page .customer-content .email {
  flex: 8;
}

.estimate-create-page .customer-content .action {
  cursor: pointer;
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #88c349;
  margin: 0 0 0 0;
  position: relative;
}

.estimate-create-page .add-customer {
  padding: 0 0 0 0;
}

.estimate-create-page .add-customer .add-customer-action {
  position: relative;
  display: flex;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #EBF1FA;
  min-height: 170px;
  border-radius: 5px;
  padding: 64px 0;
}

.estimate-create-page .add-customer .add-customer-action .customer-icon {
  display: flex;
  justify-content: center;
  background: #EBF1FA;
  width: 40px;
  color: white;
  height: 40px;
  font-size: 14px;
  font-family: Poppins;
  padding: 11px 14px 11px 13px;
  border-radius: 50%;
  margin: 0 15px 0 0;
}

.estimate-create-page .add-customer .add-customer-action label {
  font-size: 17.5px;
  margin: 7px 0 0 0;
}

.estimate-create-page .customer-required {
  border: 1px solid #FB7178;
  border-radius: 5px;
}

.estimate-create-page .offset-md-1 {
  margin-left: 5%;
}

.estimate-create-page .estimate-input-group {
  margin-bottom: 41px;
  margin-right: 0;
}

.estimate-create-page .estimate-input-group .estimate-input {
  padding-right: 0;
}

.estimate-create-page .estimate-input-group .estimate-input label {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: #263B5E;
  margin: 0 0 10px 0;
}

.estimate-create-page .item-table {
  width: 100%;
  text-align: center;
}

.estimate-create-page .item-table .item-table-header {
  border: 1px solid #EBF1FA;
  background: white;
}

.estimate-create-page .item-table .item-table-header th {
  padding: 10px 20px;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  color: #55547A;
  border-top: 1px solid #EBF1FA;
  border-bottom: 1px solid #EBF1FA;
}

.estimate-create-page .item-table .item-table-header .item-heading {
  padding-left: 50px;
}

.estimate-create-page .item-table .item-table-header .amount-heading {
  padding-right: 50px;
}

.estimate-create-page .item-table .item-table-header th:first-child {
  padding-left: 0 !important;
  border-left: 1px solid #EBF1FA;
}

.estimate-create-page .item-table .item-table-header th:last-child {
  padding-right: 0 !important;
  border-right: 1px solid #EBF1FA;
}

.estimate-create-page .item-table .item-body td:first-child {
  padding-left: 0 !important;
}

.estimate-create-page .item-table .item-body td:last-child {
  padding-right: 0 !important;
}

.estimate-create-page .item-table .item-body .item-row {
  background: #FFFFFF;
  border: 1px solid #EBF1FA;
  box-sizing: border-box;
  border-radius: 0px 0px 5px 5px;
}

.estimate-create-page .item-table .item-body .item-row td {
  padding: 15px 20px;
  text-align: left;
  vertical-align: top;
}

.estimate-create-page .item-table .item-body .item-row > td {
  padding: 0;
}

.estimate-create-page .item-table .item-body .item-row .item-select {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #A5ACC1;
  overflow: auto !important;
  max-height: 250px !important;
}

.estimate-create-page .item-table .item-body .item-row .search-select .selector-menu {
  top: 45px !important;
}

.estimate-create-page .item-table .item-body .item-row .main {
  padding: 0 !important;
}

.estimate-create-page .item-table .item-body .item-row .item-amount {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.estimate-create-page .item-table .item-body .item-row .item-select-wrapper {
  display: flex;
  justify-content: flex-start;
}

.estimate-create-page .item-table .item-body .item-row .item-selector {
  flex: 1;
}

.estimate-create-page .item-table .item-body .item-row .selected-item {
  display: flex;
  align-items: center;
  height: 40px;
  padding-left: 10px;
  border: 1px solid #EBF1FA;
  background: #F9FBFF;
  border-radius: 5px;
  position: relative;
}

.estimate-create-page .item-table .item-body .item-row .deselect-icon {
  color: #B9C1D1;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.estimate-create-page .item-table .item-body .item-row .sort-icon-wrapper,
.estimate-create-page .item-table .item-body .item-row .remove-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 15px;
  height: 40px;
  width: 20px;
  cursor: pointer;
}

.estimate-create-page .item-table .item-body .item-row .sort-icon-wrapper {
  color: #B9C1D1;
  height: 20px;
  margin-top: 8px;
  cursor: move;
}

.estimate-create-page .item-table .item-body .item-row .remove-icon {
  color: #55547A;
}

.estimate-create-page .tax-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.estimate-create-page .tax-row .tax-amount {
  flex: 3;
}

.estimate-create-page .tax-row .tax-select {
  flex: 4;
}

.estimate-create-page .tax-tr td {
  padding: 0 21px;
}

.estimate-create-page .multi-select-item .multiselect,
.estimate-create-page .multi-select-item .multiselect__input,
.estimate-create-page .multi-select-item .multiselect__single {
  border: none;
  display: flex;
  align-items: center;
}

.estimate-create-page .multi-select-item .multiselect:focus {
  outline: none;
}

.estimate-create-page .multi-select-item .multiselect__input,
.estimate-create-page .multi-select-item .multiselect__single {
  min-height: 40px;
  padding-left: 10px;
  border: 1px solid rgb(234, 241, 251);
}

.estimate-create-page .multi-select-item .multiselect__tags {
  min-height: 30px;
  padding: 0;
  border: 0px;
}

.estimate-create-page .multi-select-item .multiselect__select {
  line-height: 16px;
  width: 40px;
  height: 38px;
  transition: transform 0.2s ease;
}

.estimate-create-page .multi-select-item .multiselect__content-wrapper {
  overflow: hidden;
  border: 1px solid #EBF1FA;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 0px 0px 5px 5px;
}

.estimate-create-page .multi-select-item .multiselect__content {
  max-height: 240px;
  overflow: auto;
}

.estimate-create-page .add-item-action {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #b9e18e;
  padding: 13px 23px;
  width: 100%;
  font-size: 15px;
  border-bottom: 1px solid #EBF1FA;
  cursor: pointer;
}

.estimate-create-page .add-item-action:hover {
  background: #EBF1FA;
}

.estimate-create-page .add-item-action .icon-fa {
  margin: 2px 11px 0 0;
}

.estimate-create-page .estimate-foot {
  display: flex;
  justify-content: space-between;
  margin: 35px 0;
}

.estimate-create-page .estimate-foot .btn-template {
  background: #EBF1FA;
  border: 1px solid #EBF1FA;
  color: #040405;
  font-size: 14px;
}

.estimate-create-page .estimate-foot .icon-button {
  color: #A5ACC1;
}

.estimate-create-page .estimate-foot label {
  font-size: 14px;
  margin: 0 0 0 0;
}

.estimate-create-page .estimate-foot .estimate-notes {
  display: flex;
  flex-direction: column;
  margin: 5px 0 0 0;
}

.estimate-create-page .estimate-foot .estimate-notes textarea {
  border: 1px solid #EBF1FA;
  border-radius: 5px;
  width: 100%;
  min-height: 100px;
  padding: 0 0 0 0;
}

.estimate-create-page .estimate-foot .estimate-total {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  min-width: 390px;
  padding: 15px 20px;
  border: 1px solid #EBF1FA;
  border-radius: 5px;
}

.estimate-create-page .estimate-foot .estimate-total > label {
  text-transform: uppercase;
}

.estimate-create-page .estimate-foot .estimate-total .section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 7px 0;
}

.estimate-create-page .estimate-foot .estimate-total .section .estimate-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 21px;
  color: #A5ACC1;
}

.estimate-create-page .estimate-foot .estimate-total .section .estimate-amount {
  font-size: 18px;
  color: #55547A;
  display: flex;
  justify-content: center;
  align-items: center;
}

.estimate-create-page .estimate-foot .estimate-total .section .total {
  color: #b9e18e;
}

.estimate-create-page .estimate-foot .estimate-total .section .discount-drop-down {
  width: 105px;
}

.estimate-create-page .estimate-foot .estimate-total .section .item-dropdown {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 16px;
}

.estimate-create-page .estimate-foot .estimate-total .border-top {
  margin: 0;
  padding-top: 7px;
  border-top: 1px solid #EBF1FA;
}

.estimate-create-page .estimate-foot .estimate-total .tax-selector {
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
  line-height: 21px;
  color: #b9e18e;
}

.estimate-create-page .item-row .item-name {
  font-weight: 500;
  text-align: left;
  font-size: 14px;
}

.estimate-create-page .item-row .item-description {
  width: 100%;
  font-weight: 300;
  font-size: 12px;
  padding-top: 2px;
}

.estimate-create-page .item-row .item-description textarea {
  border: none;
  resize: none;
  width: 100%;
  color: #595959;
}

.estimate-create-page .item-row .item-description textarea::-moz-placeholder {
  font-family: Poppins;
  font-style: normal;
  font-size: 12px;
  color: #B9C1D1;
}

.estimate-create-page .item-row .item-description textarea::placeholder {
  font-family: Poppins;
  font-style: normal;
  font-size: 12px;
  color: #B9C1D1;
}

.estimate-create-page .item-row .action {
  font-weight: 500;
  font-size: 14px;
  color: #88c349;
  cursor: pointer;
}

.estimate-create-page .item-row .activator label {
  color: #A5ACC1;
  font-size: 14px;
}

.estimate-create-page .item-dropdown {
  display: flex;
  border: 1px solid #EBF1FA !important;
  background-color: #fff !important;
  border-radius: 0px 5px 5px 0px !important;
  justify-content: center;
  align-items: center;
  height: 40px;
}

.estimate-create-page .item-dropdown:focus {
  box-shadow: none !important;
}

.estimate-create-page .item-discount {
  border-radius: 5px 0px 0px 5px !important;
  height: 40px;
}

@media (max-width: 480px) {
  .estimate-create-page .page-header {
    margin-bottom: 13px;
  }

  .estimate-create-page .page-header .invoice-action-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 15px;
    margin-right: 0px !important;
  }

  .estimate-create-page .estimate-customer-container {
    padding-right: 0px;
  }

  .estimate-create-page .collapse-input {
    padding-right: 0px;
  }

  .estimate-create-page .page-actions {
    position: relative;
    transform: none;
    display: flex;
    flex-wrap: wrap;
  }

  .estimate-create-page .page-actions button {
    margin-bottom: 10px;
  }

  .estimate-create-page .estimate-input-group .estimate-input {
    padding-right: 15px;
    padding-left: 20px;
    margin-top: 1.5rem;
  }

  .estimate-create-page .estimate-foot {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .estimate-create-page .estimate-foot .btn-template {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .estimate-create-page .estimate-foot .estimate-total {
    min-width: 384px;
    margin-top: 25px;
  }
}

.estimate-index-page .table-actions {
  position: relative;
  border: none;
}

.estimate-index-page .table-actions .table-actions-button {
  position: absolute;
  right: 0px;
  top: -15px;
}

.estimate-index-page .table-actions .table-stats {
  margin: 0;
  position: absolute;
  right: 0px;
  top: 40px;
}

.estimate-index-page .filter-container {
  display: flex;
  justify-content: space-between;
}

.estimate-index-page .filter-customer {
  margin-right: 40px;
  flex: 1;
}

.estimate-index-page .filter-status {
  margin-right: 40px;
  flex: 1;
}

.estimate-index-page .filter-date {
  flex: 2;
  display: flex;
  margin-right: 40px;
  align-items: center;
}

.estimate-index-page .filter-date .from {
  flex: 1;
}

.estimate-index-page .filter-date .to {
  flex: 1;
}

.estimate-index-page .filter-estimate {
  flex: 1;
}

.estimate-index-page .dashed {
  border: 1px solid #B9C1D1;
  width: 10px;
  margin-top: 28px;
}

@media (max-width: 1240px) {
  .estimate-index-page .filter-container {
    flex-direction: column;
  }

  .estimate-index-page .filter-estimate {
    margin-right: 40px;
  }

  .estimate-index-page .filter-customer,
  .estimate-index-page .filter-status,
  .estimate-index-page .filter-date,
  .estimate-index-page .filter-estimate {
    margin-bottom: 10px;
    margin-right: 0px;
  }
}

@media (max-width: 480px) {
  .estimate-index-page .page-actions {
    position: relative;
    transform: none;
    display: flex;
    flex-wrap: wrap;
  }

  .estimate-index-page .page-actions button {
    margin-bottom: 10px;
  }
}

.estimate-view-page {
  padding-left: 570px !important;
}

.estimate-view-page .estimate-sidebar {
  width: 300px;
  height: 100vh;
  height: 100%;
  left: 240px;
  padding: 60px 0 10px;
  position: fixed;
  top: 0;
  width: 300px;
  z-index: 30;
  background: #ffffff;
}

.estimate-view-page .inv-search {
  background: #F9FBFF !important;
}

.estimate-view-page .side-estimate {
  cursor: pointer;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(185, 193, 209, 0.41);
  border-left: 3px solid transparent;
}

.estimate-view-page .side-estimate:last-child {
  margin-bottom: 98px;
}

.estimate-view-page .side-estimate.router-link-exact-active {
  border-left: 3px solid #88c349;
  background-color: #F9FBFF;
}

.estimate-view-page .side-estimate:hover {
  background-color: #F9FBFF;
}

.estimate-view-page .side-estimate .left .status-expired {
  background: #FED7D7;
  font-size: 13px;
  color: #9B2C2C;
  padding: 5px 10px;
}

.estimate-view-page .side-estimate .left .status-accepted {
  background: #D5EED0;
  font-size: 13px;
  color: #354930;
  padding: 5px 10px;
}

.estimate-view-page .side-estimate .left .status-sent {
  background: rgba(246, 208, 154, 0.4);
  font-size: 13px;
  color: #A96E1A;
  padding: 5px 10px;
}

.estimate-view-page .side-estimate .left .status-viewed {
  background: #C9E3EC;
  font-size: 13px;
  color: #1E576C;
  padding: 5px 10px;
}

.estimate-view-page .side-estimate .left .status-pending {
  background: #FED7D7;
  font-size: 13px;
  color: #9B2C2C;
  padding: 5px 10px;
}

.estimate-view-page .side-estimate .left .status-rejected {
  background: #E1E0EA;
  font-size: 13px;
  color: #312F57;
  padding: 5px 10px;
}

.estimate-view-page .side-estimate .left .status-draft {
  background: #F8EDCB;
  font-size: 13px;
  color: #6C432E;
  padding: 5px 10px;
}

.estimate-view-page .side-estimate .left .inv-name {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  text-transform: capitalize;
  color: #040405;
  margin-bottom: 6px;
}

.estimate-view-page .side-estimate .left .inv-number {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #595959;
  margin-bottom: 6px;
}

.estimate-view-page .side-estimate .left .inv-status {
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 15px;
  padding: 2px 10px;
  display: inline-block;
}

.estimate-view-page .side-estimate .right .inv-amount {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-align: right;
  color: #263B5E;
}

.estimate-view-page .side-estimate .right .inv-date {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  text-align: right;
  color: #595959;
}

.estimate-view-page .no-result {
  color: #B9C1D1;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.estimate-view-page .side-header {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 15px;
  border-bottom: 1px solid rgba(185, 193, 209, 0.41);
}

.estimate-view-page .side-header .inv-button {
  background: #F9FBFF;
  border: 1px solid #eaf1fb;
  box-sizing: border-box;
  color: #A5ACC1;
  box-shadow: none !important;
}

.estimate-view-page .side-content {
  overflow-y: scroll;
  height: 100%;
}

.estimate-view-page .estimate-view-page-container {
  display: flex;
  flex-direction: column;
  height: 75vh;
  min-height: 0;
  overflow: hidden;
}

.estimate-view-page .frame-style {
  flex: 1 1 auto;
  border: 1px solid #B9C1D1;
  border-radius: 7px;
}

.estimate-view-page .inv-filter-fields-btn:focus,
.estimate-view-page .inv-filter-sorting-btn:focus {
  outline: none !important;
  box-shadow: 0 0 0 0.09rem rgba(111, 110, 142, 0.5) !important;
}

.estimate-view-page .filter-container {
  margin-left: 12px;
}

.estimate-view-page .filter-container .filter-title {
  padding: 5px 10px;
  border-bottom: 1px solid rgba(185, 193, 209, 0.41);
  margin-bottom: 10px;
}

.estimate-view-page .filter-container .filter-items {
  display: flex;
  padding: 4px 9px;
  cursor: pointer;
}

.estimate-view-page .filter-container .filter-items:first-child {
  margin-top: auto;
}

.estimate-view-page .filter-container .inv-label {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 12px;
  text-transform: capitalize;
  color: #040405;
  margin-bottom: 6px;
  margin-left: 10px;
  cursor: pointer;
}

.estimate-view-page .filter-container .base-input {
  width: 20%;
}

.estimate-view-page .filter-container .dropdown-container {
  padding: 0px !important;
  left: auto;
  right: 0px;
  width: 166px;
}

.estimate-view-page .filter-estimate-date .vdp-datepicker div .vdp-datepicker__clear-button {
  margin-left: -21px;
  margin-top: 2px;
  font-size: 20px;
  font-weight: 800;
}

.estimate-view-page .date-group {
  display: flex;
}

.estimate-view-page .to-text {
  padding: 8px;
}

@media (max-width: 768px) {
  .estimate-view-page {
    padding-left: 310px !important;
  }

  .estimate-sidebar {
    transition: 0.2s all;
    left: 0px !important;
  }
}

.expenses .collapse-button-container {
  display: none;
}

.expenses .collapse-button-container .collapse-button {
  width: 100%;
  display: flex;
  justify-content: center;
}

.expenses .notes {
  overflow: hidden;
  width: 200px;
}

.expenses .notes .note {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 480px) {
  .expenses .page-actions {
    position: relative;
    transform: none;
    display: flex;
    flex-wrap: wrap;
  }

  .expenses .page-actions button {
    margin-bottom: 10px;
  }

  .expenses .page-header {
    margin-bottom: 5px;
  }

  .expenses .table-actions {
    margin-top: 0px !important;
  }

  .expenses .header-button-container {
    display: none;
  }

  .expenses .collapse-button-container {
    margin-top: 8px;
    display: block;
  }
}

@media (max-width: 480px) {
  .payments .page-actions {
    position: relative;
    transform: none;
    display: flex;
    flex-wrap: wrap;
  }

  .payments .page-actions button {
    margin-bottom: 10px;
  }

  .payments .page-header {
    margin-bottom: 5px;
  }

  .payments .table-actions {
    margin-top: 0px !important;
  }
}

.payment-create .header-button-container {
  display: block;
}

.payment-create .collapse-button-container {
  display: none;
}

.payment-create .collapse-button-container .collapse-button {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 480px) {
  .payment-create .page-actions,
  .payment-index .page-actions {
    position: relative;
    transform: none;
    display: flex;
    flex-wrap: wrap;
  }

  .payment-create .page-actions button,
  .payment-index .page-actions button {
    margin-bottom: 10px;
  }

  .payment-create .header-button-container,
  .payment-index .header-button-container {
    display: none;
  }

  .payment-create .collapse-button-container,
  .payment-index .collapse-button-container {
    display: block;
  }
}

.settings-container {
  margin-top: 40px;
}

.settings-container .settings-sidebar {
  list-style-type: none;
  padding: 0px;
}

.settings-container .settings-sidebar .settings-menu-item {
  padding: 10px 0px;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #040405;
}

.settings-container .settings-sidebar .settings-menu-item .setting-icon {
  width: 25px;
  color: #B9C1D1;
  font-size: 16px;
}

.settings-container .settings-sidebar .link-color {
  color: #A5ACC1;
  display: flex;
  align-items: center;
}

.settings-container .settings-sidebar .active-setting {
  color: #88c349 !important;
  cursor: pointer;
}

.settings-container .settings-sidebar .active-setting .setting-icon {
  color: #88c349 !important;
}

.settings-container .setting-main-container .setting-card {
  padding: 30px;
  min-height: 620px;
}

.settings-container .setting-main-container .page-header {
  margin: 0px;
}

.settings-container .setting-main-container .page-header .page-title {
  margin: 0;
  padding-bottom: 10px;
  font-weight: 500;
  font-size: 17.5px;
  line-height: 21px;
  letter-spacing: 0.1px;
  color: #000000;
}

.settings-container .setting-main-container .page-header .page-sub-title {
  max-width: 480px;
  font-size: 14px;
  line-height: 21px;
  color: #A5ACC1;
  margin-bottom: 30px;
}

.settings-container .setting-main-container .input-label {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #55547A;
}

.settings-container .expense-category td {
  background-color: #F9FBFF !important;
}

.settings-container .tax-table td {
  background-color: #F9FBFF !important;
}

.settings-container .tax-table .compound-tax {
  display: inline;
  padding: 2px 8px;
  font-size: 10px;
  line-height: 15px;
  background: #FED7D7;
  color: #9B2C2C;
}

.settings-container .payment-tab .dropdown-container {
  right: 0;
  left: auto;
}

.settings-container .item-tab .dropdown-container {
  right: 0;
  left: auto;
}

.settings-container .update-container .update-spinner {
  font-size: 30px;
  color: #A5ACC1;
}

.settings-container .update-container .update-steps-container {
  list-style-type: none;
  width: 100%;
  padding: 0px;
}

.settings-container .update-container .update-steps-container .update-step {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 10px 0px;
  border-bottom: 1px solid #EBF1FA;
}

.settings-container .update-container .update-steps-container .update-step:last-child {
  border-bottom: 0px solid;
}

.settings-container .update-container .update-step-text {
  font-size: 1rem;
  margin: 0px;
  line-height: 2rem;
}

.settings-container .update-container .update-status-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.settings-container .update-container .update-status-container .update-time {
  font-size: 10px;
  color: #A5ACC1;
  margin-right: 10px;
}

.settings-container .update-container .update-status-container .update-status {
  font-size: 13px;
  width: 88px;
  height: 28px;
  display: block;
  text-align: center;
  border-radius: 30px;
  text-transform: uppercase;
  line-height: 2rem;
}

.settings-container .update-container .update-status-container .status-pending {
  background-color: #EAF1FB;
  color: #55547A;
}

.settings-container .update-container .update-status-container .status-running {
  background-color: rgba(21, 178, 236, 0.15);
  color: #15B2EC;
}

.settings-container .update-container .update-status-container .status-finished {
  background-color: #D4F6EE;
  color: #00C99C;
}

.settings-container .update-container .update-status-container .status-error {
  background-color: rgba(251, 113, 120, 0.22);
  color: #FB7178;
}

.settings-container .add-new-tax {
  height: 45px;
  white-space: nowrap;
  z-index: 1;
}

.settings-container .flex-box {
  display: flex;
}

.settings-container .left {
  position: relative;
  width: 50px;
}

.settings-container .btn-switch {
  position: absolute;
  top: -18px;
}

.settings-container .box-title {
  margin-bottom: 5px;
  padding: 0;
  font-size: 16px;
  line-height: 21px;
  color: #55547A;
}

.settings-container .box-desc {
  margin: 0;
  padding: 0;
  max-width: 480px;
  font-size: 12px;
  line-height: 18px;
  color: #A5ACC1;
}

.settings-container .notes {
  overflow: hidden;
  width: 200px;
}

.settings-container .notes .note {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.settings-container .version {
  background: #EAF1FB;
  color: #A5ACC1;
  border: 1px solid #EAF1FB;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 15px;
}

@media (max-width: 480px) {
  .settings-container .setting-main-container .setting-card {
    overflow: scroll;
  }

  .settings-container .setting-main-container .ml-15 {
    margin-left: 15px;
  }

  .settings-container .setting-main-container .page-header {
    flex-wrap: wrap;
  }

  .settings-container .table-component td:first-child {
    height: auto;
    min-height: 10px;
    text-align: center;
    justify-content: center;
  }

  .settings-container .tax-table .tax-name {
    margin-top: 21px;
    width: 76%;
  }

  .settings-container .expense-category .table-component__table__body tr:first-child td:nth-child(2) {
    height: auto;
    width: 101%;
  }

  .settings-container .add-new-tax {
    position: relative;
    z-index: 1;
  }
}

.wizard .logo-main {
  height: 50px;
}

.wizard .wizard-card {
  padding: 30px;
  width: 100%;
}

.wizard .row {
  margin-bottom: 27px;
}

.wizard .form-content {
  margin-top: 70px;
  display: flex;
  justify-content: center;
}

.wizard .form-title {
  font-style: normal;
  font-weight: 600;
  font-size: 24.5px;
  line-height: 29px;
  color: #000000;
}

.wizard .form-desc {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  color: #A5ACC1;
  width: 55%;
  margin-bottom: 30px;
}

.wizard .form-label {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
}

.wizard .step-indicator {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}

.wizard .indicator-line {
  border: 5px solid #EBF1FA;
  border-radius: 5px;
  box-sizing: border-box;
  width: 520px;
  position: relative;
  display: flex;
  justify-content: space-around;
  margin-top: 60px;
}

.wizard .indicator-line .center {
  position: absolute;
  top: -11px;
  width: 105%;
  display: flex;
  justify-content: space-between;
}

.wizard .indicator-line .steps {
  border-radius: 50%;
  float: left;
  border: 5px solid #EBF1FA;
  padding: 0px 5px;
  height: 21px;
  width: 21px;
  background: #EBF1FA;
}

.wizard .indicator-line .steps.active {
  border: 5px solid #88c349;
  background: #ffffff;
  border-radius: 50%;
  height: 21px;
  width: 21px;
}

.wizard .indicator-line .steps.completed {
  padding: 0px;
  background: #88c349;
  border: 5px solid #88c349;
  border-radius: 50%;
  height: 21px;
  width: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wizard .indicator-line .steps.completed .icon-check {
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
  /* line-height: 21px; */
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.wizard .upload-logo {
  position: absolute;
  right: 60px;
}

.wizard .upload-logo .preview-logo {
  height: 50px;
  max-width: 300px;
  padding: 10px;
  border: 4px solid #EBF1FA;
}

.wizard .list-items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  border: 1px solid #EBF1FA;
}

.wizard .list-items .left-item,
.wizard .list-items .right-item {
  padding: 12px 10px;
  margin-bottom: 0;
}

.wizard .list-items .right-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wizard .verified,
.wizard .not-verified {
  height: 15px;
  width: 15px;
  background-color: #00C99C;
  display: inline-block;
  margin: 0 10px;
  border-radius: 50%;
}

.wizard .not-verified {
  background-color: #FB7178;
}

.reports .reports-tab-container {
  margin-top: 25px;
}

.reports .reports-frame-style {
  height: 100vh;
  width: 100%;
  border: 1px solid #B9C1D1;
  border-radius: 7px;
}

.reports .report-button {
  width: auto;
}

.reports .report-view-button {
  display: none;
  color: #fff;
}

.reports .report-fields-container {
  margin-top: 25px;
}

.reports .report-field-container {
  margin-top: auto;
}

.reports .report-submit-button-container {
  margin-top: 32px;
}

.reports .report-label {
  font-size: 14px;
  line-height: 21px;
  color: #55547A;
}

.reports .report-label {
  font-weight: 500;
  color: #55547A;
  font-size: 14px;
}

@media (max-width: 480px) {
  .reports .reports-tab {
    padding: 10px 19px;
  }

  .reports .reports-frame-style {
    display: none;
  }

  .reports .report-submit-button-container {
    display: none;
  }

  .reports .report-view-button {
    display: flex;
    color: #fff !important;
    justify-content: center;
  }

  .reports .report-button {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .reports .report-fields-container {
    margin-top: 0px;
  }

  .reports .report-field-container {
    margin-top: 20px;
  }

  .reports .tabs .tab {
    padding: 10px 15px;
  }

  .reports .tabs .tab .tab-link {
    padding: 10px 17px !important;
  }
}

.customer-create .section-title {
  font-style: normal;
  font-weight: 500;
  font-size: 17.5px;
  line-height: 21px;
  letter-spacing: 0.1px;
  color: #000000;
}

.customer-create .form-label {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #55547A;
}

.customer-create .customer-card {
  border: 1px solid #EBF1FA;
  padding: 10px;
}

.customer-create .same-address-checkbox-container {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: center;
  justify-content: flex-end;
}

.customer-create hr {
  margin-bottom: 1.8rem;
  border: 1px solid #EBF1FA;
}

.customer-create .header-button-container {
  display: block;
}

.customer-create .collapse-button-container {
  display: none;
}

.customer-create .collapse-button-container .collapse-button {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 480px) {
  .customer-index .page-actions {
    position: relative;
    transform: none;
    display: flex;
    flex-wrap: wrap;
  }

  .customer-index .page-actions button {
    margin-bottom: 10px;
  }

  .customer-create .page-actions {
    position: relative;
    transform: none;
    display: flex;
    flex-wrap: wrap;
  }

  .customer-create .page-actions button {
    margin-bottom: 10px;
  }

  .customer-create .same-address-checkbox-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0rem;
  }

  .customer-create hr {
    margin-bottom: 1.2rem;
    border: 1px solid #EBF1FA;
  }

  .customer-create .section-title {
    padding: 15px;
  }

  .customer-create .collapse-button-container {
    display: block;
  }

  .customer-create .header-button-container {
    display: none;
  }
}

@media (max-width: 480px) {
  .payments .page-actions {
    position: relative;
    transform: none;
    display: flex;
    flex-wrap: wrap;
  }

  .payments .page-actions button {
    margin-bottom: 10px;
  }

  .payments .page-header {
    margin-bottom: 5px;
  }

  .payments .table-actions {
    margin-top: 0px !important;
  }
}

.payment-create .header-button-container {
  display: block;
}

.payment-create .collapse-button-container {
  display: none;
}

.payment-create .collapse-button-container .collapse-button {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 480px) {
  .payment-create .page-actions,
  .payment-index .page-actions {
    position: relative;
    transform: none;
    display: flex;
    flex-wrap: wrap;
  }

  .payment-create .page-actions button,
  .payment-index .page-actions button {
    margin-bottom: 10px;
  }

  .payment-create .header-button-container,
  .payment-index .header-button-container {
    display: none;
  }

  .payment-create .collapse-button-container,
  .payment-index .collapse-button-container {
    display: block;
  }
}

.payment-view-page {
  padding-left: 570px !important;
}

.payment-view-page .payment-sidebar {
  width: 300px;
  height: 100vh;
  height: 100%;
  left: 240px;
  padding: 60px 0 10px;
  position: fixed;
  top: 0;
  width: 300px;
  z-index: 25;
  background: #FFFFFF;
}

.payment-view-page .inv-search {
  background: #F9FBFF !important;
}

.payment-view-page .side-payment {
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(185, 193, 209, 0.41);
  cursor: pointer;
}

.payment-view-page .side-payment:last-child {
  margin-bottom: 98px;
}

.payment-view-page .side-payment.router-link-exact-active {
  border-left: 3px solid #88c349;
  background-color: #F9FBFF;
}

.payment-view-page .side-payment:hover {
  background-color: #F9FBFF;
}

.payment-view-page .side-payment .left .inv-name {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  text-transform: capitalize;
  color: #040405;
  margin-bottom: 6px;
}

.payment-view-page .side-payment .left .inv-number {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #A5ACC1;
  margin-bottom: 6px;
}

.payment-view-page .side-payment .left .inv-status {
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 15px;
  padding: 2px 10px;
  display: inline-block;
}

.payment-view-page .side-payment .right .inv-amount {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-align: right;
  color: #263B5E;
}

.payment-view-page .side-payment .right .inv-date {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  text-align: right;
  color: #A5ACC1;
}

.payment-view-page .no-result {
  color: #B9C1D1;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.payment-view-page .side-header {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 15px;
  border-bottom: 1px solid rgba(185, 193, 209, 0.41);
}

.payment-view-page .side-header .inv-button {
  background: #F9FBFF;
  border: 1px solid #EBF1FA;
  box-sizing: border-box;
  color: #B9C1D1;
  box-shadow: none !important;
}

.payment-view-page .side-content {
  overflow-y: scroll;
  height: 100%;
}

.payment-view-page .payment-view-page-container {
  display: flex;
  flex-direction: column;
  height: 75vh;
  min-height: 0;
  overflow: hidden;
}

.payment-view-page .frame-style {
  flex: 1 1 auto;
  border: 1px solid #B9C1D1;
  border-radius: 7px;
}

.payment-view-page .inv-filter-fields-btn:focus,
.payment-view-page .inv-filter-sorting-btn:focus {
  border-color: inherit;
  box-shadow: none;
  outline: none !important;
}

.payment-view-page .filter-container {
  margin-left: 12px;
}

.payment-view-page .filter-container .filter-title {
  padding: 5px 10px;
  border-bottom: 1px solid rgba(185, 193, 209, 0.41);
  margin-bottom: 10px;
}

.payment-view-page .filter-container .filter-items {
  display: flex;
  padding: 4px 9px;
  cursor: pointer;
}

.payment-view-page .filter-container .filter-items:first-child {
  margin-top: auto;
}

.payment-view-page .filter-container .inv-label {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 12px;
  text-transform: capitalize;
  color: #040405;
  margin-bottom: 6px;
  margin-left: 10px;
  cursor: pointer;
}

.payment-view-page .filter-container .base-input {
  width: 20%;
}

.payment-view-page .filter-container .dropdown-container {
  padding: 0px !important;
  left: auto;
  right: 0px;
  width: 167px;
}

.payment-view-page .filter-payment-date .vdp-datepicker div .vdp-datepicker__clear-button {
  margin-left: -21px;
  margin-top: 2px;
  font-size: 20px;
  font-weight: 800;
}

.payment-view-page .date-group {
  display: flex;
}

.payment-view-page .to-text {
  padding: 8px;
}

@media (max-width: 768px) {
  .payment-view-page {
    padding-left: 310px !important;
  }

  .payment-sidebar {
    transition: 0.2s all;
    left: 0px !important;
  }
}

.items .table-loader {
  padding: 25px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 480px) {
  .items .page-actions {
    position: relative;
    transform: none;
    display: flex;
    flex-wrap: wrap;
  }

  .items .page-actions button {
    margin-bottom: 10px;
  }

  .items .page-header {
    margin-bottom: 5px;
  }

  .items .table-actions {
    margin-top: 0px !important;
  }
}

.item-create .collapse-button {
  width: auto;
}

@media (max-width: 480px) {
  .item-create .collapse-button {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.inv-status-overdue {
  background: #FED7D7;
  font-size: 13px;
  color: #9B2C2C;
  padding: 5px 10px;
}

.inv-status-paid {
  background: #D5EED0;
  font-size: 13px;
  color: #354930;
  padding: 5px 10px;
}

.inv-status-unpaid {
  background: #F8EDCB;
  font-size: 13px;
  color: #6C432E;
  padding: 5px 10px;
}

.inv-status-sent {
  background: rgba(246, 208, 154, 0.4);
  font-size: 13px;
  color: #A96E1A;
  padding: 5px 10px;
}

.inv-status-viewed {
  background: #C9E3EC;
  font-size: 13px;
  color: #1E576C;
  padding: 5px 10px;
}

.inv-status-completed {
  background: #D5EED0;
  font-size: 13px;
  color: #354930;
  padding: 5px 10px;
}

.inv-status-pending {
  background: #FED7D7;
  font-size: 13px;
  color: #9B2C2C;
  padding: 5px 10px;
}

.inv-status-partially_paid {
  background: #C9E3EC;
  font-size: 13px;
  color: #1E576C;
  padding: 5px 10px;
}

.inv-status-draft {
  background: #F8EDCB;
  font-size: 13px;
  color: #6C432E;
  padding: 5px 10px;
}

.est-status-expired {
  background: #FED7D7;
  font-size: 13px;
  color: #9B2C2C;
  padding: 5px 10px;
}

.est-status-accepted {
  background: #D5EED0;
  font-size: 13px;
  color: #354930;
  padding: 5px 10px;
}

.est-status-sent {
  background: rgba(246, 208, 154, 0.4);
  font-size: 13px;
  color: #A96E1A;
  padding: 5px 10px;
}

.est-status-viewed {
  background: #C9E3EC;
  font-size: 13px;
  color: #1E576C;
  padding: 5px 10px;
}

.est-status-pending {
  background: #FED7D7;
  font-size: 13px;
  color: #9B2C2C;
  padding: 5px 10px;
}

.est-status-rejected {
  background: #E1E0EA;
  font-size: 13px;
  color: #312F57;
  padding: 5px 10px;
}

.est-status-draft {
  background: #F8EDCB;
  font-size: 13px;
  color: #6C432E;
  padding: 5px 10px;
}

.error {
  color: red;
}

.relate-invoice-to-treasury-account {
  padding: 10px;
}

.relate-invoice-to-treasury-account .title {
  color: #b9e18e;
}


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