/* BASICS */

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

/* PADDING */

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

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

/* GUTTER */

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

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

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-fat-cursor .CodeMirror-line::selection,
.cm-fat-cursor .CodeMirror-line > span::selection, 
.cm-fat-cursor .CodeMirror-line > span > span::selection { background: transparent; }
.cm-fat-cursor .CodeMirror-line::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span > span::-moz-selection { background: transparent; }
.cm-fat-cursor { caret-color: transparent; }
@-moz-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@-webkit-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}

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

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

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

/* DEFAULT THEME */

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

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

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

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

/* Default styles for common addons */

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

/* STOP */

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

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

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

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

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -50px;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }

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

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

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px; /* Force widget margins to stay inside of the container */
}

.CodeMirror-widget {}

.CodeMirror-rtl pre { direction: rtl; }

.CodeMirror-code {
  outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

/* neo theme for codemirror */

/* Color scheme */

.cm-s-neo.CodeMirror {
  background-color:#ffffff;
  color:#2e383c;
  line-height:1.4375;
}
.cm-s-neo .cm-comment { color:#75787b; }
.cm-s-neo .cm-keyword, .cm-s-neo .cm-property { color:#1d75b3; }
.cm-s-neo .cm-atom,.cm-s-neo .cm-number { color:#75438a; }
.cm-s-neo .cm-node,.cm-s-neo .cm-tag { color:#9c3328; }
.cm-s-neo .cm-string { color:#b35e14; }
.cm-s-neo .cm-variable,.cm-s-neo .cm-qualifier { color:#047d65; }


/* Editor styling */

.cm-s-neo pre {
  padding:0;
}

.cm-s-neo .CodeMirror-gutters {
  border:none;
  border-right:10px solid transparent;
  background-color:transparent;
}

.cm-s-neo .CodeMirror-linenumber {
  padding:0;
  color:#e0e2e5;
}

.cm-s-neo .CodeMirror-guttermarker { color: #1d75b3; }
.cm-s-neo .CodeMirror-guttermarker-subtle { color: #e0e2e5; }

.cm-s-neo .CodeMirror-cursor {
  width: auto;
  border: 0;
  background: rgba(155,157,162,0.37);
  z-index: 1;
}

.CodeMirror-simplescroll-horizontal div, .CodeMirror-simplescroll-vertical div {
  position: absolute;
  background: #ccc;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #bbb;
  border-radius: 2px;
}

.CodeMirror-simplescroll-horizontal, .CodeMirror-simplescroll-vertical {
  position: absolute;
  z-index: 6;
  background: #eee;
}

.CodeMirror-simplescroll-horizontal {
  bottom: 0; left: 0;
  height: 8px;
}
.CodeMirror-simplescroll-horizontal div {
  bottom: 0;
  height: 100%;
}

.CodeMirror-simplescroll-vertical {
  right: 0; top: 0;
  width: 8px;
}
.CodeMirror-simplescroll-vertical div {
  right: 0;
  width: 100%;
}


.CodeMirror-overlayscroll .CodeMirror-scrollbar-filler, .CodeMirror-overlayscroll .CodeMirror-gutter-filler {
  display: none;
}

.CodeMirror-overlayscroll-horizontal div, .CodeMirror-overlayscroll-vertical div {
  position: absolute;
  background: #bcd;
  border-radius: 3px;
}

.CodeMirror-overlayscroll-horizontal, .CodeMirror-overlayscroll-vertical {
  position: absolute;
  z-index: 6;
}

.CodeMirror-overlayscroll-horizontal {
  bottom: 0; left: 0;
  height: 6px;
}
.CodeMirror-overlayscroll-horizontal div {
  bottom: 0;
  height: 100%;
}

.CodeMirror-overlayscroll-vertical {
  right: 0; top: 0;
  width: 6px;
}
.CodeMirror-overlayscroll-vertical div {
  right: 0;
  width: 100%;
}

.CodeMirror-hints {
  position: absolute;
  z-index: 10;
  overflow: hidden;
  list-style: none;

  margin: 0;
  padding: 2px;

  -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  border-radius: 3px;
  border: 1px solid silver;

  background: white;
  font-size: 90%;
  font-family: monospace;

  max-height: 20em;
  overflow-y: auto;
  box-sizing: border-box;
}

.CodeMirror-hint {
  margin: 0;
  padding: 0 4px;
  border-radius: 2px;
  white-space: pre;
  color: black;
  cursor: pointer;
}

li.CodeMirror-hint-active {
  background: #08f;
  color: white;
}

/* purgecss start ignore */

td[data-v-98ac2448],th[data-v-98ac2448]{
  padding:2px;
  background-color:#fff
}

td.today[data-v-98ac2448]{
  font-weight:700
}

td.disabled[data-v-98ac2448]{
  pointer-events:none;
  background-color:#eee;
  border-radius:0;
  opacity:.6
}

.fa[data-v-98ac2448]{
  display:inline-block;
  width:100%;
  height:100%;
  background:transparent no-repeat 50%;
  background-size:100% 100%;
  fill:#ccc
}

.next[data-v-98ac2448]:hover,.prev[data-v-98ac2448]:hover{
  background-color:transparent!important
}

.next .fa[data-v-98ac2448]:hover,.prev .fa[data-v-98ac2448]:hover{
  opacity:.6
}

.chevron-left[data-v-98ac2448]{
  width:16px;
  height:16px;
  display:block;
  background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-2 -2 10 10%27%3E%3Cpath d=%27M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z%27/%3E%3C/svg%3E")
}

.chevron-right[data-v-98ac2448]{
  width:16px;
  height:16px;
  display:block;
  background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-2 -2 10 10%27%3E%3Cpath d=%27M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z%27/%3E%3C/svg%3E")
}

.yearselect[data-v-98ac2448]{
  padding-right:1px;
  border:none;
  -webkit-appearance:menulist;
  -moz-appearance:menulist;
  appearance:menulist
}

.monthselect[data-v-98ac2448]{
  border:none
}

.daterangepicker .ranges{
  text-align:left;
  margin:0;
  width:100%
}

.daterangepicker .ranges ul{
  list-style:none;
  margin:0 auto;
  padding:0;
  width:100%
}

.daterangepicker .ranges li{
  font-size:12px;
  padding:8px 12px;
  cursor:pointer
}

.daterangepicker .ranges li:hover{
  background-color:#eee;
  color:#000
}

.daterangepicker .ranges li.active{
  background-color:#08c;
  color:#fff
}

.daterangepicker .monthselect,.daterangepicker .yearselect{
  font-size:12px;
  padding:1px;
  height:auto;
  margin:0;
  cursor:default;
  width:calc(50% - 1rem)
}

.daterangepicker .monthselect{
  margin-right:1rem
}

.daterangepicker .calendar-time{
  text-align:center;
  margin:4px auto 0 auto;
  line-height:30px;
  position:relative;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:center;
  -ms-flex-pack:center;
  justify-content:center
}

.daterangepicker .calendar-time select.disabled{
  color:#ccc;
  cursor:not-allowed
}

.daterangepicker select.ampmselect,.daterangepicker select.hourselect,.daterangepicker select.minuteselect,.daterangepicker select.secondselect{
  width:50px;
  margin:2px;
  background:#eee;
  border:1px solid #eee;
  padding:2px;
  outline:0;
  font-size:12px
}

.daterangepicker .drp-buttons .btn{
  margin-left:8px;
  font-size:12px;
  font-weight:700;
  padding:4px 8px
}

.daterangepicker .btn{
  display:inline-block;
  text-align:center;
  vertical-align:middle;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  background-color:transparent;
  border:1px solid transparent
}

.daterangepicker .btn-primary,.daterangepicker .btn-success{
  background-color:#28a745;
  color:#fff
}

.daterangepicker .btn-secondary{
  background-color:#6c757d;
  color:#fff
}

.vue-daterange-picker *,.vue-daterange-picker :after,.vue-daterange-picker :before{
  -webkit-box-sizing:border-box;
  box-sizing:border-box
}

.drp-calendar .col .left{
  -webkit-box-flex:0;
  -ms-flex:0 0 auto;
  flex:0 0 auto
}

.daterangepicker.hide-calendars.show-ranges .ranges,.daterangepicker.hide-calendars.show-ranges .ranges ul{
  width:100%
}

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

.daterangepicker[readonly]{
  pointer-events:none
}

.daterangepicker{
  position:absolute;
  color:inherit;
  background-color:#fff;
  border-radius:4px;
  border:1px solid #ddd;
  width:278px;
  max-width:none;
  padding:0;
  margin-top:7px;
  top:100px;
  left:20px;
  z-index:3001;
  display:none;
  font-size:15px;
  line-height:1em
}

.daterangepicker:after,.daterangepicker:before{
  position:absolute;
  display:inline-block;
  border-bottom-color:rgba(0,0,0,.2);
  content:""
}

.daterangepicker:before{
  top:-7px;
  border-right:7px solid transparent;
  border-left:7px solid transparent;
  border-bottom:7px solid #ccc
}

.daterangepicker:after{
  top:-6px;
  border-right:6px solid transparent;
  border-bottom:6px solid #fff;
  border-left:6px solid transparent
}

.daterangepicker.opensleft:before{
  right:9px
}

.daterangepicker.opensleft:after{
  right:10px
}

.daterangepicker.openscenter:after,.daterangepicker.openscenter:before{
  left:0;
  right:0;
  width:0;
  margin-left:auto;
  margin-right:auto
}

.daterangepicker.opensright:before{
  left:9px
}

.daterangepicker.opensright:after{
  left:10px
}

.daterangepicker.drop-up{
  margin-top:-7px
}

.daterangepicker.drop-up:before{
  top:auto;
  bottom:-7px;
  border-bottom:initial;
  border-top:7px solid #ccc
}

.daterangepicker.drop-up:after{
  top:auto;
  bottom:-6px;
  border-bottom:initial;
  border-top:6px solid #fff
}

.daterangepicker.single .drp-selected{
  display:none
}

.daterangepicker.show-calendar .drp-buttons,.daterangepicker.show-calendar .drp-calendar{
  display:block
}

.daterangepicker.auto-apply .drp-buttons{
  display:none
}

.daterangepicker .drp-calendar{
  display:none;
  max-width:270px;
  width:270px
}

.daterangepicker .drp-calendar.left{
  padding:8px 0 8px 8px
}

.daterangepicker .drp-calendar.right{
  padding:8px
}

.daterangepicker .drp-calendar.single .calendar-table{
  border:none
}

.daterangepicker .calendar-table .next span,.daterangepicker .calendar-table .prev span{
  color:#fff;
  border:solid #000;
  border-width:0 2px 2px 0;
  border-radius:0;
  display:inline-block;
  padding:3px
}

.daterangepicker .calendar-table .next span{
  transform:rotate(-45deg);
  -webkit-transform:rotate(-45deg)
}

.daterangepicker .calendar-table .prev span{
  transform:rotate(135deg);
  -webkit-transform:rotate(135deg)
}

.daterangepicker .calendar-table td,.daterangepicker .calendar-table th{
  white-space:nowrap;
  text-align:center;
  vertical-align:middle;
  min-width:32px;
  width:32px;
  height:24px;
  line-height:24px;
  font-size:12px;
  border-radius:4px;
  border:1px solid transparent;
  cursor:pointer
}

.daterangepicker .calendar-table{
  border:1px solid #fff;
  border-radius:4px;
  background-color:#fff
}

.daterangepicker .calendar-table table{
  width:100%;
  margin:0;
  border-spacing:0;
  border-collapse:collapse;
  display:table
}

.daterangepicker td.available:hover,.daterangepicker th.available:hover{
  background-color:#eee;
  border-color:transparent;
  color:inherit
}

.daterangepicker td.week,.daterangepicker th.week{
  font-size:80%;
  color:#ccc
}

.daterangepicker td.off,.daterangepicker td.off.end-date,.daterangepicker td.off.in-range,.daterangepicker td.off.start-date{
  background-color:#fff;
  border-color:transparent;
  color:#999
}

.daterangepicker td.in-range{
  background-color:#ebf4f8;
  border-color:transparent;
  color:#000;
  border-radius:0
}

.daterangepicker td.start-date{
  border-radius:4px 0 0 4px
}

.daterangepicker td.end-date{
  border-radius:0 4px 4px 0
}

.daterangepicker td.start-date.end-date{
  border-radius:4px
}

.daterangepicker td.active,.daterangepicker td.active:hover{
  background-color:#357ebd;
  border-color:transparent;
  color:#fff
}

.daterangepicker th.month{
  width:auto
}

.daterangepicker option.disabled,.daterangepicker td.disabled{
  color:#999;
  cursor:not-allowed;
  text-decoration:line-through
}

.daterangepicker select.yearselect{
  width:40%
}

.daterangepicker .drp-buttons{
  clear:both;
  text-align:right;
  padding:8px;
  border-top:1px solid #ddd;
  display:none;
  line-height:12px;
  vertical-align:middle
}

.daterangepicker .drp-selected{
  display:inline-block;
  font-size:12px;
  padding-right:8px
}

.daterangepicker.show-ranges .drp-calendar.left{
  border-left:1px solid #ddd
}

.daterangepicker.show-calendar .ranges{
  margin-top:8px;
  width:auto
}

@media (min-width:564px){
  .daterangepicker{
    width:auto
  }

  .daterangepicker .ranges ul{
    width:140px
  }

  .daterangepicker.single .ranges ul{
    width:100%
  }

  .daterangepicker.single .drp-calendar.left{
    clear:none
  }

  .daterangepicker.ltr{
    direction:ltr;
    text-align:left
  }

  .daterangepicker.ltr .drp-calendar.left{
    clear:left;
    margin-right:0
  }

  .daterangepicker.ltr .drp-calendar.left .calendar-table{
    border-right:none;
    border-top-right-radius:0;
    border-bottom-right-radius:0
  }

  .daterangepicker.ltr .drp-calendar.right{
    margin-left:0
  }

  .daterangepicker.ltr .drp-calendar.right .calendar-table{
    border-left:none;
    border-top-left-radius:0;
    border-bottom-left-radius:0
  }

  .daterangepicker.ltr .drp-calendar.left .calendar-table{
    padding-right:8px
  }

  .daterangepicker.rtl{
    direction:rtl;
    text-align:right
  }

  .daterangepicker.rtl .drp-calendar.left{
    clear:right;
    margin-left:0
  }

  .daterangepicker.rtl .drp-calendar.left .calendar-table{
    border-left:none;
    border-top-left-radius:0;
    border-bottom-left-radius:0
  }

  .daterangepicker.rtl .drp-calendar.right{
    margin-right:0
  }

  .daterangepicker.rtl .drp-calendar.right .calendar-table{
    border-right:none;
    border-top-right-radius:0;
    border-bottom-right-radius:0
  }

  .daterangepicker.rtl .drp-calendar.left .calendar-table{
    padding-left:12px
  }

  .daterangepicker.rtl .drp-calendar,.daterangepicker.rtl .ranges{
    text-align:right
  }
}

@media (min-width:730px){
  .daterangepicker .drp-calendar.left{
    clear:none!important
  }
}

.calendars[data-v-1ebd09d2]{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap
}

.reportrange-text[data-v-1ebd09d2]{
  background:#fff;
  cursor:pointer;
  padding:5px 10px;
  border:1px solid #ccc;
  width:100%;
  overflow:hidden
}

.daterangepicker[data-v-1ebd09d2]{
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
  -ms-flex-direction:column;
  flex-direction:column;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  width:auto
}

@media screen and (max-width:768px){
  .daterangepicker.show-ranges .drp-calendar.left[data-v-1ebd09d2]{
    border-left:0
  }

  .daterangepicker.show-ranges .ranges[data-v-1ebd09d2]{
    border-bottom:1px solid #ddd;
    width:100%
  }

  .daterangepicker.show-ranges .ranges[data-v-1ebd09d2] ul{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    width:auto
  }
}

@media screen and (max-width:541px){
  .daterangepicker .calendars-container[data-v-1ebd09d2]{
    -ms-flex-wrap:wrap;
    flex-wrap:wrap
  }
}

@media screen and (min-width:540px){
  .daterangepicker.show-weeknumbers[data-v-1ebd09d2],.daterangepicker[data-v-1ebd09d2]{
    min-width:486px
  }
}

@media screen and (min-width:768px){
  .daterangepicker.show-ranges.show-weeknumbers[data-v-1ebd09d2],.daterangepicker.show-ranges[data-v-1ebd09d2]{
    min-width:682px
  }
}

@media screen and (max-width:340px){
  .daterangepicker.single.show-weeknumbers[data-v-1ebd09d2],.daterangepicker.single[data-v-1ebd09d2]{
    min-width:250px
  }
}

@media screen and (min-width:339px){
  .daterangepicker.single[data-v-1ebd09d2]{
    min-width:auto
  }

  .daterangepicker.single.show-ranges.show-weeknumbers[data-v-1ebd09d2],.daterangepicker.single.show-ranges[data-v-1ebd09d2]{
    min-width:356px
  }

  .daterangepicker.single.show-ranges .drp-calendar.left[data-v-1ebd09d2]{
    border-left:1px solid #ddd
  }

  .daterangepicker.single.show-ranges .ranges[data-v-1ebd09d2]{
    max-width:none;
    -ms-flex-preferred-size:auto;
    flex-basis:auto;
    border-bottom:0
  }

  .daterangepicker.single.show-ranges .ranges[data-v-1ebd09d2] ul{
    display:block;
    width:100%
  }
}

.daterangepicker.show-calendar[data-v-1ebd09d2]{
  display:block;
  top:auto
}

.daterangepicker.opensleft[data-v-1ebd09d2]{
  right:10px;
  left:auto
}

.daterangepicker.openscenter[data-v-1ebd09d2]{
  right:auto;
  left:50%;
  -webkit-transform:translate(-50%);
  transform:translate(-50%)
}

.daterangepicker.opensright[data-v-1ebd09d2]{
  left:10px;
  right:auto
}

.slide-fade-enter-active[data-v-1ebd09d2]{
  -webkit-transition:all .2s ease;
  transition:all .2s ease
}

.slide-fade-leave-active[data-v-1ebd09d2]{
  -webkit-transition:all .1s cubic-bezier(1,.5,.8,1);
  transition:all .1s cubic-bezier(1,.5,.8,1)
}

.slide-fade-enter[data-v-1ebd09d2],.slide-fade-leave-to[data-v-1ebd09d2]{
  -webkit-transform:translateX(10px);
  transform:translateX(10px);
  opacity:0
}

.vue-daterange-picker[data-v-1ebd09d2]{
  position:relative;
  display:inline-block;
  min-width:60px
}

.vue-daterange-picker .show-ranges.hide-calendars[data-v-1ebd09d2]{
  width:150px;
  min-width:150px
}

.inline .daterangepicker[data-v-1ebd09d2]{
  position:static
}

.inline .daterangepicker[data-v-1ebd09d2]:after,.inline .daterangepicker[data-v-1ebd09d2]:before{
  display:none
}

/* purgecss end ignore */

/*# sourceMappingURL=783.309e0ed06c2d787fcd2f.css.map*/