@charset "UTF-8";
/**
The MIT License (MIT)

Copyright (c) 2015 strarsis https://github.com/strarsis/sass-math-pow

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
 */
/**
The MIT License (MIT)

Copyright (c) 2015 strarsis https://github.com/strarsis/sass-math-pow

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
 */
/**
 * 1. Focus rings shouldn't be visible on scrollable regions, but a11y requires them to be focusable.
 *    Browser's supporting `:focus-visible` will still show outline on keyboard focus only.
 *    Others like Safari, won't show anything at all.
 * 2. Force the `:focus-visible` when the `tabindex=0` (is tabbable)
 */
/**
 * For quickly applying a full-height element whether using flex or not
 */
/*
 * Creates the Amsterdam style of button with a transparent background
 */
/*
 * Creates the Amsterdam style of fill button
 */
@keyframes euiAnimFadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes euiGrow {
  0% {
    opacity: 0; }
  1% {
    opacity: 0;
    transform: scale(0); }
  100% {
    opacity: 1;
    transform: scale(1); } }

@keyframes focusRingAnimate {
  0% {
    box-shadow: 0 0 0 2px rgba(0, 119, 204, 0); }
  100% {
    box-shadow: 0 0 0 2px #0071c2; } }

@keyframes focusRingAnimateLarge {
  0% {
    box-shadow: 0 0 0 10px rgba(0, 119, 204, 0); }
  100% {
    box-shadow: 0 0 0 4px #0071c2; } }

@keyframes euiButtonActive {
  50% {
    transform: translateY(1px); } }

/**
 * LEGEND
 * __day-name : Week headers like Su, Mo, etc
 * __day : Number on the calendar
 *       --highlighted
 *       --disabled :               _this.isDisabled(),
 *       --selected :               _this.isSameDay(_this.props.selected),
    *       --range-start :            _this.isRangeStart(),
    *       --range-end :              _this.isRangeEnd(),
 *       --keyboard-selected :      _this.isKeyboardSelected(),
 *       --in-range :               _this.isInRange(),
    *       --in-selecting-range :     _this.isInSelectingRange(),
    *       --selecting-range-start :  _this.isSelectingRangeStart(),
    *       --selecting-range-end :    _this.isSelectingRangeEnd(),
 *       --today :                  _this.isSameDay(now(_this.props.utcOffset)),
 *       --weekend :                _this.isWeekend(),
 *       --outside-month :          _this.isOutsideMonth()
 */
.react-datepicker__day-names,
.react-datepicker__week {
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  flex-grow: 1; }

.react-datepicker__day-name,
.react-datepicker__day {
  font-weight: 500;
  text-align: center;
  color: #1a1c21;
  display: inline-block;
  width: 32px;
  line-height: 32px;
  border-radius: 4px;
  margin: 2px; }

.react-datepicker__day-name {
  color: #69707D; }

.react-datepicker__day {
  cursor: pointer;
  transition: transform 90ms ease-in-out; }
  .react-datepicker__day:hover {
    color: #0061a6;
    background-color: rgba(0, 119, 204, 0.2);
    text-decoration: underline; }
    @media screen and (prefers-reduced-motion: no-preference) {
      .react-datepicker__day:hover {
        transform: scale(1.1); } }
  .react-datepicker__day--today {
    color: #07C;
    font-weight: 700; }
  .react-datepicker__day--outside-month {
    color: #69707D; }
  .react-datepicker__day--highlighted, .react-datepicker__day--highlighted:hover {
    color: #00726b;
    background-color: rgba(0, 191, 179, 0.2); }
  .react-datepicker__day--in-range, .react-datepicker__day--in-range:hover {
    color: #0061a6;
    background-color: rgba(0, 119, 204, 0.2); }
  .react-datepicker__day--in-range:not(.react-datepicker__day--selected):not(:hover), .react-datepicker__day--in-range.react-datepicker__day--disabled:not(.react-datepicker__day--selected), .react-datepicker__day--in-range.react-datepicker__day--disabled:not(.react-datepicker__day--selected):hover {
    box-shadow: -2px 0 rgba(0, 119, 204, 0.2), 2px 0 rgba(0, 119, 204, 0.2);
    border-radius: 0; }
    .react-datepicker__day--in-range:not(.react-datepicker__day--selected):not(:hover):first-of-type, .react-datepicker__day--in-range.react-datepicker__day--disabled:not(.react-datepicker__day--selected):first-of-type, .react-datepicker__day--in-range.react-datepicker__day--disabled:not(.react-datepicker__day--selected):hover:first-of-type {
      box-shadow: 2px 0 rgba(0, 119, 204, 0.2); }
    .react-datepicker__day--in-range:not(.react-datepicker__day--selected):not(:hover):last-of-type, .react-datepicker__day--in-range.react-datepicker__day--disabled:not(.react-datepicker__day--selected):last-of-type, .react-datepicker__day--in-range.react-datepicker__day--disabled:not(.react-datepicker__day--selected):hover:last-of-type {
      box-shadow: -2px 0 rgba(0, 119, 204, 0.2); }
  .react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--selected:hover, .react-datepicker__day--in-selecting-range:hover {
    background-color: #07C;
    color: #FFF; }
  .react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range) {
    background-color: rgba(189, 39, 30, 0.5); }
  .react-datepicker__day--disabled, .react-datepicker__day--disabled:hover {
    background-color: rgba(171, 180, 196, 0.1);
    color: #a2abba;
    cursor: not-allowed;
    text-decoration: none;
    transform: none; }
    .react-datepicker__day--disabled.react-datepicker__day--in-range:not(.react-datepicker__day--selected), .react-datepicker__day--disabled.react-datepicker__day--in-range:not(.react-datepicker__day--selected):hover, .react-datepicker__day--disabled:hover.react-datepicker__day--in-range:not(.react-datepicker__day--selected), .react-datepicker__day--disabled:hover.react-datepicker__day--in-range:not(.react-datepicker__day--selected):hover {
      color: #8c9daa;
      background-color: rgba(0, 119, 204, 0.2); }
  .react-datepicker__day--disabled.react-datepicker__day--selected, .react-datepicker__day--disabled.react-datepicker__day--selected:hover {
    color: #BD271E;
    background-color: rgba(189, 39, 30, 0.2); }

/**
 * LEGEND
 * __time-list-item :
 *       --preselected : closest current time but not selected (also applied when using arrow keys to indicate focus)
 *       --selected
 *       --disabled
 *       --injected
 */
.react-datepicker__header--time {
  display: none; }

.react-datepicker__time-container {
  border-left: #D3DAE6;
  width: auto;
  display: flex;
  margin-top: 40px;
  margin-left: 8px;
  flex-grow: 1;
  background-color: #fafbfd;
  border-radius: 6px; }
  .react-datepicker__time-container--focus .react-datepicker__time-list-item--preselected {
    text-decoration: underline; }
  @media only screen and (max-width: 574px) {
    .react-datepicker__time-container {
      margin-top: 0; } }

.react-datepicker__time,
.react-datepicker__time-box {
  display: flex;
  flex-direction: column;
  flex-grow: 1; }

.react-datepicker__time-list {
  scrollbar-color: rgba(105, 112, 125, 0.5) transparent;
  scrollbar-width: thin;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 4px 12px;
  height: 100px !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  gap: 4px; }
  .react-datepicker__time-list::-webkit-scrollbar {
    width: 16px;
    height: 16px; }
  .react-datepicker__time-list::-webkit-scrollbar-thumb {
    background-color: rgba(105, 112, 125, 0.5);
    background-clip: content-box;
    border-radius: 16px;
    border: 6px solid transparent; }
  .react-datepicker__time-list::-webkit-scrollbar-corner, .react-datepicker__time-list::-webkit-scrollbar-track {
    background-color: transparent; }
  .react-datepicker__time-list:focus {
    outline: none;
    /* 1 */ }
  .react-datepicker__time-list[tabindex='0']:focus:focus-visible {
    outline-style: auto;
    /* 2 */ }

.react-datepicker__time-list-item {
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
  vertical-align: middle;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  letter-spacing: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-kerning: normal;
          font-feature-settings: "kern";
          font-kerning: normal;
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  font-weight: 500;
  text-decoration: none;
  outline-offset: -1px;
  transform: none !important;
  /* 1 */
  animation: none !important;
  /* 1 */
  transition-timing-function: ease-in;
  /* 2 */
  transition-duration: 150ms;
  /* 2 */
  padding: 0 8px;
  height: 24px;
  line-height: 24px;
  border-radius: 4px;
  font-size: 12px; }
  @media screen and (prefers-reduced-motion: no-preference) {
    .react-datepicker__time-list-item {
      transition: transform 250ms ease-in-out, background-color 250ms ease-in-out; }
      .react-datepicker__time-list-item:hover:not(:disabled) {
        transform: translateY(-1px); }
      .react-datepicker__time-list-item:focus {
        animation: euiButtonActive 250ms cubic-bezier(0.34, 1.61, 0.7, 1); }
      .react-datepicker__time-list-item:active:not(:disabled) {
        transform: translateY(1px); } }
  .react-datepicker__time-list-item:hover:not(:disabled), .react-datepicker__time-list-item:focus {
    text-decoration: underline; }
  .react-datepicker__time-list-item--disabled, .react-datepicker__time-list-item--disabled:hover {
    text-decoration: none !important;
    cursor: not-allowed;
    color: #ABB4C4;
    background-color: transparent; }
  .react-datepicker__time-list-item--injected, .react-datepicker__time-list-item--injected:hover {
    color: #00726b;
    background-color: rgba(0, 191, 179, 0.2); }
  .react-datepicker__time-list-item--preselected, .react-datepicker__time-list-item--preselected:hover {
    background: rgba(0, 119, 204, 0.1); }
  .react-datepicker__time-list-item--selected, .react-datepicker__time-list-item--selected:hover {
    background-color: #07C;
    color: #FFF; }

.react-datepicker--time-only {
  padding: 0 !important; }
  .react-datepicker--time-only .react-datepicker__time-container {
    background-color: transparent;
    margin: 0; }
  .react-datepicker--time-only .react-datepicker__time-list {
    height: 204px !important; }
  .react-datepicker--time-only .react-datepicker__time-list-item {
    font-size: 14px;
    min-width: 112px;
    text-align: left; }

/**
 * LEGEND
 * __header__dropdown : Contains the month and year, but affords for the navigational arrows

 *   __month-dropdown-container: Contains both static/selected control and the dropdown
 *     __month-read-view: The static control
 *     __month-dropdown: The absolutely positioned list
 *       __month-option: Each option in the list
 *                       --selected_month
 *                       --selected
 *                       --preselected

 *   __year-dropdown-container: Contains both static/selected control and the dropdown
 *     __year-read-view: The static control
 *     __year-dropdown: The absolutely positioned list
 *       __year-option: Each option in the list
 *                       --selected_year
 *                       --selected
 *                       --preselected
 */
.react-datepicker__header__dropdown {
  padding: 8px;
  display: flex;
  gap: 4px;
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  justify-content: center; }

/**
 * Make the top selectors look like select inputs
 */
.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
  max-width: 400px;
  width: 100%;
  height: 40px;
  background-color: #fbfcfd;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  box-shadow: 0 0 transparent, inset 0 0 0 1px rgba(17, 43, 134, 0.1);
  transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  letter-spacing: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-kerning: normal;
          font-feature-settings: "kern";
          font-kerning: normal;
  font-size: 14px;
  color: #343741;
  border: none;
  border-radius: 6px;
  padding: 12px;
  background-color: #fbfcfd;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1);
  transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
  padding: 8px;
  border-radius: 4px;
  height: 32px;
  font-weight: 500;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center; }
  @supports (-moz-appearance: none) {
    .react-datepicker__year-read-view,
    .react-datepicker__month-read-view,
    .react-datepicker__month-year-read-view {
      transition-property: box-shadow, background-image, background-size; } }
  .react-datepicker__year-read-view::-moz-placeholder,
  .react-datepicker__month-read-view::-moz-placeholder,
  .react-datepicker__month-year-read-view::-moz-placeholder {
    color: #69707D;
    opacity: 1; }
  .react-datepicker__year-read-view::-moz-placeholder, .react-datepicker__month-read-view::-moz-placeholder, .react-datepicker__month-year-read-view::-moz-placeholder {
    color: #69707D;
    opacity: 1; }
  .react-datepicker__year-read-view:-ms-input-placeholder, .react-datepicker__month-read-view:-ms-input-placeholder, .react-datepicker__month-year-read-view:-ms-input-placeholder {
    color: #69707D;
    opacity: 1; }
  .react-datepicker__year-read-view::placeholder,
  .react-datepicker__month-read-view::placeholder,
  .react-datepicker__month-year-read-view::placeholder {
    color: #69707D;
    opacity: 1; }
  @supports (-moz-appearance: none) {
    .react-datepicker__year-read-view,
    .react-datepicker__month-read-view,
    .react-datepicker__month-year-read-view {
      transition-property: box-shadow, background-image, background-size; } }
  .react-datepicker__year-read-view:hover,
  .react-datepicker__month-read-view:hover,
  .react-datepicker__month-year-read-view:hover {
    cursor: pointer;
    text-decoration: underline; }
  .react-datepicker__year-read-view--down-arrow,
  .react-datepicker__month-read-view--down-arrow,
  .react-datepicker__month-year-read-view--down-arrow {
    background-position: center;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiI+ICA8ZGVmcz4gICAgPHBhdGggaWQ9ImFycm93X2Rvd24tYSIgZD0iTTEzLjA2ODg1MDgsNS4xNTcyNTAzOCBMOC4zODQyMzk3NSw5Ljc2ODI3NDI4IEM4LjE3MDU0NDE1LDkuOTc4NjEzMDggNy44Mjk5OTIxNCw5Ljk3OTE0MDk1IDcuNjE1NzYwMjUsOS43NjgyNzQyOCBMMi45MzExNDkxNSw1LjE1NzI1MDM4IEMyLjcxODEzNTksNC45NDc1ODMyMSAyLjM3Mjc3MzE5LDQuOTQ3NTgzMjEgMi4xNTk3NTk5NCw1LjE1NzI1MDM4IEMxLjk0Njc0NjY5LDUuMzY2OTE3NTYgMS45NDY3NDY2OSw1LjcwNjg1NTIyIDIuMTU5NzU5OTQsNS45MTY1MjI0IEw2Ljg0NDM3MTA0LDEwLjUyNzU0NjMgQzcuNDg1MTc0MjQsMTEuMTU4MjgzNiA4LjUxNjQ0OTc5LDExLjE1NjY4NTEgOS4xNTU2Mjg5NiwxMC41Mjc1NDYzIEwxMy44NDAyNDAxLDUuOTE2NTIyNCBDMTQuMDUzMjUzMyw1LjcwNjg1NTIyIDE0LjA1MzI1MzMsNS4zNjY5MTc1NiAxMy44NDAyNDAxLDUuMTU3MjUwMzggQzEzLjYyNzIyNjgsNC45NDc1ODMyMSAxMy4yODE4NjQxLDQuOTQ3NTgzMjEgMTMuMDY4ODUwOCw1LjE1NzI1MDM4IFoiLz4gIDwvZGVmcz4gIDxnIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgIDx1c2UgZmlsbC1ydWxlPSJub256ZXJvIiB4bGluazpocmVmPSIjYXJyb3dfZG93bi1hIi8+ICA8L2c+PC9zdmc+);
    right: 8px;
    height: 12px;
    width: 12px;
    display: inline-block;
    background-size: cover; }
  .react-datepicker__year-read-view--selected-month, .react-datepicker__year-read-view--selected-year,
  .react-datepicker__month-read-view--selected-month,
  .react-datepicker__month-read-view--selected-year,
  .react-datepicker__month-year-read-view--selected-month,
  .react-datepicker__month-year-read-view--selected-year {
    max-width: 100%;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important; }

.react-datepicker__year-dropdown-container,
.react-datepicker__month-dropdown-container {
  position: relative;
  display: inline-block;
  flex-grow: 1;
  max-width: 400px; }

.react-datepicker__year-dropdown-container > div:not([class*='read-view']),
.react-datepicker__month-dropdown {
  scrollbar-color: rgba(105, 112, 125, 0.5) transparent;
  scrollbar-width: thin;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 0.7px 1.4px rgba(0, 0, 0, 0.07), 0 1.9px 4px rgba(0, 0, 0, 0.05), 0 4.5px 10px rgba(0, 0, 0, 0.05);
  height: auto;
  max-height: 250px;
  background-color: #FFF;
  position: absolute;
  z-index: 1;
  border-radius: 6px;
  min-width: 100px;
  width: 100%; }
  .react-datepicker__year-dropdown-container > div:not([class*='read-view'])::-webkit-scrollbar,
  .react-datepicker__month-dropdown::-webkit-scrollbar {
    width: 16px;
    height: 16px; }
  .react-datepicker__year-dropdown-container > div:not([class*='read-view'])::-webkit-scrollbar-thumb,
  .react-datepicker__month-dropdown::-webkit-scrollbar-thumb {
    background-color: rgba(105, 112, 125, 0.5);
    background-clip: content-box;
    border-radius: 16px;
    border: 6px solid transparent; }
  .react-datepicker__year-dropdown-container > div:not([class*='read-view'])::-webkit-scrollbar-corner, .react-datepicker__year-dropdown-container > div:not([class*='read-view'])::-webkit-scrollbar-track,
  .react-datepicker__month-dropdown::-webkit-scrollbar-corner,
  .react-datepicker__month-dropdown::-webkit-scrollbar-track {
    background-color: transparent; }
  .react-datepicker__year-dropdown-container > div:not([class*='read-view']):focus,
  .react-datepicker__month-dropdown:focus {
    outline: none;
    /* 1 */ }
  .react-datepicker__year-dropdown-container > div:not([class*='read-view'])[tabindex='0']:focus:focus-visible,
  .react-datepicker__month-dropdown[tabindex='0']:focus:focus-visible {
    outline-style: auto;
    /* 2 */ }

.react-datepicker__year-dropdown-container > div:not([class*='read-view']) .react-datepicker__year-dropdown {
  padding: 4px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end; }

.react-datepicker__month-dropdown-container {
  flex-grow: 2; }
  .react-datepicker__month-dropdown-container .react-datepicker__month-dropdown {
    padding: 4px;
    min-width: 140px; }

.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
  padding: 0 8px;
  height: 24px;
  line-height: 24px;
  border-radius: 4px;
  font-size: 14px;
  margin: 4px 0;
  cursor: pointer; }
  .react-datepicker__year-option:hover, .react-datepicker__year-option:focus,
  .react-datepicker__month-option:hover,
  .react-datepicker__month-option:focus,
  .react-datepicker__month-year-option:hover,
  .react-datepicker__month-year-option:focus {
    text-decoration: underline; }
  .react-datepicker__year-option--selected,
  .react-datepicker__month-option--selected,
  .react-datepicker__month-year-option--selected {
    display: none; }

.react-datepicker__year-option--preselected, .react-datepicker__year-option--preselected:hover,
.react-datepicker__month-option--preselected,
.react-datepicker__month-option--preselected:hover {
  background: rgba(0, 119, 204, 0.1); }

.react-datepicker__year-option--selected_year, .react-datepicker__year-option--selected_year:hover,
.react-datepicker__month-option--selected_month,
.react-datepicker__month-option--selected_month:hover {
  background-color: #07C;
  color: #FFF; }

.react-datepicker__navigation--next,
.react-datepicker__navigation--previous {
  background-position: center;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iIzM0Mzc0MSIgZD0iTTExLjY5MiA3SDMuNTU2QzMuMjQ5IDcgMyA3LjIyNCAzIDcuNXMuMjQ5LjUuNTU2LjVoOC4xMzZsLTQuMDk2IDQuMDk2YS41LjUgMCAwMC43MDcuNzA3bDQuMjQzLTQuMjQyYy4yNTgtLjI1OS40MDMtLjU4Ny40MzMtLjkyNWEuNDU0LjQ1NCAwIDAwMC0uMjcyIDEuNDk0IDEuNDk0IDAgMDAtLjQzMy0uOTI1TDguMzAzIDIuMTk3YS41LjUgMCAxMC0uNzA3LjcwN0wxMS42OTIgN3oiLz48L3N2Zz4=);
  cursor: pointer;
  position: absolute;
  top: 8px;
  height: 32px;
  width: 32px;
  z-index: 1;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  border-radius: 4px;
  background-position: center; }
  .react-datepicker__navigation--next:hover, .react-datepicker__navigation--next:focus,
  .react-datepicker__navigation--previous:hover,
  .react-datepicker__navigation--previous:focus {
    background-color: rgba(0, 119, 204, 0.1); }

.react-datepicker__navigation--previous {
  left: 8px;
  transform: rotate(180deg);
  transform-origin: center; }

.react-datepicker__navigation--next {
  right: 8px; }

/* This file is a heavy retheme of react-datepicker's Sass as of v1.4.0
** https://github.com/Hacker0x01/react-datepicker
*/
.euiDatePicker {
  display: block; }
  .euiDatePicker .euiFormControlLayout {
    height: auto; }
  .euiDatePicker.euiDatePicker--inline .euiFormControlLayout {
    width: auto; }
  .euiDatePicker.euiDatePicker--shadow .react-datepicker-popper {
    box-shadow: 0 0.9px 4px -1px rgba(0, 0, 0, 0.08), 0 2.6px 8px -1px rgba(0, 0, 0, 0.06), 0 5.7px 12px -1px rgba(0, 0, 0, 0.05), 0 15px 15px -1px rgba(0, 0, 0, 0.04);
    border: 1px solid #D3DAE6;
    background-color: #FFF;
    border-radius: 0 0 6px 6px; }
  .euiDatePicker.euiDatePicker--shadow.euiDatePicker--inline .react-datepicker {
    box-shadow: 0 0.9px 4px -1px rgba(0, 0, 0, 0.08), 0 2.6px 8px -1px rgba(0, 0, 0, 0.06), 0 5.7px 12px -1px rgba(0, 0, 0, 0.05), 0 15px 15px -1px rgba(0, 0, 0, 0.04);
    border: 1px solid #D3DAE6;
    background-color: #FFF;
    border-radius: 6px; }

.react-datepicker {
  font-size: 12px;
  color: #343741;
  display: flex;
  border-radius: 6px;
  padding: 8px;
  justify-content: center; }

.euiDatePicker.euiDatePicker--shadow .react-datepicker-popper {
  z-index: 2000;
  animation: euiAnimFadeIn 150ms ease-in; }
  .euiDatePicker.euiDatePicker--shadow .react-datepicker-popper[data-placement^='top'] {
    box-shadow: 0 0 0.8px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.04), 0 0 5px rgba(0, 0, 0, 0.04), 0 0 17px rgba(0, 0, 0, 0.03);
    border-radius: 6px 6px 0 0; }
  .euiDatePicker.euiDatePicker--shadow .react-datepicker-popper[data-placement^='right'] {
    margin-left: 0; }
  .euiDatePicker.euiDatePicker--shadow .react-datepicker-popper[data-placement^='left'] {
    margin-right: 0; }

.react-datepicker__current-month,
.react-datepicker-time__header {
  display: none; }

.react-datepicker__screenReaderOnly {
  position: absolute;
  top: auto;
  left: -10000px;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  overflow: hidden;
  margin: -1px; }

.react-datepicker__focusTrap {
  display: flex;
  justify-content: center; }

.react-datepicker__month-container {
  flex-grow: 1;
  margin-top: 36px; }

.react-datepicker__header {
  display: flex;
  flex-direction: column; }

.react-datepicker-time__header {
  max-width: 100%;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important; }

.react-datepicker__month {
  text-align: center;
  border-radius: 6px; }

@media only screen and (max-width: 574px) {
  .react-datepicker__focusTrap,
  .react-datepicker {
    flex-direction: column; }
  .react-datepicker__time-box {
    margin-top: 0; } }

.euiAccordionForm__extraAction {
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.694, 0.0482, 0.335, 1); }
  .euiAccordionForm__extraAction:focus {
    opacity: 1; }

.euiAccordionForm__title {
  display: inline-block; }

.euiAccordionForm__button {
  padding: 16px 16px 16px 0; }
  .euiAccordionForm__button:hover {
    text-decoration: none; }
    .euiAccordionForm__button:hover .euiAccordionForm__title {
      text-decoration: underline; }

.euiAccordionForm {
  border-top: 1px solid #D3DAE6;
  border-bottom: 1px solid #D3DAE6; }
  .euiAccordionForm + .euiAccordionForm {
    border-top: none; }
  .euiAccordionForm:hover .euiAccordionForm__extraAction {
    opacity: 1;
    visibility: visible; }

.euiBasicTable-loading {
  position: relative; }
  .euiBasicTable-loading tbody {
    overflow: hidden; }
  .euiBasicTable-loading tbody:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #07C;
    animation: euiBasicTableLoading 1000ms linear;
    animation-iteration-count: infinite; }

@keyframes euiBasicTableLoading {
  from {
    left: 0;
    width: 0; }
  20% {
    left: 0;
    width: 40%; }
  80% {
    left: 60%;
    width: 40%; }
  100% {
    left: 100%;
    width: 0; } }

.euiButtonContent {
  height: 100%;
  width: 100%;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center; }
  .euiButtonContent .euiButtonContent__icon,
  .euiButtonContent .euiButtonContent__spinner {
    flex-shrink: 0; }
  .euiButtonContent > * + * {
    -webkit-margin-start: 8px;
            margin-inline-start: 8px; }

.euiButtonContent--iconRight {
  height: 100%;
  width: 100%;
  vertical-align: middle;
  flex-direction: row-reverse; }
  .euiButtonContent--iconRight .euiButtonContent__icon,
  .euiButtonContent--iconRight .euiButtonContent__spinner {
    flex-shrink: 0; }
  .euiButtonContent--iconRight > * + * {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 8px;
            margin-inline-end: 8px; }

/**
 * 1. We don't want any of the animations that come inherited from the mixin.
 *    These should act like normal links instead.
 * 2. Change the easing, quickness to not bounce so lighter backgrounds don't flash
 */
.euiButtonEmpty {
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
  vertical-align: middle;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  letter-spacing: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-kerning: normal;
          font-feature-settings: "kern";
          font-kerning: normal;
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  font-weight: 500;
  text-decoration: none;
  outline-offset: -1px;
  border-radius: 6px;
  transform: none !important;
  /* 1 */
  animation: none !important;
  /* 1 */
  transition-timing-function: ease-in;
  /* 2 */
  transition-duration: 150ms;
  /* 2 */ }
  @media screen and (prefers-reduced-motion: no-preference) {
    .euiButtonEmpty {
      transition: transform 250ms ease-in-out, background-color 250ms ease-in-out; }
      .euiButtonEmpty:hover:not(:disabled) {
        transform: translateY(-1px); }
      .euiButtonEmpty:focus {
        animation: euiButtonActive 250ms cubic-bezier(0.34, 1.61, 0.7, 1); }
      .euiButtonEmpty:active:not(:disabled) {
        transform: translateY(1px); } }
  .euiButtonEmpty:hover:not(:disabled), .euiButtonEmpty:focus {
    text-decoration: underline; }
  .euiButtonEmpty .euiButtonEmpty__content {
    padding: 0 8px; }
  .euiButtonEmpty .euiButtonEmpty__text {
    text-overflow: ellipsis;
    overflow: hidden; }
  .euiButtonEmpty.euiButtonEmpty--small {
    height: 32px;
    border-radius: 4.002px; }
  .euiButtonEmpty.euiButtonEmpty--xSmall {
    height: 24px;
    border-radius: 4.002px;
    font-size: 12px; }
  .euiButtonEmpty:disabled {
    pointer-events: auto;
    cursor: not-allowed; }
    .euiButtonEmpty:disabled:hover, .euiButtonEmpty:disabled:focus, .euiButtonEmpty:disabled:focus-within {
      text-decoration: none; }
    .euiButtonEmpty:disabled .euiButtonContent__spinner {
      border-color: #07C currentColor currentColor currentColor; }
    .euiButtonEmpty:disabled:hover, .euiButtonEmpty:disabled:focus {
      text-decoration: none; }

.euiButtonEmpty--flushLeft .euiButtonEmpty__content,
.euiButtonEmpty--flushRight .euiButtonEmpty__content,
.euiButtonEmpty--flushBoth .euiButtonEmpty__content {
  padding-left: 0;
  padding-right: 0; }

.euiButtonEmpty--flushLeft {
  margin-right: 8px; }

.euiButtonEmpty--flushRight {
  margin-left: 8px; }

.euiButtonIcon {
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
  vertical-align: middle;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  letter-spacing: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-kerning: normal;
          font-feature-settings: "kern";
          font-kerning: normal;
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  font-weight: 500;
  text-decoration: none;
  outline-offset: -1px;
  border-radius: 6px;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: space-around; }
  @media screen and (prefers-reduced-motion: no-preference) {
    .euiButtonIcon {
      transition: transform 250ms ease-in-out, background-color 250ms ease-in-out; }
      .euiButtonIcon:hover:not(:disabled) {
        transform: translateY(-1px); }
      .euiButtonIcon:focus {
        animation: euiButtonActive 250ms cubic-bezier(0.34, 1.61, 0.7, 1); }
      .euiButtonIcon:active:not(:disabled) {
        transform: translateY(1px); } }
  .euiButtonIcon:hover:not(:disabled), .euiButtonIcon:focus {
    text-decoration: underline; }
  .euiButtonIcon > svg {
    pointer-events: none; }
  .euiButtonIcon:disabled {
    pointer-events: auto;
    cursor: not-allowed; }
    .euiButtonIcon:disabled:hover, .euiButtonIcon:disabled:focus, .euiButtonIcon:disabled:focus-within {
      text-decoration: none; }
    .euiButtonIcon:disabled .euiButtonContent__spinner {
      border-color: #07C currentColor currentColor currentColor; }

.euiButtonIcon--xSmall {
  height: 24px;
  width: 24px;
  border-radius: 4px; }

.euiButtonIcon--small {
  height: 32px;
  width: 32px;
  border-radius: 4px; }

.euiButtonGroup {
  display: inline-block;
  max-width: 100%;
  position: relative; }

.euiButtonGroup--fullWidth {
  display: block; }
  .euiButtonGroup--fullWidth .euiButtonGroup__buttons {
    width: 100%; }
    .euiButtonGroup--fullWidth .euiButtonGroup__buttons .euiButtonGroupButton {
      flex: 1 1; }

.euiButtonGroup__buttons {
  border-radius: 7px;
  max-width: 100%;
  display: flex;
  overflow: hidden; }

.euiButtonGroup--isDisabled .euiButtonGroup__buttons {
  box-shadow: none; }

.euiButtonGroup--compressed .euiButtonGroup__buttons {
  box-shadow: none !important;
  border-radius: 4px;
  background-color: #fbfcfd;
  height: 32px;
  border: 1px solid rgba(17, 43, 134, 0.1);
  overflow: visible; }

.euiButtonGroupButton {
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
  vertical-align: middle;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  letter-spacing: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-kerning: normal;
          font-feature-settings: "kern";
          font-kerning: normal;
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
  min-width: 0;
  flex-shrink: 1;
  flex-grow: 0; }
  .euiButtonGroupButton .euiButton__content {
    padding: 0 12px; }
  .euiButtonGroupButton-isIconOnly .euiButton__content {
    padding: 0 8px; }
  .euiButtonGroupButton.euiButtonGroupButton--small {
    height: 32px;
    line-height: 32px; }
  .euiButtonGroupButton:not(:disabled):hover, .euiButtonGroupButton:not(:disabled):focus, .euiButtonGroupButton:not(:disabled):focus-within {
    text-decoration: underline; }
  .euiButtonGroupButton:disabled {
    pointer-events: auto;
    cursor: not-allowed; }
    .euiButtonGroupButton:disabled:hover, .euiButtonGroupButton:disabled:focus, .euiButtonGroupButton:disabled:focus-within {
      text-decoration: none; }
    .euiButtonGroupButton:disabled .euiButtonContent__spinner {
      border-color: #07C currentColor currentColor currentColor; }
    .euiButtonGroupButton:disabled.euiButtonGroupButton-isSelected {
      color: #717782;
      background-color: #ABB4C4;
      border-color: #ABB4C4; }

.euiButtonGroupButton__textShift::after {
  display: block;
  content: attr(data-text);
  font-weight: 700;
  height: 0;
  overflow: hidden;
  visibility: hidden; }

/**
 * Medium and Small sizing (regular button style)
 */
.euiButtonGroup--medium .euiButtonGroupButton,
.euiButtonGroup--small .euiButtonGroupButton {
  border-radius: 0 !important;
  font-weight: 500; }
  .euiButtonGroup--medium .euiButtonGroupButton:focus, .euiButtonGroup--medium .euiButtonGroupButton:focus-within,
  .euiButtonGroup--small .euiButtonGroupButton:focus,
  .euiButtonGroup--small .euiButtonGroupButton:focus-within {
    outline-style: solid;
    outline-color: #000;
    outline-offset: -2px; }
    .euiButtonGroup--medium .euiButtonGroupButton:focus:focus-visible, .euiButtonGroup--medium .euiButtonGroupButton:focus-within:focus-visible,
    .euiButtonGroup--small .euiButtonGroupButton:focus:focus-visible,
    .euiButtonGroup--small .euiButtonGroupButton:focus-within:focus-visible {
      outline-style: auto; }
  .euiButtonGroup--medium .euiButtonGroupButton:focus:not(:focus-visible),
  .euiButtonGroup--small .euiButtonGroupButton:focus:not(:focus-visible) {
    outline: none; }
  .euiButtonGroup--medium .euiButtonGroupButton:not(:first-child):not(.euiButtonGroupButton-isSelected):not(:disabled),
  .euiButtonGroup--small .euiButtonGroupButton:not(:first-child):not(.euiButtonGroupButton-isSelected):not(:disabled) {
    box-shadow: -1px 0 0 0 rgba(0, 0, 0, 0.05); }
  .euiButtonGroup--medium .euiButtonGroupButton:first-child,
  .euiButtonGroup--small .euiButtonGroupButton:first-child {
    border-radius: 6px 0 0 6px; }
  .euiButtonGroup--medium .euiButtonGroupButton:last-child,
  .euiButtonGroup--small .euiButtonGroupButton:last-child {
    border-radius: 0 6px 6px 0; }

.euiButtonGroup--medium .euiButtonGroupButton-isSelected,
.euiButtonGroup--small .euiButtonGroupButton-isSelected {
  z-index: 0; }

.euiButtonGroup--medium .euiButtonGroupButton-isSelected + .euiButtonGroupButton-isSelected,
.euiButtonGroup--small .euiButtonGroupButton-isSelected + .euiButtonGroupButton-isSelected {
  box-shadow: -1px 0 0 rgba(255, 255, 255, 0.1); }

.euiButtonGroup--small .euiButtonGroup__buttons {
  border-radius: 4px; }

/**
 * Compressed (form style)
 */
.euiButtonGroup--compressed .euiButtonGroupButton {
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  border-radius: 5px;
  padding: 2px;
  background-clip: content-box; }
  .euiButtonGroup--compressed .euiButtonGroupButton .euiButton__content {
    padding-left: 8px;
    padding-right: 8px; }
  .euiButtonGroup--compressed .euiButtonGroupButton.euiButtonGroupButton-isSelected {
    font-weight: 600; }
  .euiButtonGroup--compressed .euiButtonGroupButton:not(:disabled):focus, .euiButtonGroup--compressed .euiButtonGroupButton:not(:disabled):focus-within {
    outline: 2px solid currentColor; }
  .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-primary']:not(:disabled):focus, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-primary']:not(:disabled):focus-within {
    outline-color: #07C; }
    .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-primary']:not(:disabled):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-primary']:not(:disabled):focus-within:focus-visible {
      outline-style: auto; }
  .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-primary']:not(:disabled):focus:not(:focus-visible) {
    outline: none; }
  .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-accent']:not(:disabled):focus, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-accent']:not(:disabled):focus-within {
    outline-color: #F04E98; }
    .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-accent']:not(:disabled):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-accent']:not(:disabled):focus-within:focus-visible {
      outline-style: auto; }
  .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-accent']:not(:disabled):focus:not(:focus-visible) {
    outline: none; }
  .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-success']:not(:disabled):focus, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-success']:not(:disabled):focus-within {
    outline-color: #00BFB3; }
    .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-success']:not(:disabled):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-success']:not(:disabled):focus-within:focus-visible {
      outline-style: auto; }
  .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-success']:not(:disabled):focus:not(:focus-visible) {
    outline: none; }
  .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-warning']:not(:disabled):focus, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-warning']:not(:disabled):focus-within {
    outline-color: #FEC514; }
    .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-warning']:not(:disabled):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-warning']:not(:disabled):focus-within:focus-visible {
      outline-style: auto; }
  .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-warning']:not(:disabled):focus:not(:focus-visible) {
    outline: none; }
  .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-danger']:not(:disabled):focus, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-danger']:not(:disabled):focus-within {
    outline-color: #BD271E; }
    .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-danger']:not(:disabled):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-danger']:not(:disabled):focus-within:focus-visible {
      outline-style: auto; }
  .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-danger']:not(:disabled):focus:not(:focus-visible) {
    outline: none; }
  .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-ghost']:not(:disabled):focus, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-ghost']:not(:disabled):focus-within {
    outline-color: #FFF; }
    .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-ghost']:not(:disabled):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-ghost']:not(:disabled):focus-within:focus-visible {
      outline-style: auto; }
  .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-ghost']:not(:disabled):focus:not(:focus-visible) {
    outline: none; }
  .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-text']:not(:disabled):focus, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-text']:not(:disabled):focus-within {
    outline-color: #69707D; }
    .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-text']:not(:disabled):focus:focus-visible, .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-text']:not(:disabled):focus-within:focus-visible {
      outline-style: auto; }
  .euiButtonGroup--compressed .euiButtonGroupButton[class*='-fill-text']:not(:disabled):focus:not(:focus-visible) {
    outline: none; }

.euiCollapsibleNav:not([class*='push']) {
  z-index: 6000 !important; }

.euiCollapsibleNavGroup:not(:first-child) {
  border-top: 1px solid #D3DAE6; }

.euiCollapsibleNavGroup .euiAccordion__triggerWrapper {
  padding: 16px; }

.euiCollapsibleNavGroup--light {
  background-color: #fafbfd; }

.euiCollapsibleNavGroup--dark {
  background-color: #2a2c34;
  color: #FFF; }
  .euiCollapsibleNavGroup--dark .euiCollapsibleNavGroup__heading:focus .euiAccordion__iconWrapper {
    color: #0d7ecf;
    animation-name: euiCollapsibleNavGroupDarkFocusRingAnimate !important; }
  .euiCollapsibleNavGroup--dark .euiCollapsibleNavGroup__title {
    color: inherit;
    line-height: inherit; }

.euiCollapsibleNavGroup__heading {
  font-weight: 600; }
  .euiCollapsibleNavGroup__heading:not(.euiAccordion__button) {
    padding: 16px; }

.euiCollapsibleNavGroup__children {
  padding: 8px; }

.euiCollapsibleNavGroup--withHeading .euiCollapsibleNavGroup__children {
  padding-top: 0; }

@keyframes euiCollapsibleNavGroupDarkFocusRingAnimate {
  0% {
    box-shadow: 0 0 0 2px rgba(0, 119, 204, 0); }
  100% {
    box-shadow: 0 0 0 2px #0d7ecf; } }

.euiColorPicker {
  position: relative;
  width: 152px; }

.euiColorPicker__popoverAnchor .euiColorPicker__input {
  padding-right: 40px; }
  .euiColorPicker__popoverAnchor .euiColorPicker__input[class*='--compressed'] {
    padding-right: 32px; }
  .euiColorPicker__popoverAnchor .euiColorPicker__input + .euiFormControlLayoutIcons {
    color: inherit; }

.euiColorPicker__swatches {
  display: flex;
  flex-wrap: wrap;
  margin: -4px; }

.euiColorPicker__swatch-item {
  margin: 4px; }

.euiSwatchInput__stroke {
  fill: none;
  stroke: rgba(0, 0, 0, 0.2); }

.euiColorPicker__popoverPanel--pickerOnly {
  padding-bottom: 0 !important; }

.euiColorPicker__input--inGroup {
  height: 38px !important;
  box-shadow: none !important;
  border-radius: 0; }
  .euiColorPicker__input--inGroup.euiFieldText--compressed {
    height: 30px !important;
    border-radius: 0; }

.euiColorPicker__alphaRange .euiRangeInput {
  min-width: 0; }

.euiColorPickerSwatch {
  display: inline-block;
  height: 24px;
  width: 24px;
  border-radius: 3px;
  cursor: pointer;
  border: solid 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05); }
  .euiColorPickerSwatch:disabled {
    cursor: default; }
  .euiColorPickerSwatch:focus {
    outline: 2px solid currentColor; }
    .euiColorPickerSwatch:focus:focus-visible {
      outline-style: auto; }
    .euiColorPickerSwatch:focus:not(:focus-visible) {
      outline: none; }

.euiHue {
  background: linear-gradient(to right, #FF3232 0%, #FFF130 20%, #45FF30 35%, #28FFF0 52%, #282CFF 71%, #FF28FB 88%, #FF0094 100%);
  height: 24px;
  margin: 4px 0;
  position: relative; }
  .euiHue:before, .euiHue:after {
    content: '';
    left: 0;
    position: absolute;
    height: 8px;
    background: #FFF;
    width: 100%; }
  .euiHue:after {
    bottom: 0; }

.euiHue__range {
  position: relative;
  height: 24px;
  width: calc(100% + 2px);
  margin: 0 -1px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  z-index: 2; }
  .euiHue__range::-webkit-slider-thumb {
    padding: 7px;
    border: 1px solid #c9cbcd;
    background: #FFF no-repeat center;
    border-radius: 14px;
    -webkit-transition: background-color 150ms ease-in, border-color 150ms ease-in;
    transition: background-color 150ms ease-in, border-color 150ms ease-in;
    box-shadow: 0 0 0 1px #FFF, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
    border: 2px solid #FFF;
    cursor: pointer;
    background-color: #69707D;
    padding: 0;
    height: 16px;
    width: 16px;
    box-sizing: border-box; }
  .euiHue__range::-moz-range-thumb {
    padding: 7px;
    border: 1px solid #c9cbcd;
    background: #FFF no-repeat center;
    border-radius: 14px;
    -moz-transition: background-color 150ms ease-in, border-color 150ms ease-in;
    transition: background-color 150ms ease-in, border-color 150ms ease-in;
    box-shadow: 0 0 0 1px #FFF, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
    border: 2px solid #FFF;
    cursor: pointer;
    background-color: #69707D;
    padding: 0;
    height: 16px;
    width: 16px;
    box-sizing: border-box; }
  .euiHue__range::-ms-thumb {
    padding: 7px;
    border: 1px solid #c9cbcd;
    background: #FFF no-repeat center;
    border-radius: 14px;
    -ms-transition: background-color 150ms ease-in, border-color 150ms ease-in;
    transition: background-color 150ms ease-in, border-color 150ms ease-in;
    box-shadow: 0 0 0 1px #FFF, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
    border: 2px solid #FFF;
    cursor: pointer;
    background-color: #69707D;
    padding: 0;
    height: 16px;
    width: 16px;
    box-sizing: border-box; }
  .euiHue__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    margin-top: 0; }
  .euiHue__range::-ms-thumb {
    margin-top: 0; }
  .euiHue__range::-ms-track {
    height: 24px;
    background: transparent;
    border-color: transparent;
    color: transparent; }
  .euiHue__range::-moz-focus-outer {
    border: none; }
  .euiHue__range::-ms-fill-lower, .euiHue__range::-ms-fill-upper {
    background: transparent; }
  .euiHue__range:focus {
    outline: none; }
    .euiHue__range:focus::-webkit-slider-thumb {
      box-shadow: 0 0 0 2px #0071c2;
      border-color: #07C; }
    .euiHue__range:focus::-moz-range-thumb {
      box-shadow: 0 0 0 2px #0071c2;
      border-color: #07C; }
    .euiHue__range:focus::-ms-thumb {
      box-shadow: 0 0 0 2px #0071c2;
      border-color: #07C; }

.euiSaturation {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 3px;
  touch-action: none;
  z-index: 3; }
  .euiSaturation .euiSaturation__lightness,
  .euiSaturation .euiSaturation__saturation {
    position: absolute;
    top: -1px;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 3px; }
  .euiSaturation .euiSaturation__lightness {
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0)); }
  .euiSaturation .euiSaturation__saturation {
    background: linear-gradient(to top, black, rgba(0, 0, 0, 0)); }
  .euiSaturation .euiSaturation__indicator {
    position: absolute;
    height: 12px;
    width: 12px;
    border-radius: 100%;
    margin-top: -6px;
    margin-left: -6px;
    border: 1px solid #343741; }
    .euiSaturation .euiSaturation__indicator:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 100%;
      border: 1px solid #F5F7FA; }
  .euiSaturation:focus {
    outline: none; }
    .euiSaturation:focus .euiSaturation__indicator {
      box-shadow: 0 0 0 2px #0071c2;
      border-color: #07C; }

.euiColorStops:not(.euiColorStops-isDisabled):focus {
  outline: 2px solid #0071c2; }

.euiColorStops__addContainer {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 16px;
  margin-top: -8px; }
  .euiColorStops__addContainer:hover:not(.euiColorStops__addContainer-isDisabled) {
    cursor: pointer; }
    .euiColorStops__addContainer:hover:not(.euiColorStops__addContainer-isDisabled) .euiColorStops__addTarget {
      opacity: .7; }

.euiColorStops__addTarget {
  padding: 7px;
  border: 1px solid #c9cbcd;
  background: #FFF no-repeat center;
  border-radius: 14px;
  transition: background-color 150ms ease-in, border-color 150ms ease-in;
  box-shadow: 0 0 0 1px #FFF, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
  border: 2px solid #FFF;
  cursor: pointer;
  background-color: #69707D;
  padding: 0;
  height: 16px;
  width: 16px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  height: 16px;
  width: 16px;
  background-color: #F5F7FA;
  pointer-events: none;
  opacity: 0;
  transition: opacity 150ms; }

.euiColorStop {
  width: 152px; }

.euiColorStopPopover.euiPopover {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px; }

.euiColorStopPopover-hasFocus {
  z-index: 1; }

.euiColorStopPopover__anchor {
  position: absolute;
  width: 100%;
  height: 100%; }
  .euiColorStopPopover__anchor:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 16px;
    width: 16px;
    border-radius: 16px;
    background: #FFF; }

.euiColorStopThumb.euiRangeThumb:not(:disabled) {
  top: 0;
  margin-top: 0;
  pointer-events: auto;
  cursor: grab;
  border: solid 3px #FFF;
  box-shadow: 0 0 0 1px #98A2B3, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2); }
  .euiColorStopThumb.euiRangeThumb:not(:disabled):active {
    cursor: grabbing; }

.euiColorStopPopover-isLoadingPanel {
  visibility: hidden !important; }

.euiColorStops.euiColorStops-isDragging:not(.euiColorStops-isDisabled):not(.euiColorStops-isReadOnly) {
  cursor: grabbing; }

.euiColorStops__highlight {
  color: #D3DAE6; }

.euiColorPalettePicker__itemTitle {
  font-size: 12px;
  font-size: 0.85714rem;
  line-height: 1.14286rem; }

.euiColorPalettePicker__itemTitle + .euiColorPaletteDisplay {
  margin-top: 4px; }

.euiColorPaletteDisplay {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  height: 8px; }

.euiColorPaletteDisplay--sizeExtraSmall {
  position: relative;
  height: 4px;
  border-radius: 4px; }
  .euiColorPaletteDisplay--sizeExtraSmall:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    content: '';
    pointer-events: none;
    border: 1px solid rgba(52, 55, 65, 0.2); }

.euiColorPaletteDisplay--sizeExtraSmall .euiColorPaletteDisplayFixed__bleedArea {
  height: 4px; }

.euiColorPaletteDisplay--sizeSmall {
  position: relative;
  height: 8px;
  border-radius: 8px; }
  .euiColorPaletteDisplay--sizeSmall:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    content: '';
    pointer-events: none;
    border: 1px solid rgba(52, 55, 65, 0.2); }

.euiColorPaletteDisplay--sizeSmall .euiColorPaletteDisplayFixed__bleedArea {
  height: 8px; }

.euiColorPaletteDisplay--sizeMedium {
  position: relative;
  height: 16px;
  border-radius: 16px; }
  .euiColorPaletteDisplay--sizeMedium:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    content: '';
    pointer-events: none;
    border: 1px solid rgba(52, 55, 65, 0.2); }

.euiColorPaletteDisplay--sizeMedium .euiColorPaletteDisplayFixed__bleedArea {
  height: 16px; }

.euiColorPaletteDisplayFixed__bleedArea {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  height: 8px;
  width: calc(100% + 1px); }

.euiComboBox {
  max-width: 400px;
  width: 100%;
  height: auto;
  position: relative;
  /**
   * 1. Allow pills to truncate their text with an ellipsis.
   * 2. Don't allow pills/placeholder to overlap with the caret, loading icon or clear button.
   * 3. The height on combo can be larger than normal text inputs.
   */
  /**
   * 1. Force field height to match other field heights.
   * 2. Force input height to expand to fill this element.
   * 3. Reset appearance on Safari.
   * 4. Fix react-input-autosize appearance.
   * 5. Prevent a lot of input from causing the react-input-autosize to overflow the container.
   */ }
  .euiComboBox--fullWidth {
    max-width: 100%; }
  .euiComboBox--compressed {
    height: 32px; }
  .euiComboBox--inGroup {
    height: 100%; }
  .euiComboBox--compressed,
  .euiComboBox .euiFormControlLayout {
    height: auto; }
  .euiComboBox .euiComboBox__inputWrap {
    max-width: 400px;
    width: 100%;
    height: 40px;
    background-color: #fbfcfd;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    box-shadow: 0 0 transparent, inset 0 0 0 1px rgba(17, 43, 134, 0.1);
    transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 400;
    letter-spacing: normal;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-kerning: normal;
            font-feature-settings: "kern";
            font-kerning: normal;
    font-size: 14px;
    color: #343741;
    border: none;
    border-radius: 6px;
    padding: 12px;
    max-width: 400px;
    width: 100%;
    height: auto;
    padding: 4px 8px;
    display: flex;
    /* 1 */
    outline: none;
    padding-right: 40px;
    /* 2 */ }
    .euiComboBox .euiComboBox__inputWrap--fullWidth {
      max-width: 100%; }
    .euiComboBox .euiComboBox__inputWrap--compressed {
      height: 32px; }
    .euiComboBox .euiComboBox__inputWrap--inGroup {
      height: 100%; }
    @supports (-moz-appearance: none) {
      .euiComboBox .euiComboBox__inputWrap {
        transition-property: box-shadow, background-image, background-size; } }
    .euiComboBox .euiComboBox__inputWrap::-moz-placeholder {
      color: #69707D;
      opacity: 1; }
    .euiComboBox .euiComboBox__inputWrap:-ms-input-placeholder {
      color: #69707D;
      opacity: 1; }
    .euiComboBox .euiComboBox__inputWrap::placeholder {
      color: #69707D;
      opacity: 1; }
    .euiComboBox .euiComboBox__inputWrap--compressed {
      background-color: #fbfcfd;
      background-repeat: no-repeat;
      background-size: 0% 100%;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1);
      transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
      padding: 8px;
      border-radius: 4px; }
      @supports (-moz-appearance: none) {
        .euiComboBox .euiComboBox__inputWrap--compressed {
          transition-property: box-shadow, background-image, background-size; } }
    .euiComboBox .euiComboBox__inputWrap--inGroup {
      box-shadow: none !important;
      border-radius: 0; }
    .euiComboBox .euiComboBox__inputWrap--withIcon {
      padding-left: 40px; }
    .euiComboBox .euiComboBox__inputWrap--fullWidth {
      max-width: 100%; }
    .euiComboBox .euiComboBox__inputWrap--compressed {
      height: 32px; }
    .euiComboBox .euiComboBox__inputWrap--inGroup {
      height: 100%; }
    .euiComboBox .euiComboBox__inputWrap .euiComboBoxPill {
      max-width: calc(100% - 2px - 16px); }
    .euiComboBox .euiComboBox__inputWrap:not(.euiComboBox__inputWrap--noWrap) {
      padding-top: 4px;
      padding-bottom: 4px;
      padding-left: 4px;
      height: auto;
      /* 3 */
      flex-wrap: wrap;
      /* 1 */
      align-content: flex-start; }
      .euiComboBox .euiComboBox__inputWrap:not(.euiComboBox__inputWrap--noWrap):hover {
        cursor: text; }
    .euiComboBox .euiComboBox__inputWrap.euiComboBox__inputWrap-isClearable {
      padding-right: 62px;
      /* 2 */ }
    .euiComboBox .euiComboBox__inputWrap.euiComboBox__inputWrap-isLoading {
      padding-right: 62px;
      /* 2 */ }
      .euiComboBox .euiComboBox__inputWrap.euiComboBox__inputWrap-isLoading .euiComboBoxPlaceholder {
        padding-right: 62px;
        /* 2 */ }
    .euiComboBox .euiComboBox__inputWrap.euiComboBox__inputWrap-isLoading.euiComboBox__inputWrap-isClearable {
      padding-right: 84px;
      /* 2 */ }
  .euiComboBox .euiComboBox__input {
    display: inline-flex !important;
    /* 1 */
    height: 32px;
    /* 2 */
    overflow: hidden;
    /* 5 */ }
    .euiComboBox .euiComboBox__input > input {
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
      font-weight: 400;
      letter-spacing: normal;
      -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
      -webkit-font-kerning: normal;
              font-feature-settings: "kern";
              font-kerning: normal;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      /* 3 */
      padding: 0;
      border: none;
      background: transparent;
      font-size: 14px;
      color: #343741;
      margin: 4px;
      line-height: 1.5;
      /* 4 */ }
  .euiComboBox.euiComboBox-isOpen .euiComboBox__inputWrap {
    background-color: white;
    background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
    background-size: 100% 100%;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
    .euiComboBox.euiComboBox-isOpen .euiComboBox__inputWrap--compressed {
      background-color: white;
      background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
      background-size: 100% 100%;
      outline: none;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiComboBox.euiComboBox-isInvalid .euiComboBox__inputWrap {
    background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
    background-size: 100%; }
  .euiComboBox.euiComboBox-isDisabled .euiComboBox__inputWrap {
    color: #98A2B3;
    -webkit-text-fill-color: #98A2B3;
    cursor: not-allowed;
    background: #eef2f7;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1);
    -webkit-text-fill-color: unset; }
    .euiComboBox.euiComboBox-isDisabled .euiComboBox__inputWrap::-moz-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiComboBox.euiComboBox-isDisabled .euiComboBox__inputWrap:-ms-input-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiComboBox.euiComboBox-isDisabled .euiComboBox__inputWrap::placeholder {
      color: #98A2B3;
      opacity: 1; }
  .euiComboBox.euiComboBox-isDisabled .euiComboBoxPlaceholder,
  .euiComboBox.euiComboBox-isDisabled .euiComboBoxPill--plainText {
    color: #98A2B3;
    -webkit-text-fill-color: #98A2B3; }
  .euiComboBox.euiComboBox-isDisabled .euiComboBox__inputWrap:not(.euiComboBox__inputWrap--noWrap):hover {
    cursor: not-allowed; }
  .euiComboBox.euiComboBox--compressed .euiComboBox__inputWrap {
    line-height: 32px;
    /* 2 */
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 32px;
    /* 2 */ }
    .euiComboBox.euiComboBox--compressed .euiComboBox__inputWrap.euiComboBox__inputWrap-isClearable {
      padding-right: 54px;
      /* 2 */ }
    .euiComboBox.euiComboBox--compressed .euiComboBox__inputWrap.euiComboBox__inputWrap-isLoading {
      padding-right: 54px;
      /* 2 */ }
      .euiComboBox.euiComboBox--compressed .euiComboBox__inputWrap.euiComboBox__inputWrap-isLoading .euiComboBoxPlaceholder {
        padding-right: 54px;
        /* 2 */ }
    .euiComboBox.euiComboBox--compressed .euiComboBox__inputWrap.euiComboBox__inputWrap-isLoading.euiComboBox__inputWrap-isClearable {
      padding-right: 76px;
      /* 2 */ }
  .euiComboBox .euiFormControlLayout__prepend,
  .euiComboBox .euiFormControlLayout__append {
    height: auto !important; }

.euiComboBox__input {
  max-width: 100%; }
  .euiComboBox__input input {
    border: none !important;
    box-shadow: none !important;
    outline: none !important; }

/*
 * 1. Overwrites the base styling of EuiBadge, to give it a larger size and margins
 * that make sense in the input wrap.
 */
.euiComboBoxPill {
  height: 22px;
  line-height: 22px;
  vertical-align: baseline; }
  .euiComboBoxPill,
  .euiComboBoxPill + .euiComboBoxPill {
    margin: 4px; }
  .euiComboBox--compressed .euiComboBoxPill,
  .euiComboBox--compressed .euiComboBoxPill + .euiComboBoxPill {
    margin: 5px 4px 0 0; }
  .euiComboBoxPill--plainText {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 400;
    letter-spacing: normal;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-kerning: normal;
            font-feature-settings: "kern";
            font-kerning: normal;
    max-width: 100%;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    line-height: 24px;
    font-size: 14px;
    padding: 0;
    color: #343741;
    vertical-align: middle;
    display: inline-block; }

.euiComboBoxPlaceholder {
  max-width: 100%;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  padding-right: 40px;
  position: absolute;
  pointer-events: none;
  padding-left: 4px;
  line-height: 32px;
  color: #69707D;
  margin-bottom: 0 !important; }

/**
 * 1. Using specificity to override panel shadow
 * 2. Prevent really long input from overflowing the container.
 */
.euiComboBoxOptionsList {
  transform: none !important;
  top: 0; }
  .euiComboBoxOptionsList .euiFilterSelectItem__content {
    margin-block: 0 !important; }

.euiComboBoxOptionsList__empty {
  overflow-wrap: break-word !important;
  word-break: break-word;
  /* 2 */
  padding: 8px;
  text-align: center;
  word-wrap: break-word; }

.euiComboBoxOptionsList__rowWrap {
  padding: 0;
  max-height: 200px;
  overflow: hidden; }
  .euiComboBoxOptionsList__rowWrap > div {
    scrollbar-color: rgba(105, 112, 125, 0.5) transparent;
    scrollbar-width: thin; }
    .euiComboBoxOptionsList__rowWrap > div::-webkit-scrollbar {
      width: 16px;
      height: 16px; }
    .euiComboBoxOptionsList__rowWrap > div::-webkit-scrollbar-thumb {
      background-color: rgba(105, 112, 125, 0.5);
      background-clip: content-box;
      border-radius: 16px;
      border: 6px solid transparent; }
    .euiComboBoxOptionsList__rowWrap > div::-webkit-scrollbar-corner, .euiComboBoxOptionsList__rowWrap > div::-webkit-scrollbar-track {
      background-color: transparent; }

.euiComboBoxOption {
  font-size: 14px;
  padding: 4px 8px 4px 16px;
  width: 100%;
  text-align: left;
  border: 1px solid #D3DAE6;
  border-color: transparent;
  display: flex;
  align-items: center; }
  .euiComboBoxOption:hover {
    text-decoration: underline; }
  .euiComboBoxOption.euiComboBoxOption-isFocused {
    cursor: pointer;
    color: #0071c2;
    background-color: rgba(0, 119, 204, 0.1); }
  .euiComboBoxOption.euiComboBoxOption-isDisabled {
    color: #98A2B3;
    cursor: not-allowed; }
    .euiComboBoxOption.euiComboBoxOption-isDisabled:hover {
      text-decoration: none; }

.euiComboBoxOption__contentWrapper {
  display: flex; }
  .euiComboBoxOption__contentWrapper .euiComboBoxOption__emptyStateText {
    flex: 1 1;
    text-align: left;
    margin-bottom: 0; }
  .euiComboBoxOption__contentWrapper .euiComboBoxOption__enterBadge {
    align-self: center;
    margin-left: 4px; }

.euiComboBoxOption__content {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  flex: 1 1;
  text-align: left; }

/**
 * 1. Force each title to be the same height as an option, so that the virtualized scroll logic
 *    works.
 */
.euiComboBoxTitle {
  font-size: 12px;
  padding: 11px 8px 4px;
  /* 1 */
  width: 100%;
  font-weight: 700;
  color: #000; }

.euiContextMenu {
  width: 256px;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  transition: height 150ms cubic-bezier(0.694, 0.0482, 0.335, 1);
  border-radius: 6px; }
  .euiContextMenu .euiContextMenu__content {
    padding: 8px; }

/**
  * 1. When there are multiple ContextMenuPanels, the ContextMenu will absolutely
  *    position them. ContextMenuPanel will break the layout of a Popover if it's
  *    absolutely positioned by default.
  */
.euiContextMenu__panel {
  position: absolute;
  /* 1 */ }

.euiContextMenu__icon {
  margin-right: 8px; }

.euiContextMenuPanel {
  width: 100%;
  visibility: visible;
  outline-offset: -2px; }
  .euiContextMenuPanel:focus {
    outline: none; }
  .euiContextMenuPanel.euiContextMenuPanel-txInLeft {
    pointer-events: none;
    animation: euiContextMenuPanelTxInLeft 250ms cubic-bezier(0.694, 0.0482, 0.335, 1); }
  .euiContextMenuPanel.euiContextMenuPanel-txOutLeft {
    pointer-events: none;
    animation: euiContextMenuPanelTxOutLeft 250ms cubic-bezier(0.694, 0.0482, 0.335, 1); }
  .euiContextMenuPanel.euiContextMenuPanel-txInRight {
    pointer-events: none;
    animation: euiContextMenuPanelTxInRight 250ms cubic-bezier(0.694, 0.0482, 0.335, 1); }
  .euiContextMenuPanel.euiContextMenuPanel-txOutRight {
    pointer-events: none;
    animation: euiContextMenuPanelTxOutRight 250ms cubic-bezier(0.694, 0.0482, 0.335, 1); }

.euiContextMenuPanel--next {
  transform: translateX(256px);
  visibility: hidden; }

.euiContextMenuPanel--previous {
  transform: translateX(-256px);
  visibility: hidden; }

.euiContextMenuPanelTitle {
  overflow-wrap: break-word !important;
  word-break: break-word;
  color: #1a1c21;
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  font-weight: 700;
  padding: 12px;
  width: 100%;
  text-align: left;
  outline-offset: -2px;
  border-bottom: 1px solid #D3DAE6; }
  .euiContextMenuPanelTitle:enabled:hover, .euiContextMenuPanelTitle:enabled:focus {
    text-decoration: underline; }
  .euiContextMenuPanelTitle--small {
    padding: 6px 8px; }

@keyframes euiContextMenuPanelTxInLeft {
  0% {
    transform: translateX(256px); }
  100% {
    transform: translateX(0); } }

@keyframes euiContextMenuPanelTxOutLeft {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-256px); } }

@keyframes euiContextMenuPanelTxInRight {
  0% {
    transform: translateX(-256px); }
  100% {
    transform: translateX(0); } }

@keyframes euiContextMenuPanelTxOutRight {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(256px); } }

.euiContextMenuItem {
  display: block;
  padding: 12px;
  width: 100%;
  text-align: left;
  color: #343741;
  outline-offset: -2px; }
  .euiContextMenuItem:hover, .euiContextMenuItem:focus {
    text-decoration: underline; }
  .euiContextMenuItem:focus {
    background-color: rgba(0, 119, 204, 0.1); }
  .euiContextMenuItem.euiContextMenuItem-isDisabled {
    color: #ABB4C4;
    cursor: default; }
    .euiContextMenuItem.euiContextMenuItem-isDisabled:hover, .euiContextMenuItem.euiContextMenuItem-isDisabled:focus {
      text-decoration: none; }
  .euiContextMenuItem--small {
    padding: 6px 8px; }
    .euiContextMenuItem--small .euiContextMenuItem__text {
      font-size: 14px;
      font-size: 1rem;
      line-height: 1.71429rem; }

.euiContextMenuItem__inner {
  display: flex; }

.euiContextMenuItem__text {
  flex-grow: 1;
  overflow: hidden; }

.euiContextMenuItem__arrow {
  align-self: flex-end; }

.euiContextMenu__itemLayout {
  display: flex;
  align-items: center; }
  .euiContextMenu__itemLayout.euiContextMenu__itemLayout--bottom {
    align-items: flex-end; }
  .euiContextMenu__itemLayout.euiContextMenu__itemLayout--top {
    align-items: flex-start; }
  .euiContextMenu__itemLayout .euiContextMenu__icon {
    flex-shrink: 0; }

.euiControlBar {
  background: #343741;
  color: white;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 40px 0 #343741, inset 0 600rem 0 #fafbfd;
  bottom: 0;
  transform: translateY(0);
  height: 40px;
  max-height: calc(100vh - 80px); }
  .euiControlBar--fixed {
    position: fixed;
    z-index: 6000; }
  .euiControlBar--absolute {
    position: absolute;
    z-index: 1000; }
  .euiControlBar--relative {
    position: relative; }
  .euiControlBar-isOpen {
    animation-duration: 250ms;
    animation-timing-function: cubic-bezier(0.694, 0.0482, 0.335, 1);
    animation-fill-mode: forwards; }
  .euiControlBar-isOpen.euiControlBar--large {
    animation-name: euiControlBarOpenPanelLarge;
    height: calc(100vh - 80px);
    bottom: -100vh; }
  .euiControlBar-isOpen.euiControlBar--medium {
    animation-name: euiControlBarOpenPanelMedium;
    height: 480px;
    bottom: -480px; }
  .euiControlBar-isOpen.euiControlBar--small {
    animation-name: euiControlBarOpenPanelSmall;
    height: 240px;
    bottom: -240px; }

.euiControlBar__controls {
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  overflow-y: hidden;
  overflow-x: auto;
  padding: 0 12px; }

.euiControlBar__content {
  scrollbar-color: rgba(105, 112, 125, 0.5) transparent;
  scrollbar-width: thin;
  overflow-y: auto;
  width: 100%;
  height: calc(100% - 40px);
  background-color: #fafbfd;
  animation-name: euiControlBarShowContent;
  animation-duration: 350ms;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.694, 0.0482, 0.335, 1);
  color: #343741; }
  .euiControlBar__content::-webkit-scrollbar {
    width: 16px;
    height: 16px; }
  .euiControlBar__content::-webkit-scrollbar-thumb {
    background-color: rgba(105, 112, 125, 0.5);
    background-clip: content-box;
    border-radius: 16px;
    border: 6px solid transparent; }
  .euiControlBar__content::-webkit-scrollbar-corner, .euiControlBar__content::-webkit-scrollbar-track {
    background-color: transparent; }

.euiControlBar__icon {
  flex-shrink: 0;
  margin-left: 8px;
  margin-right: 8px; }

.euiControlBar__buttonIcon {
  flex-shrink: 0;
  min-width: 40px;
  min-height: 40px; }

.euiControlBar__button {
  flex-shrink: 0;
  border-radius: 3px;
  margin-left: 4px;
  font-size: 14px; }
  .euiControlBar__button:enabled:hover {
    transform: none;
    box-shadow: none; }
  .euiControlBar__button:last-child {
    margin-right: 4px; }

.euiControlBar__breadcrumbs .euiBreadcrumb:not(:last-of-type) .euiBreadcrumb__content {
  color: #9ca0aa; }

.euiControlBar__breadcrumbs .euiBreadcrumb::after {
  background: rgba(255, 255, 255, 0.2); }

.euiControlBar__spacer {
  flex-grow: 1;
  height: 100%; }

.euiControlBar__divider {
  flex-shrink: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2); }

.euiControlBar__text {
  max-width: 100%;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  padding: 0 8px;
  color: white; }
  .euiControlBar__text:last-child {
    padding-right: 0; }

.euiControlBar__tab {
  max-width: 100%;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  color: white;
  padding: 0 16px;
  text-align: center;
  height: 100%; }
  .euiControlBar__tab:hover, .euiControlBar__tab:focus {
    text-decoration: underline;
    cursor: pointer; }
  .euiControlBar__tab.euiControlBar__tab--active {
    background-color: #fafbfd;
    box-shadow: inset 0 4px 0 #0071c2;
    color: #0071c2; }

.euiControlBar__controls .euiLink.euiLink--primary {
  color: #5eaadf; }
  .euiControlBar__controls .euiLink.euiLink--primary:hover {
    color: #4da0db; }

.euiControlBar__controls .euiLink.euiLink--text {
  color: #FFF; }

.euiControlBar__controls .euiControlBar__button.euiButton[class*='primary']:enabled:not(.euiButton--fill) {
  color: #5eaadf;
  border-color: #5eaadf; }

.euiControlBar__controls .euiButtonIcon[class*='primary'] {
  color: #5eaadf; }

.euiControlBar__controls .euiLink.euiLink--accent {
  color: #f576af; }
  .euiControlBar__controls .euiLink.euiLink--accent:hover {
    color: #f583b7; }

.euiControlBar__controls .euiLink.euiLink--text {
  color: #FFF; }

.euiControlBar__controls .euiControlBar__button.euiButton[class*='accent']:enabled:not(.euiButton--fill) {
  color: #f576af;
  border-color: #f576af; }

.euiControlBar__controls .euiButtonIcon[class*='accent'] {
  color: #f576af; }

.euiControlBar__controls .euiLink.euiLink--success {
  color: #00BFB3; }
  .euiControlBar__controls .euiLink.euiLink--success:hover {
    color: #4dd2ca; }

.euiControlBar__controls .euiLink.euiLink--text {
  color: #FFF; }

.euiControlBar__controls .euiControlBar__button.euiButton[class*='success']:enabled:not(.euiButton--fill) {
  color: #00BFB3;
  border-color: #00BFB3; }

.euiControlBar__controls .euiButtonIcon[class*='success'] {
  color: #00BFB3; }

.euiControlBar__controls .euiLink.euiLink--warning {
  color: #FEC514; }
  .euiControlBar__controls .euiLink.euiLink--warning:hover {
    color: #fed65b; }

.euiControlBar__controls .euiLink.euiLink--text {
  color: #FFF; }

.euiControlBar__controls .euiControlBar__button.euiButton[class*='warning']:enabled:not(.euiButton--fill) {
  color: #FEC514;
  border-color: #FEC514; }

.euiControlBar__controls .euiButtonIcon[class*='warning'] {
  color: #FEC514; }

.euiControlBar__controls .euiLink.euiLink--danger {
  color: #db8a85; }
  .euiControlBar__controls .euiLink.euiLink--danger:hover {
    color: #d16862; }

.euiControlBar__controls .euiLink.euiLink--text {
  color: #FFF; }

.euiControlBar__controls .euiControlBar__button.euiButton[class*='danger']:enabled:not(.euiButton--fill) {
  color: #db8a85;
  border-color: #db8a85; }

.euiControlBar__controls .euiButtonIcon[class*='danger'] {
  color: #db8a85; }

.euiControlBar__controls .euiLink.euiLink--ghost {
  color: #FFF; }
  .euiControlBar__controls .euiLink.euiLink--ghost:hover {
    color: white; }

.euiControlBar__controls .euiLink.euiLink--text {
  color: #FFF; }

.euiControlBar__controls .euiControlBar__button.euiButton[class*='ghost']:enabled:not(.euiButton--fill) {
  color: #FFF;
  border-color: #FFF; }

.euiControlBar__controls .euiButtonIcon[class*='ghost'] {
  color: #FFF; }

.euiControlBar__controls .euiLink.euiLink--text {
  color: #9ca0aa; }
  .euiControlBar__controls .euiLink.euiLink--text:hover {
    color: #969ba4; }

.euiControlBar__controls .euiLink.euiLink--text {
  color: #FFF; }

.euiControlBar__controls .euiControlBar__button.euiButton[class*='text']:enabled:not(.euiButton--fill) {
  color: #9ca0aa;
  border-color: #9ca0aa; }

.euiControlBar__controls .euiButtonIcon[class*='text'] {
  color: #9ca0aa; }

@media only screen and (max-width: 574px) {
  .euiControlBar:not(.euiControlBar--showOnMobile) {
    display: none; } }

@media only screen and (min-width: 575px) and (max-width: 767px) {
  .euiControlBar:not(.euiControlBar--showOnMobile) {
    display: none; } }

@keyframes euiControlBarOpenPanelLarge {
  0% {
    transform: translateY(calc((40px * 3) * -1)); }
  100% {
    transform: translateY(-100vh); } }

@keyframes euiControlBarOpenPanelMedium {
  0% {
    transform: translateY(-40px); }
  100% {
    transform: translateY(-480px); } }

@keyframes euiControlBarOpenPanelSmall {
  0% {
    transform: translateY(-40px); }
  100% {
    transform: translateY(-240px); } }

@keyframes euiControlBarShowContent {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

/**
 * 1. Account for inner box-shadow style border
 */
.euiDatePickerRange {
  max-width: 400px;
  width: 100%;
  height: auto;
  background-color: #fbfcfd;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  box-shadow: 0 0 transparent, inset 0 0 0 1px rgba(17, 43, 134, 0.1);
  transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
  display: flex;
  align-items: center;
  padding: 1px;
  /* 1 */ }
  .euiDatePickerRange--fullWidth {
    max-width: 100%; }
  .euiDatePickerRange--compressed {
    height: 32px; }
  .euiDatePickerRange--inGroup {
    height: 100%; }
  @supports (-moz-appearance: none) {
    .euiDatePickerRange {
      transition-property: box-shadow, background-image, background-size; } }
  .euiDatePickerRange > * {
    flex-grow: 1; }
  .euiDatePickerRange .euiFieldText.euiDatePicker {
    height: 38px;
    box-shadow: none !important;
    text-align: center; }
  .euiDatePickerRange .euiDatePickerRange__start {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .euiDatePickerRange .euiDatePickerRange__end {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .euiDatePickerRange .react-datepicker-popper .euiFieldText.euiDatePicker {
    text-align: left; }
  .euiDatePickerRange--inGroup {
    box-shadow: none;
    padding: 0; }

.euiDatePickerRange--isDisabled {
  background: #eef2f7; }

.euiDatePickerRange--readOnly {
  background: #FFF; }

.euiDatePickerRange__delimeter {
  align-self: stretch;
  height: auto;
  flex-grow: 0;
  display: flex;
  align-items: center; }

.euiDatePickerRange--isInvalid .euiDatePickerRange__delimeter {
  background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
  background-size: 100%; }

.euiSuperDatePicker__absoluteDateFormRow {
  padding: 0 8px 8px; }

.euiDatePopoverButton {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  letter-spacing: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-kerning: normal;
          font-feature-settings: "kern";
          font-kerning: normal;
  font-size: 14px;
  color: #343741;
  display: block;
  width: 100%;
  padding: 0 8px;
  line-height: 38px;
  height: 38px;
  word-break: break-all;
  transition: background 150ms ease-in;
  background-size: 100%; }
  .euiDatePopoverButton::-moz-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiDatePopoverButton:-ms-input-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiDatePopoverButton::placeholder {
    color: #69707D;
    opacity: 1; }
  .euiDatePopoverButton--compressed {
    line-height: 30px;
    height: 30px; }
  .euiDatePopoverButton:focus, .euiDatePopoverButton-isSelected {
    background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%); }
  .euiDatePopoverButton-needsUpdating {
    background-color: #e6f9f7;
    color: #007e77; }
    .euiDatePopoverButton-needsUpdating:focus, .euiDatePopoverButton-needsUpdating.euiDatePopoverButton-isSelected {
      background-image: linear-gradient(to top, #00BFB3, #00BFB3 2px, transparent 2px, transparent 100%); }
  .euiDatePopoverButton-isInvalid {
    background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
    background-size: 100%;
    background-color: transparent;
    color: #BD271E; }
    .euiDatePopoverButton-isInvalid:focus, .euiDatePopoverButton-isInvalid.euiDatePopoverButton-isSelected {
      background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%); }
  .euiDatePopoverButton:disabled {
    background-color: #eef2f7;
    color: #69707D;
    cursor: default; }

.euiDatePopoverButton--start {
  text-align: right; }

.euiDatePopoverButton--end {
  text-align: left; }

.euiDatePopoverContent {
  width: 400px;
  max-width: 100%; }

.euiDatePopoverContent__padded {
  padding: 8px; }

.euiDatePopoverContent__padded--large {
  padding: 16px; }

@media only screen and (max-width: 574px) {
  .euiDatePopoverContent {
    width: 284px; } }

.euiQuickSelectPopover__content {
  width: 400px;
  max-width: 100%; }

.euiQuickSelectPopover__section {
  scrollbar-color: rgba(105, 112, 125, 0.5) transparent;
  scrollbar-width: thin;
  max-height: 132px;
  overflow: hidden;
  overflow-y: auto;
  margin: 8px 0 0; }
  .euiQuickSelectPopover__section::-webkit-scrollbar {
    width: 16px;
    height: 16px; }
  .euiQuickSelectPopover__section::-webkit-scrollbar-thumb {
    background-color: rgba(105, 112, 125, 0.5);
    background-clip: content-box;
    border-radius: 16px;
    border: 6px solid transparent; }
  .euiQuickSelectPopover__section::-webkit-scrollbar-corner, .euiQuickSelectPopover__section::-webkit-scrollbar-track {
    background-color: transparent; }

.euiQuickSelectPopover__buttonText {
  margin-right: 4px !important; }

.euiQuickSelectPopover__anchor {
  height: 100%; }

.euiQuickSelectPopover__sectionItem {
  font-size: 14px;
  line-height: 14px; }
  .euiQuickSelectPopover__sectionItem--recentlyUsed:not(:last-of-type) {
    margin-bottom: 8px; }

.euiQuickSelect__applyButton {
  min-width: 0; }

.euiRefreshInterval__startButton {
  min-width: 90px; }

.euiSuperDatePicker__flexWrapper {
  max-width: 100%;
  min-width: MIN(326px, 100%);
  width: 606px; }
  @media only screen and (max-width: 574px) {
    .euiSuperDatePicker__flexWrapper {
      width: 100%; } }
  @media only screen and (min-width: 575px) and (max-width: 767px) {
    .euiSuperDatePicker__flexWrapper {
      width: 100%; } }
  .euiSuperDatePicker__flexWrapper.euiSuperDatePicker__flexWrapper--fullWidth {
    width: 100%; }
  .euiSuperDatePicker__flexWrapper.euiSuperDatePicker__flexWrapper--isQuickSelectOnly {
    min-width: 0; }
  .euiSuperDatePicker__flexWrapper.euiSuperDatePicker__flexWrapper--autoWidth {
    display: inline-flex;
    width: auto; }

.euiSuperDatePicker__flexWrapper--isAutoRefreshOnly {
  min-width: MIN(200px, 100%);
  width: 400px; }

.euiSuperDatePicker__flexWrapper--noUpdateButton {
  min-width: MIN(200px, 100%);
  width: 480px; }

.euiSuperDatePicker {
  max-width: 100% !important; }
  .euiSuperDatePicker > .euiFormControlLayout__childrenWrapper {
    flex: 1 1 100%;
    overflow: hidden; }
    .euiSuperDatePicker > .euiFormControlLayout__childrenWrapper > .euiDatePickerRange {
      max-width: none;
      width: auto;
      border-radius: 0 6px 6px 0; }
    .euiSuperDatePicker > .euiFormControlLayout__childrenWrapper:not(:last-child) > .euiDatePickerRange,
    .euiSuperDatePicker > .euiFormControlLayout__childrenWrapper:not(:last-child) > .euiDatePickerRange .euiDatePopoverButton--end,
    .euiSuperDatePicker > .euiFormControlLayout__childrenWrapper:not(:last-child) > .euiDatePickerRange .euiSuperDatePicker__prettyFormat {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }

.euiSuperDatePicker__prettyFormat {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  letter-spacing: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-kerning: normal;
          font-feature-settings: "kern";
          font-kerning: normal;
  font-size: 14px;
  color: #343741;
  display: block;
  width: 100%;
  padding: 0 8px;
  line-height: 38px;
  height: 38px;
  word-break: break-all;
  transition: background 150ms ease-in;
  display: flex;
  justify-content: space-between;
  text-align: left; }
  .euiSuperDatePicker__prettyFormat::-moz-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiSuperDatePicker__prettyFormat:-ms-input-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiSuperDatePicker__prettyFormat::placeholder {
    color: #69707D;
    opacity: 1; }
  .euiSuperDatePicker__prettyFormat:not(:disabled):hover, .euiSuperDatePicker__prettyFormat:focus {
    text-decoration: none; }
  .euiSuperDatePicker__prettyFormat:disabled {
    background-color: #eef2f7;
    color: #69707D;
    cursor: not-allowed; }

.euiDataGrid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  height: 100%; }

.euiDataGrid--fullScreen {
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #FFF; }
  .euiDataGrid--fullScreen .euiDataGrid__pagination {
    padding-bottom: 4px;
    background: #F5F7FA;
    box-shadow: 1px 0 0 1px #D3DAE6; }

.euiDataGrid__content {
  flex-grow: 1;
  height: 100%;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  position: relative;
  background: #fafbfd;
  font-feature-settings: 'tnum' 1; }

.euiDataGrid__pagination {
  z-index: 2;
  padding-top: 4px;
  flex-grow: 0; }

.euiDataGrid__restrictBody {
  height: 100vh;
  overflow: hidden; }
  .euiDataGrid__restrictBody .euiHeader {
    z-index: 998; }

.euiDataGrid__focusWrap {
  height: 100%; }

.euiDataGrid__virtualized {
  scrollbar-color: rgba(105, 112, 125, 0.5) #FFF;
  scrollbar-width: thin;
  scroll-padding: 0; }
  .euiDataGrid__virtualized::-webkit-scrollbar {
    width: 16px;
    height: 16px; }
  .euiDataGrid__virtualized::-webkit-scrollbar-thumb {
    background-color: rgba(105, 112, 125, 0.5);
    background-clip: content-box;
    border-radius: 16px;
    border: 6px solid #FFF; }
  .euiDataGrid__virtualized::-webkit-scrollbar-corner, .euiDataGrid__virtualized::-webkit-scrollbar-track {
    background-color: #FFF; }

.euiDataGrid__scrollOverlay {
  position: absolute;
  top: -1px;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px #D3DAE6; }
  .euiDataGrid--bordersHorizontal .euiDataGrid__scrollOverlay {
    box-shadow: inset 0 -2px 0 -1px #D3DAE6; }
  .euiDataGrid__scrollOverlay .euiDataGrid__scrollBarOverlayBottom {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #D3DAE6; }
  .euiDataGrid__scrollOverlay .euiDataGrid__scrollBarOverlayRight {
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: #D3DAE6; }

.euiDataGridHeader {
  display: flex;
  z-index: 3;
  background: #FFF;
  position: sticky;
  top: 0; }

.euiDataGridHeaderCell {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  font-weight: 700;
  padding: 6px;
  flex: 0 0 auto;
  position: relative;
  align-items: center;
  display: flex; }
  .euiDataGridHeaderCell.euiDataGridHeaderCell--numeric {
    text-align: right; }
  .euiDataGridHeaderCell.euiDataGridHeaderCell--currency {
    text-align: right; }
  .euiDataGridHeaderCell:focus {
    outline: none;
    border-top: none; }
    .euiDataGridHeaderCell:focus::after {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      border: 2px solid #0071c2;
      border-radius: 4px;
      z-index: 2;
      pointer-events: none; }
  .euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn):focus-within {
    outline: none;
    border-top: none; }
    .euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn):focus-within::after {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      border: 2px solid #0071c2;
      border-radius: 4px;
      z-index: 2;
      pointer-events: none; }
  .euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn) .euiDataGridHeaderCell__sortingArrow {
    margin-right: 4px; }
  .euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn) .euiDataGridHeaderCell__button {
    flex: 0 0 auto;
    position: relative;
    align-items: center;
    display: flex;
    width: 100%;
    font-weight: 700;
    outline: none; }
    .euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn) .euiDataGridHeaderCell__button .euiDataGridHeaderCell__sortingArrow {
      flex-grow: 0; }
  .euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn) .euiDataGridHeaderCell__content {
    max-width: 100%;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    overflow: hidden;
    white-space: nowrap;
    text-align: left;
    flex-grow: 1;
    align-self: baseline; }
  .euiDataGridHeaderCell:not(.euiDataGridHeaderCell--controlColumn) .euiDataGridHeaderCell__icon {
    flex-grow: 0;
    flex-basis: auto;
    width: auto;
    padding-left: 4px; }

.euiDataGridHeader__action--selected {
  font-weight: 700 !important; }

.euiDataGrid--bordersNone.euiDataGrid--bordersHorizontal .euiDataGridHeader {
  background: #FFF; }

.euiDataGrid--headerUnderline .euiDataGridHeaderCell {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #D3DAE6;
  border-bottom-color: #343741; }

.euiDataGrid--bordersNone.euiDataGrid--headerUnderline .euiDataGridHeaderCell {
  border-bottom: 2px solid #D3DAE6;
  border-color: #343741; }

.euiDataGrid--headerShade .euiDataGridHeaderCell {
  background: #f5f7fa; }

.euiDataGrid--headerShade.euiDataGrid--bordersAll .euiDataGridHeaderCell {
  border-right: 1px solid #D3DAE6;
  border-bottom: 1px solid #D3DAE6;
  border-left: none; }
  .euiDataGrid--headerShade.euiDataGrid--bordersAll .euiDataGridHeaderCell:first-of-type {
    border-left: 1px solid #D3DAE6; }

.euiDataGrid--headerShade.euiDataGrid--bordersHorizontal .euiDataGridHeaderCell {
  border-top: none;
  border-bottom: 1px solid #D3DAE6; }

.euiDataGrid--bordersNone .euiDataGridHeaderCell {
  border: none; }

.euiDataGrid--borderhorizontal .euiDataGridHeaderCell {
  border-top: none;
  border-right: none;
  border-left: none; }

.euiDataGrid--fontSizeSmall .euiDataGridHeaderCell {
  font-size: 12px;
  font-size: 0.85714rem;
  line-height: 1.14286rem; }

.euiDataGrid--fontSizeLarge .euiDataGridHeaderCell {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem; }

.euiDataGrid--paddingSmall .euiDataGridHeaderCell {
  padding: 4px; }

.euiDataGrid--paddingLarge .euiDataGridHeaderCell {
  padding: 8px; }

.euiDataGrid--noControls.euiDataGrid--bordersAll .euiDataGridHeaderCell {
  border-top: 1px solid #D3DAE6; }

.euiDataGrid--noControls.euiDataGrid--bordersHorizontal .euiDataGridHeaderCell {
  border-top: 1px solid #D3DAE6; }

.euiDataGridFooter {
  display: flex; }

.euiDataGridRowCell.euiDataGridFooterCell {
  flex: 0 0 auto;
  position: relative;
  font-weight: 700; }

.euiDataGrid--stickyFooter .euiDataGridFooter {
  position: sticky;
  bottom: 0; }

.euiDataGrid--footerOverline .euiDataGridRowCell.euiDataGridFooterCell {
  border-top: 2px solid #D3DAE6;
  border-top-color: #343741 !important;
  background: #FFF !important; }

.euiDataGrid--bordersNone .euiDataGridRowCell.euiDataGridFooterCell {
  border-left: none;
  border-right: none; }

.euiDataGrid--bordersHorizontal .euiDataGridRowCell.euiDataGridFooterCell {
  border-left: none;
  border-right: none; }

.euiDataGrid--footerShade .euiDataGridRowCell.euiDataGridFooterCell {
  background: #f5f7fa; }

.euiDataGridColumnResizer {
  position: absolute;
  top: 0;
  right: -8px;
  height: 100%;
  width: 16px;
  cursor: ew-resize;
  opacity: 0;
  z-index: 2; }
  .euiDataGridColumnResizer:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #07C; }
  .euiDataGridColumnResizer:hover, .euiDataGridColumnResizer:active {
    opacity: 1; }
    .euiDataGridColumnResizer:hover ~ .euiDataGridHeaderCell__content, .euiDataGridColumnResizer:active ~ .euiDataGridHeaderCell__content {
      -webkit-user-select: none;
         -moz-user-select: none;
              -ms-user-select: none;
          user-select: none; }

.euiDataGridHeaderCell:last-child .euiDataGridColumnResizer {
  right: 0;
  width: 8px; }
  .euiDataGridHeaderCell:last-child .euiDataGridColumnResizer:after {
    left: auto;
    right: 0; }

.euiDataGridRow {
  background-color: #FFF; }

.euiDataGridRowCell {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  padding: 6px;
  border-right: solid 1px #edf0f5;
  border-bottom: 1px solid #D3DAE6;
  overflow: hidden; }
  .euiDataGridRowCell > * {
    height: 100%; }
  .euiDataGridRowCell.euiDataGridRowCell--firstColumn {
    border-left: 1px solid #D3DAE6; }
  .euiDataGridRowCell.euiDataGridRowCell--lastColumn {
    border-right-color: #D3DAE6; }
  .euiDataGridRowCell:focus {
    outline: none; }
    .euiDataGridRowCell:focus::after {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      border: 2px solid #0071c2;
      border-radius: 4px;
      z-index: 2;
      pointer-events: none; }
  .euiDataGridRowCell:hover .euiDataGridRowCell__actionButtonIcon {
    animation-duration: 90ms;
    animation-name: euiDataGridCellActionsSlideIn;
    animation-iteration-count: 1;
    animation-delay: 250ms;
    animation-fill-mode: forwards; }
  .euiDataGridRowCell:focus .euiDataGridRowCell__actionButtonIcon, .euiDataGridRowCell:focus-within .euiDataGridRowCell__actionButtonIcon, .euiDataGridRowCell.euiDataGridRowCell--open .euiDataGridRowCell__actionButtonIcon {
    animation: none;
    margin-left: 6px;
    width: 12px; }
  .euiDataGridRowCell:not(:hover):not(:focus):not(.euiDataGridRowCell--open) .euiDataGridRowCell__actionButtonIcon {
    display: none; }
  .euiDataGridRowCell.euiDataGridRowCell--numeric {
    text-align: right; }
  .euiDataGridRowCell.euiDataGridRowCell--currency {
    text-align: right; }
  .euiDataGridRowCell.euiDataGridRowCell--uppercase {
    text-transform: uppercase; }
  .euiDataGridRowCell.euiDataGridRowCell--lowercase {
    text-transform: lowercase; }
  .euiDataGridRowCell.euiDataGridRowCell--capitalize {
    text-transform: capitalize; }
  .euiDataGridRowCell .euiDataGridRowCell__definedHeight {
    overflow-wrap: break-word !important;
    word-break: break-word;
    flex-grow: 1; }
  .euiDataGridRowCell:not(.euiDataGridRowCell--controlColumn) .euiDataGridRowCell__content,
  .euiDataGridRowCell:not(.euiDataGridRowCell--controlColumn) .euiDataGridRowCell__truncate, .euiDataGridRowCell:not(.euiDataGridRowCell--controlColumn).euiDataGridRowCell__truncate,
  .euiDataGridRowCell:not(.euiDataGridRowCell--controlColumn) .euiDataGridRowCell__expandContent {
    max-width: 100%;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    overflow: hidden;
    white-space: nowrap; }

.euiDataGridRowCell__popover {
  scrollbar-color: rgba(105, 112, 125, 0.5) transparent;
  scrollbar-width: thin;
  overflow: auto;
  max-width: 400px !important;
  max-height: 400px !important;
  z-index: 1000 !important;
  filter: none;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1), 0 3.6px 13px rgba(0, 0, 0, 0.07), 0 8.4px 23px rgba(0, 0, 0, 0.06), 0 23px 35px rgba(0, 0, 0, 0.05); }
  .euiDataGridRowCell__popover::-webkit-scrollbar {
    width: 16px;
    height: 16px; }
  .euiDataGridRowCell__popover::-webkit-scrollbar-thumb {
    background-color: rgba(105, 112, 125, 0.5);
    background-clip: content-box;
    border-radius: 16px;
    border: 6px solid transparent; }
  .euiDataGridRowCell__popover::-webkit-scrollbar-corner, .euiDataGridRowCell__popover::-webkit-scrollbar-track {
    background-color: transparent; }

.euiDataGridRowCell__expandFlex {
  position: relative;
  display: flex;
  align-items: baseline;
  height: 100%; }
  .euiDataGridRowCell--controlColumn .euiDataGridRowCell__expandFlex {
    align-items: center; }

.euiDataGridRowCell__expandContent {
  flex-grow: 1; }

.euiDataGridRowCell__contentByHeight {
  flex-grow: 1;
  height: 100%; }

.euiDataGridRowCell__expandActions {
  display: flex; }

.euiDataGridRowCell__expandContent + .euiDataGridRowCell__expandActions {
  flex-grow: 0; }

.euiDataGridRowCell__contentByHeight + .euiDataGridRowCell__expandActions {
  background-color: #FFF;
  position: absolute;
  right: 0;
  top: 0;
  padding: 6px 0; }

.euiDataGridRowCell__actionButtonIcon {
  height: 12px;
  border-radius: 3px;
  width: 0;
  overflow: hidden;
  transition: none;
  box-shadow: none !important;
  border: none; }

.euiDataGrid--stripes .euiDataGridRow--striped {
  background-color: #F5F7FA; }
  .euiDataGrid--stripes .euiDataGridRow--striped .euiDataGridRowCell__contentByHeight + .euiDataGridRowCell__expandActions {
    background-color: #F5F7FA; }

.euiDataGrid--rowHoverHighlight .euiDataGridRow:hover {
  background-color: #fff9e8; }
  .euiDataGrid--rowHoverHighlight .euiDataGridRow:hover .euiDataGridRowCell__contentByHeight + .euiDataGridRowCell__expandActions {
    background-color: #fff9e8; }

.euiDataGrid--bordersNone .euiDataGridRowCell {
  border-color: transparent !important; }

.euiDataGrid--bordersHorizontal .euiDataGridRowCell {
  border-right-color: transparent;
  border-left-color: transparent; }

.euiDataGrid--fontSizeSmall .euiDataGridRowCell {
  font-size: 12px;
  font-size: 0.85714rem;
  line-height: 1.14286rem; }

.euiDataGrid--fontSizeLarge .euiDataGridRowCell {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem; }

.euiDataGrid--paddingSmall .euiDataGridRowCell {
  padding: 4px; }

.euiDataGrid--paddingLarge .euiDataGridRowCell {
  padding: 8px; }

.euiDataGrid--fontSizeSmall.euiDataGrid--paddingSmall .euiDataGridRowCell__contentByHeight + .euiDataGridRowCell__expandActions {
  padding: 2px 0; }

.euiDataGrid--fontSizeSmall.euiDataGrid--paddingSmall .euiDataGridRowCell__expandContent + .euiDataGridRowCell__expandActions {
  transform: translateY(1px); }

@keyframes euiDataGridCellActionsSlideIn {
  from {
    margin-left: 0;
    width: 0; }
  to {
    margin-left: 6px;
    width: 12px; } }

.euiDataGrid__controls {
  background: #fafbfd;
  position: relative;
  z-index: 2;
  border: 1px solid #D3DAE6;
  padding: 4px 4px 4px 0;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.euiDataGrid__rightControls {
  white-space: nowrap; }
  .euiDataGrid__rightControls:only-child {
    margin-left: auto; }
  .euiDataGrid__rightControls > * + * {
    margin-left: 8px; }

.euiDataGrid__leftControls > * + * {
  margin-left: 2px; }

.euiDataGrid__controlBtn--active,
.euiDataGrid__controlBtn--active:focus {
  font-weight: 600; }

.euiDataGrid--bordersNone .euiDataGrid__controls {
  border: none;
  background: #FFF; }

.euiDataGrid--bordersHorizontal .euiDataGrid__controls {
  border-right: none;
  border-left: none;
  border-top: none;
  background: #FFF; }

.euiDataGrid__controlScroll {
  scrollbar-color: rgba(105, 112, 125, 0.5) transparent;
  scrollbar-width: thin;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-mask-image: linear-gradient(to bottom, rgba(255, 0, 0, 0.1) 0%, red 7.5px, red calc(100% - 7.5px), rgba(255, 0, 0, 0.1) 100%);
          mask-image: linear-gradient(to bottom, rgba(255, 0, 0, 0.1) 0%, red 7.5px, red calc(100% - 7.5px), rgba(255, 0, 0, 0.1) 100%);
  max-height: 400px;
  padding: 8px;
  margin: -8px; }
  .euiDataGrid__controlScroll::-webkit-scrollbar {
    width: 16px;
    height: 16px; }
  .euiDataGrid__controlScroll::-webkit-scrollbar-thumb {
    background-color: rgba(105, 112, 125, 0.5);
    background-clip: content-box;
    border-radius: 16px;
    border: 6px solid transparent; }
  .euiDataGrid__controlScroll::-webkit-scrollbar-corner, .euiDataGrid__controlScroll::-webkit-scrollbar-track {
    background-color: transparent; }
  .euiDataGrid__controlScroll:focus {
    outline: none;
    /* 1 */ }
  .euiDataGrid__controlScroll[tabindex='0']:focus:focus-visible {
    outline-style: auto;
    /* 2 */ }

.euiDataGridColumnSelector__item {
  padding: 4px; }
  .euiDataGridColumnSelector__item-isDragging {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1), 0 3.6px 13px rgba(0, 0, 0, 0.07), 0 8.4px 23px rgba(0, 0, 0, 0.06), 0 23px 35px rgba(0, 0, 0, 0.05);
    background: #FFF; }

.euiDataGridColumnSelector__columnList {
  scrollbar-color: rgba(105, 112, 125, 0.5) transparent;
  scrollbar-width: thin;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-mask-image: linear-gradient(to bottom, rgba(255, 0, 0, 0.1) 0%, red 7.5px, red calc(100% - 7.5px), rgba(255, 0, 0, 0.1) 100%);
          mask-image: linear-gradient(to bottom, rgba(255, 0, 0, 0.1) 0%, red 7.5px, red calc(100% - 7.5px), rgba(255, 0, 0, 0.1) 100%);
  max-height: 400px;
  margin: 0 -8px; }
  .euiDataGridColumnSelector__columnList::-webkit-scrollbar {
    width: 16px;
    height: 16px; }
  .euiDataGridColumnSelector__columnList::-webkit-scrollbar-thumb {
    background-color: rgba(105, 112, 125, 0.5);
    background-clip: content-box;
    border-radius: 16px;
    border: 6px solid transparent; }
  .euiDataGridColumnSelector__columnList::-webkit-scrollbar-corner, .euiDataGridColumnSelector__columnList::-webkit-scrollbar-track {
    background-color: transparent; }
  .euiDataGridColumnSelector__columnList:focus {
    outline: none;
    /* 1 */ }
  .euiDataGridColumnSelector__columnList[tabindex='0']:focus:focus-visible {
    outline-style: auto;
    /* 2 */ }

.euiDataGridColumnSelector__itemLabel {
  font-size: 12px;
  font-size: 0.85714rem;
  line-height: 1.14286rem; }

.euiDataGridColumnSorting__item-isDragging {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1), 0 3.6px 13px rgba(0, 0, 0, 0.07), 0 8.4px 23px rgba(0, 0, 0, 0.06), 0 23px 35px rgba(0, 0, 0, 0.05);
  background: #FFF; }

.euiDataGridColumnSorting__fieldList {
  scrollbar-color: rgba(105, 112, 125, 0.5) transparent;
  scrollbar-width: thin;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-mask-image: linear-gradient(to bottom, rgba(255, 0, 0, 0.1) 0%, red 7.5px, red calc(100% - 7.5px), rgba(255, 0, 0, 0.1) 100%);
          mask-image: linear-gradient(to bottom, rgba(255, 0, 0, 0.1) 0%, red 7.5px, red calc(100% - 7.5px), rgba(255, 0, 0, 0.1) 100%);
  padding-top: 4px;
  padding-bottom: 4px;
  max-height: 300px; }
  .euiDataGridColumnSorting__fieldList::-webkit-scrollbar {
    width: 16px;
    height: 16px; }
  .euiDataGridColumnSorting__fieldList::-webkit-scrollbar-thumb {
    background-color: rgba(105, 112, 125, 0.5);
    background-clip: content-box;
    border-radius: 16px;
    border: 6px solid transparent; }
  .euiDataGridColumnSorting__fieldList::-webkit-scrollbar-corner, .euiDataGridColumnSorting__fieldList::-webkit-scrollbar-track {
    background-color: transparent; }
  .euiDataGridColumnSorting__fieldList:focus {
    outline: none;
    /* 1 */ }
  .euiDataGridColumnSorting__fieldList[tabindex='0']:focus:focus-visible {
    outline-style: auto;
    /* 2 */ }

.euiDataGridColumnSorting__field {
  display: block;
  padding: 4px 8px;
  width: 100%;
  outline-offset: -2px; }
  .euiDataGridColumnSorting__field:hover {
    cursor: pointer;
    text-decoration: underline; }
  .euiDataGridColumnSorting__field:focus {
    cursor: pointer;
    text-decoration: underline;
    background-color: rgba(0, 119, 204, 0.1); }
  .euiDataGridColumnSorting__field:disabled {
    cursor: not-allowed;
    text-decoration: none;
    color: #ABB4C4; }

.euiDataGridColumnSorting__orderButtons {
  padding-left: 24px; }
  @media only screen and (max-width: 574px) {
    .euiDataGridColumnSorting__orderButtons {
      padding-left: 4px; } }
  @media only screen and (min-width: 575px) and (max-width: 767px) {
    .euiDataGridColumnSorting__orderButtons {
      padding-left: 4px; } }
  .euiDataGridColumnSorting__orderButtons .euiDataGridColumnSorting__order {
    min-width: 200px;
    border: none; }
    @media only screen and (max-width: 574px) {
      .euiDataGridColumnSorting__orderButtons .euiDataGridColumnSorting__order {
        min-width: unset; } }
    @media only screen and (min-width: 575px) and (max-width: 767px) {
      .euiDataGridColumnSorting__orderButtons .euiDataGridColumnSorting__order {
        min-width: unset; } }
    .euiDataGridColumnSorting__orderButtons .euiDataGridColumnSorting__order button {
      font-size: 12px !important; }

.euiDataGrid__displayPopoverPanel {
  width: 416px; }

.euiDataGrid__keyboardShortcuts {
  display: block;
  max-inline-size: 400px;
  max-block-size: 80vh;
  overflow-y: auto;
  overflow-block: auto; }
  .euiDataGrid__keyboardShortcuts .euiDescriptionList .euiDescriptionList__title {
    width: 25%; }
  .euiDataGrid__keyboardShortcuts .euiDescriptionList .euiDescriptionList__description {
    width: 75%; }

.euiDraggable.euiDraggable--isDragging {
  z-index: 9000 !important; }

.euiDraggable.euiDraggable--hasClone:not(.euiDraggable--isDragging) {
  transform: none !important; }

.euiDraggable.euiDraggable--withoutDropAnimation {
  transition-duration: .001s !important; }

.euiDraggable:focus > .euiDraggable__item,
.euiDraggable.euiDraggable--hasCustomDragHandle > .euiDraggable__item [data-react-beautiful-dnd-drag-handle]:focus {
  outline: 2px solid currentColor; }
  .euiDraggable:focus > .euiDraggable__item:focus-visible,
  .euiDraggable.euiDraggable--hasCustomDragHandle > .euiDraggable__item [data-react-beautiful-dnd-drag-handle]:focus:focus-visible {
    outline-style: auto; }
  .euiDraggable:focus > .euiDraggable__item:not(:focus-visible),
  .euiDraggable.euiDraggable--hasCustomDragHandle > .euiDraggable__item [data-react-beautiful-dnd-drag-handle]:focus:not(:focus-visible) {
    outline: none; }

.euiDraggable .euiDraggable__item.euiDraggable__item--isDisabled {
  cursor: not-allowed; }

.euiDraggable--s {
  padding: 2px; }

.euiDraggable--m {
  padding: 4px; }

.euiDraggable--l {
  padding: 8px; }

.euiDroppable {
  transition: background-color 500ms ease; }
  .euiDroppable.euiDroppable--isDraggingType:not(.euiDroppable--isDisabled) {
    background-color: rgba(0, 191, 179, 0.1); }
    .euiDroppable.euiDroppable--isDraggingType:not(.euiDroppable--isDisabled).euiDroppable--isDraggingOver {
      background-color: rgba(0, 191, 179, 0.25); }
  .euiDroppable .euiDroppable__placeholder.euiDroppable__placeholder--isHidden {
    display: none !important; }

.euiDroppable--withPanel {
  flex-grow: 1; }
  .euiDroppable--withPanel.euiDroppable--withPanel--flexGrowZero {
    flex-grow: 0; }
  .euiDroppable--withPanel.euiDroppable--withPanel--hasShadow {
    box-shadow: 0 0.9px 4px -1px rgba(0, 0, 0, 0.08), 0 2.6px 8px -1px rgba(0, 0, 0, 0.06), 0 5.7px 12px -1px rgba(0, 0, 0, 0.05), 0 15px 15px -1px rgba(0, 0, 0, 0.04); }
  .euiDroppable--withPanel.euiDroppable--withPanel--hasBorder {
    border: 1px solid #D3DAE6;
    box-shadow: none; }
  .euiDroppable--withPanel.euiDroppable--withPanel--isClickable {
    transition: all 150ms cubic-bezier(0.694, 0.0482, 0.335, 1); }
    .euiDroppable--withPanel.euiDroppable--withPanel--isClickable:enabled {
      display: block;
      width: 100%;
      text-align: left; }
    .euiDroppable--withPanel.euiDroppable--withPanel--isClickable:hover, .euiDroppable--withPanel.euiDroppable--withPanel--isClickable:focus {
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1), 0 3.6px 13px rgba(0, 0, 0, 0.07), 0 8.4px 23px rgba(0, 0, 0, 0.06), 0 23px 35px rgba(0, 0, 0, 0.05);
      transform: translateY(-2px);
      cursor: pointer; }
  .euiDroppable--withPanel.euiDroppable--withPanel--borderRadiusNone {
    border-radius: 0; }
  .euiDroppable--withPanel.euiDroppable--withPanel--borderRadiusMedium {
    border-radius: 6px; }
  .euiDroppable--withPanel.euiDroppable--withPanel--transparent {
    background-color: transparent; }
  .euiDroppable--withPanel.euiDroppable--withPanel--plain {
    background-color: #FFF; }
  .euiDroppable--withPanel.euiDroppable--withPanel--subdued {
    background-color: #fafbfd; }
  .euiDroppable--withPanel.euiDroppable--withPanel--accent {
    background-color: #feedf5; }
  .euiDroppable--withPanel.euiDroppable--withPanel--primary {
    background-color: #e6f1fa; }
  .euiDroppable--withPanel.euiDroppable--withPanel--success {
    background-color: #e6f9f7; }
  .euiDroppable--withPanel.euiDroppable--withPanel--warning {
    background-color: #fff9e8; }
  .euiDroppable--withPanel.euiDroppable--withPanel--danger {
    background-color: #f8e9e9; }

.euiDroppable--withPanel {
  box-shadow: 0 0.9px 4px -1px rgba(0, 0, 0, 0.08), 0 2.6px 8px -1px rgba(0, 0, 0, 0.06), 0 5.7px 12px -1px rgba(0, 0, 0, 0.05), 0 15px 15px -1px rgba(0, 0, 0, 0.04);
  border-radius: 6px; }

.euiDroppable--noGrow {
  flex-grow: 0; }

.euiDroppable--grow {
  flex-grow: 1; }

.euiDroppable--s {
  padding: 2px; }

.euiDroppable--m {
  padding: 4px; }

.euiDroppable--l {
  padding: 8px; }

.euiEmptyPrompt {
  text-align: center;
  margin: auto; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .euiEmptyPrompt {
      max-width: -moz-max-content;
      max-width: max-content; } }
  @media only screen and (min-width: 1200px) {
    .euiEmptyPrompt {
      max-width: -moz-max-content;
      max-width: max-content; } }
  .euiEmptyPrompt .euiEmptyPrompt__icon > * {
    flex-shrink: 1;
    max-width: 25.71429rem; }
  .euiEmptyPrompt.euiPanel--transparent .euiEmptyPrompt__footer {
    background-color: #fafbfd; }
  .euiEmptyPrompt.euiPanel--transparent:not(.euiPanel--hasBorder) .euiEmptyPrompt__footer {
    border-radius: 6px; }
  .euiEmptyPrompt.euiPanel--transparent.euiPanel--hasBorder .euiEmptyPrompt__footer {
    border-radius: 0 0 6px 6px; }
  .euiEmptyPrompt.euiPanel--plain .euiEmptyPrompt__footer {
    background-color: #fafbfd;
    border-radius: 0 0 6px 6px; }
  .euiEmptyPrompt.euiPanel--subdued .euiEmptyPrompt__footer {
    border-top: 1px solid #D3DAE6;
    border-radius: 0 0 6px 6px; }
  .euiEmptyPrompt.euiPanel--accent .euiEmptyPrompt__footer {
    border-top: 1px solid #fbbdda;
    border-radius: 0 0 6px 6px; }
  .euiEmptyPrompt.euiPanel--primary .euiEmptyPrompt__footer {
    border-top: 1px solid #bcd9f2;
    border-radius: 0 0 6px 6px; }
  .euiEmptyPrompt.euiPanel--success .euiEmptyPrompt__footer {
    border-top: 1px solid #bdefea;
    border-radius: 0 0 6px 6px; }
  .euiEmptyPrompt.euiPanel--warning .euiEmptyPrompt__footer {
    border-top: 1px solid #ffecb5;
    border-radius: 0 0 6px 6px; }
  .euiEmptyPrompt.euiPanel--danger .euiEmptyPrompt__footer {
    border-top: 1px solid #ecc2c2;
    border-radius: 0 0 6px 6px; }

.euiEmptyPrompt--vertical .euiEmptyPrompt__main {
  display: flex;
  flex-direction: column;
  justify-content: center; }

.euiEmptyPrompt--vertical .euiEmptyPrompt__contentInner {
  max-width: 36em;
  margin: auto; }

.euiEmptyPrompt--vertical .euiEmptyPrompt__icon {
  margin-bottom: 16px; }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .euiEmptyPrompt--horizontal {
    justify-content: flex-start;
    text-align: left; } }

@media only screen and (min-width: 1200px) {
  .euiEmptyPrompt--horizontal {
    justify-content: flex-start;
    text-align: left; } }

.euiEmptyPrompt--horizontal .euiEmptyPrompt__main {
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .euiEmptyPrompt--horizontal .euiEmptyPrompt__main {
      flex-direction: row-reverse; } }
  @media only screen and (min-width: 1200px) {
    .euiEmptyPrompt--horizontal .euiEmptyPrompt__main {
      flex-direction: row-reverse; } }

.euiEmptyPrompt--horizontal .euiEmptyPrompt__icon {
  display: flex;
  align-items: center;
  justify-content: center; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .euiEmptyPrompt--horizontal .euiEmptyPrompt__icon {
      min-width: 40%;
      max-width: 50%; } }
  @media only screen and (min-width: 1200px) {
    .euiEmptyPrompt--horizontal .euiEmptyPrompt__icon {
      min-width: 40%;
      max-width: 50%; } }

.euiEmptyPrompt--horizontal .euiEmptyPrompt__content {
  max-width: 36em; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .euiEmptyPrompt--horizontal .euiEmptyPrompt__content {
      padding: 24px 0; } }
  @media only screen and (min-width: 1200px) {
    .euiEmptyPrompt--horizontal .euiEmptyPrompt__content {
      padding: 24px 0; } }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .euiEmptyPrompt--horizontal .euiEmptyPrompt__actions {
    justify-content: flex-start; } }

@media only screen and (min-width: 1200px) {
  .euiEmptyPrompt--horizontal .euiEmptyPrompt__actions {
    justify-content: flex-start; } }

.euiEmptyPrompt--paddingSmall .euiEmptyPrompt__main,
.euiEmptyPrompt--paddingSmall .euiEmptyPrompt__footer {
  padding: 8px; }

.euiEmptyPrompt--paddingSmall.euiEmptyPrompt--horizontal .euiEmptyPrompt__main {
  gap: 8px; }

.euiEmptyPrompt--paddingMedium .euiEmptyPrompt__main,
.euiEmptyPrompt--paddingMedium .euiEmptyPrompt__footer {
  padding: 16px; }

.euiEmptyPrompt--paddingMedium.euiEmptyPrompt--horizontal .euiEmptyPrompt__main {
  gap: 16px; }

.euiEmptyPrompt--paddingLarge .euiEmptyPrompt__main,
.euiEmptyPrompt--paddingLarge .euiEmptyPrompt__footer {
  padding: 24px; }

.euiEmptyPrompt--paddingLarge.euiEmptyPrompt--horizontal .euiEmptyPrompt__main {
  gap: 24px; }

.euiFilterGroup {
  display: inline-flex;
  max-width: 100%;
  border-right: 1px solid rgba(17, 43, 134, 0.1);
  box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.2), 0 3px 3px -2px rgba(0, 0, 0, 0.2);
  overflow: hidden; }
  .euiFilterGroup > * {
    flex: 1 1 auto;
    min-width: 48px; }
  .euiFilterGroup > .euiFilterButton--noGrow {
    flex-grow: 0; }
  .euiFilterGroup > .euiFilterButton-hasNotification {
    min-width: 96px; }
  .euiFilterGroup > .euiFilterButton--hasIcon {
    min-width: 128px; }
  .euiFilterGroup .euiPopover__anchor {
    display: block; }
    .euiFilterGroup .euiPopover__anchor .euiFilterButton {
      width: 100%; }

.euiFilterGroup--fullWidth {
  display: flex; }

.euiFilterGroup__popoverPanel {
  width: 288px; }

@media only screen and (max-width: 574px) {
  .euiFilterGroup {
    flex-wrap: wrap; } }

@media only screen and (min-width: 575px) and (max-width: 767px) {
  .euiFilterGroup {
    flex-wrap: wrap; } }

@media only screen and (max-width: 574px) {
  .euiFilterGroup {
    display: flex; }
    .euiFilterGroup .euiFilterButton {
      flex-grow: 1 !important; } }

.euiFilterButton {
  background-color: #fbfcfd;
  height: 40px;
  width: auto;
  border: 1px solid rgba(17, 43, 134, 0.1);
  border-right: none;
  font-size: 14px; }
  .euiFilterButton:disabled {
    color: #ABB4C4;
    pointer-events: none; }
    .euiFilterButton:disabled .euiFilterButton__notification {
      opacity: .5; }
  .euiFilterButton:hover:not(:disabled), .euiFilterButton:focus:not(:disabled) {
    text-decoration: none; }
    .euiFilterButton:hover:not(:disabled) .euiFilterButton__textShift, .euiFilterButton:focus:not(:disabled) .euiFilterButton__textShift {
      text-decoration: underline; }

.euiFilterButton-hasActiveFilters {
  font-weight: 700; }

.euiFilterButton--hasIcon .euiButtonEmpty__content {
  justify-content: space-between; }

.euiFilterButton--withNext + .euiFilterButton {
  margin-left: -4px;
  border-left: none; }

.euiFilterButton-isSelected {
  background-color: #F5F7FA; }

.euiFilterButton__text-hasNotification {
  display: flex;
  align-items: center; }

.euiFilterButton__notification {
  margin-left: 8px;
  vertical-align: text-bottom; }

.euiFilterButton__textShift {
  max-width: 100%;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  min-width: 48px; }
  .euiFilterButton__textShift::after {
    display: block;
    content: attr(data-text);
    font-weight: 700;
    height: 0;
    overflow: hidden;
    visibility: hidden; }

.euiFilterSelectItem {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  padding: 4px 12px;
  display: block;
  width: 100%;
  text-align: left;
  color: #343741;
  border-bottom: 1px solid #D3DAE6;
  border-color: #eef2f7;
  outline-offset: -2px; }
  .euiFilterSelectItem:hover {
    cursor: pointer;
    text-decoration: underline; }
  .euiFilterSelectItem:focus {
    cursor: pointer;
    text-decoration: underline;
    background-color: rgba(0, 119, 204, 0.1); }
  .euiFilterSelectItem:disabled {
    cursor: not-allowed;
    text-decoration: none;
    color: #ABB4C4; }
  .euiFilterSelectItem:focus, .euiFilterSelectItem-isFocused {
    background-color: rgba(0, 119, 204, 0.1);
    color: #07C; }

.euiFilterSelectItem__content {
  max-width: 100%;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important; }

.euiFilterSelect__items {
  scrollbar-color: rgba(105, 112, 125, 0.5) transparent;
  scrollbar-width: thin;
  overflow-y: auto;
  max-height: 480px; }
  .euiFilterSelect__items::-webkit-scrollbar {
    width: 16px;
    height: 16px; }
  .euiFilterSelect__items::-webkit-scrollbar-thumb {
    background-color: rgba(105, 112, 125, 0.5);
    background-clip: content-box;
    border-radius: 16px;
    border: 6px solid transparent; }
  .euiFilterSelect__items::-webkit-scrollbar-corner, .euiFilterSelect__items::-webkit-scrollbar-track {
    background-color: transparent; }

.euiFilterSelect__note {
  height: 64px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-around; }

.euiFilterSelect__noteContent {
  color: #69707D;
  font-size: 14px; }

/**
  * 1. Float above the visual radio and match its dimension, so that when users try to click it
  *    they actually click this input.
  */
.euiCheckbox {
  position: relative; }
  .euiCheckbox .euiCheckbox__input {
    width: 16px;
    height: 16px;
    top: 3px;
    cursor: pointer;
    position: absolute;
    /* 1 */
    opacity: 0;
    /* 1 */
    z-index: 1;
    /* 1 */ }
    .euiCheckbox .euiCheckbox__input ~ .euiCheckbox__label {
      display: inline-block;
      padding-left: 24px;
      line-height: 24px;
      font-size: 14px;
      position: relative;
      z-index: 2;
      cursor: pointer; }
    .euiCheckbox .euiCheckbox__input + .euiCheckbox__square {
      padding: 7px;
      border: 1px solid #c9cbcd;
      background: #FFF no-repeat center;
      border-radius: 4px;
      transition: background-color 150ms ease-in, border-color 150ms ease-in;
      display: inline-block;
      position: absolute;
      left: 0;
      top: 3px; }
    .euiCheckbox .euiCheckbox__input:checked + .euiCheckbox__square {
      border-color: #07C;
      background-color: #07C;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M.375 2.625L3.375 5.625M3.375 5.625L8.625.375' fill='none' fill-rule='evenodd' stroke='rgb%28255, 255, 255%29' stroke-linecap='round' stroke-width='1.5' transform='translate(.5 1)'/%3E%3C/svg%3E"); }
    .euiCheckbox .euiCheckbox__input:indeterminate + .euiCheckbox__square {
      border-color: #07C;
      background-color: #07C;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6'%3E%3Crect width='6' height='6' fill='rgb%28255, 255, 255%29' fill-rule='evenodd'/%3E%3C/svg%3E"); }
    .euiCheckbox .euiCheckbox__input[disabled] {
      cursor: not-allowed !important; }
      .euiCheckbox .euiCheckbox__input[disabled] ~ .euiCheckbox__label {
        color: #98A2B3;
        cursor: not-allowed !important; }
      .euiCheckbox .euiCheckbox__input[disabled] + .euiCheckbox__square {
        border-color: #D3DAE6;
        background-color: #D3DAE6;
        box-shadow: none; }
    .euiCheckbox .euiCheckbox__input:checked[disabled] + .euiCheckbox__square {
      border-color: #D3DAE6;
      background-color: #D3DAE6;
      box-shadow: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M.375 2.625L3.375 5.625M3.375 5.625L8.625.375' fill='none' fill-rule='evenodd' stroke='rgb%2894, 100, 111%29' stroke-linecap='round' stroke-width='1.5' transform='translate(.5 1)'/%3E%3C/svg%3E"); }
    .euiCheckbox .euiCheckbox__input:indeterminate[disabled] + .euiCheckbox__square {
      border-color: #D3DAE6;
      background-color: #D3DAE6;
      box-shadow: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6'%3E%3Crect width='6' height='6' fill='rgb%2894, 100, 111%29' fill-rule='evenodd'/%3E%3C/svg%3E"); }
    .euiCheckbox .euiCheckbox__input:focus + .euiCheckbox__square {
      outline: 2px solid currentColor;
      outline-offset: 2px;
      border-color: #07C; }
      .euiCheckbox .euiCheckbox__input:focus + .euiCheckbox__square:focus-visible {
        outline-style: auto; }
      .euiCheckbox .euiCheckbox__input:focus + .euiCheckbox__square:not(:focus-visible) {
        outline: none; }
  .euiCheckbox.euiCheckbox--inList, .euiCheckbox.euiCheckbox--noLabel {
    min-height: 16px;
    min-width: 16px; }
    .euiCheckbox.euiCheckbox--inList .euiCheckbox__input,
    .euiCheckbox.euiCheckbox--inList .euiCheckbox__square, .euiCheckbox.euiCheckbox--noLabel .euiCheckbox__input,
    .euiCheckbox.euiCheckbox--noLabel .euiCheckbox__square {
      top: 0; }
    .euiCheckbox.euiCheckbox--inList .euiCheckbox__input, .euiCheckbox.euiCheckbox--noLabel .euiCheckbox__input {
      margin: 0; }

.euiCheckboxGroup__item + .euiCheckboxGroup__item {
  margin-top: 4px; }
  .euiCheckboxGroup__item + .euiCheckboxGroup__item.euiCheckbox--compressed {
    margin-top: 0; }

.euiDescribedFormGroup {
  max-width: 800px; }
  .euiDescribedFormGroup + * {
    margin-top: 24px; }
  .euiDescribedFormGroup.euiDescribedFormGroup--fullWidth {
    max-width: 100%; }
  .euiDescribedFormGroup .euiDescribedFormGroup__description {
    padding-top: 8px; }
  .euiDescribedFormGroup .euiDescribedFormGroup__fields {
    min-width: 0; }
  .euiDescribedFormGroup .euiDescribedFormGroup__fields > .euiFormRow--hasEmptyLabelSpace:first-child,
  .euiDescribedFormGroup .euiDescribedFormGroup__fields > .euiFormRow:first-child:not(.euiFormRow--hasLabel) {
    margin-top: 0; }
    .euiDescribedFormGroup .euiDescribedFormGroup__fields > .euiFormRow--hasEmptyLabelSpace:first-child::before,
    .euiDescribedFormGroup .euiDescribedFormGroup__fields > .euiFormRow:first-child:not(.euiFormRow--hasLabel)::before {
      content: ''; }

.euiDescribedFormGroup__descriptionColumn {
  min-width: MIN(20rem, 50%); }

.euiFieldNumber {
  max-width: 400px;
  width: 100%;
  height: 40px;
  background-color: #fbfcfd;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  box-shadow: 0 0 transparent, inset 0 0 0 1px rgba(17, 43, 134, 0.1);
  transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  letter-spacing: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-kerning: normal;
          font-feature-settings: "kern";
          font-kerning: normal;
  font-size: 14px;
  color: #343741;
  border: none;
  border-radius: 6px;
  padding: 12px; }
  .euiFieldNumber--fullWidth {
    max-width: 100%; }
  .euiFieldNumber--compressed {
    height: 32px; }
  .euiFieldNumber--inGroup {
    height: 100%; }
  @supports (-moz-appearance: none) {
    .euiFieldNumber {
      transition-property: box-shadow, background-image, background-size; } }
  .euiFieldNumber::-moz-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiFieldNumber:-ms-input-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiFieldNumber::placeholder {
    color: #69707D;
    opacity: 1; }
  .euiFieldNumber:invalid {
    background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
    background-size: 100%; }
  .euiFieldNumber:focus {
    background-color: white;
    background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
    background-size: 100% 100%;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiFieldNumber:disabled {
    color: #98A2B3;
    -webkit-text-fill-color: #98A2B3;
    cursor: not-allowed;
    background: #eef2f7;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
    .euiFieldNumber:disabled::-moz-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiFieldNumber:disabled:-ms-input-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiFieldNumber:disabled::placeholder {
      color: #98A2B3;
      opacity: 1; }
  .euiFieldNumber[readOnly] {
    cursor: default;
    color: #343741;
    -webkit-text-fill-color: #343741;
    background: #FFF;
    border-color: transparent;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiFieldNumber:-webkit-autofill {
    -webkit-text-fill-color: #343741; }
    .euiFieldNumber:-webkit-autofill ~ .euiFormControlLayoutIcons {
      color: #343741; }
  .euiFieldNumber--compressed {
    background-color: #fbfcfd;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1);
    transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
    padding: 8px;
    border-radius: 4px; }
    @supports (-moz-appearance: none) {
      .euiFieldNumber--compressed {
        transition-property: box-shadow, background-image, background-size; } }
    .euiFieldNumber--compressed:invalid {
      background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
      background-size: 100%; }
    .euiFieldNumber--compressed:focus {
      background-color: white;
      background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
      background-size: 100% 100%;
      outline: none;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
    .euiFieldNumber--compressed:disabled {
      color: #98A2B3;
      -webkit-text-fill-color: #98A2B3;
      cursor: not-allowed;
      background: #eef2f7;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
      .euiFieldNumber--compressed:disabled::-moz-placeholder {
        color: #98A2B3;
        opacity: 1; }
      .euiFieldNumber--compressed:disabled:-ms-input-placeholder {
        color: #98A2B3;
        opacity: 1; }
      .euiFieldNumber--compressed:disabled::placeholder {
        color: #98A2B3;
        opacity: 1; }
    .euiFieldNumber--compressed[readOnly] {
      cursor: default;
      color: #343741;
      -webkit-text-fill-color: #343741;
      background: #FFF;
      border-color: transparent;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiFieldNumber--inGroup {
    box-shadow: none !important;
    border-radius: 0; }
  .euiFieldNumber--withIcon {
    padding-left: 40px; }

.euiFieldNumber--withIcon.euiFieldNumber--compressed {
  padding-left: 32px; }

.euiFieldPassword {
  max-width: 400px;
  width: 100%;
  height: 40px;
  background-color: #fbfcfd;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  box-shadow: 0 0 transparent, inset 0 0 0 1px rgba(17, 43, 134, 0.1);
  transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  letter-spacing: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-kerning: normal;
          font-feature-settings: "kern";
          font-kerning: normal;
  font-size: 14px;
  color: #343741;
  border: none;
  border-radius: 6px;
  padding: 12px;
  padding-left: 40px; }
  .euiFieldPassword--fullWidth {
    max-width: 100%; }
  .euiFieldPassword--compressed {
    height: 32px; }
  .euiFieldPassword--inGroup {
    height: 100%; }
  @supports (-moz-appearance: none) {
    .euiFieldPassword {
      transition-property: box-shadow, background-image, background-size; } }
  .euiFieldPassword::-moz-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiFieldPassword:-ms-input-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiFieldPassword::placeholder {
    color: #69707D;
    opacity: 1; }
  .euiFieldPassword:invalid {
    background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
    background-size: 100%; }
  .euiFieldPassword:focus {
    background-color: white;
    background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
    background-size: 100% 100%;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiFieldPassword:disabled {
    color: #98A2B3;
    -webkit-text-fill-color: #98A2B3;
    cursor: not-allowed;
    background: #eef2f7;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
    .euiFieldPassword:disabled::-moz-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiFieldPassword:disabled:-ms-input-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiFieldPassword:disabled::placeholder {
      color: #98A2B3;
      opacity: 1; }
  .euiFieldPassword[readOnly] {
    cursor: default;
    color: #343741;
    -webkit-text-fill-color: #343741;
    background: #FFF;
    border-color: transparent;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiFieldPassword:-webkit-autofill {
    -webkit-text-fill-color: #343741; }
    .euiFieldPassword:-webkit-autofill ~ .euiFormControlLayoutIcons {
      color: #343741; }
  .euiFieldPassword--compressed {
    background-color: #fbfcfd;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1);
    transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
    padding: 8px;
    border-radius: 4px; }
    @supports (-moz-appearance: none) {
      .euiFieldPassword--compressed {
        transition-property: box-shadow, background-image, background-size; } }
    .euiFieldPassword--compressed:invalid {
      background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
      background-size: 100%; }
    .euiFieldPassword--compressed:focus {
      background-color: white;
      background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
      background-size: 100% 100%;
      outline: none;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
    .euiFieldPassword--compressed:disabled {
      color: #98A2B3;
      -webkit-text-fill-color: #98A2B3;
      cursor: not-allowed;
      background: #eef2f7;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
      .euiFieldPassword--compressed:disabled::-moz-placeholder {
        color: #98A2B3;
        opacity: 1; }
      .euiFieldPassword--compressed:disabled:-ms-input-placeholder {
        color: #98A2B3;
        opacity: 1; }
      .euiFieldPassword--compressed:disabled::placeholder {
        color: #98A2B3;
        opacity: 1; }
    .euiFieldPassword--compressed[readOnly] {
      cursor: default;
      color: #343741;
      -webkit-text-fill-color: #343741;
      background: #FFF;
      border-color: transparent;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiFieldPassword--inGroup {
    box-shadow: none !important;
    border-radius: 0; }
  .euiFieldPassword.euiFieldPassword--compressed {
    padding-left: 32px; }

.euiFieldPassword--withToggle::-ms-reveal {
  display: none; }

/*
 * 1. Fix for Safari to ensure that it renders like a normal text input
 *    and doesn't add extra spacing around text
*/
.euiFieldSearch {
  max-width: 400px;
  width: 100%;
  height: 40px;
  background-color: #fbfcfd;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  box-shadow: 0 0 transparent, inset 0 0 0 1px rgba(17, 43, 134, 0.1);
  transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  letter-spacing: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-kerning: normal;
          font-feature-settings: "kern";
          font-kerning: normal;
  font-size: 14px;
  color: #343741;
  border: none;
  border-radius: 6px;
  padding: 12px;
  padding-left: 40px;
  -webkit-appearance: textfield;
  /* 1 */ }
  .euiFieldSearch--fullWidth {
    max-width: 100%; }
  .euiFieldSearch--compressed {
    height: 32px; }
  .euiFieldSearch--inGroup {
    height: 100%; }
  @supports (-moz-appearance: none) {
    .euiFieldSearch {
      transition-property: box-shadow, background-image, background-size; } }
  .euiFieldSearch::-moz-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiFieldSearch:-ms-input-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiFieldSearch::placeholder {
    color: #69707D;
    opacity: 1; }
  .euiFieldSearch:invalid {
    background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
    background-size: 100%; }
  .euiFieldSearch:focus {
    background-color: white;
    background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
    background-size: 100% 100%;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiFieldSearch:disabled {
    color: #98A2B3;
    -webkit-text-fill-color: #98A2B3;
    cursor: not-allowed;
    background: #eef2f7;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
    .euiFieldSearch:disabled::-moz-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiFieldSearch:disabled:-ms-input-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiFieldSearch:disabled::placeholder {
      color: #98A2B3;
      opacity: 1; }
  .euiFieldSearch[readOnly] {
    cursor: default;
    color: #343741;
    -webkit-text-fill-color: #343741;
    background: #FFF;
    border-color: transparent;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiFieldSearch:-webkit-autofill {
    -webkit-text-fill-color: #343741; }
    .euiFieldSearch:-webkit-autofill ~ .euiFormControlLayoutIcons {
      color: #343741; }
  .euiFieldSearch--compressed {
    background-color: #fbfcfd;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1);
    transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
    padding: 8px;
    border-radius: 4px; }
    @supports (-moz-appearance: none) {
      .euiFieldSearch--compressed {
        transition-property: box-shadow, background-image, background-size; } }
    .euiFieldSearch--compressed:invalid {
      background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
      background-size: 100%; }
    .euiFieldSearch--compressed:focus {
      background-color: white;
      background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
      background-size: 100% 100%;
      outline: none;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
    .euiFieldSearch--compressed:disabled {
      color: #98A2B3;
      -webkit-text-fill-color: #98A2B3;
      cursor: not-allowed;
      background: #eef2f7;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
      .euiFieldSearch--compressed:disabled::-moz-placeholder {
        color: #98A2B3;
        opacity: 1; }
      .euiFieldSearch--compressed:disabled:-ms-input-placeholder {
        color: #98A2B3;
        opacity: 1; }
      .euiFieldSearch--compressed:disabled::placeholder {
        color: #98A2B3;
        opacity: 1; }
    .euiFieldSearch--compressed[readOnly] {
      cursor: default;
      color: #343741;
      -webkit-text-fill-color: #343741;
      background: #FFF;
      border-color: transparent;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiFieldSearch--inGroup {
    box-shadow: none !important;
    border-radius: 0; }
  .euiFieldSearch-isLoading {
    padding-right: 40px; }
  .euiFieldSearch-isLoading.euiFieldSearch--compressed {
    padding-right: 32px; }
  .euiFieldSearch::-webkit-search-decoration, .euiFieldSearch::-webkit-search-cancel-button {
    -webkit-appearance: none;
    /* 1, 2 */ }

.euiFieldSearch--compressed {
  padding-left: 32px; }

.euiFieldText {
  max-width: 400px;
  width: 100%;
  height: 40px;
  background-color: #fbfcfd;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  box-shadow: 0 0 transparent, inset 0 0 0 1px rgba(17, 43, 134, 0.1);
  transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  letter-spacing: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-kerning: normal;
          font-feature-settings: "kern";
          font-kerning: normal;
  font-size: 14px;
  color: #343741;
  border: none;
  border-radius: 6px;
  padding: 12px;
  /* Invalid state normally comes from :invalid, but several components
  /* like EuiDatePicker need it toggled through an extra class.
  */ }
  .euiFieldText--fullWidth {
    max-width: 100%; }
  .euiFieldText--compressed {
    height: 32px; }
  .euiFieldText--inGroup {
    height: 100%; }
  @supports (-moz-appearance: none) {
    .euiFieldText {
      transition-property: box-shadow, background-image, background-size; } }
  .euiFieldText::-moz-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiFieldText:-ms-input-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiFieldText::placeholder {
    color: #69707D;
    opacity: 1; }
  .euiFieldText:invalid {
    background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
    background-size: 100%; }
  .euiFieldText:focus {
    background-color: white;
    background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
    background-size: 100% 100%;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiFieldText:disabled {
    color: #98A2B3;
    -webkit-text-fill-color: #98A2B3;
    cursor: not-allowed;
    background: #eef2f7;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
    .euiFieldText:disabled::-moz-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiFieldText:disabled:-ms-input-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiFieldText:disabled::placeholder {
      color: #98A2B3;
      opacity: 1; }
  .euiFieldText[readOnly] {
    cursor: default;
    color: #343741;
    -webkit-text-fill-color: #343741;
    background: #FFF;
    border-color: transparent;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiFieldText:-webkit-autofill {
    -webkit-text-fill-color: #343741; }
    .euiFieldText:-webkit-autofill ~ .euiFormControlLayoutIcons {
      color: #343741; }
  .euiFieldText--compressed {
    background-color: #fbfcfd;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1);
    transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
    padding: 8px;
    border-radius: 4px; }
    @supports (-moz-appearance: none) {
      .euiFieldText--compressed {
        transition-property: box-shadow, background-image, background-size; } }
    .euiFieldText--compressed:invalid {
      background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
      background-size: 100%; }
    .euiFieldText--compressed:focus {
      background-color: white;
      background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
      background-size: 100% 100%;
      outline: none;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
    .euiFieldText--compressed:disabled {
      color: #98A2B3;
      -webkit-text-fill-color: #98A2B3;
      cursor: not-allowed;
      background: #eef2f7;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
      .euiFieldText--compressed:disabled::-moz-placeholder {
        color: #98A2B3;
        opacity: 1; }
      .euiFieldText--compressed:disabled:-ms-input-placeholder {
        color: #98A2B3;
        opacity: 1; }
      .euiFieldText--compressed:disabled::placeholder {
        color: #98A2B3;
        opacity: 1; }
    .euiFieldText--compressed[readOnly] {
      cursor: default;
      color: #343741;
      -webkit-text-fill-color: #343741;
      background: #FFF;
      border-color: transparent;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiFieldText--inGroup {
    box-shadow: none !important;
    border-radius: 0; }
  .euiFieldText--withIcon {
    padding-left: 40px; }
  .euiFieldText.euiFieldText-isInvalid {
    background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
    background-size: 100%; }

.euiFieldText--withIcon.euiFieldText--compressed {
  padding-left: 32px; }

/**
  * REMEMBER: --large modifiers must come last to override --compressed
  */
.euiFilePicker {
  max-width: 400px;
  width: 100%;
  height: 40px;
  position: relative; }
  .euiFilePicker--fullWidth {
    max-width: 100%; }
  .euiFilePicker--compressed {
    height: 32px; }
  .euiFilePicker--inGroup {
    height: 100%; }
  .euiFilePicker.euiFilePicker--large {
    border-radius: 6px;
    overflow: hidden;
    height: auto; }
  .euiFilePicker.euiFilePicker--large.euiFilePicker--compressed {
    border-radius: 4px; }

.euiFilePicker__input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden; }
  .euiFilePicker__input:hover {
    cursor: pointer; }
  .euiFilePicker__input:hover:disabled {
    cursor: not-allowed; }
  .euiFilePicker__input:disabled {
    opacity: 0; }
  .euiFilePicker__input:disabled ~ .euiFilePicker__prompt {
    color: #98A2B3; }

.euiFilePicker__icon {
  position: absolute;
  left: 12px;
  top: 12px;
  transition: transform 150ms cubic-bezier(0.694, 0.0482, 0.335, 1); }
  .euiFilePicker--compressed .euiFilePicker__icon {
    top: 8px;
    left: 8px; }
  .euiFilePicker--large .euiFilePicker__icon {
    position: static;
    margin-bottom: 16px; }

/**
  * 1. Don't block the user from dropping files onto the filepicker.
  * 2. Ensure space for import icon, loading spinner, and clear button (only if it has files)
  * 3. Delay focus gradient or else it will only partially transition while file chooser opens
  * 4. Static height so that it doesn't shift its surrounding contents around
  */
.euiFilePicker__prompt {
  background-color: #fbfcfd;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  box-shadow: 0 0 transparent, inset 0 0 0 1px rgba(17, 43, 134, 0.1);
  transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
  padding-left: 40px;
  /* 2 */
  height: 40px;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  pointer-events: none;
  /* 1 */
  border-radius: 6px;
  transition: box-shadow 150ms ease-in, background-color 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in 150ms;
  /* 3 */ }
  @supports (-moz-appearance: none) {
    .euiFilePicker__prompt {
      transition-property: box-shadow, background-image, background-size; } }
  .euiFilePicker--compressed .euiFilePicker__prompt {
    background-color: #fbfcfd;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1);
    transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
    padding: 8px;
    border-radius: 4px;
    padding-left: 32px;
    /* 2 */
    height: 32px;
    border-radius: 4px; }
    @supports (-moz-appearance: none) {
      .euiFilePicker--compressed .euiFilePicker__prompt {
        transition-property: box-shadow, background-image, background-size; } }
  .euiFilePicker--large .euiFilePicker__prompt {
    height: 128px;
    /* 4 */
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
  .euiFilePicker--large.euiFilePicker--compressed .euiFilePicker__prompt {
    height: 104px;
    /* 4 */ }
  .euiFilePicker-isInvalid .euiFilePicker__prompt {
    background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
    background-size: 100%; }

.euiFilePicker__promptText {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  max-width: 100%;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  line-height: 16px; }
  .euiFilePicker:not(.euiFilePicker--large):not(.euiFilePicker-hasFiles) .euiFilePicker__promptText {
    color: #98A2B3; }

.euiFilePicker__clearButton,
.euiFilePicker__loadingSpinner {
  position: absolute;
  right: 12px;
  top: 12px; }
  .euiFilePicker--compressed .euiFilePicker__clearButton, .euiFilePicker--compressed
  .euiFilePicker__loadingSpinner {
    top: 8px; }

/**
  * 1. Undo the pointer-events: none applied to the enclosing prompt.
  */
.euiFilePicker__clearButton {
  pointer-events: auto;
  /* 1 */ }
  .euiFilePicker:not(.euiFilePicker--large) .euiFilePicker__clearButton {
    width: 16px;
    height: 16px;
    pointer-events: all;
    background-color: #98A2B3;
    border-radius: 16px;
    line-height: 0; }
    .euiFilePicker:not(.euiFilePicker--large) .euiFilePicker__clearButton:focus {
      outline: 2px solid currentColor; }
      .euiFilePicker:not(.euiFilePicker--large) .euiFilePicker__clearButton:focus:focus-visible {
        outline-style: auto; }
      .euiFilePicker:not(.euiFilePicker--large) .euiFilePicker__clearButton:focus:not(:focus-visible) {
        outline: none; }
    .euiFilePicker:not(.euiFilePicker--large) .euiFilePicker__clearButton .euiFilePicker__clearIcon {
      width: 8px;
      height: 8px;
      fill: #FFF;
      stroke: #FFF;
      stroke-width: 2px; }
  .euiFilePicker--large .euiFilePicker__clearButton {
    position: relative;
    top: 0;
    right: 0; }

.euiFilePicker__showDrop .euiFilePicker__prompt,
.euiFilePicker__input:focus + .euiFilePicker__prompt {
  background-color: white;
  background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
  background-size: 100% 100%;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiFilePicker--compressed .euiFilePicker__showDrop .euiFilePicker__prompt, .euiFilePicker--compressed
  .euiFilePicker__input:focus + .euiFilePicker__prompt {
    background-color: white;
    background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
    background-size: 100% 100%;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }

.euiFilePicker__input:disabled + .euiFilePicker__prompt {
  color: #98A2B3;
  -webkit-text-fill-color: #98A2B3;
  cursor: not-allowed;
  background: #eef2f7;
  box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiFilePicker__input:disabled + .euiFilePicker__prompt::-moz-placeholder {
    color: #98A2B3;
    opacity: 1; }
  .euiFilePicker__input:disabled + .euiFilePicker__prompt:-ms-input-placeholder {
    color: #98A2B3;
    opacity: 1; }
  .euiFilePicker__input:disabled + .euiFilePicker__prompt::placeholder {
    color: #98A2B3;
    opacity: 1; }

.euiFilePicker:not(.euiFilePicker--large).euiFilePicker-isLoading .euiFilePicker__prompt,
.euiFilePicker:not(.euiFilePicker--large).euiFilePicker-hasFiles .euiFilePicker__prompt {
  padding-right: 40px;
  /* 2 */ }

.euiFilePicker-hasFiles .euiFilePicker__promptText {
  color: #343741; }

.euiFilePicker--large .euiFilePicker__input:hover:not(:disabled) + .euiFilePicker__prompt .euiFilePicker__promptText,
.euiFilePicker--large .euiFilePicker__input:focus + .euiFilePicker__prompt .euiFilePicker__promptText {
  text-decoration: underline; }

.euiFilePicker--large .euiFilePicker__input:hover:not(:disabled) + .euiFilePicker__prompt .euiFilePicker__icon,
.euiFilePicker--large .euiFilePicker__input:focus + .euiFilePicker__prompt .euiFilePicker__icon {
  transform: scale(1.1); }

.euiFilePicker--large.euiFilePicker__showDrop .euiFilePicker__prompt .euiFilePicker__promptText {
  text-decoration: underline; }

.euiFilePicker--large.euiFilePicker__showDrop .euiFilePicker__prompt .euiFilePicker__icon {
  transform: scale(1.1); }

.euiFilePicker--large.euiFilePicker-hasFiles .euiFilePicker__promptText {
  font-weight: 700; }

.euiForm__error {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  list-style: disc; }

.euiForm__errors {
  margin-bottom: 16px; }

/**
 * 1. Ensure the descenders don't get cut off
 */
.euiSelect {
  max-width: 400px;
  width: 100%;
  height: 40px;
  background-color: #fbfcfd;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  box-shadow: 0 0 transparent, inset 0 0 0 1px rgba(17, 43, 134, 0.1);
  transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  letter-spacing: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-kerning: normal;
          font-feature-settings: "kern";
          font-kerning: normal;
  font-size: 14px;
  color: #343741;
  border: none;
  border-radius: 6px;
  padding: 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 40px;
  /* 1 */
  padding-top: 0;
  /* 1 */
  padding-bottom: 0;
  /* 1 */ }
  .euiSelect--fullWidth {
    max-width: 100%; }
  .euiSelect--compressed {
    height: 32px; }
  .euiSelect--inGroup {
    height: 100%; }
  @supports (-moz-appearance: none) {
    .euiSelect {
      transition-property: box-shadow, background-image, background-size; } }
  .euiSelect::-moz-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiSelect:-ms-input-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiSelect::placeholder {
    color: #69707D;
    opacity: 1; }
  .euiSelect:invalid {
    background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
    background-size: 100%; }
  .euiSelect:focus {
    background-color: white;
    background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
    background-size: 100% 100%;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiSelect:disabled {
    color: #98A2B3;
    -webkit-text-fill-color: #98A2B3;
    cursor: not-allowed;
    background: #eef2f7;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
    .euiSelect:disabled::-moz-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiSelect:disabled:-ms-input-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiSelect:disabled::placeholder {
      color: #98A2B3;
      opacity: 1; }
  .euiSelect[readOnly] {
    cursor: default;
    color: #343741;
    -webkit-text-fill-color: #343741;
    background: #FFF;
    border-color: transparent;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiSelect:-webkit-autofill {
    -webkit-text-fill-color: #343741; }
    .euiSelect:-webkit-autofill ~ .euiFormControlLayoutIcons {
      color: #343741; }
  .euiSelect--compressed {
    background-color: #fbfcfd;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1);
    transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
    padding: 8px;
    border-radius: 4px; }
    @supports (-moz-appearance: none) {
      .euiSelect--compressed {
        transition-property: box-shadow, background-image, background-size; } }
    .euiSelect--compressed:invalid {
      background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
      background-size: 100%; }
    .euiSelect--compressed:focus {
      background-color: white;
      background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
      background-size: 100% 100%;
      outline: none;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
    .euiSelect--compressed:disabled {
      color: #98A2B3;
      -webkit-text-fill-color: #98A2B3;
      cursor: not-allowed;
      background: #eef2f7;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
      .euiSelect--compressed:disabled::-moz-placeholder {
        color: #98A2B3;
        opacity: 1; }
      .euiSelect--compressed:disabled:-ms-input-placeholder {
        color: #98A2B3;
        opacity: 1; }
      .euiSelect--compressed:disabled::placeholder {
        color: #98A2B3;
        opacity: 1; }
    .euiSelect--compressed[readOnly] {
      cursor: default;
      color: #343741;
      -webkit-text-fill-color: #343741;
      background: #FFF;
      border-color: transparent;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiSelect--inGroup {
    box-shadow: none !important;
    border-radius: 0; }
  .euiSelect--compressed {
    line-height: 32px;
    /* 1 */
    padding-top: 0;
    /* 1 */
    padding-bottom: 0;
    /* 1 */ }
  .euiSelect--inGroup {
    line-height: 38px;
    /* 1 */ }
  .euiSelect--inGroup.euiSelect--compressed {
    line-height: 30px;
    /* 1 */ }
  .euiSelect::-ms-expand {
    display: none; }
  .euiSelect:focus::-ms-value {
    color: #343741;
    background: transparent; }
  .euiSelect:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #343741; }

.euiSuperSelect__listbox {
  scrollbar-color: rgba(105, 112, 125, 0.5) transparent;
  scrollbar-width: thin;
  max-height: 300px;
  overflow: hidden;
  overflow-y: auto; }
  .euiSuperSelect__listbox::-webkit-scrollbar {
    width: 16px;
    height: 16px; }
  .euiSuperSelect__listbox::-webkit-scrollbar-thumb {
    background-color: rgba(105, 112, 125, 0.5);
    background-clip: content-box;
    border-radius: 16px;
    border: 6px solid transparent; }
  .euiSuperSelect__listbox::-webkit-scrollbar-corner, .euiSuperSelect__listbox::-webkit-scrollbar-track {
    background-color: transparent; }

.euiSuperSelect__item {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  padding: 8px; }
  .euiSuperSelect__item:hover {
    cursor: pointer;
    text-decoration: underline; }
  .euiSuperSelect__item:focus {
    cursor: pointer;
    text-decoration: underline;
    background-color: rgba(0, 119, 204, 0.1); }
  .euiSuperSelect__item:disabled {
    cursor: not-allowed;
    text-decoration: none;
    color: #ABB4C4; }

.euiSuperSelect__item--hasDividers:not(:last-of-type) {
  border-bottom: 1px solid #D3DAE6; }

/**
 * 1. Ensure the descenders don't get cut off
 * 2. Makes sure the height is correct when there's no selection
 */
.euiSuperSelectControl {
  max-width: 400px;
  width: 100%;
  height: 40px;
  background-color: #fbfcfd;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  box-shadow: 0 0 transparent, inset 0 0 0 1px rgba(17, 43, 134, 0.1);
  transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  letter-spacing: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-kerning: normal;
          font-feature-settings: "kern";
          font-kerning: normal;
  font-size: 14px;
  color: #343741;
  border: none;
  border-radius: 6px;
  padding: 12px;
  display: block;
  /* 2 */
  text-align: left;
  line-height: 40px;
  /* 1 */
  padding-top: 0;
  /* 1 */
  padding-bottom: 0;
  /* 1 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  .euiSuperSelectControl--fullWidth {
    max-width: 100%; }
  .euiSuperSelectControl--compressed {
    height: 32px; }
  .euiSuperSelectControl--inGroup {
    height: 100%; }
  @supports (-moz-appearance: none) {
    .euiSuperSelectControl {
      transition-property: box-shadow, background-image, background-size; } }
  .euiSuperSelectControl::-moz-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiSuperSelectControl:-ms-input-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiSuperSelectControl::placeholder {
    color: #69707D;
    opacity: 1; }
  .euiSuperSelectControl:invalid {
    background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
    background-size: 100%; }
  .euiSuperSelectControl:focus {
    background-color: white;
    background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
    background-size: 100% 100%;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiSuperSelectControl:disabled {
    color: #98A2B3;
    -webkit-text-fill-color: #98A2B3;
    cursor: not-allowed;
    background: #eef2f7;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
    .euiSuperSelectControl:disabled::-moz-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiSuperSelectControl:disabled:-ms-input-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiSuperSelectControl:disabled::placeholder {
      color: #98A2B3;
      opacity: 1; }
  .euiSuperSelectControl[readOnly] {
    cursor: default;
    color: #343741;
    -webkit-text-fill-color: #343741;
    background: #FFF;
    border-color: transparent;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiSuperSelectControl:-webkit-autofill {
    -webkit-text-fill-color: #343741; }
    .euiSuperSelectControl:-webkit-autofill ~ .euiFormControlLayoutIcons {
      color: #343741; }
  .euiSuperSelectControl--compressed {
    background-color: #fbfcfd;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1);
    transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
    padding: 8px;
    border-radius: 4px; }
    @supports (-moz-appearance: none) {
      .euiSuperSelectControl--compressed {
        transition-property: box-shadow, background-image, background-size; } }
    .euiSuperSelectControl--compressed:invalid {
      background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
      background-size: 100%; }
    .euiSuperSelectControl--compressed:focus {
      background-color: white;
      background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
      background-size: 100% 100%;
      outline: none;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
    .euiSuperSelectControl--compressed:disabled {
      color: #98A2B3;
      -webkit-text-fill-color: #98A2B3;
      cursor: not-allowed;
      background: #eef2f7;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
      .euiSuperSelectControl--compressed:disabled::-moz-placeholder {
        color: #98A2B3;
        opacity: 1; }
      .euiSuperSelectControl--compressed:disabled:-ms-input-placeholder {
        color: #98A2B3;
        opacity: 1; }
      .euiSuperSelectControl--compressed:disabled::placeholder {
        color: #98A2B3;
        opacity: 1; }
    .euiSuperSelectControl--compressed[readOnly] {
      cursor: default;
      color: #343741;
      -webkit-text-fill-color: #343741;
      background: #FFF;
      border-color: transparent;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiSuperSelectControl--inGroup {
    box-shadow: none !important;
    border-radius: 0; }
  .euiSuperSelectControl-isInvalid {
    background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
    background-size: 100%; }
  .euiSuperSelectControl--compressed {
    line-height: 32px;
    /* 1 */
    padding-top: 0;
    /* 1 */
    padding-bottom: 0;
    /* 1 */ }
  .euiSuperSelectControl.euiSuperSelect--isOpen__button {
    background-color: white;
    background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
    background-size: 100% 100%;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }

.euiFormControlLayout {
  max-width: 400px;
  width: 100%;
  height: 40px; }
  .euiFormControlLayout--fullWidth {
    max-width: 100%; }
  .euiFormControlLayout--compressed {
    height: 32px; }
  .euiFormControlLayout--inGroup {
    height: 100%; }
  .euiFormControlLayout--1icons {
    padding-right: 34px; }
    .euiFormControlLayout--1icons[class*='compressed'] {
      padding-right: 26px; }
  .euiFormControlLayout--2icons {
    padding-right: 56px; }
    .euiFormControlLayout--2icons[class*='compressed'] {
      padding-right: 44px; }
  .euiFormControlLayout--3icons {
    padding-right: 78px; }
    .euiFormControlLayout--3icons[class*='compressed'] {
      padding-right: 62px; }
  .euiFormControlLayout--4icons {
    padding-right: 100px; }
    .euiFormControlLayout--4icons[class*='compressed'] {
      padding-right: 80px; }
  .euiFormControlLayout--5icons {
    padding-right: 122px; }
    .euiFormControlLayout--5icons[class*='compressed'] {
      padding-right: 98px; }

.euiFormControlLayout__childrenWrapper {
  position: relative; }

/**
 * 1. Account for inner box-shadow style border
 * 2. Ensure truncation works in children elements
 */
.euiFormControlLayout--group {
  background-color: #fbfcfd;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  box-shadow: 0 0 transparent, inset 0 0 0 1px rgba(17, 43, 134, 0.1);
  transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
  display: flex;
  align-items: stretch;
  padding: 1px;
  /* 1 */ }
  @supports (-moz-appearance: none) {
    .euiFormControlLayout--group {
      transition-property: box-shadow, background-image, background-size; } }
  .euiFormControlLayout--group > *,
  .euiFormControlLayout--group .euiPopover__anchor,
  .euiFormControlLayout--group .euiButtonEmpty,
  .euiFormControlLayout--group .euiText,
  .euiFormControlLayout--group .euiFormLabel,
  .euiFormControlLayout--group .euiButtonIcon {
    height: 100%; }
  .euiFormControlLayout--group .euiFormControlLayout__childrenWrapper {
    flex-grow: 1;
    overflow: hidden;
    /* 2 */ }
  .euiFormControlLayout--group .euiFormControlLayout__prepend,
  .euiFormControlLayout--group .euiFormControlLayout__append {
    max-width: 100%;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    flex-shrink: 0;
    height: 100%;
    border-radius: 0; }
    .euiFormControlLayout--group .euiFormControlLayout__prepend.euiIcon,
    .euiFormControlLayout--group .euiFormControlLayout__prepend .euiIcon,
    .euiFormControlLayout--group .euiFormControlLayout__append.euiIcon,
    .euiFormControlLayout--group .euiFormControlLayout__append .euiIcon {
      padding: 0 8px;
      width: 32px;
      border-radius: 0;
      background-color: #e9edf3; }
    .euiFormControlLayout--group .euiFormControlLayout__prepend.euiButtonIcon, .euiFormControlLayout--group .euiFormControlLayout__prepend.euiButtonEmpty,
    .euiFormControlLayout--group .euiFormControlLayout__prepend .euiButtonIcon,
    .euiFormControlLayout--group .euiFormControlLayout__prepend .euiButtonEmpty,
    .euiFormControlLayout--group .euiFormControlLayout__append.euiButtonIcon,
    .euiFormControlLayout--group .euiFormControlLayout__append.euiButtonEmpty,
    .euiFormControlLayout--group .euiFormControlLayout__append .euiButtonIcon,
    .euiFormControlLayout--group .euiFormControlLayout__append .euiButtonEmpty {
      transform: none !important; }
      .euiFormControlLayout--group .euiFormControlLayout__prepend.euiButtonIcon .euiIcon, .euiFormControlLayout--group .euiFormControlLayout__prepend.euiButtonEmpty .euiIcon,
      .euiFormControlLayout--group .euiFormControlLayout__prepend .euiButtonIcon .euiIcon,
      .euiFormControlLayout--group .euiFormControlLayout__prepend .euiButtonEmpty .euiIcon,
      .euiFormControlLayout--group .euiFormControlLayout__append.euiButtonIcon .euiIcon,
      .euiFormControlLayout--group .euiFormControlLayout__append.euiButtonEmpty .euiIcon,
      .euiFormControlLayout--group .euiFormControlLayout__append .euiButtonIcon .euiIcon,
      .euiFormControlLayout--group .euiFormControlLayout__append .euiButtonEmpty .euiIcon {
        background: none !important;
        padding: 0;
        width: 16px; }
  .euiFormControlLayout--group .euiButtonIcon {
    padding: 0 8px;
    width: 32px;
    border-radius: 0; }
    .euiFormControlLayout--group .euiButtonIcon:not(:focus) {
      background-color: #e9edf3; }
    .euiFormControlLayout--group .euiButtonIcon:focus-visible {
      outline: 2px solid #0071c2;
      outline-offset: -2px; }
  .euiFormControlLayout--group .euiToolTipAnchor > .euiIcon {
    height: 100%;
    background-color: #e9edf3;
    padding: 0 8px;
    width: 32px;
    border-radius: 0; }
  .euiFormControlLayout--group > .euiFormControlLayout__prepend,
  .euiFormControlLayout--group > .euiFormControlLayout__append {
    max-width: 50%; }
  .euiFormControlLayout--group .euiFormLabel,
  .euiFormControlLayout--group .euiText {
    background-color: #e9edf3;
    padding: 12px;
    line-height: 16px !important;
    cursor: default !important; }
    .euiFormControlLayout--group .euiFormLabel + *:not(.euiFormControlLayout__childrenWrapper):not(input),
    .euiFormControlLayout--group .euiText + *:not(.euiFormControlLayout__childrenWrapper):not(input) {
      margin-left: -12px; }
  .euiFormControlLayout--group > *:not(.euiFormControlLayout__childrenWrapper) + .euiFormLabel,
  .euiFormControlLayout--group > *:not(.euiFormControlLayout__childrenWrapper) + .euiText {
    margin-left: -12px; }
  .euiFormControlLayout--group .euiButtonEmpty {
    border-right: none; }
  .euiFormControlLayout--group .euiFormControlLayout__childrenWrapper ~ .euiButtonEmpty,
  .euiFormControlLayout--group .euiFormControlLayout__childrenWrapper ~ * .euiButtonEmpty {
    border-right: none;
    border-left: none; }
  .euiFormControlLayout--group.euiFormControlLayout--compressed {
    background-color: #fbfcfd;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1);
    transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
    border-radius: 3px;
    overflow: hidden; }
    @supports (-moz-appearance: none) {
      .euiFormControlLayout--group.euiFormControlLayout--compressed {
        transition-property: box-shadow, background-image, background-size; } }
    .euiFormControlLayout--group.euiFormControlLayout--compressed .euiFormLabel,
    .euiFormControlLayout--group.euiFormControlLayout--compressed .euiText {
      padding: 8px; }
      .euiFormControlLayout--group.euiFormControlLayout--compressed .euiFormLabel + *:not(.euiFormControlLayout__childrenWrapper),
      .euiFormControlLayout--group.euiFormControlLayout--compressed .euiText + *:not(.euiFormControlLayout__childrenWrapper) {
        margin-left: -8px; }
    .euiFormControlLayout--group.euiFormControlLayout--compressed > *:not(.euiFormControlLayout__childrenWrapper) + .euiFormLabel,
    .euiFormControlLayout--group.euiFormControlLayout--compressed > *:not(.euiFormControlLayout__childrenWrapper) + .euiText {
      margin-left: -8px; }
  .euiFormControlLayout--group.euiFormControlLayout--readOnly {
    cursor: default;
    background: #e9edf3;
    border-color: transparent;
    box-shadow: inset 0 0 0 1px #e9edf3; }
    .euiFormControlLayout--group.euiFormControlLayout--readOnly input {
      background-color: #FFF; }

.euiFormControlLayoutDelimited {
  background-color: #fbfcfd;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  box-shadow: 0 0 transparent, inset 0 0 0 1px rgba(17, 43, 134, 0.1);
  transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
  display: flex;
  align-items: stretch;
  padding: 1px;
  /* 1 */ }
  @supports (-moz-appearance: none) {
    .euiFormControlLayoutDelimited {
      transition-property: box-shadow, background-image, background-size; } }
  .euiFormControlLayoutDelimited .euiFormControlLayoutDelimited__delimeter {
    background-color: #fbfcfd; }
  .euiFormControlLayoutDelimited > .euiFormControlLayout__childrenWrapper {
    display: flex;
    align-items: center;
    width: 100%; }
  .euiFormControlLayoutDelimited[class*='--compressed'] {
    background-color: #fbfcfd;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1);
    transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
    border-radius: 3px; }
    @supports (-moz-appearance: none) {
      .euiFormControlLayoutDelimited[class*='--compressed'] {
        transition-property: box-shadow, background-image, background-size; } }
    .euiFormControlLayoutDelimited[class*='--compressed'] .euiFormControlLayoutDelimited__input {
      height: 100%;
      padding-left: 8px;
      padding-right: 8px; }
    .euiFormControlLayoutDelimited[class*='--compressed'] .euiFormControlLayoutIcons {
      padding-left: 8px;
      padding-right: 8px; }
  .euiFormControlLayoutDelimited[class*='--fullWidth'] .euiFormControlLayout__childrenWrapper,
  .euiFormControlLayoutDelimited[class*='--fullWidth'] input {
    width: 100%;
    max-width: none; }
  .euiFormControlLayoutDelimited[class*='-isDisabled'] {
    color: #98A2B3;
    -webkit-text-fill-color: #98A2B3;
    cursor: not-allowed;
    background: #eef2f7;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
    .euiFormControlLayoutDelimited[class*='-isDisabled']::-moz-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiFormControlLayoutDelimited[class*='-isDisabled']:-ms-input-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiFormControlLayoutDelimited[class*='-isDisabled']::placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiFormControlLayoutDelimited[class*='-isDisabled'] .euiFormControlLayoutDelimited__delimeter {
      background-color: #eef2f7; }
  .euiFormControlLayoutDelimited[class*='--readOnly'] {
    cursor: default;
    color: #343741;
    -webkit-text-fill-color: #343741;
    background: #FFF;
    border-color: transparent;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
    .euiFormControlLayoutDelimited[class*='--readOnly'] input,
    .euiFormControlLayoutDelimited[class*='--readOnly'] .euiFormControlLayoutDelimited__delimeter {
      background-color: #FFF; }
  .euiFormControlLayoutDelimited .euiFormControlLayoutIcons {
    position: static;
    padding-left: 12px;
    padding-right: 12px; }
    .euiFormControlLayoutDelimited .euiFormControlLayoutIcons:not(.euiFormControlLayoutIcons--right) {
      order: -1; }

.euiFormControlLayoutDelimited__input {
  box-shadow: none !important;
  border-radius: 0 !important;
  text-align: center;
  height: 100%;
  min-width: 0; }
  .euiFormControlLayoutDelimited[class*='--compressed'] .euiFormControlLayoutDelimited__input {
    max-width: none; }

.euiFormControlLayoutDelimited__delimeter {
  line-height: 1 !important;
  flex: 0 0 auto;
  padding-left: 6px;
  padding-right: 6px; }

.euiFormControlLayoutIcons {
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  display: flex;
  align-items: center; }
  .euiFormControlLayoutIcons > * + * {
    margin-left: 6px; }
  .euiFormControlLayout--compressed .euiFormControlLayoutIcons {
    left: 8px; }

.euiFormControlLayoutIcons--right {
  left: auto;
  right: 12px; }
  .euiFormControlLayout--compressed .euiFormControlLayoutIcons--right {
    left: auto;
    right: 8px; }

*:disabled + .euiFormControlLayoutIcons {
  cursor: not-allowed;
  color: #98A2B3; }

.euiFormControlLayoutClearButton {
  width: 16px;
  height: 16px;
  pointer-events: all;
  background-color: #98A2B3;
  border-radius: 16px;
  line-height: 0; }
  .euiFormControlLayoutClearButton:focus {
    outline: 2px solid currentColor; }
    .euiFormControlLayoutClearButton:focus:focus-visible {
      outline-style: auto; }
    .euiFormControlLayoutClearButton:focus:not(:focus-visible) {
      outline: none; }
  .euiFormControlLayoutClearButton .euiFormControlLayoutClearButton__icon {
    width: 8px;
    height: 8px;
    fill: #FFF;
    stroke: #FFF;
    stroke-width: 2px; }

.euiFormControlLayoutClearButton--small {
  width: 12px;
  height: 12px;
  pointer-events: all;
  background-color: #98A2B3;
  border-radius: 12px;
  line-height: 0; }
  .euiFormControlLayoutClearButton--small:focus {
    outline: 2px solid currentColor; }
    .euiFormControlLayoutClearButton--small:focus:focus-visible {
      outline-style: auto; }
    .euiFormControlLayoutClearButton--small:focus:not(:focus-visible) {
      outline: none; }
  .euiFormControlLayoutClearButton--small .euiFormControlLayoutClearButton__icon {
    width: 6px;
    height: 6px;
    fill: #FFF;
    stroke: #FFF;
    stroke-width: 4px; }

.euiFormControlLayoutCustomIcon {
  pointer-events: none;
  font-size: 0; }

.euiFormControlLayoutCustomIcon--clickable {
  width: 16px;
  height: 16px;
  pointer-events: all; }
  .euiFormControlLayoutCustomIcon--clickable .euiFormControlLayoutCustomIcon__icon {
    vertical-align: baseline;
    transform: none; }
  .euiFormControlLayoutCustomIcon--clickable:focus {
    outline: 2px solid currentColor; }
    .euiFormControlLayoutCustomIcon--clickable:focus:focus-visible {
      outline-style: auto; }
    .euiFormControlLayoutCustomIcon--clickable:focus:not(:focus-visible) {
      outline: none; }
  .euiFormControlLayoutCustomIcon--clickable:disabled {
    cursor: not-allowed;
    color: #98A2B3; }

.euiFormErrorText {
  font-size: 12px;
  font-size: 0.85714rem;
  line-height: 1.14286rem;
  padding-top: 4px;
  color: #BD271E; }

.euiFormLegend {
  font-size: 12px;
  font-size: 0.85714rem;
  line-height: 1.14286rem;
  overflow-wrap: break-word !important;
  word-break: break-word;
  color: #1a1c21;
  font-weight: 600; }
  .euiFormLegend:not(.euiFormLegend-isHidden) {
    margin-bottom: 8px; }
    .euiFormLegend:not(.euiFormLegend-isHidden).euiFormLegend--compressed {
      margin-bottom: 4px; }

.euiFormHelpText {
  font-size: 12px;
  font-size: 0.85714rem;
  line-height: 1.14286rem;
  padding-top: 4px;
  color: #69707D; }

/**
 * 1. Focused state overrides invalid state.
 * 2. Disabled state overrides pointer.
 */
.euiFormLabel {
  font-size: 12px;
  font-size: 0.85714rem;
  line-height: 1.14286rem;
  overflow-wrap: break-word !important;
  word-break: break-word;
  color: #1a1c21;
  font-weight: 600;
  display: inline-block;
  transition: all 150ms cubic-bezier(0.694, 0.0482, 0.335, 1); }
  .euiFormLabel.euiFormLabel-isInvalid {
    color: #BD271E;
    /* 1 */ }
  .euiFormLabel.euiFormLabel-isFocused {
    color: #07C;
    /* 1 */ }
  .euiFormLabel[for] {
    cursor: pointer;
    /* 2 */ }
  .euiFormLabel[for].euiFormLabel-isDisabled {
    cursor: default;
    /* 2 */ }

/**
 * 1. Coerce inline form elements to behave as block-level elements.
 * 2. For inline forms, we need to add margin if the label doesn't exist.
 */
.euiFormRow {
  display: flex;
  /* 1 */
  flex-direction: column;
  /* 1 */
  max-width: 400px; }
  .euiFormRow + .euiFormRow,
  .euiFormRow + .euiButton {
    margin-top: 16px; }

.euiFormRow--fullWidth {
  max-width: 100%; }

.euiFormRow--hasEmptyLabelSpace {
  margin-top: 20px;
  /* 2 */
  min-height: 40px;
  padding-bottom: 0;
  justify-content: center; }

.euiFormRow__labelWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 4px; }

.euiFormRow--horizontal {
  flex-direction: row;
  align-items: stretch; }
  .euiFormRow--horizontal .euiFormRow__label {
    -webkit-hyphens: auto;
            -ms-hyphens: auto;
        hyphens: auto; }
  .euiFormRow--horizontal .euiFormRow__labelWrapper {
    display: block;
    line-height: 31px;
    width: calc(33% - 8px);
    margin-right: 8px;
    margin-bottom: 0; }
  .euiFormRow--horizontal .euiFormRow__fieldWrapper {
    width: 67%; }
  .euiFormRow--horizontal + .euiFormRow--horizontal {
    margin-top: 8px; }
  .euiFormRow--horizontal + .euiFormRow--horizontal.euiFormRow--hasSwitch {
    margin-top: 12px; }
  .euiFormRow--horizontal.euiFormRow--hasSwitch .euiFormRow__labelWrapper {
    line-height: 19px;
    width: auto;
    min-width: calc(33% - 8px); }
  .euiFormRow--horizontal.euiFormRow--hasSwitch .euiFormRow__fieldWrapper {
    width: auto; }
    .euiFormRow--horizontal.euiFormRow--hasSwitch .euiFormRow__fieldWrapper .euiSwitch--compressed {
      margin-top: 2px; }
  .euiFormRow--horizontal.euiFormRow--hasSwitch + .euiFormRow--horizontal {
    margin-top: 12px; }

.euiFormRow__fieldWrapperDisplayOnly {
  min-height: 40px;
  display: flex;
  align-items: center; }

.euiFormRow--compressed.euiFormRow--hasEmptyLabelSpace {
  min-height: 32px; }

.euiFormRow--compressed .euiFormRow__fieldWrapperDisplayOnly {
  min-height: 32px; }

/**
  * 1. Float above the visual radio and match its dimension, so that when users try to click it
  *    they actually click this input.
  */
.euiRadio {
  position: relative; }
  .euiRadio .euiRadio__input {
    width: 16px;
    height: 16px;
    top: 3px;
    cursor: pointer;
    position: absolute;
    /* 1 */
    opacity: 0;
    /* 1 */
    z-index: 1;
    /* 1 */ }
    .euiRadio .euiRadio__input ~ .euiRadio__label {
      display: inline-block;
      padding-left: 24px;
      line-height: 24px;
      font-size: 14px;
      position: relative;
      z-index: 2;
      cursor: pointer; }
    .euiRadio .euiRadio__input + .euiRadio__circle {
      padding: 7px;
      border: 1px solid #c9cbcd;
      background: #FFF no-repeat center;
      border-radius: 14px;
      transition: background-color 150ms ease-in, border-color 150ms ease-in;
      display: inline-block;
      position: absolute;
      left: 0;
      top: 3px; }
    .euiRadio .euiRadio__input:checked + .euiRadio__circle {
      border-color: #07C;
      background-color: #07C;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6'%3E%3Ccircle cx='8' cy='11' r='3' fill='rgb%28255, 255, 255%29' fill-rule='evenodd' transform='translate(-5 -8)'/%3E%3C/svg%3E"); }
    .euiRadio .euiRadio__input[disabled] {
      cursor: not-allowed !important; }
      .euiRadio .euiRadio__input[disabled] ~ .euiRadio__label {
        color: #98A2B3;
        cursor: not-allowed !important; }
      .euiRadio .euiRadio__input[disabled] + .euiRadio__circle {
        border-color: #D3DAE6;
        background-color: #D3DAE6;
        box-shadow: none; }
    .euiRadio .euiRadio__input:checked[disabled] + .euiRadio__circle {
      border-color: #D3DAE6;
      background-color: #D3DAE6;
      box-shadow: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6'%3E%3Ccircle cx='8' cy='11' r='3' fill='rgb%2894, 100, 111%29' fill-rule='evenodd' transform='translate(-5 -8)'/%3E%3C/svg%3E"); }
    .euiRadio .euiRadio__input:focus + .euiRadio__circle {
      outline: 2px solid currentColor;
      outline-offset: 2px;
      border-color: #07C; }
      .euiRadio .euiRadio__input:focus + .euiRadio__circle:focus-visible {
        outline-style: auto; }
      .euiRadio .euiRadio__input:focus + .euiRadio__circle:not(:focus-visible) {
        outline: none; }
  .euiRadio.euiRadio--inList, .euiRadio.euiRadio--noLabel {
    min-height: 16px;
    min-width: 16px; }
    .euiRadio.euiRadio--inList .euiRadio__input,
    .euiRadio.euiRadio--inList .euiRadio__circle, .euiRadio.euiRadio--noLabel .euiRadio__input,
    .euiRadio.euiRadio--noLabel .euiRadio__circle {
      top: 0; }
    .euiRadio.euiRadio--inList .euiRadio__input, .euiRadio.euiRadio--noLabel .euiRadio__input {
      margin: 0; }

.euiRadioGroup__item + .euiRadioGroup__item {
  margin-top: 4px; }
  .euiRadioGroup__item + .euiRadioGroup__item.euiRadio--compressed {
    margin-top: 0; }

.euiRange__horizontalSpacer {
  width: 16px; }

.euiRange__slimHorizontalSpacer {
  width: 8px; }

.euiRangeDraggable {
  height: 20px;
  position: absolute;
  top: 10px;
  pointer-events: none;
  z-index: 2; }
  .euiRangeDraggable.euiRangeDraggable--compressed {
    height: 16px;
    top: 8px; }
  .euiRangeDraggable.euiRangeDraggable--hasTicks {
    top: 0; }
  .euiRangeDraggable .euiRangeDraggle__inner {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 0;
    bottom: 0; }
  .euiRangeDraggable:not(.euiRangeDraggable--disabled) .euiRangeDraggle__inner {
    cursor: grab;
    pointer-events: all; }
    .euiRangeDraggable:not(.euiRangeDraggable--disabled) .euiRangeDraggle__inner:active {
      cursor: grabbing; }

.euiRangeHighlight {
  position: absolute;
  left: 0;
  width: 100%;
  top: calc(50% - 3px);
  overflow: hidden; }
  .euiRangeHighlight__progress {
    height: 6px;
    border-radius: 6px;
    background-color: #D3DAE6; }
    .euiRangeHighlight__progress--hasFocus {
      background-color: #07C; }
  .euiRangeHighlight--hasTicks {
    top: 7px; }
  .euiRangeHighlight--hasTicks.euiRangeHighlight--compressed {
    top: 5px; }

.euiRangeInput {
  width: auto;
  min-width: 64px; }
  .euiRange__popover .euiRangeInput {
    margin: 0 !important;
    width: 100%; }

.euiRangeLabel--min, .euiRangeLabel--max {
  font-size: 12px; }

.euiRangeLabel--min {
  margin-right: 8px; }

.euiRangeLabel--max {
  margin-left: 8px; }

.euiRangeLabel--isDisabled {
  opacity: 0.25; }

.euiRangeLevels {
  display: flex;
  justify-content: stretch;
  position: absolute;
  left: 0;
  right: 0;
  top: 22px; }
  .euiRangeLevels--hasTicks {
    top: 12px; }
  .euiRangeLevels--compressed {
    top: 18px; }
    .euiRangeLevels--compressed.euiRangeLevels--hasTicks {
      top: 10px; }

.euiRangeLevel {
  display: block;
  position: absolute;
  height: 6px;
  border-radius: 6px;
  margin: 2px; }

.euiRangeLevel--primary {
  background-color: rgba(0, 119, 204, 0.3); }

.euiRangeLevel--success {
  background-color: rgba(0, 191, 179, 0.3); }

.euiRangeLevel--warning {
  background-color: rgba(254, 197, 20, 0.3); }

.euiRangeLevel--danger {
  background-color: rgba(189, 39, 30, 0.3); }

/*
 *  Input Range Customization by browser
 */
.euiRangeSlider {
  height: 40px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  width: 100%;
  position: relative;
  cursor: pointer;
  z-index: 1; }
  .euiRangeSlider:disabled {
    cursor: not-allowed; }
    .euiRangeSlider:disabled::-webkit-slider-thumb {
      cursor: not-allowed;
      border-color: #FFF;
      background-color: #FFF;
      box-shadow: none; }
    .euiRangeSlider:disabled::-moz-range-thumb {
      cursor: not-allowed;
      border-color: #FFF;
      background-color: #FFF;
      box-shadow: none; }
    .euiRangeSlider:disabled::-ms-thumb {
      cursor: not-allowed;
      border-color: #FFF;
      background-color: #FFF;
      box-shadow: none; }
    .euiRangeSlider:disabled ~ .euiRangeThumb {
      cursor: not-allowed;
      border-color: #FFF;
      background-color: #FFF;
      box-shadow: none; }
  .euiRangeSlider::-webkit-slider-thumb {
    padding: 7px;
    border: 1px solid #c9cbcd;
    background: #FFF no-repeat center;
    border-radius: 14px;
    -webkit-transition: background-color 150ms ease-in, border-color 150ms ease-in;
    transition: background-color 150ms ease-in, border-color 150ms ease-in;
    box-shadow: 0 0 0 1px #FFF, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
    border: 2px solid #FFF;
    cursor: pointer;
    background-color: #69707D;
    padding: 0;
    height: 16px;
    width: 16px;
    box-sizing: border-box; }
  .euiRangeSlider::-moz-range-thumb {
    padding: 7px;
    border: 1px solid #c9cbcd;
    background: #FFF no-repeat center;
    border-radius: 14px;
    -moz-transition: background-color 150ms ease-in, border-color 150ms ease-in;
    transition: background-color 150ms ease-in, border-color 150ms ease-in;
    box-shadow: 0 0 0 1px #FFF, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
    border: 2px solid #FFF;
    cursor: pointer;
    background-color: #69707D;
    padding: 0;
    height: 16px;
    width: 16px;
    box-sizing: border-box; }
  .euiRangeSlider::-ms-thumb {
    padding: 7px;
    border: 1px solid #c9cbcd;
    background: #FFF no-repeat center;
    border-radius: 14px;
    -ms-transition: background-color 150ms ease-in, border-color 150ms ease-in;
    transition: background-color 150ms ease-in, border-color 150ms ease-in;
    box-shadow: 0 0 0 1px #FFF, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
    border: 2px solid #FFF;
    cursor: pointer;
    background-color: #69707D;
    padding: 0;
    height: 16px;
    width: 16px;
    box-sizing: border-box; }
  .euiRangeSlider::-webkit-slider-runnable-track {
    height: 6px;
    width: 100%;
    background: #D3DAE6;
    border: 0 solid #D3DAE6;
    border-radius: 6px; }
  .euiRangeSlider::-moz-range-track {
    height: 6px;
    width: 100%;
    background: #D3DAE6;
    border: 0 solid #D3DAE6;
    border-radius: 6px; }
  .euiRangeSlider::-ms-fill-lower {
    height: 6px;
    width: 100%;
    background: #D3DAE6;
    border: 0 solid #D3DAE6;
    border-radius: 6px; }
  .euiRangeSlider::-ms-fill-upper {
    height: 6px;
    width: 100%;
    background: #D3DAE6;
    border: 0 solid #D3DAE6;
    border-radius: 6px; }
  .euiRangeSlider:focus {
    outline: none; }
  .euiRangeSlider:focus-visible::-webkit-slider-thumb, .euiRangeSlider--hasFocus::-webkit-slider-thumb {
    box-shadow: 0 0 0 2px #0071c2; }
  .euiRangeSlider:focus-visible::-moz-range-thumb, .euiRangeSlider--hasFocus::-moz-range-thumb {
    box-shadow: 0 0 0 2px #0071c2; }
  .euiRangeSlider:focus-visible::-ms-thumb, .euiRangeSlider--hasFocus::-ms-thumb {
    box-shadow: 0 0 0 2px #0071c2; }
  .euiRangeSlider:focus-visible ~ .euiRangeThumb, .euiRangeSlider--hasFocus ~ .euiRangeThumb {
    border-color: #FFF; }
  .euiRangeSlider:focus-visible::-webkit-slider-runnable-track, .euiRangeSlider--hasFocus::-webkit-slider-runnable-track {
    background-color: #07C;
    border-color: #07C; }
  .euiRangeSlider:focus-visible::-moz-range-track, .euiRangeSlider--hasFocus::-moz-range-track {
    background-color: #07C;
    border-color: #07C; }
  .euiRangeSlider:focus-visible::-ms-fill-lower, .euiRangeSlider--hasFocus::-ms-fill-lower {
    background-color: #07C;
    border-color: #07C; }
  .euiRangeSlider:focus-visible::-ms-fill-upper, .euiRangeSlider--hasFocus::-ms-fill-upper {
    background-color: #07C;
    border-color: #07C; }
  .euiRangeSlider:focus-visible ~ .euiRangeHighlight .euiRangeHighlight__progress, .euiRangeSlider--hasFocus ~ .euiRangeHighlight .euiRangeHighlight__progress {
    background-color: #07C; }
  .euiRangeSlider:focus-visible ~ .euiRangeTooltip .euiRangeTooltip__value, .euiRangeSlider--hasFocus ~ .euiRangeTooltip .euiRangeTooltip__value {
    box-shadow: 0 0.9px 4px -1px rgba(0, 0, 0, 0.08), 0 2.6px 8px -1px rgba(0, 0, 0, 0.06), 0 5.7px 12px -1px rgba(0, 0, 0, 0.05), 0 15px 15px -1px rgba(0, 0, 0, 0.04); }
    .euiRangeSlider:focus-visible ~ .euiRangeTooltip .euiRangeTooltip__value.euiRangeTooltip__value--right, .euiRangeSlider:focus-visible ~ .euiRangeTooltip .euiRangeTooltip__value.euiRangeTooltip__value--left, .euiRangeSlider--hasFocus ~ .euiRangeTooltip .euiRangeTooltip__value.euiRangeTooltip__value--right, .euiRangeSlider--hasFocus ~ .euiRangeTooltip .euiRangeTooltip__value.euiRangeTooltip__value--left {
      transform: translateX(0) translateY(-50%) scale(1.1); }
  .euiRangeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    margin-top: -5px; }
  .euiRangeSlider::-ms-thumb {
    margin-top: 0; }
  .euiRangeSlider::-moz-focus-outer {
    border: none; }
  .euiRangeSlider::-ms-track {
    height: 6px;
    width: 100%;
    background: transparent;
    border-color: transparent;
    border-width: 8px 0;
    color: transparent; }
  .euiRangeSlider--hasTicks {
    height: 20px; }
  .euiRangeSlider--compressed {
    height: 32px; }
    .euiRangeSlider--compressed.euiRangeSlider--hasTicks {
      height: 16px; }

.euiRangeSlider--hasRange::-webkit-slider-runnable-track {
  background-color: rgba(211, 218, 230, 0.4);
  border-color: rgba(211, 218, 230, 0.4); }

.euiRangeSlider--hasRange::-moz-range-track {
  background-color: rgba(211, 218, 230, 0.4);
  border-color: rgba(211, 218, 230, 0.4); }

.euiRangeSlider--hasRange::-ms-fill-lower {
  background-color: rgba(211, 218, 230, 0.4);
  border-color: rgba(211, 218, 230, 0.4); }

.euiRangeSlider--hasRange::-ms-fill-upper {
  background-color: rgba(211, 218, 230, 0.4);
  border-color: rgba(211, 218, 230, 0.4); }

.euiRangeThumb {
  padding: 7px;
  border: 1px solid #c9cbcd;
  background: #FFF no-repeat center;
  border-radius: 14px;
  transition: background-color 150ms ease-in, border-color 150ms ease-in;
  box-shadow: 0 0 0 1px #FFF, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
  border: 2px solid #FFF;
  cursor: pointer;
  background-color: #69707D;
  padding: 0;
  height: 16px;
  width: 16px;
  box-sizing: border-box;
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  pointer-events: none;
  z-index: 1; }
  .euiRangeThumb:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
    border-color: #07C; }
    .euiRangeThumb:focus:focus-visible {
      outline-style: auto; }
    .euiRangeThumb:focus:not(:focus-visible) {
      outline: none; }
  .euiRangeThumb--hasTicks {
    top: 25%; }

.euiRangeTicks {
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  display: flex; }
  .euiRangeTicks--isCustom {
    left: 2px;
    right: 2px; }

.euiRangeTick {
  overflow-x: hidden;
  overflow-y: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  position: absolute;
  transform: translateX(-50%);
  padding-top: 16px; }
  .euiRangeTick:not(.euiRangeTick--hasTickMark)::before {
    width: 4px;
    height: 4px;
    background-color: #69707D;
    border-radius: 100%;
    position: absolute;
    top: 0;
    content: '';
    left: calc(50% - 2px); }
  .euiRangeTick .euiRangeTick__pseudo {
    width: 4px;
    height: 4px;
    background-color: #69707D;
    border-radius: 100%;
    position: absolute;
    top: 0; }
  .euiRangeTick--isCustom {
    overflow-x: visible; }
  .euiRangeTick--isMin, .euiRangeTick--isMax {
    transform: translateX(0); }
  .euiRangeTick--isMin .euiRangeTick__pseudo {
    left: 0; }
  .euiRangeTick--isMax .euiRangeTick__pseudo {
    right: 0; }
  .euiRangeTick:enabled:hover, .euiRangeTick:focus, .euiRangeTick--selected {
    color: #07C; }
  .euiRangeTick--selected {
    font-weight: 500; }
  .euiRangeTick:disabled {
    cursor: not-allowed; }

.euiRangeTicks--compressed {
  top: 6px; }
  .euiRangeTicks--compressed .euiRangeTick {
    padding-top: 14px; }

.euiRangeTick__label {
  pointer-events: none; }

.euiRangeTooltip {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: calc(100% - 16px);
  margin-left: 8px;
  pointer-events: none;
  z-index: 2; }

.euiRangeTooltip__value {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  border: 1px solid #404040;
  position: absolute;
  border-radius: 6px;
  padding: 2px 8px;
  background-color: #404040;
  color: #FFF;
  max-width: 256px;
  top: 50%;
  transition: box-shadow 250ms cubic-bezier(0.694, 0.0482, 0.335, 1), transform 250ms cubic-bezier(0.694, 0.0482, 0.335, 1); }
  .euiRangeTooltip__value::after, .euiRangeTooltip__value::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform-origin: center;
    background-color: #404040;
    width: 12px;
    height: 12px;
    border-radius: 2px; }
  .euiRangeTooltip__value::before {
    background-color: #404040; }
  .euiRangeTooltip__value.euiRangeTooltip__value--right {
    margin-left: 24px; }
    .euiRangeTooltip__value.euiRangeTooltip__value--right:before, .euiRangeTooltip__value.euiRangeTooltip__value--right:after {
      left: -5px; }
    .euiRangeTooltip__value.euiRangeTooltip__value--right::before {
      margin-left: -1px; }
  .euiRangeTooltip__value.euiRangeTooltip__value--left {
    margin-right: 24px; }
    .euiRangeTooltip__value.euiRangeTooltip__value--left:before, .euiRangeTooltip__value.euiRangeTooltip__value--left:after {
      left: auto;
      right: -5px; }
    .euiRangeTooltip__value.euiRangeTooltip__value--left::before {
      margin-right: -1px; }
  .euiRangeTooltip__value.euiRangeTooltip__value--right, .euiRangeTooltip__value.euiRangeTooltip__value--left {
    transform: translateX(0) translateY(-50%); }
    .euiRangeTooltip__value.euiRangeTooltip__value--right:before, .euiRangeTooltip__value.euiRangeTooltip__value--right:after, .euiRangeTooltip__value.euiRangeTooltip__value--left:before, .euiRangeTooltip__value.euiRangeTooltip__value--left:after {
      bottom: 50%;
      transform: translateY(50%) rotateZ(45deg); }
  .euiRangeTooltip__value--hasTicks {
    top: 10px; }
    .euiRangeTooltip--compressed .euiRangeTooltip__value--hasTicks {
      top: 8px; }

.euiRangeTrack {
  height: 100%;
  flex-grow: 1;
  position: relative;
  align-self: flex-start; }
  .euiRangeTrack--hasTicks {
    margin-left: 1em;
    margin-right: 1em; }
  .euiRangeTrack--disabled {
    opacity: 0.25; }

/*
 * 1. There's no way to target the layout of the extra input, so we must
 *    use the descendant selector to allow the width to shrink.
 *
 * 2. Prevent the prepend/append label from extending outside the parent element
 */
.euiRangeWrapper {
  max-width: 400px;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center; }
  .euiRangeWrapper--fullWidth {
    max-width: 100%; }
  .euiRangeWrapper--compressed {
    height: 32px; }
  .euiRangeWrapper--inGroup {
    height: 100%; }
  .euiRangeWrapper > .euiFormControlLayout {
    /* 1 */
    width: auto; }
    .euiRangeWrapper > .euiFormControlLayout.euiFormControlLayout--group {
      flex-shrink: 0;
      /* 2 */ }

.euiDualRange__slider::-webkit-slider-thumb {
  visibility: hidden; }

.euiDualRange__slider::-moz-range-thumb {
  visibility: hidden; }

.euiDualRange__slider::-ms-thumb {
  visibility: hidden; }

.euiSwitch {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  min-height: 20px; }
  .euiSwitch .euiSwitch__label {
    cursor: pointer;
    padding-left: 8px;
    line-height: 20px;
    font-size: 14px;
    vertical-align: middle;
    display: inline-block; }
  .euiSwitch .euiSwitch__button {
    flex-shrink: 0;
    line-height: 0; }
    .euiSwitch .euiSwitch__button:focus .euiSwitch__track {
      outline: 2px solid currentColor;
      outline-offset: 2px;
      border-color: #07C; }
      .euiSwitch .euiSwitch__button:focus .euiSwitch__track:focus-visible {
        outline-style: auto; }
      .euiSwitch .euiSwitch__button:focus .euiSwitch__track:not(:focus-visible) {
        outline: none; }
    .euiSwitch .euiSwitch__button:disabled:hover,
    .euiSwitch .euiSwitch__button:disabled ~ .euiSwitch__label:hover {
      cursor: not-allowed; }
    .euiSwitch .euiSwitch__button:disabled .euiSwitch__body {
      background-color: rgba(152, 162, 179, 0.2); }
    .euiSwitch .euiSwitch__button:disabled .euiSwitch__thumb {
      border-color: #D3DAE6;
      background-color: #D3DAE6;
      box-shadow: none;
      background-color: rgba(152, 162, 179, 0.2); }
    .euiSwitch .euiSwitch__button:disabled .euiSwitch__icon {
      fill: #5e646f; }
    .euiSwitch .euiSwitch__button:disabled + .euiSwitch__label {
      color: #98A2B3; }
    .euiSwitch .euiSwitch__button[aria-checked='false'] .euiSwitch__body {
      background-color: rgba(152, 162, 179, 0.2); }
    .euiSwitch .euiSwitch__button[aria-checked='false'] .euiSwitch__thumb {
      left: 0; }
    .euiSwitch .euiSwitch__button[aria-checked='false'] .euiSwitch__icon {
      right: -8px; }
      .euiSwitch .euiSwitch__button[aria-checked='false'] .euiSwitch__icon.euiSwitch__icon--checked {
        right: auto;
        left: -34px; }
  .euiSwitch .euiSwitch__body {
    pointer-events: none;
    width: 44px;
    height: 20px;
    background-color: #07C;
    display: inline-block;
    position: relative;
    border-radius: 20px;
    vertical-align: middle; }
  .euiSwitch .euiSwitch__thumb {
    padding: 9px;
    border: 1px solid #c9cbcd;
    background: #FFF no-repeat center;
    border-radius: 18px;
    transition: background-color 150ms ease-in, border-color 150ms ease-in;
    position: absolute;
    display: inline-block;
    left: 24px;
    transition: border-color 250ms cubic-bezier(0.34, 1.61, 0.7, 1), background-color 250ms cubic-bezier(0.34, 1.61, 0.7, 1), left 250ms cubic-bezier(0.34, 1.61, 0.7, 1), transform 250ms cubic-bezier(0.34, 1.61, 0.7, 1); }
  .euiSwitch .euiSwitch__track {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 20px; }
  .euiSwitch .euiSwitch__icon {
    position: absolute;
    right: -34px;
    top: 2px;
    bottom: 0;
    width: 42px;
    height: 16px;
    transition: left 250ms cubic-bezier(0.34, 1.61, 0.7, 1), right 250ms cubic-bezier(0.34, 1.61, 0.7, 1);
    fill: #343741; }
  .euiSwitch .euiSwitch__icon--checked {
    right: auto;
    left: -8px;
    fill: #FFF; }
  .euiSwitch:hover .euiSwitch__button:not(:disabled) .euiSwitch__thumb {
    transform: scale(1.05); }
  .euiSwitch:hover .euiSwitch__button:active .euiSwitch__thumb {
    transform: scale(0.95); }
  .euiSwitch.euiSwitch--compressed {
    min-height: 16px; }
    .euiSwitch.euiSwitch--compressed .euiSwitch__label {
      line-height: 16px; }
    .euiSwitch.euiSwitch--compressed .euiSwitch__body {
      width: 28px;
      height: 16px;
      border-radius: 16px; }
    .euiSwitch.euiSwitch--compressed .euiSwitch__thumb {
      padding: 6px;
      border: 1px solid #c9cbcd;
      background: #FFF no-repeat center;
      border-radius: 12px;
      transition: background-color 150ms ease-in, border-color 150ms ease-in;
      left: 13px;
      top: 1px;
      transition: border-color 250ms cubic-bezier(0.34, 1.61, 0.7, 1), background-color 250ms cubic-bezier(0.34, 1.61, 0.7, 1), left 250ms cubic-bezier(0.34, 1.61, 0.7, 1), transform 250ms cubic-bezier(0.34, 1.61, 0.7, 1); }
    .euiSwitch.euiSwitch--compressed .euiSwitch__track {
      border-radius: 16px; }
  .euiSwitch.euiSwitch--mini {
    min-height: 10px; }
    .euiSwitch.euiSwitch--mini .euiSwitch__label {
      line-height: 10px;
      font-size: 12px; }
    .euiSwitch.euiSwitch--mini .euiSwitch__body {
      width: 22px;
      height: 10px;
      border-radius: 10px; }
    .euiSwitch.euiSwitch--mini .euiSwitch__thumb {
      padding: 3px;
      border: 1px solid #c9cbcd;
      background: #FFF no-repeat center;
      border-radius: 6px;
      transition: background-color 150ms ease-in, border-color 150ms ease-in;
      left: 13px;
      top: 1px;
      transition: border-color 250ms cubic-bezier(0.34, 1.61, 0.7, 1), background-color 250ms cubic-bezier(0.34, 1.61, 0.7, 1), left 250ms cubic-bezier(0.34, 1.61, 0.7, 1), transform 250ms cubic-bezier(0.34, 1.61, 0.7, 1); }
    .euiSwitch.euiSwitch--mini .euiSwitch__track {
      border-radius: 10px; }
  .euiSwitch.euiSwitch--compressed .euiSwitch__button[aria-checked='false'] .euiSwitch__thumb, .euiSwitch.euiSwitch--mini .euiSwitch__button[aria-checked='false'] .euiSwitch__thumb {
    left: 1px; }
  .euiSwitch.euiSwitch--compressed .euiSwitch__button[aria-checked='false'] .euiSwitch__thumb,
  .euiSwitch.euiSwitch--compressed .euiSwitch__button[aria-checked='true']:disabled .euiSwitch__thumb, .euiSwitch.euiSwitch--mini .euiSwitch__button[aria-checked='false'] .euiSwitch__thumb,
  .euiSwitch.euiSwitch--mini .euiSwitch__button[aria-checked='true']:disabled .euiSwitch__thumb {
    border-color: #c9cbcd; }
  .euiSwitch.euiSwitch--compressed .euiSwitch__button[aria-checked='true'] .euiSwitch__thumb, .euiSwitch.euiSwitch--mini .euiSwitch__button[aria-checked='true'] .euiSwitch__thumb {
    border-color: #07C; }

.euiTextArea {
  max-width: 400px;
  width: 100%;
  height: 40px;
  background-color: #fbfcfd;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  box-shadow: 0 0 transparent, inset 0 0 0 1px rgba(17, 43, 134, 0.1);
  transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  letter-spacing: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-kerning: normal;
          font-feature-settings: "kern";
          font-kerning: normal;
  font-size: 14px;
  color: #343741;
  border: none;
  border-radius: 6px;
  padding: 12px;
  line-height: 1.5; }
  .euiTextArea--fullWidth {
    max-width: 100%; }
  .euiTextArea--compressed {
    height: 32px; }
  .euiTextArea--inGroup {
    height: 100%; }
  @supports (-moz-appearance: none) {
    .euiTextArea {
      transition-property: box-shadow, background-image, background-size; } }
  .euiTextArea::-moz-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiTextArea:-ms-input-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiTextArea::placeholder {
    color: #69707D;
    opacity: 1; }
  .euiTextArea:invalid {
    background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
    background-size: 100%; }
  .euiTextArea:focus {
    background-color: white;
    background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
    background-size: 100% 100%;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiTextArea:disabled {
    color: #98A2B3;
    -webkit-text-fill-color: #98A2B3;
    cursor: not-allowed;
    background: #eef2f7;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
    .euiTextArea:disabled::-moz-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiTextArea:disabled:-ms-input-placeholder {
      color: #98A2B3;
      opacity: 1; }
    .euiTextArea:disabled::placeholder {
      color: #98A2B3;
      opacity: 1; }
  .euiTextArea[readOnly] {
    cursor: default;
    color: #343741;
    -webkit-text-fill-color: #343741;
    background: #FFF;
    border-color: transparent;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiTextArea:-webkit-autofill {
    -webkit-text-fill-color: #343741; }
    .euiTextArea:-webkit-autofill ~ .euiFormControlLayoutIcons {
      color: #343741; }
  .euiTextArea--compressed {
    background-color: #fbfcfd;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1);
    transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in;
    padding: 8px;
    border-radius: 4px; }
    @supports (-moz-appearance: none) {
      .euiTextArea--compressed {
        transition-property: box-shadow, background-image, background-size; } }
    .euiTextArea--compressed:invalid {
      background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%);
      background-size: 100%; }
    .euiTextArea--compressed:focus {
      background-color: white;
      background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
      background-size: 100% 100%;
      outline: none;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
    .euiTextArea--compressed:disabled {
      color: #98A2B3;
      -webkit-text-fill-color: #98A2B3;
      cursor: not-allowed;
      background: #eef2f7;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
      .euiTextArea--compressed:disabled::-moz-placeholder {
        color: #98A2B3;
        opacity: 1; }
      .euiTextArea--compressed:disabled:-ms-input-placeholder {
        color: #98A2B3;
        opacity: 1; }
      .euiTextArea--compressed:disabled::placeholder {
        color: #98A2B3;
        opacity: 1; }
    .euiTextArea--compressed[readOnly] {
      cursor: default;
      color: #343741;
      -webkit-text-fill-color: #343741;
      background: #FFF;
      border-color: transparent;
      box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }
  .euiTextArea--inGroup {
    box-shadow: none !important;
    border-radius: 0; }
  .euiTextArea, .euiTextArea--compressed {
    height: auto; }

.euiTextArea--resizeVertical {
  resize: vertical; }

.euiTextArea--resizeHorizontal {
  resize: horizontal; }

.euiTextArea--resizeBoth {
  resize: both; }

.euiTextArea--resizeNone {
  resize: none; }

.euiHeader {
  box-shadow: 0 0.7px 1.4px rgba(0, 0, 0, 0.07), 0 1.9px 4px rgba(0, 0, 0, 0.05), 0 4.5px 10px rgba(0, 0, 0, 0.05);
  height: 49px;
  position: relative;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  background: #FFF;
  border-bottom: 1px solid #cdd3df; }
  .euiHeader--fixed {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0; }

.euiHeader--fixed + .euiHeader--fixed {
  top: 48px; }

.euiHeader--dark {
  background-color: #25282f;
  border-bottom-color: #25282f; }
  .euiHeader--dark .euiHeaderLogo__text,
  .euiHeader--dark .euiHeaderLink,
  .euiHeader--dark .euiHeaderSectionItemButton {
    color: #FFF; }
  .euiHeader--dark .euiHeaderLink-isActive {
    color: #3a96d7; }
  .euiHeader--dark .euiHeaderSectionItem:after {
    background: #69707D; }
  .euiHeader--dark .euiHeaderLogo:focus,
  .euiHeader--dark .euiHeaderLink:focus,
  .euiHeader--dark .euiHeaderSectionItemButton:focus {
    background: #003c66; }
  .euiHeader--dark .euiHeaderSectionItemButton__notification--badge {
    box-shadow: 0 0 0 1px #25282f; }
  .euiHeader--dark .euiHeaderSectionItemButton__notification--dot {
    stroke: #25282f; }

.euiHeaderProfile {
  padding: 16px; }

.euiHeaderLinks {
  display: flex; }

.euiHeaderLinks__list {
  white-space: nowrap;
  display: flex;
  align-items: center; }

.euiHeaderLinks__list--gutterXS > * {
  margin: 0 4px; }

.euiHeaderLinks__list--gutterS > * {
  margin: 0 8px; }

.euiHeaderLinks__list--gutterM > * {
  margin: 0 12px; }

.euiHeaderLinks__list--gutterL > * {
  margin: 0 24px; }

.euiHeaderLinks__mobileList .euiHeaderLink {
  display: block;
  width: 100%;
  padding: 8px; }
  .euiHeaderLinks__mobileList .euiHeaderLink > span {
    justify-content: flex-start; }

.euiHeaderLogo {
  text-align: left;
  font-weight: 500;
  position: relative;
  height: 40px;
  line-height: 40px;
  min-width: 41px;
  padding: 0 13px 0 12px;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  white-space: nowrap; }
  .euiHeaderLogo:hover {
    text-decoration: underline; }
  .euiHeaderLogo:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
    text-decoration: underline;
    text-decoration-thickness: 2px !important; }
    .euiHeaderLogo:focus:focus-visible {
      outline-style: auto; }
    .euiHeaderLogo:focus:not(:focus-visible) {
      outline: none; }
  .euiHeaderLogo:focus, .euiHeaderLogo:hover {
    text-decoration: none; }

.euiHeaderLogo__text {
  overflow-wrap: break-word !important;
  word-break: break-word;
  color: #1a1c21;
  font-size: 22px;
  font-size: 1.57143rem;
  line-height: 2.28571rem;
  font-weight: 700;
  padding-left: 16px;
  font-weight: 300; }

@media only screen and (max-width: 574px) {
  .euiHeaderLogo {
    padding: 0 12px; }
  .euiHeaderLogo__icon.euiIcon--xLarge {
    width: 24px;
    height: 24px; }
  .euiHeaderLogo__text {
    overflow-wrap: break-word !important;
    word-break: break-word;
    color: #1a1c21;
    font-size: 16px;
    font-size: 1.14286rem;
    line-height: 1.71429rem;
    font-weight: 700;
    font-weight: 400; } }

.euiHeaderAlert {
  min-width: 300px;
  position: relative;
  margin-bottom: 24px;
  padding: 0 8px 24px;
  border-bottom: 1px solid #D3DAE6;
  border-top: none; }
  .euiHeaderAlert .euiHeaderAlert__dismiss {
    opacity: 0;
    position: absolute;
    right: 12px;
    top: 12px;
    transition: opacity 250ms ease-in; }
  .euiHeaderAlert:hover .euiHeaderAlert__dismiss,
  .euiHeaderAlert .euiHeaderAlert__dismiss:focus {
    opacity: 1; }
  .euiHeaderAlert .euiHeaderAlert__title {
    overflow-wrap: break-word !important;
    word-break: break-word;
    color: #1a1c21;
    font-size: 16px;
    font-size: 1.14286rem;
    line-height: 1.71429rem;
    font-weight: 700;
    margin-bottom: 8px; }
  .euiHeaderAlert .euiHeaderAlert__text {
    font-size: 14px;
    font-size: 1rem;
    line-height: 1.71429rem;
    margin-bottom: 16px; }
  .euiHeaderAlert .euiHeaderAlert__action {
    font-size: 14px;
    font-size: 1rem;
    line-height: 1.71429rem; }
  .euiHeaderAlert .euiHeaderAlert__date {
    font-size: 12px;
    font-size: 0.85714rem;
    line-height: 1.14286rem;
    color: #69707D; }

.euiHeaderSection {
  display: flex;
  flex-grow: 0;
  flex-shrink: 0; }

.euiHeaderSection--grow,
.euiHeaderSection--left {
  flex-grow: 1; }

.euiHeaderSection--dontGrow {
  flex-grow: 0; }

.euiHeaderSectionItem {
  position: relative;
  display: flex;
  align-items: center; }
  .euiHeaderSectionItem:after {
    position: absolute;
    content: '';
    top: 16px;
    bottom: 0;
    background: #D3DAE6;
    left: 0; }

.euiHeaderSectionItem--borderLeft:after {
  left: 0;
  width: 1px; }

.euiHeaderSectionItem--borderRight:after {
  width: 1px;
  left: auto;
  right: 0; }

@media only screen and (max-width: 574px) {
  .euiHeaderSectionItem {
    min-width: 30px; }
  .euiHeaderSectionItem--borderLeft:after,
  .euiHeaderSectionItem--borderRight:after {
    display: none; } }

.euiHeaderSectionItemButton {
  position: relative;
  height: 40px;
  min-width: 40px;
  text-align: center;
  font-size: 0; }

.euiHeaderSectionItemButton__notification {
  position: absolute; }
  .euiHeaderSectionItemButton__notification--dot {
    top: 0;
    right: 0;
    stroke: #FFF; }
  .euiHeaderSectionItemButton__notification--badge {
    top: 9%;
    right: 9%;
    box-shadow: 0 0 0 1px #FFF; }

.euiHeaderSectionItemButton__content {
  display: inline-block; }

@media only screen and (max-width: 574px) {
  .euiHeaderSectionItemButton {
    min-width: 30px; }
  .euiHeaderSectionItemButton__notification.euiHeaderSectionItemButton__notification--dot {
    width: 16px;
    height: 16px;
    top: 9%; } }

/**
 * 1. Default to grid of 3
 */
.euiKeyPadMenu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 300px;
  max-width: 100%;
  margin-bottom: -4px;
  margin-right: -4px; }
  .euiKeyPadMenu legend {
    margin-bottom: 8px; }
  .euiKeyPadMenu > *:not(legend) {
    margin-bottom: 4px;
    margin-right: 4px; }

/**
 * 1. If this class is applied to a button, we need to override the Chrome default font.
 * 2. If it has a BetaBadge, make sure only the first letter shows
 */
.euiKeyPadMenuItem {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  letter-spacing: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-kerning: normal;
          font-feature-settings: "kern";
          font-kerning: normal;
  /* 1 */
  display: block;
  padding: 4px;
  height: 96px;
  width: 96px;
  border: 1px solid #D3DAE6;
  border-color: transparent;
  border-radius: 6px;
  color: #343741; }
  @media screen and (prefers-reduced-motion: no-preference) {
    .euiKeyPadMenuItem {
      transition: background-color 150ms ease-in, border-color 150ms ease-in, box-shadow 150ms ease-in; } }
  .euiKeyPadMenuItem:not(.euiKeyPadMenuItem-isDisabled):hover, .euiKeyPadMenuItem:not(.euiKeyPadMenuItem-isDisabled):focus, .euiKeyPadMenuItem:not(.euiKeyPadMenuItem-isDisabled):focus-within {
    cursor: pointer;
    text-decoration: underline;
    box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.04), 0 2.3px 2px rgba(0, 0, 0, 0.03);
    border-color: #D3DAE6; }
    @media screen and (prefers-reduced-motion: no-preference) {
      .euiKeyPadMenuItem:not(.euiKeyPadMenuItem-isDisabled):hover .euiKeyPadMenuItem__icon, .euiKeyPadMenuItem:not(.euiKeyPadMenuItem-isDisabled):focus .euiKeyPadMenuItem__icon, .euiKeyPadMenuItem:not(.euiKeyPadMenuItem-isDisabled):focus-within .euiKeyPadMenuItem__icon {
        transform: translateY(0); } }
  .euiKeyPadMenuItem:not(.euiKeyPadMenuItem-isDisabled):focus {
    cursor: pointer;
    text-decoration: underline;
    background-color: rgba(0, 119, 204, 0.1); }
  .euiKeyPadMenuItem.euiKeyPadMenuItem-isDisabled {
    cursor: not-allowed;
    text-decoration: none;
    color: #ABB4C4; }
    .euiKeyPadMenuItem.euiKeyPadMenuItem-isDisabled .euiKeyPadMenuItem__icon {
      filter: grayscale(100%); }
      .euiKeyPadMenuItem.euiKeyPadMenuItem-isDisabled .euiKeyPadMenuItem__icon svg * {
        fill: #ABB4C4; }
  .euiKeyPadMenuItem.euiKeyPadMenuItem-isSelected:not(.euiKeyPadMenuItem-isDisabled) {
    box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.04), 0 2.3px 2px rgba(0, 0, 0, 0.03);
    color: #1a1c21; }
  .euiKeyPadMenuItem.euiKeyPadMenuItem-isSelected {
    border-color: #D3DAE6; }
  .euiKeyPadMenuItem:not(:hover):not(:focus):not(:focus-within):not(.euiKeyPadMenuItem-isSelected) .euiKeyPadMenuItem__checkableInput, .euiKeyPadMenuItem.euiKeyPadMenuItem-isDisabled:not(.euiKeyPadMenuItem-isSelected) .euiKeyPadMenuItem__checkableInput {
    position: absolute;
    top: auto;
    left: -10000px;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    overflow: hidden;
    margin: -1px; }

.euiKeyPadMenuItem__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative; }
  .euiKeyPadMenuItem__inner .euiKeyPadMenuItem__checkableInput {
    transform: scale(0.75);
    transform-origin: top right; }
  .euiKeyPadMenuItem__inner .euiKeyPadMenuItem__checkableInput,
  .euiKeyPadMenuItem__inner .euiKeyPadMenuItem__betaBadge {
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 3; }

.euiKeyPadMenuItem__icon {
  transition: transform 250ms cubic-bezier(0.34, 1.61, 0.7, 1);
  margin-bottom: 12px;
  transform: translateY(2px); }

.euiKeyPadMenuItem__label {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  text-align: center; }

.euiKeyPadMenuItem--checkable.euiKeyPadMenuItem-isSelected:not(.euiKeyPadMenuItem-isDisabled), .euiKeyPadMenuItem--checkable.euiKeyPadMenuItem-isSelected:not(.euiKeyPadMenuItem-isDisabled):hover, .euiKeyPadMenuItem--checkable.euiKeyPadMenuItem-isSelected:not(.euiKeyPadMenuItem-isDisabled):focus, .euiKeyPadMenuItem--checkable.euiKeyPadMenuItem-isSelected:not(.euiKeyPadMenuItem-isDisabled):focus-within {
  background-color: rgba(0, 119, 204, 0.1);
  color: #0071c2;
  border-color: #0071c2; }

.euiMarkdownEditor {
  display: flex;
  flex-direction: column; }
  .euiMarkdownEditor--isPreviewing .euiMarkdownEditor__toggleContainer {
    display: none; }
  .euiMarkdownEditor--fullHeight {
    height: 100%; }
    .euiMarkdownEditor--fullHeight .euiMarkdownEditorTextArea {
      resize: none; }
    .euiMarkdownEditor--fullHeight .euiMarkdownEditorDropZone {
      height: 100%; }

.euiMarkdownEditorDropZone {
  display: flex;
  position: relative;
  flex-direction: column;
  min-height: "150px"; }
  .euiMarkdownEditorDropZone__input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden; }
    .euiMarkdownEditorDropZone__input:hover {
      cursor: pointer; }
    .euiMarkdownEditorDropZone__input:hover:disabled {
      cursor: not-allowed; }
  .euiMarkdownEditorDropZone--isDragging .euiMarkdownEditorFooter,
  .euiMarkdownEditorDropZone--isDragging .euiMarkdownEditorTextArea,
  .euiMarkdownEditorDropZone--isDragging .euiMarkdownEditorTextArea:focus,
  .euiMarkdownEditorDropZone--isDragging .euiMarkdownEditor:focus-within .euiMarkdownEditorTextArea {
    background-color: rgba(0, 119, 204, 0.1) !important; }
  .euiMarkdownEditorDropZone--isDragging .euiMarkdownEditorTextArea,
  .euiMarkdownEditorDropZone--isDragging .euiMarkdownEditorTextArea:focus {
    background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%) !important; }
  .euiMarkdownEditorDropZone--isDraggingError .euiMarkdownEditorFooter,
  .euiMarkdownEditorDropZone--isDraggingError .euiMarkdownEditorTextArea,
  .euiMarkdownEditorDropZone--isDraggingError .euiMarkdownEditorTextArea:focus,
  .euiMarkdownEditorDropZone--isDraggingError .euiMarkdownEditor:focus-within .euiMarkdownEditorTextArea {
    background-color: rgba(189, 39, 30, 0.1) !important; }
  .euiMarkdownEditorDropZone--hasError .euiMarkdownEditorTextArea,
  .euiMarkdownEditorDropZone--hasError .euiMarkdownEditorTextArea:focus {
    background-image: linear-gradient(to top, #BD271E, #BD271E 2px, transparent 2px, transparent 100%) !important; }

.euiMarkdownFormat[class*='euiTextColor-default'] .euiMarkdownFormat__blockquote {
  border-left-color: rgba(0, 0, 0, 0.15); }

.euiMarkdownFormat[class*='euiTextColor-default'] .euiHorizontalRule {
  background-color: rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.15); }

.euiMarkdownFormat[class*='euiTextColor-default'] .euiMarkdownFormat__table {
  border-left: 1px solid rgba(0, 0, 0, 0.15); }

.euiMarkdownFormat[class*='euiTextColor-default'] .euiMarkdownFormat__table th,
.euiMarkdownFormat[class*='euiTextColor-default'] .euiMarkdownFormat__table td {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15); }
  .euiMarkdownFormat[class*='euiTextColor-default'] .euiMarkdownFormat__table th:last-child,
  .euiMarkdownFormat[class*='euiTextColor-default'] .euiMarkdownFormat__table td:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0.15); }

.euiMarkdownFormat[class*='euiTextColor-default'] .euiMarkdownFormat__table tr {
  border-top: 1px solid rgba(0, 0, 0, 0.15); }

.euiMarkdownFormat[class*='euiTextColor-subdued'] .euiMarkdownFormat__blockquote {
  border-left-color: #69707D; }

.euiMarkdownFormat[class*='euiTextColor-subdued'] .euiHorizontalRule {
  background-color: #69707D;
  color: #69707D; }

.euiMarkdownFormat[class*='euiTextColor-subdued'] .euiMarkdownFormat__table {
  border-left: 1px solid #69707D; }

.euiMarkdownFormat[class*='euiTextColor-subdued'] .euiMarkdownFormat__table th,
.euiMarkdownFormat[class*='euiTextColor-subdued'] .euiMarkdownFormat__table td {
  border-top: 1px solid #69707D;
  border-bottom: 1px solid #69707D; }
  .euiMarkdownFormat[class*='euiTextColor-subdued'] .euiMarkdownFormat__table th:last-child,
  .euiMarkdownFormat[class*='euiTextColor-subdued'] .euiMarkdownFormat__table td:last-child {
    border-right: 1px solid #69707D; }

.euiMarkdownFormat[class*='euiTextColor-subdued'] .euiMarkdownFormat__table tr {
  border-top: 1px solid #69707D; }

.euiMarkdownFormat[class*='euiTextColor-success'] .euiMarkdownFormat__blockquote {
  border-left-color: #00BFB3; }

.euiMarkdownFormat[class*='euiTextColor-success'] .euiHorizontalRule {
  background-color: #00BFB3;
  color: #00BFB3; }

.euiMarkdownFormat[class*='euiTextColor-success'] .euiMarkdownFormat__table {
  border-left: 1px solid #00BFB3; }

.euiMarkdownFormat[class*='euiTextColor-success'] .euiMarkdownFormat__table th,
.euiMarkdownFormat[class*='euiTextColor-success'] .euiMarkdownFormat__table td {
  border-top: 1px solid #00BFB3;
  border-bottom: 1px solid #00BFB3; }
  .euiMarkdownFormat[class*='euiTextColor-success'] .euiMarkdownFormat__table th:last-child,
  .euiMarkdownFormat[class*='euiTextColor-success'] .euiMarkdownFormat__table td:last-child {
    border-right: 1px solid #00BFB3; }

.euiMarkdownFormat[class*='euiTextColor-success'] .euiMarkdownFormat__table tr {
  border-top: 1px solid #00BFB3; }

.euiMarkdownFormat[class*='euiTextColor-accent'] .euiMarkdownFormat__blockquote {
  border-left-color: #F04E98; }

.euiMarkdownFormat[class*='euiTextColor-accent'] .euiHorizontalRule {
  background-color: #F04E98;
  color: #F04E98; }

.euiMarkdownFormat[class*='euiTextColor-accent'] .euiMarkdownFormat__table {
  border-left: 1px solid #F04E98; }

.euiMarkdownFormat[class*='euiTextColor-accent'] .euiMarkdownFormat__table th,
.euiMarkdownFormat[class*='euiTextColor-accent'] .euiMarkdownFormat__table td {
  border-top: 1px solid #F04E98;
  border-bottom: 1px solid #F04E98; }
  .euiMarkdownFormat[class*='euiTextColor-accent'] .euiMarkdownFormat__table th:last-child,
  .euiMarkdownFormat[class*='euiTextColor-accent'] .euiMarkdownFormat__table td:last-child {
    border-right: 1px solid #F04E98; }

.euiMarkdownFormat[class*='euiTextColor-accent'] .euiMarkdownFormat__table tr {
  border-top: 1px solid #F04E98; }

.euiMarkdownFormat[class*='euiTextColor-warning'] .euiMarkdownFormat__blockquote {
  border-left-color: #FEC514; }

.euiMarkdownFormat[class*='euiTextColor-warning'] .euiHorizontalRule {
  background-color: #FEC514;
  color: #FEC514; }

.euiMarkdownFormat[class*='euiTextColor-warning'] .euiMarkdownFormat__table {
  border-left: 1px solid #FEC514; }

.euiMarkdownFormat[class*='euiTextColor-warning'] .euiMarkdownFormat__table th,
.euiMarkdownFormat[class*='euiTextColor-warning'] .euiMarkdownFormat__table td {
  border-top: 1px solid #FEC514;
  border-bottom: 1px solid #FEC514; }
  .euiMarkdownFormat[class*='euiTextColor-warning'] .euiMarkdownFormat__table th:last-child,
  .euiMarkdownFormat[class*='euiTextColor-warning'] .euiMarkdownFormat__table td:last-child {
    border-right: 1px solid #FEC514; }

.euiMarkdownFormat[class*='euiTextColor-warning'] .euiMarkdownFormat__table tr {
  border-top: 1px solid #FEC514; }

.euiMarkdownFormat[class*='euiTextColor-danger'] .euiMarkdownFormat__blockquote {
  border-left-color: #BD271E; }

.euiMarkdownFormat[class*='euiTextColor-danger'] .euiHorizontalRule {
  background-color: #BD271E;
  color: #BD271E; }

.euiMarkdownFormat[class*='euiTextColor-danger'] .euiMarkdownFormat__table {
  border-left: 1px solid #BD271E; }

.euiMarkdownFormat[class*='euiTextColor-danger'] .euiMarkdownFormat__table th,
.euiMarkdownFormat[class*='euiTextColor-danger'] .euiMarkdownFormat__table td {
  border-top: 1px solid #BD271E;
  border-bottom: 1px solid #BD271E; }
  .euiMarkdownFormat[class*='euiTextColor-danger'] .euiMarkdownFormat__table th:last-child,
  .euiMarkdownFormat[class*='euiTextColor-danger'] .euiMarkdownFormat__table td:last-child {
    border-right: 1px solid #BD271E; }

.euiMarkdownFormat[class*='euiTextColor-danger'] .euiMarkdownFormat__table tr {
  border-top: 1px solid #BD271E; }

.euiMarkdownFormat[class*='euiTextColor-ghost'] .euiMarkdownFormat__blockquote {
  border-left-color: #FFF; }

.euiMarkdownFormat[class*='euiTextColor-ghost'] .euiHorizontalRule {
  background-color: #FFF;
  color: #FFF; }

.euiMarkdownFormat[class*='euiTextColor-ghost'] .euiMarkdownFormat__table {
  border-left: 1px solid #FFF; }

.euiMarkdownFormat[class*='euiTextColor-ghost'] .euiMarkdownFormat__table th,
.euiMarkdownFormat[class*='euiTextColor-ghost'] .euiMarkdownFormat__table td {
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF; }
  .euiMarkdownFormat[class*='euiTextColor-ghost'] .euiMarkdownFormat__table th:last-child,
  .euiMarkdownFormat[class*='euiTextColor-ghost'] .euiMarkdownFormat__table td:last-child {
    border-right: 1px solid #FFF; }

.euiMarkdownFormat[class*='euiTextColor-ghost'] .euiMarkdownFormat__table tr {
  border-top: 1px solid #FFF; }

.euiMarkdownFormat[class*='euiTextColor-inherit'] .euiMarkdownFormat__blockquote {
  border-left-color: currentColor; }

.euiMarkdownFormat[class*='euiTextColor-inherit'] .euiHorizontalRule {
  background-color: currentColor;
  color: currentColor; }

.euiMarkdownFormat[class*='euiTextColor-inherit'] .euiMarkdownFormat__table {
  border-left: 1px solid currentColor; }

.euiMarkdownFormat[class*='euiTextColor-inherit'] .euiMarkdownFormat__table th,
.euiMarkdownFormat[class*='euiTextColor-inherit'] .euiMarkdownFormat__table td {
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor; }
  .euiMarkdownFormat[class*='euiTextColor-inherit'] .euiMarkdownFormat__table th:last-child,
  .euiMarkdownFormat[class*='euiTextColor-inherit'] .euiMarkdownFormat__table td:last-child {
    border-right: 1px solid currentColor; }

.euiMarkdownFormat[class*='euiTextColor-inherit'] .euiMarkdownFormat__table tr {
  border-top: 1px solid currentColor; }

.euiMarkdownFormat[class*='euiTextColor-custom'] .euiMarkdownFormat__blockquote {
  border-left-color: currentColor; }

.euiMarkdownFormat[class*='euiTextColor-custom'] .euiHorizontalRule {
  background-color: currentColor;
  color: currentColor; }

.euiMarkdownFormat[class*='euiTextColor-custom'] .euiMarkdownFormat__table {
  border-left: 1px solid currentColor; }

.euiMarkdownFormat[class*='euiTextColor-custom'] .euiMarkdownFormat__table th,
.euiMarkdownFormat[class*='euiTextColor-custom'] .euiMarkdownFormat__table td {
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor; }
  .euiMarkdownFormat[class*='euiTextColor-custom'] .euiMarkdownFormat__table th:last-child,
  .euiMarkdownFormat[class*='euiTextColor-custom'] .euiMarkdownFormat__table td:last-child {
    border-right: 1px solid currentColor; }

.euiMarkdownFormat[class*='euiTextColor-custom'] .euiMarkdownFormat__table tr {
  border-top: 1px solid currentColor; }

.euiMarkdownFormat .euiMarkdownFormat__blockquote {
  border-left-style: solid; }

.euiMarkdownFormat .euiCheckbox {
  margin-bottom: 0 !important; }

.euiMarkdownFormat .euiCheckbox .euiCheckbox__input + .euiCheckbox__square {
  top: 50%;
  transform: translateY(-50%); }

.euiMarkdownFormat .euiMarkdownFormat__table {
  display: block;
  width: 100%;
  overflow: auto;
  border-spacing: 0;
  border-collapse: collapse; }

.euiMarkdownEditorFooter {
  display: inline-flex;
  padding: 4px;
  border: 1px solid #D3DAE6;
  align-items: center;
  background: #fafbfd; }

.euiMarkdownEditorFooter__popover {
  width: 300px; }

.euiMarkdownEditorFooter__actions {
  flex: 1 1;
  display: inline-flex; }
  .euiMarkdownEditorFooter__actions > button,
  .euiMarkdownEditorFooter__actions > span {
    margin-right: 4px;
    align-self: center; }
  .euiMarkdownEditorFooter__actions .euiMarkdownEditorFooter__uploadError {
    position: relative;
    left: -1px;
    line-height: 1;
    border-radius: 6px; }
    .euiMarkdownEditorFooter__actions .euiMarkdownEditorFooter__uploadError > span {
      padding: 0 4px; }

.euiMarkdownEditorFooter__helpButton > svg {
  width: 26px; }

.euiMarkdownEditorPreview {
  scrollbar-color: rgba(105, 112, 125, 0.5) transparent;
  scrollbar-width: thin;
  background: #FFF;
  min-height: "150px";
  overflow-y: auto;
  border: 1px solid #D3DAE6;
  padding: 12px; }
  .euiMarkdownEditorPreview::-webkit-scrollbar {
    width: 16px;
    height: 16px; }
  .euiMarkdownEditorPreview::-webkit-scrollbar-thumb {
    background-color: rgba(105, 112, 125, 0.5);
    background-clip: content-box;
    border-radius: 16px;
    border: 6px solid transparent; }
  .euiMarkdownEditorPreview::-webkit-scrollbar-corner, .euiMarkdownEditorPreview::-webkit-scrollbar-track {
    background-color: transparent; }

.euiMarkdownEditorPreview-isReadOnly .euiCheckbox__input ~ .euiCheckbox__label {
  cursor: default; }

.euiMarkdownEditorPreview-isReadOnly .euiCheckbox__input:focus:not(:checked) + .euiCheckbox__square {
  border-color: #c9cbcd; }

.euiMarkdownEditorTextArea {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  letter-spacing: normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-kerning: normal;
          font-feature-settings: "kern";
          font-kerning: normal;
  font-size: 14px;
  color: #343741;
  scrollbar-color: rgba(105, 112, 125, 0.5) transparent;
  scrollbar-width: thin;
  width: 100%;
  height: 100%;
  min-height: "150px";
  padding: 12px;
  border: 1px solid #D3DAE6;
  border-bottom: none;
  line-height: 1.5;
  resize: vertical;
  background-color: #fbfcfd;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  margin: 0;
  transition: box-shadow 150ms ease-in, background-image 150ms ease-in, background-size 150ms ease-in, background-color 150ms ease-in; }
  .euiMarkdownEditorTextArea::-moz-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiMarkdownEditorTextArea:-ms-input-placeholder {
    color: #69707D;
    opacity: 1; }
  .euiMarkdownEditorTextArea::placeholder {
    color: #69707D;
    opacity: 1; }
  .euiMarkdownEditorTextArea::-webkit-scrollbar {
    width: 16px;
    height: 16px; }
  .euiMarkdownEditorTextArea::-webkit-scrollbar-thumb {
    background-color: rgba(105, 112, 125, 0.5);
    background-clip: content-box;
    border-radius: 16px;
    border: 6px solid transparent; }
  .euiMarkdownEditorTextArea::-webkit-scrollbar-corner, .euiMarkdownEditorTextArea::-webkit-scrollbar-track {
    background-color: transparent; }
  .euiMarkdownEditorTextArea:focus,
  .euiMarkdownEditor:focus-within .euiMarkdownEditorTextArea {
    background-color: white;
    background-image: linear-gradient(to top, #07C, #07C 2px, transparent 2px, transparent 100%);
    background-size: 100% 100%; }

.euiMarkdownEditorTextArea-isReadOnly {
  background: #FFF;
  cursor: unset; }
  .euiMarkdownEditorTextArea-isReadOnly:focus,
  .euiMarkdownEditor:focus-within .euiMarkdownEditorTextArea-isReadOnly {
    background: none; }

.euiMarkdownEditorToolbar {
  display: flex;
  flex-wrap: wrap;
  background: #F5F7FA;
  border: 1px solid #D3DAE6;
  border-color: #D3DAE6;
  border-bottom: none;
  padding: 4px; }
  .euiMarkdownEditorToolbar__buttons {
    display: flex;
    flex-wrap: wrap;
    flex: 1 1;
    align-items: center; }
    .euiMarkdownEditorToolbar__buttons > * {
      margin-right: 4px; }
  .euiMarkdownEditorToolbar__divider {
    content: '';
    height: 24px;
    display: block;
    margin-left: 4px;
    padding-right: 4px;
    border-left: 1px solid #D3DAE6; }

.euiMarkdownTooltip__icon {
  transform: translateY(-1px); }

.euiNotificationEvent {
  display: flex;
  padding: 12px 0 12px 12px;
  border-bottom: 1px solid #D3DAE6; }
  .euiNotificationEvent:last-child {
    border-bottom: none; }
  .euiNotificationEvent--withReadState {
    padding: 12px 0 12px 8px; }

.euiNotificationEvent__title {
  overflow-wrap: break-word !important;
  word-break: break-word;
  color: #1a1c21;
  font-size: 16px;
  font-size: 1.14286rem;
  line-height: 1.71429rem;
  font-weight: 700;
  display: flex; }
  .euiNotificationEvent__title.euiLink {
    color: #0071c2; }
  .euiNotificationEvent__title--isRead {
    color: #69707D !important; }

.euiNotificationEvent__readButton {
  margin-right: 8px; }

.euiNotificationEvent__content {
  flex: 1 1; }
  .euiNotificationEvent__content > * + * {
    margin-top: 8px;
    margin-right: 12px; }

.euiNotificationEventMeta {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-right: 4px;
  min-height: 24px; }
  .euiNotificationEventMeta--hasContextMenu {
    padding-right: 24px; }
  .euiNotificationEventMeta__contextMenuWrapper {
    position: absolute;
    top: 0;
    right: 0; }
  .euiNotificationEventMeta__section {
    margin-right: 8px; }
    .euiNotificationEventMeta__section:first-child {
      display: flex;
      flex: 1 1;
      align-items: center; }
  .euiNotificationEventMeta__icon {
    margin-right: 8px; }
  .euiNotificationEventMeta__badge {
    max-width: 100%;
    display: inline-grid; }
  .euiNotificationEventMeta__time {
    font-size: 12px;
    color: #69707D; }

.euiNotificationEventMessages {
  font-size: 14px; }
  .euiNotificationEventMessages__accordion {
    color: #69707D; }
  .euiNotificationEventMessages__accordionButton {
    color: #0071c2; }
  .euiNotificationEventMessages__accordionContent > * {
    padding-top: 8px; }

.euiNotificationEventReadButton--isRead svg {
  fill: transparent;
  stroke-width: 1px;
  stroke: #D3DAE6; }

.euiNotificationEventReadIcon {
  display: flex;
  align-items: center;
  height: 24px;
  margin: 0 4px; }

.euiNotificationEventReadIcon--isRead svg {
  fill: transparent;
  stroke-width: 1px;
  stroke: #D3DAE6; }

.euiSplitPanel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden; }
  .euiSplitPanel .euiSplitPanel__inner {
    flex-basis: 0%;
    transform: none !important;
    box-shadow: none !important; }

.euiSplitPanel--row {
  flex-direction: row; }
  .euiSplitPanel--row.euiSplitPanel-isResponsive {
    flex-direction: column; }

.euiPageContent {
  width: 100%;
  min-width: 0; }
  .euiPageContent.euiPageContent--borderRadiusNone {
    border-left-width: 0;
    border-right-width: 0;
    border-bottom-width: 0; }
  .euiPageContent.euiPageContent--verticalCenter {
    align-self: center;
    margin-top: auto;
    margin-bottom: auto;
    flex-grow: 0; }
  .euiPageContent.euiPageContent--horizontalCenter {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    flex-grow: 0; }

.euiPageContentBody--restrictWidth-default, .euiPageContentBody--restrictWidth-custom {
  margin-left: auto;
  margin-right: auto;
  width: 100%; }

.euiPageContentBody--restrictWidth-default {
  max-width: 1200px; }

.euiPageContentBody--paddingSmall {
  padding: 8px; }

.euiPageContentBody--paddingMedium {
  padding: 16px; }

.euiPageContentBody--paddingLarge {
  padding: 24px; }

.euiPageContentHeader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; }
  .euiPageContent[class*='paddingSmall'] .euiPageContentHeader {
    margin-bottom: 8px; }
  .euiPageContent[class*='paddingMedium'] .euiPageContentHeader {
    margin-bottom: 16px; }
  .euiPageContent[class*='paddingLarge'] .euiPageContentHeader {
    margin-bottom: 24px; }

@media only screen and (max-width: 574px) {
  .euiPageContentHeader--responsive {
    flex-direction: column;
    align-items: flex-start; } }

@media only screen and (min-width: 575px) and (max-width: 767px) {
  .euiPageContentHeader--responsive {
    flex-direction: column;
    align-items: flex-start; } }

.euiPageContentHeaderSection + .euiPageContentHeaderSection {
  margin-left: 32px; }

@media only screen and (max-width: 574px) {
  .euiPageContent[class*='paddingSmall'] .euiPageContentHeader--responsive .euiPageContentHeaderSection + .euiPageContentHeaderSection {
    margin-left: 0;
    margin-top: 4px; }
  .euiPageContent[class*='paddingMedium'] .euiPageContentHeader--responsive .euiPageContentHeaderSection + .euiPageContentHeaderSection {
    margin-left: 0;
    margin-top: 8px; }
  .euiPageContent[class*='paddingLarge'] .euiPageContentHeader--responsive .euiPageContentHeaderSection + .euiPageContentHeaderSection {
    margin-left: 0;
    margin-top: 12px; } }

@media only screen and (min-width: 575px) and (max-width: 767px) {
  .euiPageContent[class*='paddingSmall'] .euiPageContentHeader--responsive .euiPageContentHeaderSection + .euiPageContentHeaderSection {
    margin-left: 0;
    margin-top: 4px; }
  .euiPageContent[class*='paddingMedium'] .euiPageContentHeader--responsive .euiPageContentHeaderSection + .euiPageContentHeaderSection {
    margin-left: 0;
    margin-top: 8px; }
  .euiPageContent[class*='paddingLarge'] .euiPageContentHeader--responsive .euiPageContentHeaderSection + .euiPageContentHeaderSection {
    margin-left: 0;
    margin-top: 12px; } }

/**
 * Note: Margin is added in _page.scss when EuiPage has `paddingSize`
 * 1. Prevent side bar width from changing when content width changes.
 */
.euiPageSideBar {
  min-width: 240px;
  flex: 0 1;
  /* 1 */ }

.euiPageSideBar--paddingSmall {
  padding: 8px; }

.euiPageSideBar--paddingMedium {
  padding: 16px; }

.euiPageSideBar--paddingLarge {
  padding: 24px; }

@media only screen and (max-width: 574px) {
  .euiPageSideBar {
    width: 100%; } }

@media only screen and (min-width: 575px) and (max-width: 767px) {
  .euiPageSideBar {
    width: 100%; } }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .euiPageSideBar--sticky {
    scrollbar-color: rgba(105, 112, 125, 0.5) transparent;
    scrollbar-width: thin;
    overflow-y: auto;
    flex-grow: 1;
    position: sticky;
    max-height: 100vh;
    top: 0; }
    .euiPageSideBar--sticky::-webkit-scrollbar {
      width: 16px;
      height: 16px; }
    .euiPageSideBar--sticky::-webkit-scrollbar-thumb {
      background-color: rgba(105, 112, 125, 0.5);
      background-clip: content-box;
      border-radius: 16px;
      border: 6px solid transparent; }
    .euiPageSideBar--sticky::-webkit-scrollbar-corner, .euiPageSideBar--sticky::-webkit-scrollbar-track {
      background-color: transparent; } }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .euiPageSideBar--sticky {
    scrollbar-color: rgba(105, 112, 125, 0.5) transparent;
    scrollbar-width: thin;
    overflow-y: auto;
    flex-grow: 1;
    position: sticky;
    max-height: 100vh;
    top: 0; }
    .euiPageSideBar--sticky::-webkit-scrollbar {
      width: 16px;
      height: 16px; }
    .euiPageSideBar--sticky::-webkit-scrollbar-thumb {
      background-color: rgba(105, 112, 125, 0.5);
      background-clip: content-box;
      border-radius: 16px;
      border: 6px solid transparent; }
    .euiPageSideBar--sticky::-webkit-scrollbar-corner, .euiPageSideBar--sticky::-webkit-scrollbar-track {
      background-color: transparent; } }

@media only screen and (min-width: 1200px) {
  .euiPageSideBar--sticky {
    scrollbar-color: rgba(105, 112, 125, 0.5) transparent;
    scrollbar-width: thin;
    overflow-y: auto;
    flex-grow: 1;
    position: sticky;
    max-height: 100vh;
    top: 0; }
    .euiPageSideBar--sticky::-webkit-scrollbar {
      width: 16px;
      height: 16px; }
    .euiPageSideBar--sticky::-webkit-scrollbar-thumb {
      background-color: rgba(105, 112, 125, 0.5);
      background-clip: content-box;
      border-radius: 16px;
      border: 6px solid transparent; }
    .euiPageSideBar--sticky::-webkit-scrollbar-corner, .euiPageSideBar--sticky::-webkit-scrollbar-track {
      background-color: transparent; } }

.euiTreeView__wrapper .euiTreeView {
  margin: 0;
  list-style-type: none; }

.euiTreeView .euiTreeView {
  padding-left: 24px; }

.euiTreeView__node {
  max-height: 32px;
  line-height: 32px; }

.euiTreeView__node--expanded {
  max-height: 100vh; }

.euiTreeView__nodeInner {
  max-width: 100%;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  padding-left: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 32px;
  border-radius: 6px;
  width: 100%;
  -moz-text-align-last: left;
       text-align-last: left; }
  .euiTreeView__nodeInner:focus {
    outline: 2px solid currentColor;
    outline-offset: -2px; }
    .euiTreeView__nodeInner:focus:focus-visible {
      outline-style: auto; }
    .euiTreeView__nodeInner:focus:not(:focus-visible) {
      outline: none; }
  .euiTreeView__nodeInner:hover, .euiTreeView__nodeInner:active, .euiTreeView__nodeInner:focus {
    background-color: rgba(52, 55, 65, 0.1); }
  .euiTreeView__nodeInner .euiTreeView__iconPlaceholder {
    width: 32px; }

.euiTreeView__nodeLabel {
  max-width: 100%;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important; }

.euiTreeView__iconWrapper {
  margin-top: -2px;
  margin-right: 8px; }
  .euiTreeView__iconWrapper .euiToken {
    margin-top: 2px; }

.euiTreeView--compressed .euiTreeView__node {
  max-height: 24px;
  line-height: 24px; }
  .euiTreeView--compressed .euiTreeView__node .euiTreeView__nodeInner {
    height: 24px; }
  .euiTreeView--compressed .euiTreeView__node .euiTreeView__iconWrapper {
    margin: 0 6px 0 0; }
  .euiTreeView--compressed .euiTreeView__node .euiTreeView__nodeLabel {
    margin-top: -1px; }
  .euiTreeView--compressed .euiTreeView__node .euiTreeView__iconPlaceholder {
    width: 24px; }

.euiTreeView--compressed .euiTreeView__node--expanded {
  max-height: 100vh; }

.euiTreeView--withArrows .euiTreeView__expansionArrow {
  margin-right: 4px; }

.euiTreeView--withArrows.euiTreeView .euiTreeView__nodeInner--withArrows .euiTreeView__iconWrapper {
  margin-left: 0; }

.euiTreeView--withArrows.euiTreeView .euiTreeView__iconWrapper {
  margin-left: 20px; }

.euiTreeView--withArrows.euiTreeView--compressed .euiTreeView__nodeInner--withArrows .euiTreeView__iconWrapper {
  margin-left: 0; }

.euiTreeView--withArrows.euiTreeView--compressed .euiTreeView__iconWrapper {
  margin-left: 16px; }

.euiResizableButton {
  position: relative;
  flex-shrink: 0;
  z-index: 1; }
  .euiResizableButton:before, .euiResizableButton:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #343741;
    transition: width 150ms ease, height 150ms ease, transform 150ms ease, background-color 150ms ease; }
  .euiResizableButton.euiResizableButton--horizontal {
    cursor: col-resize;
    width: 16px;
    margin-left: -8px;
    margin-right: -8px; }
    .euiResizableButton.euiResizableButton--horizontal:before, .euiResizableButton.euiResizableButton--horizontal:after {
      width: 1px;
      height: 12px; }
    .euiResizableButton.euiResizableButton--horizontal:before {
      transform: translate(-2px, -50%); }
    .euiResizableButton.euiResizableButton--horizontal:after {
      transform: translate(1px, -50%); }
  .euiResizableButton.euiResizableButton--vertical {
    cursor: row-resize;
    height: 16px;
    margin-top: -8px;
    margin-bottom: -8px; }
    .euiResizableButton.euiResizableButton--vertical:before, .euiResizableButton.euiResizableButton--vertical:after {
      width: 12px;
      height: 1px; }
    .euiResizableButton.euiResizableButton--vertical:before {
      transform: translate(-50%, -2px); }
    .euiResizableButton.euiResizableButton--vertical:after {
      transform: translate(-50%, 1px); }
  .euiResizableButton:hover:not(:disabled):before, .euiResizableButton:hover:not(:disabled):after {
    background-color: #98A2B3;
    transition-delay: 150ms; }
  .euiResizableButton:focus:not(:disabled) {
    background-color: rgba(0, 119, 204, 0.1); }
    .euiResizableButton:focus:not(:disabled):before, .euiResizableButton:focus:not(:disabled):after {
      background-color: #07C;
      transition: width 150ms ease, height 150ms ease, transform 150ms ease;
      transition-delay: 75ms; }
  .euiResizableButton:hover:not(:disabled).euiResizableButton--horizontal:before, .euiResizableButton:hover:not(:disabled).euiResizableButton--horizontal:after, .euiResizableButton:focus:not(:disabled).euiResizableButton--horizontal:before, .euiResizableButton:focus:not(:disabled).euiResizableButton--horizontal:after {
    height: 100%; }
  .euiResizableButton:hover:not(:disabled).euiResizableButton--horizontal:before, .euiResizableButton:focus:not(:disabled).euiResizableButton--horizontal:before {
    transform: translate(-1px, -50%); }
  .euiResizableButton:hover:not(:disabled).euiResizableButton--horizontal:after, .euiResizableButton:focus:not(:disabled).euiResizableButton--horizontal:after {
    transform: translate(0, -50%); }
  .euiResizableButton:hover:not(:disabled).euiResizableButton--vertical:before, .euiResizableButton:hover:not(:disabled).euiResizableButton--vertical:after, .euiResizableButton:focus:not(:disabled).euiResizableButton--vertical:before, .euiResizableButton:focus:not(:disabled).euiResizableButton--vertical:after {
    width: 100%; }
  .euiResizableButton:hover:not(:disabled).euiResizableButton--vertical:before, .euiResizableButton:focus:not(:disabled).euiResizableButton--vertical:before {
    transform: translate(-50%, -1px); }
  .euiResizableButton:hover:not(:disabled).euiResizableButton--vertical:after, .euiResizableButton:focus:not(:disabled).euiResizableButton--vertical:after {
    transform: translate(-50%, 0); }
  .euiResizableButton:disabled {
    display: none !important; }

/**
 * 1. The default position of the button should always be `middle`, so
 *    those position styles aren't restricted to a class
 * 2. When collpsed, the button itself is the full collapsed area and we use
 *    flex to align the icon within
 */
.euiResizableToggleButton {
  box-shadow: 0 0.8px 0.8px rgba(0, 0, 0, 0.04), 0 2.3px 2px rgba(0, 0, 0, 0.03);
  position: absolute;
  z-index: 2;
  animation: none !important;
  transition-property: background, box-shadow; }
  .euiResizableToggleButton:focus {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1), 0 3.6px 13px rgba(0, 0, 0, 0.07), 0 8.4px 23px rgba(0, 0, 0, 0.06), 0 23px 35px rgba(0, 0, 0, 0.05); }
  .euiResizableToggleButton-isCollapsed {
    box-shadow: none;
    background: transparent;
    border-radius: 0; }
  .euiResizableToggleButton:not(:focus):not(:active):not(.euiResizableToggleButton-isVisible):not(.euiResizableToggleButton-isCollapsed) {
    position: absolute;
    top: auto;
    left: -10000px;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    overflow: hidden;
    margin: -1px; }

.euiResizableToggleButton--horizontal.euiResizableToggleButton.euiResizableToggleButton--after {
  right: 0;
  top: 50%;
  /* 1 */
  transform: translate(50%, -50%);
  /* 1 */ }
  .euiResizableToggleButton--horizontal.euiResizableToggleButton.euiResizableToggleButton--after.euiResizableToggleButton--top {
    top: 0;
    transform: translate(50%, 16px); }
  .euiResizableToggleButton--horizontal.euiResizableToggleButton.euiResizableToggleButton--after.euiResizableToggleButton--bottom {
    top: auto;
    bottom: 0;
    transform: translate(50%, -16px); }

.euiResizableToggleButton--horizontal.euiResizableToggleButton.euiResizableToggleButton--before {
  left: 0;
  top: 50%;
  /* 1 */
  transform: translate(-50%, -50%);
  /* 1 */ }
  .euiResizableToggleButton--horizontal.euiResizableToggleButton.euiResizableToggleButton--before.euiResizableToggleButton--top {
    top: 0;
    transform: translate(-50%, 16px); }
  .euiResizableToggleButton--horizontal.euiResizableToggleButton.euiResizableToggleButton--before.euiResizableToggleButton--bottom {
    top: auto;
    bottom: 0;
    transform: translate(-50%, -16px); }

.euiResizableToggleButton--horizontal.euiResizableToggleButton.euiResizableToggleButton-isCollapsed {
  top: 0 !important;
  bottom: 0 !important;
  transform: none !important;
  height: 100%; }
  .euiResizableToggleButton--horizontal.euiResizableToggleButton.euiResizableToggleButton-isCollapsed.euiResizableToggleButton--top {
    padding-top: 16px;
    align-items: flex-start;
    /* 2 */ }
  .euiResizableToggleButton--horizontal.euiResizableToggleButton.euiResizableToggleButton-isCollapsed.euiResizableToggleButton--bottom {
    padding-bottom: 16px;
    align-items: flex-end;
    /* 2 */ }

.euiResizableToggleButton--vertical.euiResizableToggleButton.euiResizableToggleButton--after {
  top: 100%;
  left: 50%;
  /* 1 */
  transform: translate(-50%, -50%);
  /* 1 */ }
  .euiResizableToggleButton--vertical.euiResizableToggleButton.euiResizableToggleButton--after.euiResizableToggleButton--left {
    left: 0;
    transform: translate(16px, -50%); }
  .euiResizableToggleButton--vertical.euiResizableToggleButton.euiResizableToggleButton--after.euiResizableToggleButton--right {
    left: auto;
    right: 0;
    transform: translate(-16px, -50%); }

.euiResizableToggleButton--vertical.euiResizableToggleButton.euiResizableToggleButton--before {
  bottom: 100%;
  left: 50%;
  /* 1 */
  transform: translate(-50%, 50%);
  /* 1 */ }
  .euiResizableToggleButton--vertical.euiResizableToggleButton.euiResizableToggleButton--before.euiResizableToggleButton--left {
    left: 0;
    transform: translate(16px, 50%); }
  .euiResizableToggleButton--vertical.euiResizableToggleButton.euiResizableToggleButton--before.euiResizableToggleButton--right {
    left: auto;
    right: 0;
    transform: translate(-16px, 50%); }

.euiResizableToggleButton--vertical.euiResizableToggleButton.euiResizableToggleButton-isCollapsed {
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  transform: none !important;
  width: 100%; }
  .euiResizableToggleButton--vertical.euiResizableToggleButton.euiResizableToggleButton-isCollapsed.euiResizableToggleButton--left {
    padding-left: 16px;
    justify-content: flex-start;
    /* 2 */ }
  .euiResizableToggleButton--vertical.euiResizableToggleButton.euiResizableToggleButton-isCollapsed.euiResizableToggleButton--right {
    padding-right: 16px;
    justify-content: flex-end;
    /* 2 */ }

.euiSideNav__mobileToggle {
  height: auto;
  border-bottom: 1px solid #D3DAE6;
  width: 100%;
  text-align: left;
  border-radius: 0 !important;
  font-size: 16px;
  padding: 0 16px; }
  .euiSideNav__mobileToggle .euiSideNav__mobileToggleText {
    padding: 16px 0; }
  .euiSideNav__mobileToggle .euiSideNav__mobileToggleContent {
    justify-content: space-between; }

.euiSideNav__heading {
  margin-bottom: 24px; }

@media only screen and (max-width: 574px) {
  .euiSideNav__contentMobile-xs {
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    padding: 0 24px; }
    .euiSideNav-isOpenMobile .euiSideNav__contentMobile-xs {
      visibility: visible;
      opacity: 1;
      padding: 24px;
      max-height: 5000px;
      /* 1 */ } }
    @media only screen and (max-width: 574px) and (prefers-reduced-motion: no-preference) {
      .euiSideNav-isOpenMobile .euiSideNav__contentMobile-xs {
        transition: all 250ms cubic-bezier(0.694, 0.0482, 0.335, 1); } }

@media only screen and (min-width: 575px) and (max-width: 767px) {
  .euiSideNav__contentMobile-s {
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    padding: 0 24px; }
    .euiSideNav-isOpenMobile .euiSideNav__contentMobile-s {
      visibility: visible;
      opacity: 1;
      padding: 24px;
      max-height: 5000px;
      /* 1 */ } }
    @media only screen and (min-width: 575px) and (max-width: 767px) and (prefers-reduced-motion: no-preference) {
      .euiSideNav-isOpenMobile .euiSideNav__contentMobile-s {
        transition: all 250ms cubic-bezier(0.694, 0.0482, 0.335, 1); } }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .euiSideNav__contentMobile-m {
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    padding: 0 24px; }
    .euiSideNav-isOpenMobile .euiSideNav__contentMobile-m {
      visibility: visible;
      opacity: 1;
      padding: 24px;
      max-height: 5000px;
      /* 1 */ } }
    @media only screen and (min-width: 768px) and (max-width: 991px) and (prefers-reduced-motion: no-preference) {
      .euiSideNav-isOpenMobile .euiSideNav__contentMobile-m {
        transition: all 250ms cubic-bezier(0.694, 0.0482, 0.335, 1); } }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .euiSideNav__contentMobile-l {
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    padding: 0 24px; }
    .euiSideNav-isOpenMobile .euiSideNav__contentMobile-l {
      visibility: visible;
      opacity: 1;
      padding: 24px;
      max-height: 5000px;
      /* 1 */ } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) and (prefers-reduced-motion: no-preference) {
      .euiSideNav-isOpenMobile .euiSideNav__contentMobile-l {
        transition: all 250ms cubic-bezier(0.694, 0.0482, 0.335, 1); } }

@media only screen and (min-width: 1200px) {
  .euiSideNav__contentMobile-xl {
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    padding: 0 24px; }
    .euiSideNav-isOpenMobile .euiSideNav__contentMobile-xl {
      visibility: visible;
      opacity: 1;
      padding: 24px;
      max-height: 5000px;
      /* 1 */ } }
    @media only screen and (min-width: 1200px) and (prefers-reduced-motion: no-preference) {
      .euiSideNav-isOpenMobile .euiSideNav__contentMobile-xl {
        transition: all 250ms cubic-bezier(0.694, 0.0482, 0.335, 1); } }

/**
 * 1. Text-align defaults to center, so we have to override that.
 * 2. Color the text at the item level and then have the button inherit so overrides are easier
 * 3. Enable ellipsis overflow to work (https://css-tricks.com/flexbox-truncated-text/)
 * 4. Restrict the underline to the button __label so it doesn't affect other components that might live within
 */
.euiSideNavItemButton {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  text-align: left;
  /* 1 */
  display: block;
  width: 100%;
  padding: 2px 0;
  color: inherit;
  /* 2 */ }
  .euiSideNavItemButton.euiSideNavItemButton--isClickable:not(:disabled):hover {
    cursor: pointer; }
  .euiSideNavItemButton.euiSideNavItemButton--isClickable:not(:disabled):hover .euiSideNavItemButton__label, .euiSideNavItemButton.euiSideNavItemButton--isClickable:not(:disabled):focus .euiSideNavItemButton__label {
    text-decoration: underline;
    /* 4 */ }
  .euiSideNavItemButton.euiSideNavItemButton-isSelected {
    color: #006bb8;
    font-weight: 700; }
    .euiSideNavItemButton.euiSideNavItemButton-isSelected .euiSideNavItemButton__label {
      text-decoration: underline;
      /* 4 */ }
  .euiSideNavItemButton:disabled {
    cursor: not-allowed;
    text-decoration: none;
    color: #a2abba; }

.euiSideNavItemButton__content {
  display: flex;
  align-items: center; }

.euiSideNavItemButton__icon {
  margin-right: 8px; }

.euiSideNavItemButton__labelContainer {
  min-width: 0;
  /* 3 */ }

.euiSideNavItemButton__label {
  flex-grow: 1; }

.euiSideNavItemButton__label--truncated {
  max-width: 100%;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important; }

.euiSideNavItem--root {
  /**
   * 1. Create padding around focus area without indenting the item itself.
   */ }
  .euiSideNavItem--root.euiSideNavItem--rootIcon > .euiSideNavItem__items {
    margin-left: 24px; }
  .euiSideNavItem--root > .euiSideNavItemButton {
    margin-bottom: 8px;
    padding: 0;
    padding-left: 8px;
    /* 1 */
    padding-right: 8px;
    /* 1 */
    margin-left: -8px;
    /* 1 */
    width: calc(100% + 16px);
    /* 1 */ }
    .euiSideNavItem--root > .euiSideNavItemButton .euiSideNavItemButton__label {
      overflow-wrap: break-word !important;
      word-break: break-word;
      color: #1a1c21;
      font-size: 16px;
      font-size: 1.14286rem;
      line-height: 1.71429rem;
      font-weight: 700;
      color: inherit; }
  .euiSideNavItem--root > .euiSideNavItem__items {
    position: static;
    margin-left: 0; }
    .euiSideNavItem--root > .euiSideNavItem__items:after {
      display: none; }
  .euiSideNavItem--root + .euiSideNavItem--root {
    margin-top: 32px; }

.euiSideNavItem--trunk {
  color: #1a1c21;
  /* 2 */
  /**
   * 1. Create padding around focus area without indenting the item itself.
   */ }
  .euiSideNavItem--trunk > .euiSideNavItemButton {
    padding-left: 8px;
    /* 1 */
    padding-right: 8px;
    /* 1 */
    margin-left: -8px;
    /* 1 */
    width: calc(100% + 16px);
    /* 1 */ }
  .euiSideNavItem--trunk > .euiSideNavItem__items {
    margin-left: 8px;
    width: 100%; }

.euiSideNavItem--branch {
  /**
  * 1. Draw the vertical line to group an expanded item's child items together.
  */
  position: relative;
  color: #646a77;
  /* 2 */
  /**
   * 2. Absolutely position the horizontal tick connecting the item to the vertical line.
   */ }
  .euiSideNavItem--branch::after {
    /* 1 */
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    width: 1px;
    background: #D3DAE6;
    left: 0; }
  .euiSideNavItem--branch:last-of-type::after {
    height: 12px; }
  .euiSideNavItem--branch > .euiSideNavItemButton {
    position: relative;
    /* 2 */
    padding-left: 8px;
    padding-right: 8px;
    /* 2 */ }
    .euiSideNavItem--branch > .euiSideNavItemButton:after {
      position: absolute;
      /* 2 */
      content: '';
      top: 12px;
      left: 0;
      width: 4px;
      height: 1px;
      background: #D3DAE6; }
  .euiSideNavItem--branch > .euiSideNavItem__items {
    margin-left: 16px; }

.euiSideNavItem--emphasized {
  background: rgba(211, 218, 230, 0.3);
  color: #1a1c21;
  box-shadow: 100px 0 0 0 rgba(211, 218, 230, 0.3), -100px 0 0 0 rgba(211, 218, 230, 0.3); }
  .euiSideNavItem--emphasized > .euiSideNavItemButton {
    font-weight: 700; }
  .euiSideNavItem--emphasized .euiSideNavItem--emphasized {
    background: transparent;
    box-shadow: none; }

.euiSearchBar__searchHolder {
  min-width: 200px; }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .euiSearchBar__filtersHolder {
    max-width: calc(100% - 16px); } }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .euiSearchBar__filtersHolder {
    max-width: calc(100% - 16px); } }

@media only screen and (min-width: 1200px) {
  .euiSearchBar__filtersHolder {
    max-width: calc(100% - 16px); } }

.euiSelectable {
  display: flex;
  flex-direction: column; }

.euiSelectable-fullHeight {
  height: 100%; }

.euiSelectableList:focus-within {
  outline: 2px solid currentColor; }
  .euiSelectableList:focus-within:focus-visible {
    outline-style: auto; }
  .euiSelectableList:focus-within:not(:focus-visible) {
    outline: none; }

.euiSelectableList-fullHeight {
  flex-grow: 1; }

.euiSelectableList-bordered {
  overflow: hidden;
  border: 1px solid #D3DAE6;
  border-radius: 6px; }

.euiSelectableList__list {
  -webkit-mask-image: linear-gradient(to bottom, rgba(255, 0, 0, 0.1) 0%, red 7.5px, red calc(100% - 7.5px), rgba(255, 0, 0, 0.1) 100%);
          mask-image: linear-gradient(to bottom, rgba(255, 0, 0, 0.1) 0%, red 7.5px, red calc(100% - 7.5px), rgba(255, 0, 0, 0.1) 100%);
  scrollbar-color: rgba(105, 112, 125, 0.5) transparent;
  scrollbar-width: thin; }
  .euiSelectableList__list::-webkit-scrollbar {
    width: 16px;
    height: 16px; }
  .euiSelectableList__list::-webkit-scrollbar-thumb {
    background-color: rgba(105, 112, 125, 0.5);
    background-clip: content-box;
    border-radius: 16px;
    border: 6px solid transparent; }
  .euiSelectableList__list::-webkit-scrollbar-corner, .euiSelectableList__list::-webkit-scrollbar-track {
    background-color: transparent; }

.euiSelectableList__groupLabel {
  overflow-wrap: break-word !important;
  word-break: break-word;
  color: #1a1c21;
  font-size: 12px;
  font-size: 0.85714rem;
  line-height: 1.14286rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eef2f7;
  padding: 4px 12px; }

.euiSelectableListItem {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  display: inline-flex;
  width: 100%;
  text-align: left;
  cursor: pointer;
  overflow: hidden; }
  .euiSelectableListItem:not(:last-of-type) {
    border-bottom: 1px solid #eef2f7; }
  .euiSelectableListItem-isFocused:not([aria-disabled='true']), .euiSelectableListItem:hover:not([aria-disabled='true']) {
    color: #0071c2;
    background-color: rgba(0, 119, 204, 0.1); }
    .euiSelectableListItem-isFocused:not([aria-disabled='true']) .euiSelectableListItem__text, .euiSelectableListItem:hover:not([aria-disabled='true']) .euiSelectableListItem__text {
      text-decoration: underline; }
  .euiSelectableListItem[aria-disabled='true'] {
    color: #98A2B3;
    cursor: not-allowed; }
  .euiSelectableListItem--paddingSmall .euiSelectableListItem__content {
    padding: 4px 12px; }

.euiSelectableListItem__content {
  width: 100%;
  display: flex;
  align-items: center; }

.euiSelectableListItem__icon,
.euiSelectableListItem__prepend {
  margin-right: 12px;
  flex-shrink: 0; }

.euiSelectableListItem__append {
  margin-left: 12px;
  flex-shrink: 0; }

.euiSelectableListItem__text {
  flex-grow: 1; }
  .euiSelectableListItem__text--truncate {
    max-width: 100%;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important; }

/**
  * 1. Prevent really long input from overflowing the container.
  */
.euiSelectableMessage {
  padding: 8px;
  text-align: center;
  word-wrap: break-word;
  /* 1 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.euiSelectableMessage--bordered {
  overflow: hidden;
  border: 1px solid #D3DAE6;
  border-radius: 6px; }

.euiHeader--dark .euiSelectableTemplateSitewide .euiFormControlLayout {
  background-color: transparent; }
  .euiHeader--dark .euiSelectableTemplateSitewide .euiFormControlLayout--group,
  .euiHeader--dark .euiSelectableTemplateSitewide .euiFormControlLayout input {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3); }
  .euiHeader--dark .euiSelectableTemplateSitewide .euiFormControlLayout:not(:focus-within) {
    color: #FFF; }
    .euiHeader--dark .euiSelectableTemplateSitewide .euiFormControlLayout:not(:focus-within) input {
      color: inherit;
      background-color: transparent; }
      .euiHeader--dark .euiSelectableTemplateSitewide .euiFormControlLayout:not(:focus-within) input::-moz-placeholder {
        color: #bdc0c6;
        opacity: 1; }
      .euiHeader--dark .euiSelectableTemplateSitewide .euiFormControlLayout:not(:focus-within) input:-ms-input-placeholder {
        color: #bdc0c6;
        opacity: 1; }
      .euiHeader--dark .euiSelectableTemplateSitewide .euiFormControlLayout:not(:focus-within) input::placeholder {
        color: #bdc0c6;
        opacity: 1; }
    .euiHeader--dark .euiSelectableTemplateSitewide .euiFormControlLayout:not(:focus-within) .euiFormControlLayout__append {
      background-color: transparent;
      color: inherit; }

.euiSelectableTemplateSitewide__listItem .euiSelectableListItem__text {
  text-decoration: none !important; }

.euiSelectableTemplateSitewide__listItem[class*='-isFocused']:not([aria-disabled='true']) .euiSelectableTemplateSitewide__listItemTitle, .euiSelectableTemplateSitewide__listItem:hover:not([aria-disabled='true']) .euiSelectableTemplateSitewide__listItemTitle {
  text-decoration: underline; }

.euiSelectableTemplateSitewide__optionMetasList {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #69707D; }

.euiSelectableTemplateSitewide__optionMeta:not(:last-of-type)::after {
  content: '•';
  margin: 0 4px;
  color: #69707D; }

.euiSelectableTemplateSitewide__optionMeta--application {
  color: #4e779c;
  font-weight: 500; }

.euiSelectableTemplateSitewide__optionMeta--deployment {
  color: #3b7d6a;
  font-weight: 500; }

.euiSelectableTemplateSitewide__optionMeta--article {
  color: #8365a6;
  font-weight: 500; }

.euiSelectableTemplateSitewide__optionMeta--case {
  color: #bc533e;
  font-weight: 500; }

.euiSelectableTemplateSitewide__optionMeta--platform {
  color: #807234;
  font-weight: 500; }

.euiStepNumber {
  width: 32px;
  height: 32px;
  display: inline-block;
  line-height: 32px;
  border-radius: 32px;
  text-align: center;
  color: #FFF;
  background-color: #07C;
  font-size: 14px;
  font-weight: 500; }
  .euiStepNumber .euiStepNumber__icon {
    vertical-align: middle;
    position: relative;
    top: -2px; }
  .euiStepNumber--small {
    width: 24px;
    height: 24px;
    display: inline-block;
    line-height: 24px;
    border-radius: 24px;
    text-align: center;
    color: #FFF;
    background-color: #07C;
    font-size: 12px;
    font-weight: 500; }
    .euiStepNumber--small .euiStepNumber__icon {
      top: -1px; }
  .euiStepNumber--complete .euiStepNumber__icon {
    stroke: currentColor;
    stroke-width: .5px; }
  @media screen and (prefers-reduced-motion: no-preference) {
    .euiStepNumber--complete, .euiStepNumber--warning, .euiStepNumber--danger {
      animation: euiGrow 150ms cubic-bezier(0.34, 1.61, 0.7, 1); } }
  .euiStepNumber--loading {
    background: transparent; }
  .euiStepNumber--warning {
    color: #8a6a0a;
    background-color: #fff9e8; }
  .euiStepNumber--danger {
    color: #BD271E;
    background-color: #f8e9e9; }
  .euiStepNumber--disabled {
    color: #646a77;
    background-color: #f0f1f2; }
  .euiStepNumber--incomplete {
    color: #646a77;
    background-color: #f0f1f2; }

/**
 * 1. Ensure that the step number vertically aligns with the title text
 */
.euiStep:not(:last-of-type) {
  background-image: linear-gradient(to right, transparent 0, transparent 15px, #D3DAE6 15px, #D3DAE6 17px, transparent 17px, transparent 100%);
  background-repeat: no-repeat;
  background-position: left 40px; }

.euiStep--small:not(:last-of-type) {
  background-position: left -4px top 32px; }

.euiStep--small .euiStep__content {
  padding-left: 28px;
  margin-left: 12px; }

.euiStep__titleWrapper {
  display: flex; }

.euiStep__circle {
  flex-shrink: 0;
  margin-right: 16px;
  vertical-align: top;
  /* 1 */ }

.euiStep__content {
  padding: 16px 16px 32px;
  margin: 8px 0;
  padding-left: 32px;
  margin-left: 16px; }

.euiSubSteps {
  padding: 16px;
  background-color: #F5F7FA;
  margin-bottom: 16px; }
  .euiSubSteps > *:last-child {
    margin-bottom: 0; }
  .euiText .euiSubSteps ol,
  .euiSubSteps ol {
    list-style-type: lower-alpha; }

/**
 * 1. Ensure the connecting lines stays behind the number
 * 2. Make each step the same width
 * 3. Make the content of each step align to the top, even if the steps are of varying heights,
 *    e.g. due to some of their titles wrapping to multiple lines
 */
.euiStepsHorizontal {
  display: flex;
  align-items: stretch;
  background: rgba(245, 247, 250, 0.5); }

.euiStepHorizontal__item {
  flex-grow: 1;
  /* 2 */
  flex-basis: 0%;
  /* 2 */ }
  .euiStepHorizontal__item:first-of-type > .euiStepHorizontal::before,
  .euiStepHorizontal__item:last-of-type > .euiStepHorizontal::after {
    display: none; }

.euiStepHorizontal {
  padding: 24px 16px 16px;
  display: flex;
  /* 3 */
  flex-direction: column;
  /* 3 */
  align-items: center;
  /* 3 */
  justify-content: flex-start;
  /* 3 */
  cursor: pointer;
  position: relative;
  width: 100%; }
  .euiStepHorizontal:focus:not(.euiStepHorizontal-isDisabled) .euiStepHorizontal__title, .euiStepHorizontal:hover:not(.euiStepHorizontal-isDisabled) .euiStepHorizontal__title {
    text-decoration: underline; }
  .euiStepHorizontal:focus:not(.euiStepHorizontal-isDisabled) {
    outline: none; }
    .euiStepHorizontal:focus:not(.euiStepHorizontal-isDisabled) .euiStepHorizontal__number {
      outline: 2px solid currentColor; }
      .euiStepHorizontal:focus:not(.euiStepHorizontal-isDisabled) .euiStepHorizontal__number:focus-visible {
        outline-style: auto; }
      .euiStepHorizontal:focus:not(.euiStepHorizontal-isDisabled) .euiStepHorizontal__number:not(:focus-visible) {
        outline: none; }
  .euiStepHorizontal.euiStepHorizontal-isDisabled {
    cursor: not-allowed; }
  .euiStepHorizontal::before, .euiStepHorizontal::after {
    content: '';
    position: absolute;
    width: calc(50% - 16px);
    height: 1px;
    top: 40px;
    background-color: #D3DAE6;
    z-index: 0;
    /* 1 */ }
  .euiStepHorizontal::before {
    left: 0; }
  .euiStepHorizontal::after {
    right: 0; }

.euiStepHorizontal__number {
  position: relative;
  /* 1 */
  z-index: 1;
  /* 1 */
  transition: all 150ms ease-in-out; }

.euiStepHorizontal__title {
  overflow-wrap: break-word !important;
  word-break: break-word;
  color: #1a1c21;
  font-size: 16px;
  font-size: 1.14286rem;
  line-height: 1.71429rem;
  font-weight: 700;
  margin-top: 8px;
  font-weight: 400;
  text-align: center; }
  .euiStepHorizontal-isDisabled .euiStepHorizontal__title {
    color: #69707D; }

.euiStepHorizontal-isComplete::before, .euiStepHorizontal-isComplete::after {
  height: 2px;
  background-color: #07C; }

.euiStepHorizontal-isSelected .euiStepHorizontal__number:not([class*='danger']):not([class*='warning']):not([class*='loading']) {
  box-shadow: 0 0.8px 0.8px rgba(20, 116, 184, 0.04), 0 2.3px 2px rgba(20, 116, 184, 0.03); }

.euiStepHorizontal-isSelected::before {
  height: 2px;
  background-color: #07C; }

@media only screen and (max-width: 574px) {
  .euiStepHorizontal {
    padding-top: 16px; }
    .euiStepHorizontal::before, .euiStepHorizontal::after {
      top: 32px; }
  .euiStepHorizontal__title {
    display: none; } }

@media only screen and (min-width: 575px) and (max-width: 767px) {
  .euiStepHorizontal {
    padding-top: 16px; }
    .euiStepHorizontal::before, .euiStepHorizontal::after {
      top: 32px; }
  .euiStepHorizontal__title {
    display: none; } }

.euiSuggestItem {
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  line-height: 16px;
  color: #343741;
  flex: 1 1 100%;
  max-width: 100%; }
  .euiSuggestItem--truncate .euiSuggestItem__label,
  .euiSuggestItem--truncate .euiSuggestItem__description {
    max-width: 100%;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important; }

button.euiSuggestItem {
  width: 100%;
  text-align: left; }
  button.euiSuggestItem:hover, button.euiSuggestItem:focus {
    cursor: pointer;
    background-color: rgba(0, 119, 204, 0.1); }
    button.euiSuggestItem:hover .euiSuggestItem__label, button.euiSuggestItem:focus .euiSuggestItem__label {
      text-decoration: underline; }

.euiSuggestItem__type--tint0 {
  background-color: #e0f1ed;
  color: #357160; }

.euiSuggestItem__type--tint1 {
  background-color: #e2ebf4;
  color: #466b8d; }

.euiSuggestItem__type--tint2 {
  background-color: #f7e2e9;
  color: #a34a68; }

.euiSuggestItem__type--tint3 {
  background-color: #ebe5f2;
  color: #765b96; }

.euiSuggestItem__type--tint4 {
  background-color: #f5ebf0;
  color: #865f74; }

.euiSuggestItem__type--tint5 {
  background-color: #f8f3e1;
  color: #7a6c31; }

.euiSuggestItem__type--tint6 {
  background-color: #f2efea;
  color: #756a56; }

.euiSuggestItem__type--tint7 {
  background-color: #f8eade;
  color: #915c2e; }

.euiSuggestItem__type--tint8 {
  background-color: #f0e3e1;
  color: #92564a; }

.euiSuggestItem__type--tint9 {
  background-color: #fbe3df;
  color: #aa4b38; }

.euiSuggestItem__type--tint10 {
  background-color: #e4e5e8;
  color: #5f6571; }

.euiSuggestItem__type {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
  width: 32px;
  min-height: 32px;
  align-self: stretch; }

.euiSuggestItem__label,
.euiSuggestItem__description {
  overflow-wrap: break-word !important;
  word-break: break-word;
  display: inline-block;
  padding: 8px;
  flex-grow: 1; }

.euiSuggestItem__label {
  font-family: "Roboto Mono", Consolas, Menlo, Courier, monospace; }
  .euiSuggestItem__label.euiSuggestItem__label--width20 {
    flex-basis: calc(20% - 16px);
    min-width: calc(20% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width21 {
    flex-basis: calc(21% - 16px);
    min-width: calc(21% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width22 {
    flex-basis: calc(22% - 16px);
    min-width: calc(22% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width23 {
    flex-basis: calc(23% - 16px);
    min-width: calc(23% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width24 {
    flex-basis: calc(24% - 16px);
    min-width: calc(24% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width25 {
    flex-basis: calc(25% - 16px);
    min-width: calc(25% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width26 {
    flex-basis: calc(26% - 16px);
    min-width: calc(26% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width27 {
    flex-basis: calc(27% - 16px);
    min-width: calc(27% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width28 {
    flex-basis: calc(28% - 16px);
    min-width: calc(28% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width29 {
    flex-basis: calc(29% - 16px);
    min-width: calc(29% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width30 {
    flex-basis: calc(30% - 16px);
    min-width: calc(30% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width31 {
    flex-basis: calc(31% - 16px);
    min-width: calc(31% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width32 {
    flex-basis: calc(32% - 16px);
    min-width: calc(32% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width33 {
    flex-basis: calc(33% - 16px);
    min-width: calc(33% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width34 {
    flex-basis: calc(34% - 16px);
    min-width: calc(34% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width35 {
    flex-basis: calc(35% - 16px);
    min-width: calc(35% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width36 {
    flex-basis: calc(36% - 16px);
    min-width: calc(36% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width37 {
    flex-basis: calc(37% - 16px);
    min-width: calc(37% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width38 {
    flex-basis: calc(38% - 16px);
    min-width: calc(38% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width39 {
    flex-basis: calc(39% - 16px);
    min-width: calc(39% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width40 {
    flex-basis: calc(40% - 16px);
    min-width: calc(40% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width41 {
    flex-basis: calc(41% - 16px);
    min-width: calc(41% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width42 {
    flex-basis: calc(42% - 16px);
    min-width: calc(42% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width43 {
    flex-basis: calc(43% - 16px);
    min-width: calc(43% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width44 {
    flex-basis: calc(44% - 16px);
    min-width: calc(44% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width45 {
    flex-basis: calc(45% - 16px);
    min-width: calc(45% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width46 {
    flex-basis: calc(46% - 16px);
    min-width: calc(46% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width47 {
    flex-basis: calc(47% - 16px);
    min-width: calc(47% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width48 {
    flex-basis: calc(48% - 16px);
    min-width: calc(48% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width49 {
    flex-basis: calc(49% - 16px);
    min-width: calc(49% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width50 {
    flex-basis: calc(50% - 16px);
    min-width: calc(50% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width51 {
    flex-basis: calc(51% - 16px);
    min-width: calc(51% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width52 {
    flex-basis: calc(52% - 16px);
    min-width: calc(52% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width53 {
    flex-basis: calc(53% - 16px);
    min-width: calc(53% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width54 {
    flex-basis: calc(54% - 16px);
    min-width: calc(54% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width55 {
    flex-basis: calc(55% - 16px);
    min-width: calc(55% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width56 {
    flex-basis: calc(56% - 16px);
    min-width: calc(56% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width57 {
    flex-basis: calc(57% - 16px);
    min-width: calc(57% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width58 {
    flex-basis: calc(58% - 16px);
    min-width: calc(58% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width59 {
    flex-basis: calc(59% - 16px);
    min-width: calc(59% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width60 {
    flex-basis: calc(60% - 16px);
    min-width: calc(60% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width61 {
    flex-basis: calc(61% - 16px);
    min-width: calc(61% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width62 {
    flex-basis: calc(62% - 16px);
    min-width: calc(62% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width63 {
    flex-basis: calc(63% - 16px);
    min-width: calc(63% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width64 {
    flex-basis: calc(64% - 16px);
    min-width: calc(64% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width65 {
    flex-basis: calc(65% - 16px);
    min-width: calc(65% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width66 {
    flex-basis: calc(66% - 16px);
    min-width: calc(66% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width67 {
    flex-basis: calc(67% - 16px);
    min-width: calc(67% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width68 {
    flex-basis: calc(68% - 16px);
    min-width: calc(68% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width69 {
    flex-basis: calc(69% - 16px);
    min-width: calc(69% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width70 {
    flex-basis: calc(70% - 16px);
    min-width: calc(70% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width71 {
    flex-basis: calc(71% - 16px);
    min-width: calc(71% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width72 {
    flex-basis: calc(72% - 16px);
    min-width: calc(72% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width73 {
    flex-basis: calc(73% - 16px);
    min-width: calc(73% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width74 {
    flex-basis: calc(74% - 16px);
    min-width: calc(74% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width75 {
    flex-basis: calc(75% - 16px);
    min-width: calc(75% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width76 {
    flex-basis: calc(76% - 16px);
    min-width: calc(76% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width77 {
    flex-basis: calc(77% - 16px);
    min-width: calc(77% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width78 {
    flex-basis: calc(78% - 16px);
    min-width: calc(78% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width79 {
    flex-basis: calc(79% - 16px);
    min-width: calc(79% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width80 {
    flex-basis: calc(80% - 16px);
    min-width: calc(80% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width81 {
    flex-basis: calc(81% - 16px);
    min-width: calc(81% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width82 {
    flex-basis: calc(82% - 16px);
    min-width: calc(82% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width83 {
    flex-basis: calc(83% - 16px);
    min-width: calc(83% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width84 {
    flex-basis: calc(84% - 16px);
    min-width: calc(84% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width85 {
    flex-basis: calc(85% - 16px);
    min-width: calc(85% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width86 {
    flex-basis: calc(86% - 16px);
    min-width: calc(86% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width87 {
    flex-basis: calc(87% - 16px);
    min-width: calc(87% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width88 {
    flex-basis: calc(88% - 16px);
    min-width: calc(88% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width89 {
    flex-basis: calc(89% - 16px);
    min-width: calc(89% - 16px); }
  .euiSuggestItem__label.euiSuggestItem__label--width90 {
    flex-basis: calc(90% - 16px);
    min-width: calc(90% - 16px); }
  .euiSuggestItem__label--expand {
    flex-basis: auto; }

.euiSuggestItem__description {
  color: #69707D;
  padding-top: 9px;
  flex-basis: auto;
  align-self: baseline; }
  .euiSuggestItem__description.euiSuggestItem__description--wrap {
    overflow-wrap: break-word !important;
    word-break: break-word;
    white-space: normal !important; }

.euiSuggestItemOption[class*='isFocused'] .euiSuggestItem__label, .euiSuggestItemOption:hover:not([aria-disabled='true']) .euiSuggestItem__label, .euiSuggestItemOption:focus .euiSuggestItem__label {
  text-decoration: underline; }

.euiSuggestInput__statusIcon {
  background-color: transparent !important; }

.euiTable {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  font-feature-settings: "calt" 1, "kern" 1, "liga" 1, "tnum" 1;
  width: 100%;
  table-layout: fixed;
  border: none;
  border-collapse: collapse;
  background-color: #FFF; }
  .euiTable.euiTable--auto {
    table-layout: auto; }

.euiTableCaption {
  position: relative; }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .euiTable--compressed .euiTableCellContent {
    font-size: 12px;
    font-size: 0.85714rem;
    line-height: 1.14286rem;
    padding: 4px; } }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .euiTable--compressed .euiTableCellContent {
    font-size: 12px;
    font-size: 0.85714rem;
    line-height: 1.14286rem;
    padding: 4px; } }

@media only screen and (min-width: 1200px) {
  .euiTable--compressed .euiTableCellContent {
    font-size: 12px;
    font-size: 0.85714rem;
    line-height: 1.14286rem;
    padding: 4px; } }

.euiTableFooterCell,
.euiTableHeaderCell {
  vertical-align: middle;
  border-top: 1px solid #D3DAE6;
  border-bottom: 1px solid #D3DAE6;
  font-weight: inherit;
  text-align: left;
  overflow-wrap: break-word !important;
  word-break: break-word;
  color: #1a1c21;
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  font-weight: 700;
  font-weight: 500;
  border: none; }
  .euiTableFooterCell .euiTableHeaderButton,
  .euiTableHeaderCell .euiTableHeaderButton {
    text-align: left;
    font-weight: 500; }
  .euiTableFooterCell .euiTableCellContent__text,
  .euiTableHeaderCell .euiTableCellContent__text {
    font-size: 12px;
    font-size: 0.85714rem;
    line-height: 1.14286rem;
    font-weight: 600; }

.euiTableHeaderButton {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  color: inherit;
  width: 100%; }
  .euiTableHeaderButton:hover .euiTableCellContent__text, .euiTableHeaderButton:focus .euiTableCellContent__text {
    text-decoration: underline;
    color: #07C; }
  .euiTableHeaderButton:hover .euiTableSortIcon, .euiTableHeaderButton:focus .euiTableSortIcon {
    fill: #07C; }

.euiTableSortIcon {
  margin-left: 4px;
  flex-shrink: 0; }
  .euiTableHeaderButton-isSorted .euiTableSortIcon {
    fill: #1a1c21; }

.euiTableHeaderCellCheckbox {
  vertical-align: middle;
  border-top: 1px solid #D3DAE6;
  border-bottom: 1px solid #D3DAE6;
  font-weight: inherit;
  text-align: left;
  width: 32px;
  vertical-align: middle;
  border: none; }

.euiTableRow:hover {
  background-color: #fafbfd; }

.euiTableRow.euiTableRow-isClickable:hover {
  background-color: rgba(0, 119, 204, 0.05);
  cursor: pointer; }

.euiTableRow.euiTableRow-isClickable:focus {
  background-color: rgba(0, 119, 204, 0.1); }

.euiTableRow.euiTableRow-isExpandedRow {
  background-color: #fafbfd; }
  .euiTableRow.euiTableRow-isExpandedRow.euiTableRow-isSelectable .euiTableCellContent {
    padding-left: 40px; }

.euiTableRow.euiTableRow-isSelected {
  background-color: rgba(227, 240, 249, 0.37); }
  .euiTableRow.euiTableRow-isSelected + .euiTableRow.euiTableRow-isExpandedRow .euiTableRowCell {
    background-color: rgba(227, 240, 249, 0.37); }
  .euiTableRow.euiTableRow-isSelected:hover,
  .euiTableRow.euiTableRow-isSelected:hover + .euiTableRow.euiTableRow-isExpandedRow .euiTableRowCell {
    background-color: rgba(0, 119, 204, 0.1); }

.euiTableRowCell {
  vertical-align: middle;
  border-top: 1px solid #D3DAE6;
  border-bottom: 1px solid #D3DAE6;
  font-weight: inherit;
  text-align: left;
  color: #343741; }
  .euiTableRowCell--top {
    vertical-align: top; }
  .euiTableRowCell--bottom {
    vertical-align: bottom; }
  .euiTableRowCell--baseline {
    vertical-align: baseline; }
  .euiTableRowCell.euiTableRowCell--isMobileHeader {
    display: none; }

.euiTableRowCellCheckbox {
  vertical-align: middle;
  border-top: 1px solid #D3DAE6;
  border-bottom: 1px solid #D3DAE6;
  font-weight: inherit;
  text-align: left;
  width: 32px;
  vertical-align: middle; }

.euiTableFooterCell {
  background-color: #F5F7FA; }

/**
 * 1. Vertically align all children.
 * 2. The padding on this div allows the ellipsis to show if the content is truncated. If
 *    the padding was on the cell, the ellipsis would be cropped.
 * 4. Prevent very long single words (e.g. the name of a field in a document) from overflowing
 *    the cell.
 */
.euiTableCellContent {
  overflow: hidden;
  /* 4 */
  display: flex;
  align-items: center;
  /* 1 */
  padding: 8px;
  /* 2 */ }

.euiTableCellContent__text {
  overflow-wrap: break-word !important;
  word-break: break-word;
  /* 4 */
  min-width: 0;
  text-overflow: ellipsis; }

.euiTableCellContent--alignRight {
  justify-content: flex-end;
  text-align: right; }

.euiTableCellContent--alignCenter {
  justify-content: center;
  text-align: center; }

.euiTableHeaderCell,
.euiTableFooterCell,
.euiTableCellContent--truncateText {
  max-width: 100%;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important; }
  .euiTableHeaderCell .euiTableCellContent__text,
  .euiTableFooterCell .euiTableCellContent__text,
  .euiTableCellContent--truncateText .euiTableCellContent__text {
    overflow: hidden; }

.euiTableCellContent--overflowingContent {
  overflow: visible;
  white-space: normal;
  word-break: break-word; }

.euiTableCellContent--showOnHover > *:not(:first-child) {
  margin-left: 8px; }

.euiTableRow-hasActions .euiTableCellContent--showOnHover .euiTableCellContent__hoverItem {
  flex-shrink: 0;
  opacity: .7;
  filter: grayscale(100%);
  transition: opacity 250ms cubic-bezier(0.694, 0.0482, 0.335, 1), filter 250ms cubic-bezier(0.694, 0.0482, 0.335, 1); }

.euiTableRow-hasActions .euiTableCellContent--showOnHover .expandedItemActions__completelyHide,
.euiTableRow-hasActions .euiTableCellContent--showOnHover .expandedItemActions__completelyHide:disabled,
.euiTableRow-hasActions .euiTableCellContent--showOnHover .expandedItemActions__completelyHide:disabled:hover,
.euiTableRow-hasActions .euiTableCellContent--showOnHover .expandedItemActions__completelyHide:disabled:focus,
.euiTableRow:hover .euiTableRow-hasActions .euiTableCellContent--showOnHover .expandedItemActions__completelyHide:disabled {
  filter: grayscale(0%);
  opacity: 0; }

.euiTableRow-hasActions:hover .euiTableCellContent--showOnHover .euiTableCellContent__hoverItem:not(:disabled), .euiTableRow-hasActions:hover .euiTableCellContent--showOnHover .euiTableCellContent__hoverItem:not(:disabled):hover, .euiTableRow-hasActions:hover .euiTableCellContent--showOnHover .euiTableCellContent__hoverItem:not(:disabled):focus {
  opacity: 1;
  filter: grayscale(0%); }

.euiTableRow-isExpandedRow .euiTableCellContent {
  overflow: hidden;
  animation: 250ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards growExpandedRow; }

@keyframes growExpandedRow {
  0% {
    max-height: 0; }
  99% {
    max-height: 100vh; }
  100% {
    max-height: unset; } }

.euiTableRowCell__mobileHeader {
  display: none; }

@media only screen and (max-width: 574px) {
  .euiTableRowCell--hideForMobile {
    display: none !important; } }

@media only screen and (min-width: 575px) and (max-width: 767px) {
  .euiTableRowCell--hideForMobile {
    display: none !important; } }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .euiTableRowCell--hideForDesktop {
    display: none !important; } }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .euiTableRowCell--hideForDesktop {
    display: none !important; } }

@media only screen and (min-width: 1200px) {
  .euiTableRowCell--hideForDesktop {
    display: none !important; } }

@media only screen and (max-width: 574px) {
  .euiTable.euiTable--responsive thead {
    display: none; }
  .euiTable.euiTable--responsive tfoot {
    display: none; }
  .euiTable.euiTable--responsive .euiTableRowCell__mobileHeader {
    max-width: 100%;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: 9.625px;
    font-size: 0.6875rem;
    display: block;
    color: #69707D;
    padding: 8px;
    padding-bottom: 0;
    margin-bottom: -8px;
    min-height: 24px; }
    .euiTableRowCell:only-child .euiTable.euiTable--responsive .euiTableRowCell__mobileHeader {
      min-height: 0; }
  .euiTable.euiTable--responsive .euiTableRowCell--enlargeForMobile {
    font-size: 16px;
    font-size: 1.14286rem;
    line-height: 1.71429rem; }
  .euiTable.euiTable--responsive .euiTableRow {
    flex-grow: 1; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--flexGrowZero {
      flex-grow: 0; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--hasShadow {
      box-shadow: 0 0.9px 4px -1px rgba(0, 0, 0, 0.08), 0 2.6px 8px -1px rgba(0, 0, 0, 0.06), 0 5.7px 12px -1px rgba(0, 0, 0, 0.05), 0 15px 15px -1px rgba(0, 0, 0, 0.04); }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--hasBorder {
      border: 1px solid #D3DAE6;
      box-shadow: none; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--isClickable {
      transition: all 150ms cubic-bezier(0.694, 0.0482, 0.335, 1); }
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow--isClickable:enabled {
        display: block;
        width: 100%;
        text-align: left; }
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow--isClickable:hover, .euiTable.euiTable--responsive .euiTableRow.euiTableRow--isClickable:focus {
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1), 0 3.6px 13px rgba(0, 0, 0, 0.07), 0 8.4px 23px rgba(0, 0, 0, 0.06), 0 23px 35px rgba(0, 0, 0, 0.05);
        transform: translateY(-2px);
        cursor: pointer; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--borderRadiusNone {
      border-radius: 0; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--borderRadiusMedium {
      border-radius: 6px; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--transparent {
      background-color: transparent; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--plain {
      background-color: #FFF; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--subdued {
      background-color: #fafbfd; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--accent {
      background-color: #feedf5; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--primary {
      background-color: #e6f1fa; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--success {
      background-color: #e6f9f7; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--warning {
      background-color: #fff9e8; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--danger {
      background-color: #f8e9e9; }
  .euiTable.euiTable--responsive .euiTableRow {
    box-shadow: 0 0.7px 1.4px rgba(0, 0, 0, 0.07), 0 1.9px 4px rgba(0, 0, 0, 0.05), 0 4.5px 10px rgba(0, 0, 0, 0.05);
    background-color: #FFF;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    padding: 8px;
    margin-bottom: 8px; }
    .euiTable.euiTable--responsive .euiTableRow:hover {
      background-color: #FFF; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandable, .euiTable.euiTable--responsive .euiTableRow.euiTableRow-hasActions {
      background-image: linear-gradient(to right, rgba(152, 162, 179, 0.1) 0, rgba(152, 162, 179, 0.1) 1px, transparent 1px, transparent 100%);
      background-size: 40px 100%;
      background-position-x: right;
      background-repeat: no-repeat;
      padding-right: 40px;
      position: relative; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandable .euiTableRowCell--isExpander,
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-hasActions .euiTableRowCell--hasActions {
      min-width: 0;
      width: 24px;
      position: absolute;
      top: 16px;
      right: 8px; }
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandable .euiTableRowCell--isExpander::before,
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow-hasActions .euiTableRowCell--hasActions::before {
        display: none; }
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandable .euiTableRowCell--isExpander .euiTableCellContent,
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow-hasActions .euiTableRowCell--hasActions .euiTableCellContent {
        flex-direction: column;
        padding: 0; }
        .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandable .euiTableRowCell--isExpander .euiTableCellContent .euiLink,
        .euiTable.euiTable--responsive .euiTableRow.euiTableRow-hasActions .euiTableRowCell--hasActions .euiTableCellContent .euiLink {
          padding: 4px; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-hasActions.euiTableRow-isExpandable .euiTableRowCell--isExpander {
      top: auto;
      bottom: 16px;
      right: 0; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isSelectable {
      padding-left: 36px;
      position: relative; }
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isSelectable .euiTableRowCellCheckbox {
        position: absolute;
        left: 4px;
        top: 8px; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isSelected, .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isSelected:hover,
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isSelected + .euiTableRow.euiTableRow-isExpandedRow,
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isSelected:hover + .euiTableRow.euiTableRow-isExpandedRow .euiTableRowCell {
      background-color: rgba(227, 240, 249, 0.37); }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandedRow {
      background-image: linear-gradient(to right, rgba(152, 162, 179, 0.1) 0, rgba(152, 162, 179, 0.1) 1px, transparent 1px, transparent 100%);
      background-size: 40px 100%;
      background-position-x: right;
      background-repeat: no-repeat;
      box-shadow: 0 0.7px 1.4px rgba(0, 0, 0, 0.07), 0 1.9px 4px rgba(0, 0, 0, 0.05), 0 4.5px 10px rgba(0, 0, 0, 0.05);
      margin-top: -16px;
      position: relative;
      z-index: 2;
      border-top: none;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
      padding-left: 8px; }
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandedRow:hover {
        background-color: #FFF; }
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandedRow .euiTableRowCell {
        width: calc(100% - 40px); }
        .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandedRow .euiTableRowCell::before {
          display: none; }
  .euiTable.euiTable--responsive .euiTableRowCell {
    min-width: 50%;
    border: none; }
  .euiTable.euiTable--responsive .euiTableRowCellCheckbox {
    border: none; }
  .euiTable.euiTable--responsive .euiTableRow-hasActions .euiTableCellContent--showOnHover > * {
    margin-left: 0; }
  .euiTable.euiTable--responsive .euiTableRow-hasActions .euiTableCellContent--showOnHover .expandedItemActions__completelyHide {
    display: none; }
  .euiTable.euiTable--responsive .euiTableRow-hasActions .euiTableCellContent--showOnHover .euiTableCellContent__hoverItem {
    opacity: 1;
    filter: none;
    margin-left: 0;
    margin-bottom: 8px; }
  .euiTable.euiTable--responsive .euiTableCellContent--alignRight {
    justify-content: flex-start; }
  .euiTable.euiTable--responsive .euiTableCellContent--alignCenter {
    justify-content: flex-start; } }

@media only screen and (min-width: 575px) and (max-width: 767px) {
  .euiTable.euiTable--responsive thead {
    display: none; }
  .euiTable.euiTable--responsive tfoot {
    display: none; }
  .euiTable.euiTable--responsive .euiTableRowCell__mobileHeader {
    max-width: 100%;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: 9.625px;
    font-size: 0.6875rem;
    display: block;
    color: #69707D;
    padding: 8px;
    padding-bottom: 0;
    margin-bottom: -8px;
    min-height: 24px; }
    .euiTableRowCell:only-child .euiTable.euiTable--responsive .euiTableRowCell__mobileHeader {
      min-height: 0; }
  .euiTable.euiTable--responsive .euiTableRowCell--enlargeForMobile {
    font-size: 16px;
    font-size: 1.14286rem;
    line-height: 1.71429rem; }
  .euiTable.euiTable--responsive .euiTableRow {
    flex-grow: 1; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--flexGrowZero {
      flex-grow: 0; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--hasShadow {
      box-shadow: 0 0.9px 4px -1px rgba(0, 0, 0, 0.08), 0 2.6px 8px -1px rgba(0, 0, 0, 0.06), 0 5.7px 12px -1px rgba(0, 0, 0, 0.05), 0 15px 15px -1px rgba(0, 0, 0, 0.04); }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--hasBorder {
      border: 1px solid #D3DAE6;
      box-shadow: none; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--isClickable {
      transition: all 150ms cubic-bezier(0.694, 0.0482, 0.335, 1); }
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow--isClickable:enabled {
        display: block;
        width: 100%;
        text-align: left; }
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow--isClickable:hover, .euiTable.euiTable--responsive .euiTableRow.euiTableRow--isClickable:focus {
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1), 0 3.6px 13px rgba(0, 0, 0, 0.07), 0 8.4px 23px rgba(0, 0, 0, 0.06), 0 23px 35px rgba(0, 0, 0, 0.05);
        transform: translateY(-2px);
        cursor: pointer; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--borderRadiusNone {
      border-radius: 0; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--borderRadiusMedium {
      border-radius: 6px; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--transparent {
      background-color: transparent; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--plain {
      background-color: #FFF; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--subdued {
      background-color: #fafbfd; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--accent {
      background-color: #feedf5; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--primary {
      background-color: #e6f1fa; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--success {
      background-color: #e6f9f7; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--warning {
      background-color: #fff9e8; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow--danger {
      background-color: #f8e9e9; }
  .euiTable.euiTable--responsive .euiTableRow {
    box-shadow: 0 0.7px 1.4px rgba(0, 0, 0, 0.07), 0 1.9px 4px rgba(0, 0, 0, 0.05), 0 4.5px 10px rgba(0, 0, 0, 0.05);
    background-color: #FFF;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    padding: 8px;
    margin-bottom: 8px; }
    .euiTable.euiTable--responsive .euiTableRow:hover {
      background-color: #FFF; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandable, .euiTable.euiTable--responsive .euiTableRow.euiTableRow-hasActions {
      background-image: linear-gradient(to right, rgba(152, 162, 179, 0.1) 0, rgba(152, 162, 179, 0.1) 1px, transparent 1px, transparent 100%);
      background-size: 40px 100%;
      background-position-x: right;
      background-repeat: no-repeat;
      padding-right: 40px;
      position: relative; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandable .euiTableRowCell--isExpander,
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-hasActions .euiTableRowCell--hasActions {
      min-width: 0;
      width: 24px;
      position: absolute;
      top: 16px;
      right: 8px; }
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandable .euiTableRowCell--isExpander::before,
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow-hasActions .euiTableRowCell--hasActions::before {
        display: none; }
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandable .euiTableRowCell--isExpander .euiTableCellContent,
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow-hasActions .euiTableRowCell--hasActions .euiTableCellContent {
        flex-direction: column;
        padding: 0; }
        .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandable .euiTableRowCell--isExpander .euiTableCellContent .euiLink,
        .euiTable.euiTable--responsive .euiTableRow.euiTableRow-hasActions .euiTableRowCell--hasActions .euiTableCellContent .euiLink {
          padding: 4px; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-hasActions.euiTableRow-isExpandable .euiTableRowCell--isExpander {
      top: auto;
      bottom: 16px;
      right: 0; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isSelectable {
      padding-left: 36px;
      position: relative; }
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isSelectable .euiTableRowCellCheckbox {
        position: absolute;
        left: 4px;
        top: 8px; }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isSelected, .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isSelected:hover,
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isSelected + .euiTableRow.euiTableRow-isExpandedRow,
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isSelected:hover + .euiTableRow.euiTableRow-isExpandedRow .euiTableRowCell {
      background-color: rgba(227, 240, 249, 0.37); }
    .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandedRow {
      background-image: linear-gradient(to right, rgba(152, 162, 179, 0.1) 0, rgba(152, 162, 179, 0.1) 1px, transparent 1px, transparent 100%);
      background-size: 40px 100%;
      background-position-x: right;
      background-repeat: no-repeat;
      box-shadow: 0 0.7px 1.4px rgba(0, 0, 0, 0.07), 0 1.9px 4px rgba(0, 0, 0, 0.05), 0 4.5px 10px rgba(0, 0, 0, 0.05);
      margin-top: -16px;
      position: relative;
      z-index: 2;
      border-top: none;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
      padding-left: 8px; }
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandedRow:hover {
        background-color: #FFF; }
      .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandedRow .euiTableRowCell {
        width: calc(100% - 40px); }
        .euiTable.euiTable--responsive .euiTableRow.euiTableRow-isExpandedRow .euiTableRowCell::before {
          display: none; }
  .euiTable.euiTable--responsive .euiTableRowCell {
    min-width: 50%;
    border: none; }
  .euiTable.euiTable--responsive .euiTableRowCellCheckbox {
    border: none; }
  .euiTable.euiTable--responsive .euiTableRow-hasActions .euiTableCellContent--showOnHover > * {
    margin-left: 0; }
  .euiTable.euiTable--responsive .euiTableRow-hasActions .euiTableCellContent--showOnHover .expandedItemActions__completelyHide {
    display: none; }
  .euiTable.euiTable--responsive .euiTableRow-hasActions .euiTableCellContent--showOnHover .euiTableCellContent__hoverItem {
    opacity: 1;
    filter: none;
    margin-left: 0;
    margin-bottom: 8px; }
  .euiTable.euiTable--responsive .euiTableCellContent--alignRight {
    justify-content: flex-start; }
  .euiTable.euiTable--responsive .euiTableCellContent--alignCenter {
    justify-content: flex-start; } }

.euiTableHeaderMobile,
.euiTableHeaderCell--hideForDesktop {
  display: none; }

@media only screen and (max-width: 574px) {
  .euiTableHeaderMobile {
    display: flex;
    justify-content: flex-end;
    padding: 8px 0; }
  .euiTableSortMobile {
    display: block; } }

@media only screen and (min-width: 575px) and (max-width: 767px) {
  .euiTableHeaderMobile {
    display: flex;
    justify-content: flex-end;
    padding: 8px 0; }
  .euiTableSortMobile {
    display: block; } }

.euiColorStops__addTarget,
.euiColorStops__addContainer {
  z-index: 1; }

.euiColorStops__addTarget {
  border: 1px solid #69707D;
  box-shadow: none; }

.euiColorStopThumb.euiRangeThumb:not(:disabled) {
  border: 2px solid #FFF;
  box-shadow: 0 0 0 1px #FFF, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2); }
  .euiColorStopThumb.euiRangeThumb:not(:disabled):focus {
    box-shadow: 0 0 0 2px #0071c2;
    outline: none; }
  .euiColorStopThumb.euiRangeThumb:not(:disabled):focus:not(:focus-visible) {
    box-shadow: 0 0 0 1px #FFF, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
    outline: none; }

.euiColorStops:not(.euiColorStops-isDisabled) .euiRangeTrack::after {
  transition-property: box-shadow;
  transition-delay: 90ms; }

.euiColorStops:not(.euiColorStops-isDisabled):focus {
  outline: none; }
  .euiColorStops:not(.euiColorStops-isDisabled):focus .euiRangeTrack::after {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8), 0 0 0 3px #0071c2; }

.euiColorStops:not(.euiColorStops-isDisabled):focus:not(:focus-visible) .euiRangeTrack::after {
  box-shadow: none; }

.euiColorStops__highlight {
  color: #D3DAE6; }
  .euiColorStops__highlight .euiRangeHighlight__progress {
    background-color: #D3DAE6; }

.euiComboBox--appended .euiFormControlLayout__childrenWrapper {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px; }

.euiComboBox--appended .euiFormControlLayout--compressed .euiFormControlLayout__childrenWrapper {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px; }

.euiComboBox--appended.euiComboBox--prepended .euiFormControlLayout__childrenWrapper {
  border-radius: 0; }

.euiComboBox--appended.euiComboBox--prepended .euiFormControlLayout--compressed .euiFormControlLayout__childrenWrapper {
  border-radius: 0; }

.euiComboBox--prepended .euiFormControlLayout__childrenWrapper {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px; }

.euiComboBox--prepended .euiFormControlLayout--compressed .euiFormControlLayout__childrenWrapper {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

.euiDataGrid--fontSizeLarge .euiDataGridRowCell {
  font-size: 16px;
  font-size: 1.14286rem;
  line-height: 1.71429rem; }

.euiDatePicker.euiDatePicker--shadow .react-datepicker-popper,
.euiDatePicker.euiDatePicker--shadow .react-datepicker-popper[data-placement^='top'] {
  border: none;
  border-radius: 6px; }

.euiDatePickerRange {
  border-radius: 6px; }

.euiDatePicker.euiDatePicker--shadow.euiDatePicker--inline .react-datepicker {
  border: none; }

.euiSuperDatePicker__prettyFormat {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px; }

.euiFormControlLayout--compressed.euiSuperDatePicker .euiSuperDatePicker__prettyFormat {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

.euiDatePopoverButton--start {
  text-align: center; }

.euiDatePopoverButton--end {
  text-align: center;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px; }
  .euiDatePopoverButton--end.euiDatePopoverButton--compressed {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px; }

.euiDescriptionList.euiDescriptionList--inline.euiDescriptionList--compressed .euiDescriptionList__title {
  line-height: 1.5; }

.euiFilterGroup {
  border: none;
  border-radius: 6px;
  background-color: #fbfcfd;
  box-shadow: inset 0 0 0 1px rgba(17, 43, 134, 0.1); }

.euiFilterGroup--compressed {
  border-radius: 4px; }
  .euiFilterGroup--compressed .euiFilterButton {
    height: 32px; }

.euiFilterButton {
  border-radius: 0;
  border: none;
  background-color: transparent;
  box-shadow: 0 1px 0 0 rgba(17, 43, 134, 0.1), -1px 0 0 0 rgba(17, 43, 134, 0.1); }
  .euiFilterButton--withNext + .euiFilterButton {
    box-shadow: 0 1px 0 0 rgba(17, 43, 134, 0.1); }

.euiFormControlLayout--group {
  border-radius: 6px;
  background-color: #e9edf3; }
  .euiFormControlLayout--group .euiFormControlLayout__prepend:first-child {
    border-radius: 5px 0 0 5px; }
    .euiFormControlLayout--group .euiFormControlLayout__prepend:first-child [class*='euiButton'] {
      border-radius: 5px 0 0 5px; }
  .euiFormControlLayout--group .euiFormControlLayout__append:last-child {
    border-radius: 0 5px 5px 0; }
    .euiFormControlLayout--group .euiFormControlLayout__append:last-child [class*='euiButton'] {
      border-radius: 0 5px 5px 0; }
  .euiFormControlLayout--group [class*='euiButton']:focus {
    outline: 2px solid currentColor;
    outline-offset: -2px; }
    .euiFormControlLayout--group [class*='euiButton']:focus:focus-visible {
      outline-style: auto; }
    .euiFormControlLayout--group [class*='euiButton']:focus:not(:focus-visible) {
      outline: none; }
  .euiFormControlLayout--group .euiToolTipAnchor > .euiIcon {
    border-radius: 0 5px 5px 0; }
  .euiFormControlLayout--group .euiToolTipAnchor:first-child [class*='euiButton'] {
    border-radius: 5px 0 0 5px; }
  .euiFormControlLayout--group .euiToolTipAnchor:last-child [class*='euiButton'],
  .euiFormControlLayout--group .euiToolTipAnchor:last-child .euiText {
    border-radius: 0 5px 5px 0; }
  .euiFormControlLayout--group .euiFormControlLayout__childrenWrapper:nth-child(2) [class*='euiField'],
  .euiFormControlLayout--group .euiFormControlLayout__childrenWrapper:nth-child(3) [class*='euiField'] {
    border-radius: 0; }
  .euiFormControlLayout--group .euiFormControlLayout__childrenWrapper:first-child .euiSelect,
  .euiFormControlLayout--group .euiFormControlLayout__childrenWrapper:first-child .euiSuperSelectControl,
  .euiFormControlLayout--group .euiFormControlLayout__childrenWrapper:first-child [class*='euiField'] {
    border-radius: 6px 0 0 6px; }
  .euiFormControlLayout--group .euiFormControlLayout__childrenWrapper:last-child .euiSelect,
  .euiFormControlLayout--group .euiFormControlLayout__childrenWrapper:last-child .euiSuperSelectControl,
  .euiFormControlLayout--group .euiFormControlLayout__childrenWrapper:last-child [class*='euiField'] {
    border-radius: 0 6px 6px 0; }
  .euiFormControlLayout--group.euiFormControlLayout--compressed {
    border-radius: 4px;
    background-color: #e9edf3; }
    .euiFormControlLayout--group.euiFormControlLayout--compressed.euiFormControlLayout--readOnly input {
      background-color: #FFF; }
    .euiFormControlLayout--group.euiFormControlLayout--compressed .euiFormControlLayout__prepend:first-child {
      border-radius: 3px 0 0 3px; }
      .euiFormControlLayout--group.euiFormControlLayout--compressed .euiFormControlLayout__prepend:first-child [class*='euiButton'] {
        border-radius: 4px 0 0 4px; }
    .euiFormControlLayout--group.euiFormControlLayout--compressed .euiFormControlLayout__append:last-child {
      border-radius: 0 3px 3px 0; }
      .euiFormControlLayout--group.euiFormControlLayout--compressed .euiFormControlLayout__append:last-child [class*='euiButton'] {
        border-radius: 0 3px 3px 0; }
    .euiFormControlLayout--group.euiFormControlLayout--compressed .euiToolTipAnchor > .euiIcon {
      border-radius: 0 3px 3px 0; }
    .euiFormControlLayout--group.euiFormControlLayout--compressed .euiToolTipAnchor:first-child [class*='euiButton'] {
      border-radius: 3px 0 0 3px; }
    .euiFormControlLayout--group.euiFormControlLayout--compressed .euiToolTipAnchor:last-child [class*='euiButton'],
    .euiFormControlLayout--group.euiFormControlLayout--compressed .euiToolTipAnchor:last-child .euiText {
      border-radius: 0 3px 3px 0; }
    .euiFormControlLayout--group.euiFormControlLayout--compressed .euiFormControlLayout__childrenWrapper:nth-child(2) [class*='euiField'],
    .euiFormControlLayout--group.euiFormControlLayout--compressed .euiFormControlLayout__childrenWrapper:nth-child(3) [class*='euiField'] {
      border-radius: 0; }
    .euiFormControlLayout--group.euiFormControlLayout--compressed .euiFormControlLayout__childrenWrapper:first-child .euiSelect,
    .euiFormControlLayout--group.euiFormControlLayout--compressed .euiFormControlLayout__childrenWrapper:first-child [class*='euiField'] {
      border-radius: 3px 0 0 3px; }
    .euiFormControlLayout--group.euiFormControlLayout--compressed .euiFormControlLayout__childrenWrapper:last-child .euiSelect,
    .euiFormControlLayout--group.euiFormControlLayout--compressed .euiFormControlLayout__childrenWrapper:last-child [class*='euiField'] {
      border-radius: 0 3px 3px 0; }

.euiFormControlLayoutDelimited {
  border-radius: 6px; }
  .euiFormControlLayoutDelimited.euiFormControlLayout--group .euiFormControlLayout__childrenWrapper:first-child {
    border-radius: 6px 0 0 6px; }
  .euiFormControlLayoutDelimited .euiFormControlLayout__childrenWrapper:only-child {
    border-radius: 6px;
    overflow: hidden; }
  .euiFormControlLayoutDelimited .euiFormControlLayout__prepend +
.euiFormControlLayout__childrenWrapper:last-child {
    border-radius: 0 6px 6px 0; }
  .euiFormControlLayoutDelimited.euiFormControlLayout--compressed.euiFormControlLayout--group .euiFormControlLayout__childrenWrapper:first-child {
    border-radius: 4px 0 0 4px; }
  .euiFormControlLayoutDelimited.euiFormControlLayout--compressed .euiFormControlLayout__childrenWrapper:only-child {
    border-radius: 4px;
    overflow: hidden; }
  .euiFormControlLayoutDelimited.euiFormControlLayout--compressed .euiFormControlLayout__prepend +
.euiFormControlLayout__childrenWrapper:last-child {
    border-radius: 0 4px 4px 0; }

.euiRadio .euiRadio__input:focus + .euiRadio__circle {
  outline: 2px solid #0071c2;
  outline-offset: 2px; }

.euiRadio .euiRadio__input:focus:focus-visible + .euiRadio__circle {
  outline: 2px solid #0071c2;
  outline-offset: 2px; }

.euiRadio .euiRadio__input:focus:not(:focus-visible) + .euiRadio__circle {
  outline: none; }

.euiCheckbox .euiCheckbox__input:focus + .euiCheckbox__square {
  outline: 2px solid #0071c2;
  outline-offset: 2px; }

.euiCheckbox .euiCheckbox__input:focus:focus-visible + .euiCheckbox__square {
  outline: 2px solid #0071c2;
  outline-offset: 2px; }

.euiCheckbox .euiCheckbox__input:focus:not(:focus-visible) + .euiCheckbox__square {
  outline: none; }

.euiSwitch .euiSwitch__button:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px; }
  .euiSwitch .euiSwitch__button:focus:focus-visible {
    outline-style: auto; }
  .euiSwitch .euiSwitch__button:focus:not(:focus-visible) {
    outline: none; }
  .euiSwitch .euiSwitch__button:focus .euiSwitch__track {
    outline: none; }

.euiHeader {
  height: 48px;
  padding-left: 8px;
  padding-right: 8px; }

.euiHeaderSectionItem:after {
  display: none !important; }

.euiHeaderLogo {
  padding-left: 8px;
  padding-right: 8px;
  min-width: 40px; }
  @media only screen and (max-width: 574px) {
    .euiHeaderLogo {
      padding-left: 4px; } }

.euiHeaderLogo__text {
  overflow-wrap: break-word !important;
  word-break: break-word;
  color: #1a1c21;
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.71429rem;
  font-weight: 700; }

.euiHeader--default + .euiHeader--default {
  border-top: 1px solid #D3DAE6; }

.euiHue {
  position: relative;
  height: 12px;
  border-radius: 12px;
  margin: 8px 0; }
  .euiHue::before, .euiHue::after {
    display: none; }
  .euiHue__range {
    top: -6px; }
    .euiHue__range::-webkit-slider-thumb {
      border: 3px solid #FFF;
      box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
      background-color: inherit; }
    .euiHue__range::-moz-range-thumb {
      border: 3px solid #FFF;
      box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
      background-color: inherit; }
    .euiHue__range::-ms-thumb {
      border: 3px solid #FFF;
      box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
      background-color: inherit; }
    .euiHue__range:focus {
      outline: none; }
      .euiHue__range:focus::-webkit-slider-thumb {
        box-shadow: 0 0 0 2px #0071c2;
        border: 3px solid #FFF; }
      .euiHue__range:focus::-moz-range-thumb {
        box-shadow: 0 0 0 2px #0071c2;
        border: 3px solid #FFF; }
      .euiHue__range:focus::-ms-thumb {
        box-shadow: 0 0 0 2px #0071c2;
        border: 3px solid #FFF; }
    .euiHue__range:focus:not(:focus-visible)::-webkit-slider-thumb {
      box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2); }
    .euiHue__range:focus:not(:focus-visible)::-moz-range-thumb {
      box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2); }
    .euiHue__range:focus:not(:focus-visible)::-ms-thumb {
      box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2); }
    .euiHue__range:focus:focus-visible {
      outline: none; }

.euiKeyPadMenuItem {
  border: none !important;
  box-shadow: none; }
  .euiKeyPadMenuItem:not(.euiKeyPadMenuItem-isDisabled):hover, .euiKeyPadMenuItem:not(.euiKeyPadMenuItem-isDisabled):focus:hover, .euiKeyPadMenuItem:not(.euiKeyPadMenuItem-isDisabled):focus-within {
    box-shadow: 0 0.7px 1.4px rgba(0, 0, 0, 0.07), 0 1.9px 4px rgba(0, 0, 0, 0.05), 0 4.5px 10px rgba(0, 0, 0, 0.05); }
  .euiKeyPadMenuItem:not(.euiKeyPadMenuItem-isDisabled):focus {
    box-shadow: none; }
  .euiKeyPadMenuItem.euiKeyPadMenuItem-isSelected:not(.euiKeyPadMenuItem-isDisabled) {
    box-shadow: none; }
    .euiKeyPadMenuItem.euiKeyPadMenuItem-isSelected:not(.euiKeyPadMenuItem-isDisabled):hover {
      box-shadow: 0 0.7px 1.4px rgba(0, 0, 0, 0.07), 0 1.9px 4px rgba(0, 0, 0, 0.05), 0 4.5px 10px rgba(0, 0, 0, 0.05); }
    .euiKeyPadMenuItem.euiKeyPadMenuItem-isSelected:not(.euiKeyPadMenuItem-isDisabled), .euiKeyPadMenuItem.euiKeyPadMenuItem-isSelected:not(.euiKeyPadMenuItem-isDisabled):hover, .euiKeyPadMenuItem.euiKeyPadMenuItem-isSelected:not(.euiKeyPadMenuItem-isDisabled):focus, .euiKeyPadMenuItem.euiKeyPadMenuItem-isSelected:not(.euiKeyPadMenuItem-isDisabled):focus-within {
      background-color: rgba(0, 119, 204, 0.1);
      color: #006bb8; }
  .euiKeyPadMenuItem.euiKeyPadMenuItem-isSelected.euiKeyPadMenuItem-isDisabled {
    background-color: rgba(171, 180, 196, 0.1);
    color: #a2abba; }

.euiKeyPadMenuItem__label {
  font-weight: 600; }

.euiMarkdownEditorToolbar {
  border-radius: 6px 6px 0 0; }

.euiMarkdownEditorTextArea:focus {
  outline: none; }

.euiMarkdownEditorTextArea:focus:focus-visible {
  outline-style: none; }

.euiMarkdownEditorPreview,
.euiMarkdownEditorFooter {
  border-radius: 0 0 6px 6px; }

.euiRangeTooltip__value {
  border-radius: 4px; }

.euiRangeDraggable:focus {
  outline: none; }
  .euiRangeDraggable:focus ~ .euiRangeThumb {
    border: 2px solid #FFF;
    box-shadow: 0 0 0 2px #0071c2;
    background-color: #07C; }

.euiRangeDraggable:focus:not(:focus-visible) ~ .euiRangeThumb {
  box-shadow: 0 0 0 1px #FFF, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
  outline: none; }

.euiRangeDraggable:focus-visible {
  outline: none; }
  .euiRangeDraggable:focus-visible ~ .euiRangeThumb {
    border: 2px solid #FFF;
    box-shadow: 0 0 0 2px #0071c2;
    background-color: #07C; }

.euiRangeHighlight {
  z-index: 1;
  pointer-events: none; }
  .euiRangeHighlight__progress {
    background-color: #69707D;
    border-color: #69707D; }
    .euiRangeHighlight__progress--hasFocus {
      background-color: #07C; }
  .euiRangeHighlight--compressed {
    top: calc(50% - 2px); }
    .euiRangeHighlight--compressed .euiRangeHighlight__progress {
      height: 4px; }
    .euiRangeHighlight--compressed.euiRangeHighlight--hasTicks {
      top: 6px; }
  .euiRangeHighlight:not(.euiRangeHighlight--compressed).euiRangeHighlight--hasTicks {
    top: 5px; }

.euiRangeLevels .euiRangeLevel {
  margin-top: 0;
  margin-bottom: 0; }
  .euiRangeLevels .euiRangeLevel:first-child {
    margin-left: 0; }
  .euiRangeLevels .euiRangeLevel:last-child {
    margin-right: 0; }

.euiRangeLevels--compressed .euiRangeLevel {
  height: 4px; }
  .euiRangeLevels--compressed .euiRangeLevel:first-child {
    margin-left: 0; }
  .euiRangeLevels--compressed .euiRangeLevel:last-child {
    margin-right: 0; }

.euiRangeLevels--compressed .euiRangeThumb--hasTicks {
  top: 0; }

.euiRangeSlider {
  z-index: 2; }
  .euiRangeSlider::-webkit-slider-runnable-track {
    background-color: transparent; }
  .euiRangeSlider::-moz-range-track {
    background-color: transparent; }
  .euiRangeSlider::-ms-fill-lower {
    background-color: transparent; }
  .euiRangeSlider::-ms-fill-upper {
    background-color: transparent; }
  .euiRangeSlider--hasTicks {
    height: 16px; }
  .euiRangeSlider:focus {
    outline: none; }
    .euiRangeSlider:focus::-webkit-slider-thumb {
      border: 2px solid #FFF;
      box-shadow: 0 0 0 2px #0071c2;
      background-color: #07C; }
    .euiRangeSlider:focus::-moz-range-thumb {
      border: 2px solid #FFF;
      box-shadow: 0 0 0 2px #0071c2;
      background-color: #07C; }
    .euiRangeSlider:focus::-ms-thumb {
      border: 2px solid #FFF;
      box-shadow: 0 0 0 2px #0071c2;
      background-color: #07C; }
    .euiRangeSlider:focus::-webkit-slider-runnable-track {
      background-color: transparent; }
    .euiRangeSlider:focus::-moz-range-track {
      background-color: transparent; }
    .euiRangeSlider:focus::-ms-fill-lower {
      background-color: transparent; }
    .euiRangeSlider:focus::-ms-fill-upper {
      background-color: transparent; }
    .euiRangeSlider:focus ~ .euiRangeHighlight .euiRangeHighlight__progress {
      background-color: #07C; }
  .euiRangeSlider:focus:not(:focus-visible)::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #FFF, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
    background-color: #69707D; }
  .euiRangeSlider:focus:not(:focus-visible)::-moz-range-thumb {
    box-shadow: 0 0 0 1px #FFF, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
    background-color: #69707D; }
  .euiRangeSlider:focus:not(:focus-visible)::-ms-thumb {
    box-shadow: 0 0 0 1px #FFF, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
    background-color: #69707D; }
  .euiRangeSlider:focus:not(:focus-visible) ~ .euiRangeHighlight .euiRangeHighlight__progress {
    background-color: #69707D; }
  .euiRangeSlider:disabled::-webkit-slider-thumb {
    background-color: #69707D; }
  .euiRangeSlider:disabled::-moz-range-thumb {
    background-color: #69707D; }
  .euiRangeSlider:disabled::-ms-thumb {
    background-color: #69707D; }
  .euiRangeSlider:disabled ~ .euiRangeThumb {
    background-color: #69707D; }

.euiRangeThumb {
  box-shadow: 0 0 0 1px #FFF, 0 2px 2px -1px rgba(0, 0, 0, 0.2), 0 1px 5px -2px rgba(0, 0, 0, 0.2);
  border: 2px solid #FFF;
  background-color: #69707D;
  z-index: 2;
  pointer-events: none; }
  .euiRangeThumb--hasTicks {
    top: 0;
    margin-top: 0; }
  .euiRangeThumb:focus {
    border: 2px solid #FFF;
    box-shadow: 0 0 0 2px #0071c2;
    background-color: #07C;
    outline: none; }
  .euiRangeThumb:focus:focus-visible {
    outline: none; }

.euiRangeTicks:not(.euiRangeTicks--compressed) .euiRangeTick {
  padding-top: 0; }

.euiRangeTicks:not(.euiRangeTicks--compressed) .euiRangeTick:not(.euiRangeTick--hasTickMark)::before,
.euiRangeTicks:not(.euiRangeTicks--compressed) .euiRangeTick__pseudo {
  width: 4px;
  height: 6px;
  background-color: #D3DAE6;
  border-radius: 4px; }

.euiRangeTicks--compressed .euiRangeTick {
  padding-top: 14px; }
  .euiRangeTicks--compressed .euiRangeTick::before,
  .euiRangeTicks--compressed .euiRangeTick .euiRangeTick__pseudo {
    background-color: #D3DAE6;
    border-radius: 4px; }

.euiRangeTick::before {
  background-color: #D3DAE6;
  border-radius: 4px; }

.euiRangeTick:enabled:hover, .euiRangeTick:focus, .euiRangeTick--selected {
  color: #07C; }

.euiRangeTick--selected {
  font-weight: 500; }

.euiRangeTrack::after {
  content: '';
  display: block;
  background: #D3DAE6;
  border: 0 solid #D3DAE6;
  border-radius: 6px;
  position: absolute;
  left: 0; }

.euiRangeTrack:not(.euiRangeTrack--compressed)::after {
  height: 6px;
  width: 100%; }

.euiRangeTrack--compressed::after {
  height: 6px;
  width: 100%;
  height: 4px; }

.euiRangeTrack--compressed.euiRangeTrack--hasLevels .euiRangeTicks {
  height: 18px;
  top: 16px; }

.euiRangeTrack--compressed.euiRangeTrack--hasLevels .euiRangeTick {
  padding-top: 4px; }

.euiRangeTrack--compressed:not(.euiRangeTrack--hasLevels) .euiRangeTicks {
  height: 20px;
  top: 12px; }

.euiRangeTrack--compressed:not(.euiRangeTrack--hasLevels) .euiRangeTick {
  padding-top: 6px; }

.euiRangeTrack--compressed.euiRangeTrack--hasTicks::after {
  top: 6px; }

.euiRangeTrack--compressed:not(.euiRangeTrack--hasTicks)::after {
  top: calc(50% - 2px); }

.euiRangeTrack--compressed .euiRangeThumb--hasTicks {
  top: 0; }

.euiRangeTrack--compressed .euiRangeLevels:not(.euiRangeLevels--hasTicks) {
  top: 19px; }

.euiRangeTrack--compressed .euiRangeLevels--hasTicks {
  top: 11px; }

.euiRangeTrack:not(.euiRangeTrack--compressed).euiRangeTrack--hasLevels .euiRangeTicks {
  height: 20px;
  top: 20px; }

.euiRangeTrack:not(.euiRangeTrack--compressed).euiRangeTrack--hasLevels .euiRangeTick {
  padding-top: 6px; }

.euiRangeTrack:not(.euiRangeTrack--compressed):not(.euiRangeTrack--hasLevels) .euiRangeTicks {
  height: 24px;
  top: 16px; }

.euiRangeTrack:not(.euiRangeTrack--compressed):not(.euiRangeTrack--hasLevels) .euiRangeTick {
  padding-top: 11px; }

.euiRangeTrack:not(.euiRangeTrack--compressed).euiRangeTrack--hasTicks .euiRangeTooltip {
  top: -2px; }

.euiRangeTrack:not(.euiRangeTrack--compressed).euiRangeTrack--hasTicks::after {
  top: 5px; }

.euiRangeTrack:not(.euiRangeTrack--compressed):not(.euiRangeTrack--hasTicks)::after {
  top: calc(50% - 3px); }

.euiRangeTrack:not(.euiRangeTrack--compressed) .euiRangeLevels:not(.euiRangeLevels--hasTicks) {
  top: 24px; }

.euiRangeTrack:not(.euiRangeTrack--compressed) .euiRangeLevels--hasTicks {
  top: 12px; }

.euiRangeTooltip {
  z-index: 3; }

.euiSideNavItem--root {
  padding-bottom: 8px; }
  .euiSideNavItem--root + .euiSideNavItem--root {
    padding-top: 8px;
    margin-top: 8px; }
  .euiSideNavItem--root > .euiSideNavItemButton {
    margin-bottom: 4px; }
    .euiSideNavItem--root > .euiSideNavItemButton .euiSideNavItemButton__label {
      overflow-wrap: break-word !important;
      word-break: break-word;
      color: #1a1c21;
      font-size: 14px;
      font-size: 1rem;
      line-height: 1.71429rem;
      font-weight: 700;
      color: inherit; }

.euiStepHorizontal-isDisabled .euiStepHorizontal__title,
.euiStep-isDisabled .euiStep__title {
  color: #ABB4C4; }

.euiStepNumber {
  outline-color: #07C; }
  .euiStepNumber .euiStepNumber__icon {
    position: relative;
    top: -1px; }
  .euiStepNumber--small .euiStepNumber__icon {
    top: -1px; }
  .euiStepNumber--complete .euiStepNumber__icon, .euiStepNumber--danger .euiStepNumber__icon {
    stroke: currentColor;
    stroke-width: .5px; }
  .euiStepNumber--default {
    background-color: #07C;
    color: #FFF;
    outline-color: #000 !important; }
  .euiStepNumber--complete {
    background-color: #00BFB3;
    color: #000;
    outline-color: #000 !important; }
  .euiStepNumber--warning {
    background-color: #FEC514;
    color: #000;
    outline-color: #000 !important; }
  .euiStepNumber--danger {
    background-color: #BD271E;
    color: #FFF;
    outline-color: #000 !important; }
  .euiStepNumber.euiStepNumber--incomplete {
    background-color: transparent;
    color: #343741;
    border: 2px solid #D3DAE6; }
    .euiStepNumber.euiStepNumber--incomplete .euiStepNumber__number {
      display: unset;
      position: relative;
      top: -2px; }

.euiStepNumber--disabled {
  background-color: rgba(171, 180, 196, 0.1);
  color: #a2abba; }

.euiStepHorizontal__title {
  font-weight: 700; }

.euiStepHorizontal::before, .euiStepHorizontal::after {
  height: 2px;
  background-color: #07C;
  background-color: #D3DAE6; }

.euiStep:not(:last-of-type) {
  background-position: left 32px; }

.euiStep--small:not(:last-of-type) {
  background-position: -4px 24px; }

.euiStep__content {
  padding-bottom: 40px;
  margin-bottom: 0; }

.euiStepsHorizontal {
  background: none; }

.euiStepHorizontal:focus:not(.euiStepHorizontal-isDisabled) .euiStepHorizontal__number:not(:focus-visible) {
  outline: 2px solid #07C; }

/*!
 * Bootstrap v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/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: #007bff;--secondary: #6c757d;--success: #28a745;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--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, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--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%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:rgba(0,0,0,0)}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0 !important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}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}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:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}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:rgba(0,0,0,0);-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):hover,a:not([href]):not([tabindex]):focus{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}pre,code,kbd,samp{font-family:monospace,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:not(:root){overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}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}button,html [type=button],[type=reset],[type=submit]{-webkit-appearance:button}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}input[type=date],input[type=time],input[type=datetime-local],input[type=month]{-webkit-appearance:listbox}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:.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-cancel-button,[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:.5rem;font-family:inherit;font-weight:500;line-height:1.2;color:inherit}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,.1)}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:.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:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.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{width:100%;padding-right:16px;padding-left:16px;margin-right:auto;margin-left:auto}@media(min-width: 576px){.container{max-width:540px}}@media(min-width: 768px){.container{max-width:720px}}@media(min-width: 992px){.container{max-width:1280px}}@media(min-width: 1200px){.container{max-width:1280px}}.container-fluid{width:100%;padding-right:16px;padding-left:16px;margin-right:auto;margin-left:auto}.row{display:flex;flex-wrap:wrap;margin-right:-16px;margin-left:-16px}.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%;min-height:1px;padding-right:16px;padding-left:16px}.col{flex-basis:0;flex-grow:1;max-width:100%}.col-auto{flex:0 0 auto;width:auto;max-width:none}.col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.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.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}@media(min-width: 576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:none}.col-sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.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.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}}@media(min-width: 768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.col-md-auto{flex:0 0 auto;width:auto;max-width:none}.col-md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.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.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}}@media(min-width: 992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:none}.col-lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.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.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}}@media(min-width: 1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:none}.col-xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.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.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}}.table{width:100%;max-width:100%;margin-bottom:1rem;background-color:rgba(0,0,0,0)}.table th,.table td{padding:.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 .table{background-color:#fff}.table-sm th,.table-sm td{padding:.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-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>th,.table-primary>td{background-color:#b8daff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#d6d8db}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>th,.table-success>td{background-color:#c3e6cb}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>th,.table-info>td{background-color:#bee5eb}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>th,.table-warning>td{background-color:#ffeeba}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>th,.table-danger>td{background-color:#f5c6cb}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>th,.table-light>td{background-color:#fdfdfe}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>th,.table-dark>td{background-color:#c6c8ca}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#212529;border-color:#32383e}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#212529}.table-dark th,.table-dark td,.table-dark thead th{border-color:#32383e}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{background-color:rgba(255,255,255,.075)}@media(max-width: 575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.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;-ms-overflow-style:-ms-autohiding-scrollbar}.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;-ms-overflow-style:-ms-autohiding-scrollbar}.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;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::-ms-expand{background-color:rgba(0,0,0,0);border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:not([size]):not([multiple]){height:calc(2.25rem + 2px)}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:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;background-color:rgba(0,0,0,0);border:solid rgba(0,0,0,0);border-width:1px 0}.form-control-plaintext.form-control-sm,.input-group-sm>.form-control-plaintext.form-control,.input-group-sm>.input-group-prepend>.form-control-plaintext.input-group-text,.input-group-sm>.input-group-append>.form-control-plaintext.input-group-text,.input-group-sm>.input-group-prepend>.form-control-plaintext.btn,.input-group-sm>.input-group-append>.form-control-plaintext.btn,.form-control-plaintext.form-control-lg,.input-group-lg>.form-control-plaintext.form-control,.input-group-lg>.input-group-prepend>.form-control-plaintext.input-group-text,.input-group-lg>.input-group-append>.form-control-plaintext.input-group-text,.input-group-lg>.input-group-prepend>.form-control-plaintext.btn,.input-group-lg>.input-group-append>.form-control-plaintext.btn{padding-right:0;padding-left:0}.form-control-sm,.input-group-sm>.form-control,.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:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}select.form-control-sm:not([size]):not([multiple]),.input-group-sm>select.form-control:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-sm>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-sm>.input-group-append>select.btn:not([size]):not([multiple]){height:calc(1.8125rem + 2px)}.form-control-lg,.input-group-lg>.form-control,.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:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control-lg:not([size]):not([multiple]),.input-group-lg>select.form-control:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-lg>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-lg>.input-group-append>select.btn:not([size]):not([multiple]){height:calc(2.875rem + 2px)}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.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:.3rem;margin-left:-1.25rem}.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:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(40,167,69,.8);border-radius:.2rem}.was-validated .form-control:valid,.form-control.is-valid,.was-validated .custom-select:valid,.custom-select.is-valid{border-color:#28a745}.was-validated .form-control:valid:focus,.form-control.is-valid:focus,.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip,.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip{display:block}.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{background-color:#71dd8a}.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip,.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip{display:block}.was-validated .custom-control-input:valid:checked~.custom-control-label::before,.custom-control-input.is-valid:checked~.custom-control-label::before{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 1px #fff,0 0 0 .2rem rgba(40,167,69,.25)}.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~.custom-file-label::before,.custom-file-input.is-valid~.custom-file-label::before{border-color:inherit}.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip,.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip{display:block}.was-validated .custom-file-input:valid:focus~.custom-file-label,.custom-file-input.is-valid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(220,53,69,.8);border-radius:.2rem}.was-validated .form-control:invalid,.form-control.is-invalid,.was-validated .custom-select:invalid,.custom-select.is-invalid{border-color:#dc3545}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus,.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip,.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip{display:block}.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{background-color:#efa2a9}.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip,.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip{display:block}.was-validated .custom-control-input:invalid:checked~.custom-control-label::before,.custom-control-input.is-invalid:checked~.custom-control-label::before{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 1px #fff,0 0 0 .2rem rgba(220,53,69,.25)}.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~.custom-file-label::before,.custom-file-input.is-invalid~.custom-file-label::before{border-color:inherit}.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip,.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip{display:block}.was-validated .custom-file-input:invalid:focus~.custom-file-label,.custom-file-input.is-invalid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(220,53,69,.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{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;margin-top:0;margin-right:.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;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid rgba(0,0,0,0);padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn:hover,.btn:focus{text-decoration:none}.btn:focus,.btn.focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}.btn:not(:disabled):not(.disabled):active,.btn:not(:disabled):not(.disabled).active{background-image:none}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary:focus,.btn-primary.focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.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 .2rem rgba(0,123,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary:focus,.btn-secondary.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.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 .2rem rgba(108,117,125,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success:focus,.btn-success.focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.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 .2rem rgba(40,167,69,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info:focus,.btn-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.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 .2rem rgba(23,162,184,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning:focus,.btn-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.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 .2rem rgba(255,193,7,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger:focus,.btn-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.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 .2rem rgba(220,53,69,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light:focus,.btn-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.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 .2rem rgba(248,249,250,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark:focus,.btn-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.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 .2rem rgba(52,58,64,.5)}.btn-secondary-primary{color:#007bff;background-color:rgba(0,0,0,0);background-image:none;border-color:#007bff}.btn-secondary-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-secondary-primary:focus,.btn-secondary-primary.focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-secondary-primary.disabled,.btn-secondary-primary:disabled{color:#007bff;background-color:rgba(0,0,0,0)}.btn-secondary-primary:not(:disabled):not(.disabled):active,.btn-secondary-primary:not(:disabled):not(.disabled).active,.show>.btn-secondary-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-secondary-primary:not(:disabled):not(.disabled):active:focus,.btn-secondary-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-secondary-secondary{color:#6c757d;background-color:rgba(0,0,0,0);background-image:none;border-color:#6c757d}.btn-secondary-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary-secondary:focus,.btn-secondary-secondary.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-secondary-secondary.disabled,.btn-secondary-secondary:disabled{color:#6c757d;background-color:rgba(0,0,0,0)}.btn-secondary-secondary:not(:disabled):not(.disabled):active,.btn-secondary-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-secondary-success{color:#28a745;background-color:rgba(0,0,0,0);background-image:none;border-color:#28a745}.btn-secondary-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-secondary-success:focus,.btn-secondary-success.focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-secondary-success.disabled,.btn-secondary-success:disabled{color:#28a745;background-color:rgba(0,0,0,0)}.btn-secondary-success:not(:disabled):not(.disabled):active,.btn-secondary-success:not(:disabled):not(.disabled).active,.show>.btn-secondary-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-secondary-success:not(:disabled):not(.disabled):active:focus,.btn-secondary-success:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-secondary-info{color:#17a2b8;background-color:rgba(0,0,0,0);background-image:none;border-color:#17a2b8}.btn-secondary-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-secondary-info:focus,.btn-secondary-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-secondary-info.disabled,.btn-secondary-info:disabled{color:#17a2b8;background-color:rgba(0,0,0,0)}.btn-secondary-info:not(:disabled):not(.disabled):active,.btn-secondary-info:not(:disabled):not(.disabled).active,.show>.btn-secondary-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-secondary-info:not(:disabled):not(.disabled):active:focus,.btn-secondary-info:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-secondary-warning{color:#ffc107;background-color:rgba(0,0,0,0);background-image:none;border-color:#ffc107}.btn-secondary-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-secondary-warning:focus,.btn-secondary-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-secondary-warning.disabled,.btn-secondary-warning:disabled{color:#ffc107;background-color:rgba(0,0,0,0)}.btn-secondary-warning:not(:disabled):not(.disabled):active,.btn-secondary-warning:not(:disabled):not(.disabled).active,.show>.btn-secondary-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-secondary-warning:not(:disabled):not(.disabled):active:focus,.btn-secondary-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-secondary-danger{color:#dc3545;background-color:rgba(0,0,0,0);background-image:none;border-color:#dc3545}.btn-secondary-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-secondary-danger:focus,.btn-secondary-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-secondary-danger.disabled,.btn-secondary-danger:disabled{color:#dc3545;background-color:rgba(0,0,0,0)}.btn-secondary-danger:not(:disabled):not(.disabled):active,.btn-secondary-danger:not(:disabled):not(.disabled).active,.show>.btn-secondary-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-secondary-danger:not(:disabled):not(.disabled):active:focus,.btn-secondary-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-secondary-light{color:#f8f9fa;background-color:rgba(0,0,0,0);background-image:none;border-color:#f8f9fa}.btn-secondary-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-secondary-light:focus,.btn-secondary-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-secondary-light.disabled,.btn-secondary-light:disabled{color:#f8f9fa;background-color:rgba(0,0,0,0)}.btn-secondary-light:not(:disabled):not(.disabled):active,.btn-secondary-light:not(:disabled):not(.disabled).active,.show>.btn-secondary-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-secondary-light:not(:disabled):not(.disabled):active:focus,.btn-secondary-light:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-secondary-dark{color:#343a40;background-color:rgba(0,0,0,0);background-image:none;border-color:#343a40}.btn-secondary-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-secondary-dark:focus,.btn-secondary-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-secondary-dark.disabled,.btn-secondary-dark:disabled{color:#343a40;background-color:rgba(0,0,0,0)}.btn-secondary-dark:not(:disabled):not(.disabled):active,.btn-secondary-dark:not(:disabled):not(.disabled).active,.show>.btn-secondary-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-secondary-dark:not(:disabled):not(.disabled):active:focus,.btn-secondary-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#00a9e5;background-color:rgba(0,0,0,0)}.btn-link:hover{color:#0056b3;text-decoration:underline;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}.btn-link:focus,.btn-link.focus{text-decoration:underline;border-color:rgba(0,0,0,0);box-shadow:none}.btn-link:disabled,.btn-link.disabled{color:#6c757d}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.fade{opacity:0;transition:opacity .15s linear}.fade.show{opacity:1}.collapse{display:none}.collapse.show{display:block}tr.collapse.show{display:table-row}tbody.collapse.show{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}.dropup,.dropdown{position:relative}.dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid rgba(0,0,0,0);border-bottom:0;border-left:.3em solid rgba(0,0,0,0)}.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:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropup .dropdown-menu{margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid rgba(0,0,0,0);border-bottom:.3em solid;border-left:.3em solid rgba(0,0,0,0)}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid rgba(0,0,0,0);border-bottom:.3em solid rgba(0,0,0,0);border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;width:0;height:0;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid rgba(0,0,0,0);border-right:.3em solid;border-bottom:.3em solid rgba(0,0,0,0)}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:rgba(0,0,0,0);border:0}.dropdown-item:hover,.dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;background-color:rgba(0,0,0,0)}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:0 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-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group,.btn-group-vertical .btn+.btn,.btn-group-vertical .btn+.btn-group,.btn-group-vertical .btn-group+.btn,.btn-group-vertical .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:first-child{margin-left:0}.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:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after{margin-left:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.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+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(: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>.custom-select,.input-group>.custom-file{position:relative;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file:focus{z-index:3}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.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:not(:last-child),.input-group>.custom-select:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.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::before{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label,.input-group>.custom-file:not(:first-child) .custom-file-label::before{border-top-left-radius:0;border-bottom-left-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+.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:.375rem .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:.25rem}.input-group-text input[type=radio],.input-group-text input[type=checkbox]{margin-top:0}.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.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;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:active~.custom-control-label::before{color:#fff;background-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{margin-bottom:0}.custom-control-label::before{position:absolute;top:.25rem;left:0;display:block;width:1rem;height:1rem;pointer-events:none;content:"";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#dee2e6}.custom-control-label::after{position:absolute;top:.25rem;left:0;display:block;width:1rem;height:1rem;content:"";background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' 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,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' 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,.5)}.custom-select{display:inline-block;width:100%;height:calc(2.25rem + 2px);padding:.375rem 1.75rem .375rem .75rem;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075),0 0 5px rgba(128,189,255,.5)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{opacity:0}.custom-select-sm{height:calc(1.8125rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-select-lg{height:calc(2.875rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:125%}.custom-file{position:relative;display:inline-block;width:100%;height:calc(2.25rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(2.25rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-control{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:focus~.custom-file-control::before{border-color:#80bdff}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(2.25rem + 2px);padding:.375rem .75rem;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(calc(2.25rem + 2px) - 1px * 2);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:1px solid #ced4da;border-radius:0 .25rem .25rem 0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{color:#6c757d}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid rgba(0,0,0,0);border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}.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{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{flex:1 1 auto;text-align:center}.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:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.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:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:rgba(0,0,0,0);border:1px solid rgba(0,0,0,0);border-radius:.25rem}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler:not(:disabled):not(.disabled){cursor:pointer}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media(max-width: 575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{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 .dropdown-menu-right{right:0;left:auto}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .dropup .dropdown-menu{top:auto;bottom:100%}}@media(max-width: 767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{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 .dropdown-menu-right{right:0;left:auto}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .dropup .dropdown-menu{top:auto;bottom:100%}}@media(max-width: 991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{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 .dropdown-menu-right{right:0;left:auto}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .dropup .dropdown-menu{top:auto;bottom:100%}}@media(max-width: 1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{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 .dropdown-menu-right{right:0;left:auto}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .dropup .dropdown-menu{top:auto;bottom:100%}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{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 .dropdown-menu-right{right:0;left:auto}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .dropup .dropdown-menu{top:auto;bottom:100%}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(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,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(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(0, 0, 0, 0.5)' 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,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(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,.5)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.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,.5);border-color:rgba(255,255,255,.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(255, 255, 255, 0.5)' 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,.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,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.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:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(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}.card-img{width:100%;border-radius:calc(0.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card-deck{display:flex;flex-direction:column}.card-deck .card{margin-bottom:16px}@media(min-width: 576px){.card-deck{flex-flow:row wrap;margin-right:-16px;margin-left:-16px}.card-deck .card{display:flex;flex:1 0;flex-direction:column;margin-right:16px;margin-bottom:0;margin-left:16px}}.card-group{display:flex;flex-direction:column}.card-group>.card{margin-bottom:16px}@media(min-width: 576px){.card-group{flex-flow:row wrap}.card-group>.card{flex:1 0;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:first-child .card-img-top,.card-group>.card:first-child .card-header{border-top-right-radius:0}.card-group>.card:first-child .card-img-bottom,.card-group>.card:first-child .card-footer{border-bottom-right-radius:0}.card-group>.card:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:last-child .card-img-top,.card-group>.card:last-child .card-header{border-top-left-radius:0}.card-group>.card:last-child .card-img-bottom,.card-group>.card:last-child .card-footer{border-bottom-left-radius:0}.card-group>.card:only-child{border-radius:.25rem}.card-group>.card:only-child .card-img-top,.card-group>.card:only-child .card-header{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-group>.card:only-child .card-img-bottom,.card-group>.card:only-child .card-footer{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-group>.card:not(:first-child):not(:last-child):not(:only-child){border-radius:0}.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer{border-radius:0}}.card-columns .card{margin-bottom:.75rem}@media(min-width: 576px){.card-columns{-moz-column-count:3;column-count:3;-moz-column-gap:1.25rem;column-gap:1.25rem}.card-columns .card{display:inline-block;width:100%}}.breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;padding-left:.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:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-link:not(:disabled):not(.disabled){cursor:pointer}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:1;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:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}.badge-primary[href]:hover,.badge-primary[href]:focus{color:#fff;text-decoration:none;background-color:#0062cc}.badge-secondary{color:#fff;background-color:#6c757d}.badge-secondary[href]:hover,.badge-secondary[href]:focus{color:#fff;text-decoration:none;background-color:#545b62}.badge-success{color:#fff;background-color:#28a745}.badge-success[href]:hover,.badge-success[href]:focus{color:#fff;text-decoration:none;background-color:#1e7e34}.badge-info{color:#fff;background-color:#17a2b8}.badge-info[href]:hover,.badge-info[href]:focus{color:#fff;text-decoration:none;background-color:#117a8b}.badge-warning{color:#212529;background-color:#ffc107}.badge-warning[href]:hover,.badge-warning[href]:focus{color:#212529;text-decoration:none;background-color:#d39e00}.badge-danger{color:#fff;background-color:#dc3545}.badge-danger[href]:hover,.badge-danger[href]:focus{color:#fff;text-decoration:none;background-color:#bd2130}.badge-light{color:#212529;background-color:#f8f9fa}.badge-light[href]:hover,.badge-light[href]:focus{color:#212529;text-decoration:none;background-color:#dae0e5}.badge-dark{color:#fff;background-color:#343a40}.badge-dark[href]:hover,.badge-dark[href]:focus{color:#fff;text-decoration:none;background-color:#1d2124}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media(min-width: 576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid rgba(0,0,0,0);border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;color:#fff;text-align:center;background-color:#007bff;transition:width .6s ease}.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:progress-bar-stripes 1s linear infinite}.media{display:flex;align-items:flex-start}.media-body{flex:1 1}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{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:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item:hover,.list-group-item:focus{z-index:1;text-decoration:none}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover,.close:focus{color:#000;text-decoration:none;opacity:.75}.close:not(:disabled):not(.disabled){cursor:pointer}button.close{padding:0;background-color:rgba(0,0,0,0);border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;outline:0}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0, -25%)}.modal.show .modal-dialog{transform:translate(0, 0)}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - (0.5rem * 2))}.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,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid #e9ecef;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding: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;align-items:center;justify-content:flex-end;padding:1rem;border-top:1px solid #e9ecef}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.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-centered{min-height:calc(100% - (1.75rem * 2))}.modal-sm{max-width:300px}}@media(min-width: 992px){.modal-lg{max-width:800px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";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;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:rgba(0,0,0,0);border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^=top]{padding:.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:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^=right]{padding:0 .4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^=right] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^=right] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^=bottom]{padding:.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 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^=left]{padding:0 .4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^=left] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^=left] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";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;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:rgba(0,0,0,0);border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^=top]{margin-bottom:.5rem}.bs-popover-top .arrow,.bs-popover-auto[x-placement^=top] .arrow{bottom:calc((0.5rem + 1px)*-1)}.bs-popover-top .arrow::before,.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::after,.bs-popover-auto[x-placement^=top] .arrow::after{border-width:.5rem .5rem 0}.bs-popover-top .arrow::before,.bs-popover-auto[x-placement^=top] .arrow::before{bottom:0;border-top-color:rgba(0,0,0,.25)}.bs-popover-top .arrow::after,.bs-popover-auto[x-placement^=top] .arrow::after{bottom:1px;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^=right]{margin-left:.5rem}.bs-popover-right .arrow,.bs-popover-auto[x-placement^=right] .arrow{left:calc((0.5rem + 1px)*-1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-right .arrow::before,.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::after,.bs-popover-auto[x-placement^=right] .arrow::after{border-width:.5rem .5rem .5rem 0}.bs-popover-right .arrow::before,.bs-popover-auto[x-placement^=right] .arrow::before{left:0;border-right-color:rgba(0,0,0,.25)}.bs-popover-right .arrow::after,.bs-popover-auto[x-placement^=right] .arrow::after{left:1px;border-right-color:#fff}.bs-popover-bottom,.bs-popover-auto[x-placement^=bottom]{margin-top:.5rem}.bs-popover-bottom .arrow,.bs-popover-auto[x-placement^=bottom] .arrow{top:calc((0.5rem + 1px)*-1)}.bs-popover-bottom .arrow::before,.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::after,.bs-popover-auto[x-placement^=bottom] .arrow::after{border-width:0 .5rem .5rem .5rem}.bs-popover-bottom .arrow::before,.bs-popover-auto[x-placement^=bottom] .arrow::before{top:0;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-bottom .arrow::after,.bs-popover-auto[x-placement^=bottom] .arrow::after{top:1px;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:.5rem}.bs-popover-left .arrow,.bs-popover-auto[x-placement^=left] .arrow{right:calc((0.5rem + 1px)*-1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-left .arrow::before,.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::after,.bs-popover-auto[x-placement^=left] .arrow::after{border-width:.5rem 0 .5rem .5rem}.bs-popover-left .arrow::before,.bs-popover-auto[x-placement^=left] .arrow::before{right:0;border-left-color:rgba(0,0,0,.25)}.bs-popover-left .arrow::after,.bs-popover-auto[x-placement^=left] .arrow::after{right:1px;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;color:inherit;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:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-item{position:relative;display:none;align-items:center;width:100%;transition:transform .6s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:1000px}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next,.carousel-item-prev{position:absolute;top:0}.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{transform:translateX(0)}@supports(transform-style: preserve-3d){.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{transform:translate3d(0, 0, 0)}}.carousel-item-next,.active.carousel-item-right{transform:translateX(100%)}@supports(transform-style: preserve-3d){.carousel-item-next,.active.carousel-item-right{transform:translate3d(100%, 0, 0)}}.carousel-item-prev,.active.carousel-item-left{transform:translateX(-100%)}@supports(transform-style: preserve-3d){.carousel-item-prev,.active.carousel-item-left{transform:translate3d(-100%, 0, 0)}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;display:flex;align-items:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.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:rgba(0,0,0,0) no-repeat center center;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:10px;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{position:relative;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;background-color:rgba(255,255,255,.5)}.carousel-indicators li::before{position:absolute;top:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators li::after{position:absolute;bottom:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}.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:#007bff !important}a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus{background-color:#0062cc !important}.bg-secondary{background-color:#6c757d !important}a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus{background-color:#545b62 !important}.bg-success{background-color:#28a745 !important}a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus{background-color:#1e7e34 !important}.bg-info{background-color:#17a2b8 !important}a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus{background-color:#117a8b !important}.bg-warning{background-color:#ffc107 !important}a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus{background-color:#d39e00 !important}.bg-danger{background-color:#dc3545 !important}a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus{background-color:#bd2130 !important}.bg-light{background-color:#f8f9fa !important}a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus{background-color:#dae0e5 !important}.bg-dark{background-color:#343a40 !important}a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus{background-color:#1d2124 !important}.bg-white{background-color:#fff !important}.bg-transparent{background-color:rgba(0,0,0,0) !important}.border{border:1px solid #ccc !important}.border-top{border-top:1px solid #ccc !important}.border-right{border-right:1px solid #ccc !important}.border-bottom{border-bottom:1px solid #ccc !important}.border-left{border-left:1px solid #ccc !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:#007bff !important}.border-secondary{border-color:#6c757d !important}.border-success{border-color:#28a745 !important}.border-info{border-color:#17a2b8 !important}.border-warning{border-color:#ffc107 !important}.border-danger{border-color:#dc3545 !important}.border-light{border-color:#f8f9fa !important}.border-dark{border-color:#343a40 !important}.border-white{border-color:#fff !important}.rounded{border-radius:.25rem !important}.rounded-top{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.rounded-right{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.rounded-bottom{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-left{border-top-left-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-circle{border-radius:50% !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.8571428571%}.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}.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}.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}.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}.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}.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}}.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;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;-webkit-clip-path:inset(50%);clip-path:inset(50%);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal;-webkit-clip-path:none;clip-path:none}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.mw-100{max-width:100% !important}.mh-100{max-height:100% !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:.25rem !important}.mt-1,.my-1{margin-top:.25rem !important}.mr-1,.mx-1{margin-right:.25rem !important}.mb-1,.my-1{margin-bottom:.25rem !important}.ml-1,.mx-1{margin-left:.25rem !important}.m-2{margin:.5rem !important}.mt-2,.my-2{margin-top:.5rem !important}.mr-2,.mx-2{margin-right:.5rem !important}.mb-2,.my-2{margin-bottom:.5rem !important}.ml-2,.mx-2{margin-left:.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:.25rem !important}.pt-1,.py-1{padding-top:.25rem !important}.pr-1,.px-1{padding-right:.25rem !important}.pb-1,.py-1{padding-bottom:.25rem !important}.pl-1,.px-1{padding-left:.25rem !important}.p-2{padding:.5rem !important}.pt-2,.py-2{padding-top:.5rem !important}.pr-2,.px-2{padding-right:.5rem !important}.pb-2,.py-2{padding-bottom:.5rem !important}.pl-2,.px-2{padding-left:.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-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:.25rem !important}.mt-sm-1,.my-sm-1{margin-top:.25rem !important}.mr-sm-1,.mx-sm-1{margin-right:.25rem !important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem !important}.ml-sm-1,.mx-sm-1{margin-left:.25rem !important}.m-sm-2{margin:.5rem !important}.mt-sm-2,.my-sm-2{margin-top:.5rem !important}.mr-sm-2,.mx-sm-2{margin-right:.5rem !important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem !important}.ml-sm-2,.mx-sm-2{margin-left:.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:.25rem !important}.pt-sm-1,.py-sm-1{padding-top:.25rem !important}.pr-sm-1,.px-sm-1{padding-right:.25rem !important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem !important}.pl-sm-1,.px-sm-1{padding-left:.25rem !important}.p-sm-2{padding:.5rem !important}.pt-sm-2,.py-sm-2{padding-top:.5rem !important}.pr-sm-2,.px-sm-2{padding-right:.5rem !important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem !important}.pl-sm-2,.px-sm-2{padding-left:.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-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:.25rem !important}.mt-md-1,.my-md-1{margin-top:.25rem !important}.mr-md-1,.mx-md-1{margin-right:.25rem !important}.mb-md-1,.my-md-1{margin-bottom:.25rem !important}.ml-md-1,.mx-md-1{margin-left:.25rem !important}.m-md-2{margin:.5rem !important}.mt-md-2,.my-md-2{margin-top:.5rem !important}.mr-md-2,.mx-md-2{margin-right:.5rem !important}.mb-md-2,.my-md-2{margin-bottom:.5rem !important}.ml-md-2,.mx-md-2{margin-left:.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:.25rem !important}.pt-md-1,.py-md-1{padding-top:.25rem !important}.pr-md-1,.px-md-1{padding-right:.25rem !important}.pb-md-1,.py-md-1{padding-bottom:.25rem !important}.pl-md-1,.px-md-1{padding-left:.25rem !important}.p-md-2{padding:.5rem !important}.pt-md-2,.py-md-2{padding-top:.5rem !important}.pr-md-2,.px-md-2{padding-right:.5rem !important}.pb-md-2,.py-md-2{padding-bottom:.5rem !important}.pl-md-2,.px-md-2{padding-left:.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-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:.25rem !important}.mt-lg-1,.my-lg-1{margin-top:.25rem !important}.mr-lg-1,.mx-lg-1{margin-right:.25rem !important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem !important}.ml-lg-1,.mx-lg-1{margin-left:.25rem !important}.m-lg-2{margin:.5rem !important}.mt-lg-2,.my-lg-2{margin-top:.5rem !important}.mr-lg-2,.mx-lg-2{margin-right:.5rem !important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem !important}.ml-lg-2,.mx-lg-2{margin-left:.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:.25rem !important}.pt-lg-1,.py-lg-1{padding-top:.25rem !important}.pr-lg-1,.px-lg-1{padding-right:.25rem !important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem !important}.pl-lg-1,.px-lg-1{padding-left:.25rem !important}.p-lg-2{padding:.5rem !important}.pt-lg-2,.py-lg-2{padding-top:.5rem !important}.pr-lg-2,.px-lg-2{padding-right:.5rem !important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem !important}.pl-lg-2,.px-lg-2{padding-left:.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-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:.25rem !important}.mt-xl-1,.my-xl-1{margin-top:.25rem !important}.mr-xl-1,.mx-xl-1{margin-right:.25rem !important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem !important}.ml-xl-1,.mx-xl-1{margin-left:.25rem !important}.m-xl-2{margin:.5rem !important}.mt-xl-2,.my-xl-2{margin-top:.5rem !important}.mr-xl-2,.mx-xl-2{margin-right:.5rem !important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem !important}.ml-xl-2,.mx-xl-2{margin-left:.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:.25rem !important}.pt-xl-1,.py-xl-1{padding-top:.25rem !important}.pr-xl-1,.px-xl-1{padding-right:.25rem !important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem !important}.pl-xl-1,.px-xl-1{padding-left:.25rem !important}.p-xl-2{padding:.5rem !important}.pt-xl-2,.py-xl-2{padding-top:.5rem !important}.pr-xl-2,.px-xl-2{padding-right:.5rem !important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem !important}.pl-xl-2,.px-xl-2{padding-left:.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-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}}.text-justify{text-align:justify !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-normal{font-weight:400 !important}.font-weight-bold{font-weight:700 !important}.font-italic{font-style:italic !important}.text-white{color:#fff !important}.text-primary{color:#007bff !important}a.text-primary:hover,a.text-primary:focus{color:#0062cc !important}.text-secondary{color:#6c757d !important}a.text-secondary:hover,a.text-secondary:focus{color:#545b62 !important}.text-success{color:#28a745 !important}a.text-success:hover,a.text-success:focus{color:#1e7e34 !important}.text-info{color:#17a2b8 !important}a.text-info:hover,a.text-info:focus{color:#117a8b !important}.text-warning{color:#ffc107 !important}a.text-warning:hover,a.text-warning:focus{color:#d39e00 !important}.text-danger{color:#dc3545 !important}a.text-danger:hover,a.text-danger:focus{color:#bd2130 !important}.text-light{color:#f8f9fa !important}a.text-light:hover,a.text-light:focus{color:#dae0e5 !important}.text-dark{color:#343a40 !important}a.text-dark:hover,a.text-dark:focus{color:#1d2124 !important}.text-muted{color:#6c757d !important}.text-hide{font:0/0 a;color:rgba(0,0,0,0);text-shadow:none;background-color:rgba(0,0,0,0);border:0}.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 #999;page-break-inside:avoid}thead{display:table-header-group}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 #ddd !important}}.navbar-toggle{padding:0px;margin-right:0px}.navbar-toggle .icon-bar{width:24px;height:3px;background:#343741}.text-danger{color:red}.form-control{height:40px}.input-group-btn>.btn{min-width:100px}.btn-lg,.btn-group-lg>.btn{min-width:210px;font-size:18px}.btn-sm,.btn-group-sm>.btn{min-width:auto;font-size:14px;padding:0px 18px}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{border-left:1px solid #83d2ee;margin-left:0px}

/*# sourceMappingURL=644f230788cadc13.css.map*/