.errors:not(:empty) {
  margin-top: 2.5px;
  color: #ee0000;
  font-size: 10px;
  animation: slide-down 0.3s backwards ease-in-out;
}
@keyframes slide-down {
  from {
    transform: translateY(-50%);
    opacity: 0;
  }
}
.errors:not(:empty) > span {
  display: block;
}

@charset "UTF-8";
.react-datepicker__navigation-icon::before, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  border-color: #ccc;
  border-style: solid;
  border-width: 3px 3px 0 0;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  top: 6px;
  width: 9px;
}
.react-datepicker-wrapper {
  display: inline-block;
  padding: 0;
  border: 0;
}

.react-datepicker {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  font-size: 0.8rem;
  background-color: #fff;
  color: #000;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  display: inline-block;
  position: relative;
  line-height: normal;
  line-height: initial;
}

.react-datepicker--time-only .react-datepicker__time-container {
  border-left: 0;
}
.react-datepicker--time-only .react-datepicker__time,
.react-datepicker--time-only .react-datepicker__time-box {
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.react-datepicker-popper {
  z-index: 1;
  line-height: 0;
}
.react-datepicker-popper .react-datepicker__triangle {
  stroke: #aeaeae;
}
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
  fill: #f0f0f0;
  color: #f0f0f0;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle {
  fill: #fff;
  color: #fff;
}

.react-datepicker__header {
  text-align: center;
  background-color: #f0f0f0;
  border-bottom: 1px solid #aeaeae;
  border-top-left-radius: 0.3rem;
  padding: 8px 0;
  position: relative;
}
.react-datepicker__header--time {
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}
.react-datepicker__header--time:not(.react-datepicker__header--time--only) {
  border-top-left-radius: 0;
}
.react-datepicker__header:not(.react-datepicker__header--has-time-select) {
  border-top-right-radius: 0.3rem;
}

.react-datepicker__year-dropdown-container--select,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__month-year-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--scroll,
.react-datepicker__month-year-dropdown-container--scroll {
  display: inline-block;
  margin: 0 15px;
}

.react-datepicker__current-month,
.react-datepicker-time__header,
.react-datepicker-year-header {
  margin-top: 0;
  color: #000;
  font-weight: bold;
  font-size: 0.944rem;
}

h2.react-datepicker__current-month {
  padding: 0;
  margin: 0;
}

.react-datepicker-time__header {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.react-datepicker__navigation {
  align-items: center;
  background: none;
  display: flex;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 2px;
  padding: 0;
  border: none;
  z-index: 1;
  height: 32px;
  width: 32px;
  text-indent: -999em;
  overflow: hidden;
}
.react-datepicker__navigation--previous {
  left: 2px;
}
.react-datepicker__navigation--next {
  right: 2px;
}
.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
  right: 85px;
}
.react-datepicker__navigation--years {
  position: relative;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__navigation--years-previous {
  top: 4px;
}
.react-datepicker__navigation--years-upcoming {
  top: -4px;
}
.react-datepicker__navigation:hover *::before {
  border-color: rgb(165.75, 165.75, 165.75);
}

.react-datepicker__navigation-icon {
  position: relative;
  top: -1px;
  font-size: 20px;
  width: 0;
}
.react-datepicker__navigation-icon--next {
  left: -2px;
}
.react-datepicker__navigation-icon--next::before {
  transform: rotate(45deg);
  left: -7px;
}
.react-datepicker__navigation-icon--previous {
  right: -2px;
}
.react-datepicker__navigation-icon--previous::before {
  transform: rotate(225deg);
  right: -7px;
}

.react-datepicker__month-container {
  float: left;
}

.react-datepicker__year {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__year-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 180px;
}
.react-datepicker__year .react-datepicker__year-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__month {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__month .react-datepicker__month-text,
.react-datepicker__month .react-datepicker__quarter-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__input-time-container {
  clear: both;
  width: 100%;
  float: left;
  margin: 5px 0 10px 15px;
  text-align: left;
}
.react-datepicker__input-time-container .react-datepicker-time__caption {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
  display: inline-block;
  margin-left: 10px;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
  width: auto;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time] {
  -moz-appearance: textfield;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
  margin-left: 5px;
  display: inline-block;
}

.react-datepicker__time-container {
  float: right;
  border-left: 1px solid #aeaeae;
  width: 85px;
}
.react-datepicker__time-container--with-today-button {
  display: inline;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  position: absolute;
  right: -87px;
  top: 0;
}
.react-datepicker__time-container .react-datepicker__time {
  position: relative;
  background: white;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
  width: 85px;
  overflow-x: hidden;
  margin: 0 auto;
  text-align: center;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
  list-style: none;
  margin: 0;
  height: calc(195px + 1.7rem / 2);
  overflow-y: scroll;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  box-sizing: content-box;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
  height: 30px;
  padding: 5px 10px;
  white-space: nowrap;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
  cursor: pointer;
  background-color: #f0f0f0;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
  background-color: #216ba5;
  color: white;
  font-weight: bold;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
  background-color: #216ba5;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
  color: #ccc;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
  cursor: default;
  background-color: transparent;
}

.react-datepicker__week-number {
  color: #ccc;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable {
  cursor: pointer;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable:not(.react-datepicker__week-number--selected):hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}
.react-datepicker__week-number--selected {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}
.react-datepicker__week-number--selected:hover {
  background-color: rgb(28.75, 93.2196969697, 143.75);
}

.react-datepicker__day-names {
  white-space: nowrap;
  margin-bottom: -8px;
}

.react-datepicker__week {
  white-space: nowrap;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  color: #000;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}

.react-datepicker__day,
.react-datepicker__month-text,
.react-datepicker__quarter-text,
.react-datepicker__year-text {
  cursor: pointer;
}
.react-datepicker__day:not([aria-disabled=true]):hover,
.react-datepicker__month-text:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text:not([aria-disabled=true]):hover,
.react-datepicker__year-text:not([aria-disabled=true]):hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}
.react-datepicker__day--today,
.react-datepicker__month-text--today,
.react-datepicker__quarter-text--today,
.react-datepicker__year-text--today {
  font-weight: bold;
}
.react-datepicker__day--highlighted,
.react-datepicker__month-text--highlighted,
.react-datepicker__quarter-text--highlighted,
.react-datepicker__year-text--highlighted {
  border-radius: 0.3rem;
  background-color: #3dcc4a;
  color: #fff;
}
.react-datepicker__day--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__month-text--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--highlighted:not([aria-disabled=true]):hover,
.react-datepicker__year-text--highlighted:not([aria-disabled=true]):hover {
  background-color: rgb(49.8551020408, 189.6448979592, 62.5632653061);
}
.react-datepicker__day--highlighted-custom-1,
.react-datepicker__month-text--highlighted-custom-1,
.react-datepicker__quarter-text--highlighted-custom-1,
.react-datepicker__year-text--highlighted-custom-1 {
  color: magenta;
}
.react-datepicker__day--highlighted-custom-2,
.react-datepicker__month-text--highlighted-custom-2,
.react-datepicker__quarter-text--highlighted-custom-2,
.react-datepicker__year-text--highlighted-custom-2 {
  color: green;
}
.react-datepicker__day--holidays,
.react-datepicker__month-text--holidays,
.react-datepicker__quarter-text--holidays,
.react-datepicker__year-text--holidays {
  position: relative;
  border-radius: 0.3rem;
  background-color: #ff6803;
  color: #fff;
}
.react-datepicker__day--holidays .overlay,
.react-datepicker__month-text--holidays .overlay,
.react-datepicker__quarter-text--holidays .overlay,
.react-datepicker__year-text--holidays .overlay {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}
.react-datepicker__day--holidays:not([aria-disabled=true]):hover,
.react-datepicker__month-text--holidays:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--holidays:not([aria-disabled=true]):hover,
.react-datepicker__year-text--holidays:not([aria-disabled=true]):hover {
  background-color: rgb(207, 82.9642857143, 0);
}
.react-datepicker__day--holidays:hover .overlay,
.react-datepicker__month-text--holidays:hover .overlay,
.react-datepicker__quarter-text--holidays:hover .overlay,
.react-datepicker__year-text--holidays:hover .overlay {
  visibility: visible;
  opacity: 1;
}
.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range,
.react-datepicker__month-text--selected,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--selected,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--selected,
.react-datepicker__year-text--in-selecting-range,
.react-datepicker__year-text--in-range {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}
.react-datepicker__day--selected:not([aria-disabled=true]):hover, .react-datepicker__day--in-selecting-range:not([aria-disabled=true]):hover, .react-datepicker__day--in-range:not([aria-disabled=true]):hover,
.react-datepicker__month-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__month-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__month-text--in-range:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--in-range:not([aria-disabled=true]):hover,
.react-datepicker__year-text--selected:not([aria-disabled=true]):hover,
.react-datepicker__year-text--in-selecting-range:not([aria-disabled=true]):hover,
.react-datepicker__year-text--in-range:not([aria-disabled=true]):hover {
  background-color: rgb(28.75, 93.2196969697, 143.75);
}
.react-datepicker__day--keyboard-selected,
.react-datepicker__month-text--keyboard-selected,
.react-datepicker__quarter-text--keyboard-selected,
.react-datepicker__year-text--keyboard-selected {
  border-radius: 0.3rem;
  background-color: rgb(186.25, 217.0833333333, 241.25);
  color: rgb(0, 0, 0);
}
.react-datepicker__day--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__month-text--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__quarter-text--keyboard-selected:not([aria-disabled=true]):hover,
.react-datepicker__year-text--keyboard-selected:not([aria-disabled=true]):hover {
  background-color: rgb(28.75, 93.2196969697, 143.75);
}
.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range):not(.react-datepicker__month-text--in-range):not(.react-datepicker__quarter-text--in-range):not(.react-datepicker__year-text--in-range),
.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range):not(.react-datepicker__month-text--in-range):not(.react-datepicker__quarter-text--in-range):not(.react-datepicker__year-text--in-range),
.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range):not(.react-datepicker__month-text--in-range):not(.react-datepicker__quarter-text--in-range):not(.react-datepicker__year-text--in-range),
.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range):not(.react-datepicker__month-text--in-range):not(.react-datepicker__quarter-text--in-range):not(.react-datepicker__year-text--in-range) {
  background-color: rgba(33, 107, 165, 0.5);
}
.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range), .react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range) {
  background-color: #f0f0f0;
  color: #000;
}
.react-datepicker__day--disabled,
.react-datepicker__month-text--disabled,
.react-datepicker__quarter-text--disabled,
.react-datepicker__year-text--disabled {
  cursor: default;
  color: #ccc;
}
.react-datepicker__day--disabled .overlay,
.react-datepicker__month-text--disabled .overlay,
.react-datepicker__quarter-text--disabled .overlay,
.react-datepicker__year-text--disabled .overlay {
  position: absolute;
  bottom: 70%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}

.react-datepicker__input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.react-datepicker__input-container .react-datepicker__calendar-icon {
  position: absolute;
  padding: 0.5rem;
  box-sizing: content-box;
}

.react-datepicker__view-calendar-icon input {
  padding: 6px 10px 5px 25px;
}

.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
  border: 1px solid transparent;
  border-radius: 0.3rem;
  position: relative;
}
.react-datepicker__year-read-view:hover,
.react-datepicker__month-read-view:hover,
.react-datepicker__month-year-read-view:hover {
  cursor: pointer;
}
.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
  border-top-color: rgb(178.5, 178.5, 178.5);
}
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  transform: rotate(135deg);
  right: -16px;
  top: 0;
}

.react-datepicker__year-dropdown,
.react-datepicker__month-dropdown,
.react-datepicker__month-year-dropdown {
  background-color: #f0f0f0;
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30px;
  z-index: 1;
  text-align: center;
  border-radius: 0.3rem;
  border: 1px solid #aeaeae;
}
.react-datepicker__year-dropdown:hover,
.react-datepicker__month-dropdown:hover,
.react-datepicker__month-year-dropdown:hover {
  cursor: pointer;
}
.react-datepicker__year-dropdown--scrollable,
.react-datepicker__month-dropdown--scrollable,
.react-datepicker__month-year-dropdown--scrollable {
  height: 150px;
  overflow-y: scroll;
}

.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
  line-height: 20px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__year-option:first-of-type,
.react-datepicker__month-option:first-of-type,
.react-datepicker__month-year-option:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.react-datepicker__year-option:last-of-type,
.react-datepicker__month-option:last-of-type,
.react-datepicker__month-year-option:last-of-type {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__year-option:hover,
.react-datepicker__month-option:hover,
.react-datepicker__month-year-option:hover {
  background-color: #ccc;
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
  border-bottom-color: rgb(178.5, 178.5, 178.5);
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
  border-top-color: rgb(178.5, 178.5, 178.5);
}
.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected {
  position: absolute;
  left: 15px;
}

.react-datepicker__close-icon {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0 6px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
.react-datepicker__close-icon::after {
  cursor: pointer;
  background-color: #216ba5;
  color: #fff;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  padding: 2px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  content: "×";
}
.react-datepicker__close-icon--disabled {
  cursor: default;
}
.react-datepicker__close-icon--disabled::after {
  cursor: default;
  background-color: #ccc;
}

.react-datepicker__today-button {
  background: #f0f0f0;
  border-top: 1px solid #aeaeae;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  clear: left;
}

.react-datepicker__portal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 2147483647;
}
.react-datepicker__portal .react-datepicker__day-name,
.react-datepicker__portal .react-datepicker__day,
.react-datepicker__portal .react-datepicker__time-name {
  width: 3rem;
  line-height: 3rem;
}
@media (max-width: 400px), (max-height: 550px) {
  .react-datepicker__portal .react-datepicker__day-name,
  .react-datepicker__portal .react-datepicker__day,
  .react-datepicker__portal .react-datepicker__time-name {
    width: 2rem;
    line-height: 2rem;
  }
}
.react-datepicker__portal .react-datepicker__current-month,
.react-datepicker__portal .react-datepicker-time__header {
  font-size: 1.44rem;
}

.react-datepicker__children-container {
  width: 13.8rem;
  margin: 0.4rem;
  padding-right: 0.2rem;
  padding-left: 0.2rem;
  height: auto;
}

.react-datepicker__aria-live {
  position: absolute;
  clip-path: circle(0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  width: 1px;
  white-space: nowrap;
}

.react-datepicker__calendar-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

.tigera-datepicker .react-datepicker {
    font-family: inherit;
    font-size: 1rem;
    border: none;
    background: var(--chakra-colors-tigeraWhite);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    border-radius: var(--chakra-radii-md);
    font-size: var(--chakra-fontSizes-sm);
}

.tigera-datepicker.tigera-datepicker-inline .react-datepicker {
    box-shadow: none;
}

.react-datepicker__header {
    padding: 12px 12px 0 12px;
    background: var(--chakra-colors-tigeraWhite);
    border-bottom: none;
}

.tigera-datepicker .react-datepicker__current-month {
    font-weight: var(--chakra-fontWeights-semibold);
    margin-bottom: var(--chakra-space-2);
}

.react-datepicker__navigation--next {
    top: 6px;
    right: 7px;
}

.react-datepicker__navigation-icon--next::before {
    transform: inherit;
    left: -3px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 8px solid var(--chakra-colors-tigeraGrey-600);
    border-width: 7px 0 7px 8px;
}

.react-datepicker__navigation:hover
    .react-datepicker__navigation-icon--next::before {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 8px solid var(--chakra-colors-tigeraGrey-400);
}

.react-datepicker__navigation--previous {
    top: 6px;
    left: 7px;
}

.react-datepicker__navigation-icon--previous::before {
    transform: inherit;
    left: -4px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 8px solid var(--chakra-colors-tigeraGrey-600);
    border-width: 7px 8px 7px 0;
}

.react-datepicker__navigation:hover
    .react-datepicker__navigation-icon--previous::before {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 8px solid var(--chakra-colors-tigeraGrey-400);
}

.react-datepicker__day-name {
    color: var(--chakra-colors-tigeraGrey-600);
}

.tigera-datepicker .react-datepicker__day,
.tigera-datepicker .react-datepicker__day:hover {
    border-radius: 50%;
}

.tigera-datepicker .react-datepicker__day--selected {
    background-color: var(--chakra-colors-tigeraBlueMedium);
}

.tigera-datepicker .react-datepicker__day:hover,
.tigera-datepicker .react-datepicker__day--keyboard-selected:hover {
    background-color: var(--chakra-colors-tigeraBlueLight);
    color: var(--chakra-colors-tigeraBlack);
}

.tigera-datepicker .react-datepicker__day--in-selecting-range {
    background-color: var(--chakra-colors-tigeraBlueMedium) !important;
    color: var(--chakra-colors-tigeraWhite);
}

.tigera-datepicker .react-datepicker__day--in-selecting-range:hover {
    color: var(--chakra-colors-tigeraWhite);
}

.tigera-datepicker .react-datepicker__close-icon::after {
    padding-right: var(--chakra-space-2);
    font-size: var(--chakra-fontSizes-2xl);
    background-color: var(--chakra-colors-tigeraWhite);
    color: var(--chakra-colors-tigeraBlack);
    line-height: 0.5;
    vertical-align: baseline;
    vertical-align: initial;
}

.react-datepicker-wrapper-full-width {
    width: 100%;
}

.react-resizable {
  position: relative;
}
.react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-origin: content-box;
  box-sizing: border-box;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2IDYiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iNnB4Ij48ZyBvcGFjaXR5PSIwLjMwMiI+PHBhdGggZD0iTSA2IDYgTCAwIDYgTCAwIDQuMiBMIDQgNC4yIEwgNC4yIDQuMiBMIDQuMiAwIEwgNiAwIEwgNiA2IEwgNiA2IFoiIGZpbGw9IiMwMDAwMDAiLz48L2c+PC9zdmc+');
  background-position: bottom right;
  padding: 0 3px 3px 0;
}
.react-resizable-handle-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
  transform: rotate(90deg);
}
.react-resizable-handle-se {
  bottom: 0;
  right: 0;
  cursor: se-resize;
}
.react-resizable-handle-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
  transform: rotate(180deg);
}
.react-resizable-handle-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
  transform: rotate(270deg);
}
.react-resizable-handle-w,
.react-resizable-handle-e {
  top: 50%;
  margin-top: -10px;
  cursor: ew-resize;
}
.react-resizable-handle-w {
  left: 0;
  transform: rotate(135deg);
}
.react-resizable-handle-e {
  right: 0;
  transform: rotate(315deg);
}
.react-resizable-handle-n,
.react-resizable-handle-s {
  left: 50%;
  margin-left: -10px;
  cursor: ns-resize;
}
.react-resizable-handle-n {
  top: 0;
  transform: rotate(225deg);
}
.react-resizable-handle-s {
  bottom: 0;
  transform: rotate(45deg);
}
/* base styles */

._GzYRV {
  line-height: 1.2;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

._3eOF8 {
  margin-right: 5px;
  font-weight: bold;
}

._3eOF8 + ._3eOF8 {
  margin-left: -5px;
}

._1MFti {
  cursor: pointer;
}

._f10Tu {
  font-size: 1.2em;
  margin-right: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

._1UmXx::after {
  content: '\25B8';
}

._1LId0::after {
  content: '\25BE';
}

._1pNG9 {
  margin-right: 5px;
}

._1pNG9::after {
  content: '...';
  font-size: 0.8em;
}

._2IvMF {
  background: #eee;
}

._2bkNM {
  margin: 0 10px;
  padding: 0;
}

/* default light style */
._1MGIk {
  font-weight: 600;
  margin-right: 5px;
  color: #000000;
}

._2YKJg {
}

._3uHL6 {
  color: #000000;
}

._2T6PJ {
  color: #df113a;
}

._1Gho6 {
  color: #df113a;
}

._vGjyY {
  color: rgb(42, 63, 60);
}

._1bQdo {
  color: #0b75f5;
}

._3zQKs {
  color: rgb(70, 144, 56);
}

._1xvuR {
  color: #43413d;
}

._oLqym {
  color: #000000;
}

._2AXVT {
  color: #000000;
}

._2KJWg {
  color: #000000;
}

/* default dark style */
._11RoI {
  background: rgb(0, 43, 54);
}

._17H2C {
  color: rgb(253, 246, 227);
}

._3QHg2 {
  color: rgb(253, 246, 227);
}

._3fDAz {
  color: rgb(253, 246, 227);
}

._2bSDX {
  font-weight: bolder;
  margin-right: 5px;
  color: rgb(253, 246, 227);
}

._1RQEj {
}

._gsbQL {
  color: rgb(253, 246, 227);
}

._LaAZe {
  color: rgb(129, 181, 172);
}

._GTKgm {
  color: rgb(129, 181, 172);
}

._Chy1W {
  color: rgb(203, 75, 22);
}

._2bveF {
  color: rgb(211, 54, 130);
}

._2vRm- {
  color: rgb(174, 129, 255);
}

._1prJR {
  color: rgb(38, 139, 210);
}

.labelStyles {
    font-weight: normal;
    color: var(--chakra-colors-tigeraBlack);
}

.stringStyles {
    font-weight: normal;
    color: #dd0a73; /* Darker shade of var(--chakra-colors-tigeraRose); */
    padding-left: 4px;
}

.valueStyles {
    font-weight: normal;
    color: var(--chakra-colors-tigeraBlueMedium);
    padding-left: 4px;
}

.containerStyles {
    color: var(--chakra-colors-tigeraBlack);
    background-color: var(--chakra-colors-tigeraGrey-50);
    border: 1px solid;
    border-color: var(--chakra-colors-tigeraGrey-300);
    border-radius: 5px;
    overflow-x: auto;
}

.tg-tooltip {
  max-width: 200px;
  padding: 3px 4px !important;
  border-radius: 4px;
  color: #ffffff !important;
  text-align: center;
  word-break: break-word;
  opacity: 1 !important;
}

.place-top::before {
  z-index: -1 !important;
}

.tg-button {
  position: relative;
  border: 1px solid #cccccc;
  color: #141414;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  vertical-align: top;
  background: #ffffff;
  cursor: pointer;
}
.tg-button-disabled {
  cursor: default;
  opacity: 0.2;
}

.tg-button:focus {
  outline: 0;
}

.tg-button:not(.tg-button-disabled):hover {
  background: #ffffff;
}

.tg-button-primary {
  border: none;
  color: #ffffff;
  background: #273981;
}

.tg-button-primary:not(.tg-button-disabled):hover {
  background: #1084bd;
}

.tg-button-orange {
  border: none;
  color: #ffffff;
  background: #ee9b20;
}

.tg-button-orange:not(.tg-button-disabled):hover {
  background: #d28616;
}

.tg-button-red {
  border: none;
  color: #ffffff;
  background: #f1403e;
}

.tg-button-red:not(.tg-button-disabled):hover {
  background: #cf1812;
}

.tg-button-secondary {
  border: 1px solid #273981;
  color: #273981;
  background: #ffffff;
}

.tg-button-secondary:not(.tg-button-disabled):hover {
  border: 1px solid #1084bd;
  color: #1084bd;
  background: #ffffff;
}

.tg-button-light-grey {
  border: none;
  color: #ffffff;
  background-color: #5f5f5f;
}

.tg-button-light-grey:not(.tg-button-disabled):hover {
  background-color: #4e4f52;
}

.tg-button-large {
  min-width: 85px;
  height: 35px;
  padding: 0 5px;
  border-radius: 4px;
}

.tg-button-large:not(.tg-button-disabled):active {
  padding-top: 4px;
  overflow: hidden;
  box-shadow: inset 0 4px 0 0 rgba(20, 20, 20, 0.5);
}

.tg-button-medium {
  min-width: 50px;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 4px;
}

.tg-button-medium:not(.tg-button-disabled):active {
  padding-top: 3px;
  overflow: hidden;
  box-shadow: inset 0 3px 0 0 rgba(20, 20, 20, 0.5);
}

.tg-button-small {
  min-width: 30px;
  height: 30px;
  border-radius: 4px;
}

.tg-button-small:not(.tg-button-disabled):active {
  padding-top: 2px;
  overflow: hidden;
  box-shadow: inset 0 2px 0 0 rgba(20, 20, 20, 0.5);
}

.tg-button-extra-small {
  min-width: 50px;
  height: 20px;
  border-radius: 4px;
}

.tg-button-extra-small:not(.tg-button-disabled):active {
  padding-top: 2px;
  overflow: hidden;
  box-shadow: inset 0 2px 0 0 rgba(20, 20, 20, 0.5);
}

.tg-button-square-small {
  width: 30px;
  height: 30px;
  border-radius: 4px;
}

.tg-button-square-small:not(.tg-button-disabled):active {
  padding-top: 2px;
  overflow: hidden;
  box-shadow: inset 0 2px 0 0 rgba(20, 20, 20, 0.5);
}

.tg-button-square-medium {
  width: 42px;
  height: 42px;
  border-radius: 4px;
}

.tg-button-square-medium:not(.tg-button-disabled):active {
  padding-top: 3px;
  overflow: hidden;
  box-shadow: inset 0 3px 0 0 rgba(20, 20, 20, 0.5);
}

.tg-button-icon-delete {
  width: 100%;
  height: 100%;
  background-image: url(/static/ico-delete539169feea1ae4ea0ec8.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.tg-button-icon-search {
  width: 100%;
  height: 100%;
  background-image: url(/static/ico-searchbfafeb14468715bbbf83.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.tg-button-icon-plus {
  width: 100%;
  height: 100%;
  background-image: url(/static/ico-plus05c0170f5d102931a345.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.tg-button-icon-view {
  width: 100%;
  height: 100%;
  background-image: url(/static/ico-viewf7f9014d807536e23430.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.tg-button-full-width {
  width: 100%;
}

.tg-borderless-button {
  border: none;
  color: #273981;
  font-weight: 600;
  font-size: 14px;
  background: none;
  outline: none;
}
.tg-borderless-button--disabled {
  color: #888888 !important;
}
.tg-borderless-button--disabled:hover {
  color: #888888 !important;
}
.tg-borderless-button:hover {
  color: #1084bd;
}

svg:not(:root).svg-inline--fa {
  overflow: visible; }

.svg-inline--fa {
  display: inline-block;
  font-size: inherit;
  height: 1em;
  overflow: visible;
  vertical-align: -.125em; }
  .svg-inline--fa.fa-lg {
    vertical-align: -.225em; }
  .svg-inline--fa.fa-w-1 {
    width: 0.0625em; }
  .svg-inline--fa.fa-w-2 {
    width: 0.125em; }
  .svg-inline--fa.fa-w-3 {
    width: 0.1875em; }
  .svg-inline--fa.fa-w-4 {
    width: 0.25em; }
  .svg-inline--fa.fa-w-5 {
    width: 0.3125em; }
  .svg-inline--fa.fa-w-6 {
    width: 0.375em; }
  .svg-inline--fa.fa-w-7 {
    width: 0.4375em; }
  .svg-inline--fa.fa-w-8 {
    width: 0.5em; }
  .svg-inline--fa.fa-w-9 {
    width: 0.5625em; }
  .svg-inline--fa.fa-w-10 {
    width: 0.625em; }
  .svg-inline--fa.fa-w-11 {
    width: 0.6875em; }
  .svg-inline--fa.fa-w-12 {
    width: 0.75em; }
  .svg-inline--fa.fa-w-13 {
    width: 0.8125em; }
  .svg-inline--fa.fa-w-14 {
    width: 0.875em; }
  .svg-inline--fa.fa-w-15 {
    width: 0.9375em; }
  .svg-inline--fa.fa-w-16 {
    width: 1em; }
  .svg-inline--fa.fa-w-17 {
    width: 1.0625em; }
  .svg-inline--fa.fa-w-18 {
    width: 1.125em; }
  .svg-inline--fa.fa-w-19 {
    width: 1.1875em; }
  .svg-inline--fa.fa-w-20 {
    width: 1.25em; }
  .svg-inline--fa.fa-pull-left {
    margin-right: .3em;
    width: auto; }
  .svg-inline--fa.fa-pull-right {
    margin-left: .3em;
    width: auto; }
  .svg-inline--fa.fa-border {
    height: 1.5em; }
  .svg-inline--fa.fa-li {
    width: 2em; }
  .svg-inline--fa.fa-fw {
    width: 1.25em; }

.fa-layers svg.svg-inline--fa {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0; }

.fa-layers {
  display: inline-block;
  height: 1em;
  position: relative;
  text-align: center;
  vertical-align: -.125em;
  width: 1em; }
  .fa-layers svg.svg-inline--fa {
    transform-origin: center center; }

.fa-layers-text, .fa-layers-counter {
  display: inline-block;
  position: absolute;
  text-align: center; }

.fa-layers-text {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center; }

.fa-layers-counter {
  background-color: #ff253a;
  border-radius: 1em;
  box-sizing: border-box;
  color: #fff;
  height: 1.5em;
  line-height: 1;
  max-width: 5em;
  min-width: 1.5em;
  overflow: hidden;
  padding: .25em;
  right: 0;
  text-overflow: ellipsis;
  top: 0;
  transform: scale(0.25);
  transform-origin: top right; }

.fa-layers-bottom-right {
  bottom: 0;
  right: 0;
  top: auto;
  transform: scale(0.25);
  transform-origin: bottom right; }

.fa-layers-bottom-left {
  bottom: 0;
  left: 0;
  right: auto;
  top: auto;
  transform: scale(0.25);
  transform-origin: bottom left; }

.fa-layers-top-right {
  right: 0;
  top: 0;
  transform: scale(0.25);
  transform-origin: top right; }

.fa-layers-top-left {
  left: 0;
  right: auto;
  top: 0;
  transform: scale(0.25);
  transform-origin: top left; }

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  animation: fa-spin 1s infinite steps(8); }

@keyframes fa-spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1); }

.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  position: relative;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0; }

.svg-inline--fa.fa-stack-1x {
  height: 1em;
  width: 1.25em; }

.svg-inline--fa.fa-stack-2x {
  height: 2em;
  width: 2.5em; }

.fa-inverse {
  color: #fff; }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

.color-icon--grey {
  color: #999999;
}
.color-icon--green {
  color: #75bb5d;
}
.color-icon--red {
  color: #ee0000;
}
.color-icon--yellow {
  color: #fff253;
}

.revert-changes-icon {
  transform: rotate(180deg);
}

.exclamation-triangle-icon {
  width: 100% !important;
  height: 100%;
}

.list-icon {
  width: 100% !important;
  height: 100%;
}

.wi-fi-icon {
  width: 1em !important;
}

.svg-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
}

.borderless-action-button {
  display: flex;
  align-items: center;
  padding: 0;
  color: #273981;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.borderless-action-button__text {
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
}
.borderless-action-button--forward .borderless-action-button__text {
  order: 2;
}
.borderless-action-button--forward .borderless-action-button__icon {
  order: 1;
}
.borderless-action-button--reverse .borderless-action-button__text {
  order: 1;
}
.borderless-action-button--reverse .borderless-action-button__icon {
  order: 2;
}

.tg-button-compare__icon {
  width: 100%;
  height: 100%;
}

.filter-placeholder {
  display: flex;
  align-items: center;
}
.filter-placeholder__text {
  flex: 1;
  overflow: hidden;
  color: #141414;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.filter-placeholder__icon {
  padding-top: 4px;
  color: #141414;
  font-size: 20px;
}

.legacyBox .filter {
  padding: 16px;
}

.filter {
  display: inline-block;
  width: 100%;
  color: #141414;
}
.filter__applied-label-selector {
  margin: 15px 0 20px 0;
}
.filter__title {
  margin-bottom: 10px;
  color: #141414;
  font-weight: 500;
  font-size: 14px;
}
.filter__placeholder {
  width: 100%;
  height: 42px;
  padding-right: 16px;
  padding-left: 16px;
  border: 1px solid #dcdde0;
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0px 1px 2px rgb 0 0 0/5%;
  cursor: pointer;
  transition: all 0.3s;
  transition-timing-function: step-end;
}
.filter__placeholder--open {
  border-bottom: none;
}
.filter__placeholder--open {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  transition: none;
}
.filter__show-hide-content {
  padding: 0 16px 16px 16px;
  border: 1px solid #dcdde0;
  border-top: none;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  background-color: #ffffff;
}
.filter__search-button, .filter__clear-button {
  display: inline-block;
  margin-right: 16px;
}
.filter__content .filter-field {
  max-width: 400px;
  margin-top: 0;
  margin-bottom: 16px;
}
.filter__content .filter-field label {
  font-weight: 500;
}

.filter-container {
  display: flex;
}
.filter-container__toggle {
  flex: 1;
  min-width: 0;
}
.filter-container__content {
  padding: 24px;
  border-radius: 6px;
  background-color: #f5f5f5;
}
.filter-container__clear-button {
  margin-left: 5px;
}

.tg-checkbox__mock-checkbox {
  width: 16px;
  height: 17px;
  margin-bottom: 0;
  vertical-align: middle;
  background: transparent url(/static/checkboxab90f2c627aa86e51faf.svg);
  cursor: pointer;
}
.tg-checkbox__text-label {
  display: inline;
  margin-left: 8px;
  color: #141414;
  font-weight: 500;
  font-size: 14px;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.tg-checkbox input[type=checkbox] {
  display: none;
}
.tg-checkbox input[type=checkbox]:checked + .tg-checkbox__mock-checkbox {
  background-image: url(/static/checkbox-checked087f5c6b9fd489c8f673.svg);
  opacity: 1;
}
.tg-checkbox input[type=checkbox]:disabled + .tg-checkbox__mock-checkbox {
  cursor: default;
  opacity: 0.7;
}
.tg-checkbox input[type=checkbox]:disabled ~ .tg-checkbox__text-label {
  cursor: default;
  opacity: 0.7;
}
.tg-checkbox--blue input[type=checkbox] + .tg-checkbox__mock-checkbox {
  height: 16px;
  background-image: url(/static/checkbox-white48b0526ef65aece9ee44.svg);
}
.tg-checkbox--blue input[type=checkbox]:checked + .tg-checkbox__mock-checkbox {
  height: 16px;
  background-image: url(/static/checkbox-checked-blue16cab0b83f7db1a1a57e.svg);
}

.flow-logs-filter {
  display: flex;
  flex-direction: column;
}
.flow-logs-filter__src, .flow-logs-filter__dest {
  display: flex;
}
.flow-logs-filter__src-types, .flow-logs-filter__dest-types {
  width: 125px;
  margin-right: 10px;
}
.flow-logs-filter__src-types .tg-checkbox:not(:last-child), .flow-logs-filter__dest-types .tg-checkbox:not(:last-child) {
  margin-bottom: 8px;
}
.flow-logs-filter .flow-logs-filter__src-label-selector, .flow-logs-filter .flow-logs-filter__dest-label-selector {
  max-width: none;
  max-width: initial;
}
.flow-logs-filter .flow-logs-filter__time-range {
  min-width: -moz-max-content;
  min-width: max-content;
}

.flow-logs {
  height: 100%;
  min-width: -moz-max-content;
  min-width: max-content;
}
.flow-logs__chart {
  height: calc(100% - 110px);
  background: white;
}
.flow-logs__chart--full-screen {
  height: 100%;
}

.chord-diagram {
  position: relative;
  display: grid;
  grid-template-areas: "chart sidepanel" "chart legend";
  grid-template-columns: 1fr 500px;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.chord-diagram__chart {
  z-index: 1;
  display: flex;
  grid-area: chart;
  justify-content: center;
}
.chord-diagram__legend {
  grid-area: legend;
  align-self: end;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
}
.chord-diagram__sidepanel {
  grid-area: sidepanel;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
}
.chord-diagram__legend, .chord-diagram__sidepanel {
  margin-top: 10px;
}
.chord-diagram__top-right-menu {
  position: absolute;
  top: 10px;
  right: 500px;
  z-index: 2;
  color: #333;
}
.chord-diagram__top-right-menu > button {
  margin-left: 3px;
  color: #2b3e4d;
}
.chord-diagram__top-left-menu {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.legend {
  display: flex;
  padding: 5px;
  background-color: #f5f5f5;
}
.legend__title {
  font-weight: bold;
}
.legend__item {
  margin: 0 5px;
}
.legend__item-color {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
}

.chord-diagram-side-panel__filters > * {
  margin-bottom: 5px;
}
.chord-diagram-side-panel__summary {
  max-height: calc(100vh - 435px);
  overflow-y: auto;
}

.error-icon {
  color: #fa7070;
  font-size: 130px;
}

.spinner {
  width: 100%;
  height: 100%;
}
.spinner__cube {
  float: left;
  width: 33%;
  height: 33%;
  background-color: #ee9b20;
  animation: spinnerCubesScaleDelay 1.3s infinite ease-in-out;
}
.spinner_cube1 {
  animation-delay: 0.2s;
}
.spinner_cube2 {
  animation-delay: 0.3s;
}
.spinner_cube3 {
  animation-delay: 0.4s;
}
.spinner_cube4 {
  animation-delay: 0.1s;
}
.spinner_cube5 {
  animation-delay: 0.2s;
}
.spinner_cube6 {
  animation-delay: 0.3s;
}
.spinner_cube7 {
  animation-delay: 0s;
}
.spinner_cube8 {
  animation-delay: 0.1s;
}
.spinner_cube9 {
  animation-delay: 0.2s;
}

@keyframes spinnerCubesScaleDelay {
  0%, 70%, 100% {
    transform: scale3d(1, 1, 1);
  }
  35% {
    transform: scale3d(0, 0, 1);
  }
}

@charset "UTF-8";
.level-switcher {
  width: 100%;
}
.level-switcher > button.tg-button {
  width: 33.33%;
}
.level-switcher > button.tg-button + button.tg-button {
  margin-left: 0;
}
.level-switcher > button.tg-button:not(:first-child):not(:last-child) {
  border-right: 0;
  border-left: 0;
}
.level-switcher > .btn.active {
  background-color: #f5f5f5;
  box-shadow: none;
}
.level-switcher > button.tg-button:active, .level-switcher > button.tg-button:focus {
  outline: none;
}
.level-switcher__level::before {
  margin-right: 5px;
  content: "\2713";
}
.level-switcher__level--selected::before {
  color: #00c771;
}

.select-filters > * {
  margin-bottom: 5px;
}
.select-filters__select-option {
  padding: 0;
}

.spinner-container {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 32px;
  height: 32px;
}

.summary-table {
  margin-top: 15px;
  color: #000000;
  font-size: 12px;
}
.summary-table__row {
  display: flex;
}
.summary-table__name-container {
  flex: 1;
  font-weight: 400;
}
.summary-table__items-container {
  display: flex;
  padding-right: 10px;
  text-align: right;
}
.summary-table__items-container > .summary-table-item {
  width: 60px;
}
.summary-table__header {
  padding: 7px;
  background-color: #f5f5f5;
}
.summary-table__header .summary-table-name,
.summary-table__header .summary-table-item {
  font-weight: 600;
  font-size: 12px;
}
.summary-table__parent {
  padding-top: 7px;
}
.summary-table__parent .summary-table-name {
  display: flex;
  padding-left: 5px;
  font-size: 14px;
}
.summary-table__parent .summary-table-name__color-dot {
  margin-right: 8px;
}
.summary-table__parent .summary-table-item {
  color: #2b3e4d;
  font-size: 14px;
}
.summary-table__children {
  padding-top: 10px;
  font-size: 10px;
}
.summary-table__children .summary-table-name {
  display: flex;
  padding-left: 15px;
  font-weight: 400;
}
.summary-table__children .summary-table-name__color-dot {
  margin-right: 8px;
}

.flow-summary__policy-name {
  cursor: pointer;
}
.flow-summary__inactive-policy-name {
  cursor: default;
}
.flow-summary__recommended-policy-icon {
  margin-right: 5px;
  cursor: pointer;
}
.flow-summary__spinner {
  width: 100px;
  height: 100px;
  margin-top: 50%;
  margin-left: 50%;
}

.name-summary__recommended-policy {
  display: flex;
  align-items: baseline;
  margin-top: 5px;
  margin-left: 20px;
}
.name-summary__recommended-policy-icon {
  margin-right: 5px;
}
.name-summary__spinner {
  width: 100px;
  height: 100px;
  margin-top: 50%;
  margin-left: 50%;
}

.d3-chord-diagram path {
  stroke: #000;
  stroke-width: 0.25px;
}
.d3-chord-diagram .ring text {
  font: 10px sans-serif;
  pointer-events: none;
  fill: #666;
}
.d3-chord-diagram text.namespace-label {
  font: 16px sans-serif;
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  fill: #666;
}
.d3-chord-diagram text.name-label {
  font: 12px sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  fill: #666;
}

.chord-menu__show-labels, .chord-menu__zoom-in, .chord-menu__zoom-out, .chord-menu__full-screen, .chord-menu__refresh {
  margin-right: 3px;
  font-size: 20px;
}

.flow-logs {
  height: 100%;
}
.flow-logs__chart {
  height: calc(100% - 60px);
  margin-top: 15px;
  background: white;
}
.flow-logs__chart--full-screen {
  height: 100%;
}
.flow-logs__spinner {
  display: flex;
  justify-content: center;
}
.flow-logs__spinner .spinner {
  width: 100px;
  height: 100px;
  margin-top: 100px;
}
.flow-logs__icon {
  margin-top: 100px;
  color: #fa7070;
}

.Resizer {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  background: #dcdde0;
  background-clip: padding-box;
}
.Resizer:not(.disabled) {
  cursor: row-resize;
}
.Resizer:not(.disabled).vertical {
  cursor: col-resize;
}
.Resizer:not(.disabled):hover, .Resizer:not(.disabled):active {
  background-color: rgba(20, 20, 20, 0.4);
  transition: all 2s ease;
}
.Resizer:not(.disabled):hover::before, .Resizer:not(.disabled):hover::after, .Resizer:not(.disabled):active::before, .Resizer:not(.disabled):active::after {
  opacity: 1;
  transition: all 2s ease;
}

.Resizer.horizontal {
  width: 100%;
  height: calc(2px * 2 + 2px);
  margin: -2px 0;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}
.Resizer.horizontal::before {
  position: absolute;
  left: calc(50% - 16px);
  width: 32px;
  height: 2px;
  background-color: #1084bd;
  opacity: 0;
  content: "";
}
.Resizer.horizontal::after {
  position: absolute;
  bottom: -8px;
  left: calc(50% - 9px);
  height: 18px;
  transform: rotate(45deg);
  opacity: 0;
  content: url(/static/arrowsf4109df76194bd5c19f5.svg);
}

.Resizer.horizontal:not(.disabled):hover, .Resizer.horizontal:not(.disabled):active {
  border-top: 2px solid rgba(16, 132, 189, 0.24);
  border-bottom: 2px solid rgba(16, 132, 189, 0.24);
}

.Resizer.vertical {
  width: calc(2px * 2 + 2px);
  margin: 0 -2px;
  border-right: 2px solid transparent;
  border-left: 2px solid transparent;
}
.Resizer.vertical::before {
  position: absolute;
  top: calc(50% - 16px);
  width: 2px;
  height: 32px;
  background-color: #1084bd;
  opacity: 0;
  content: "";
}
.Resizer.vertical::after {
  position: absolute;
  top: calc(50% - 9px);
  left: -8px;
  height: 18px;
  transform: rotate(-45deg);
  opacity: 0;
  content: url(/static/arrowsf4109df76194bd5c19f5.svg);
}

.Resizer.vertical:not(.disabled):hover, .Resizer.vertical:not(.disabled):active {
  border-right: 2px solid rgba(16, 132, 189, 0.24);
  border-left: 2px solid rgba(16, 132, 189, 0.24);
}

.breadcrumbs {
  margin-left: 10px;
  font-weight: 500;
  font-size: 15px;
}
.breadcrumbs__node + .breadcrumbs__node:before {
  display: inline-block;
  padding: 0 5px;
  color: #000000;
  content: "/";
}
.breadcrumbs__node {
  color: #273981;
}
.breadcrumbs__node--clickable {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.breadcrumbs__node--clickable:hover {
  cursor: pointer;
  opacity: 0.8;
}

.hints {
  position: absolute;
  bottom: 10px;
  display: none;
  margin-left: 10px;
  padding: 5px;
  border-radius: 5px;
  background-color: rgba(230, 230, 230, 0.7);
  cursor: default;
}
.hints__hint {
  display: inline-block;
  margin: 0 5px;
}
.hints__hint-label {
  margin-right: 2px;
  font-weight: 600;
}

.hints:hover {
  display: flex;
}

.time-range-label {
  margin-right: 11px;
  color: #5f5f5f;
  font-weight: 500;
  font-size: 10px;
}

.spinner {
  width: 100%;
  height: 100%;
}
.spinner__cube {
  float: left;
  width: 33%;
  height: 33%;
  background-color: #ee9b20;
  animation: spinnerCubesScaleDelay 1.3s infinite ease-in-out;
}
.spinner_cube1 {
  animation-delay: 0.2s;
}
.spinner_cube2 {
  animation-delay: 0.3s;
}
.spinner_cube3 {
  animation-delay: 0.4s;
}
.spinner_cube4 {
  animation-delay: 0.1s;
}
.spinner_cube5 {
  animation-delay: 0.2s;
}
.spinner_cube6 {
  animation-delay: 0.3s;
}
.spinner_cube7 {
  animation-delay: 0s;
}
.spinner_cube8 {
  animation-delay: 0.1s;
}
.spinner_cube9 {
  animation-delay: 0.2s;
}

@keyframes spinnerCubesScaleDelay {
  0%, 70%, 100% {
    transform: scale3d(1, 1, 1);
  }
  35% {
    transform: scale3d(0, 0, 1);
  }
}

.details-spinner .spinner {
  width: 25px;
  height: 25px;
}

.time-series-of-http-requests-duration-tooltip {
  padding: 5px 8px;
  border: 1px solid #5f5f5f;
  border-radius: 4px;
  font-family: "Poppins", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  background-color: #ffffff;
}

.time-series-of-http-requests-duration-tooltip-content-item {
  margin-top: 5px;
}
.time-series-of-http-requests-duration-tooltip-content-item__header {
  font-weight: bold;
}

.time-series-of-http-requests-duration-tooltip-descriptor__label {
  display: inline-block;
  margin-right: 3px;
}

.details-section {
  display: flex;
}
.details-section__title {
  color: #141414;
  font-weight: 700;
  font-size: 10px;
}

.protocols-and-ports {
  font-weight: 500;
  font-size: 10px;
}

.all-edge-policies {
  padding-right: 18px;
}
.all-edge-policies .edge-policies {
  font-weight: 500;
  font-size: 10px;
}
.all-edge-policies .edge-policies:not(:last-child) {
  margin-bottom: 16px;
}
.all-edge-policies .edge-policies__type {
  margin-bottom: 4px;
  font-weight: 700;
}
.all-edge-policies .edge-policies__policy {
  margin-right: 16px;
  padding: 4px 8px;
}
.all-edge-policies .edge-policies__policy__isDenied {
  background-color: #FCD9D8;
}
.all-edge-policies__spinner {
  margin-top: 16px;
  margin-left: 25px;
}

.tg-chips {
  display: flex;
  flex-flow: row wrap;
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 8px;
}

.tg-chip {
  min-height: 16px;
  padding: 4px 8px;
  border-radius: 8px;
  color: #141414;
  font-weight: 500;
  font-size: 10px;
  background-color: #dcdde0;
}
.tg-chip--clickable {
  cursor: pointer;
}

.tg-table-pagination {
  display: flex;
  align-items: center;
  min-width: 255px;
  font-weight: 500;
}
.tg-table-pagination__label {
  min-width: 185px;
  color: #141414;
  font-size: 12px;
}
.tg-table-pagination__links {
  display: flex;
  margin-left: 10px;
}

.tg-table-pagination-link {
  min-width: 30px;
  color: #273981;
  font-size: 12px;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  cursor: pointer;
}
.tg-table-pagination-link:hover, .tg-table-pagination-link:focus {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.tg-table-pagination-link--disabled, .tg-table-pagination-link--disabled:hover, .tg-table-pagination-link--disabled:focus {
  color: #d2d2d2 !important;
  cursor: not-allowed;
}
.tg-table-pagination-link:last-of-type {
  margin-left: 8px;
}
.tg-table-pagination-link__icon {
  font-size: 16px;
  vertical-align: middle;
}

.table-sort-indicator {
  margin-left: 5px;
}

.tg-table-resizer {
  position: absolute;
  top: 0;
  right: -11.5px;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
}
.tg-table-resizer__border {
  display: inline-block;
  width: 2px;
  height: 100%;
  margin: 0 4px;
  background: #dcdde0;
  touch-action: none;
}
.tg-table-resizer__icon {
  color: #1084bd;
  font-size: 15px;
  visibility: hidden;
}
.tg-table-resizer.tg-table-resizer--resizing .tg-table-resizer__border {
  background: #1084bd;
}
.tg-table-resizer.tg-table-resizer--resizing .tg-table-resizer__icon {
  visibility: visible;
}

.tg-table-row-expander {
  width: 10px !important;
  height: 18px;
}

.empty-table {
  padding: 20px;
}

.table-container {
  width: 100%;
  height: 100%;
}
.table-container__action-bar {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 16px;
}
.table-container__action-bar:empty {
  padding: 0;
  padding-bottom: 16px;
}
.table-container__pagination {
  margin-left: auto;
}
.table-container__spinner {
  display: flex;
  justify-content: center;
}
.table-container__spinner .spinner {
  width: 75px;
  height: 75px;
}

.ReactTable {
  border: none !important;
}
.ReactTable .rt-table {
  width: 100%;
  border: 0px solid #ffffff;
  border-top: none;
}
.ReactTable .rt-table .rt-head {
  color: #141414;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  text-transform: capitalize;
  background-color: #f5f5f5;
}
.ReactTable .rt-table .rt-head .rt-tr {
  border-top: 2px solid #f5f5f5;
  border-bottom: 2px solid #f5f5f5;
}
.ReactTable .rt-table .rt-head .rt-tr .rt-th {
  padding: 8px 20px;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5;
  word-break: normal;
  word-wrap: normal;
}
.ReactTable .rt-table .rt-head .rt-tr .rt-th.column-header--expander {
  flex: 0 0 auto !important;
  width: 0 !important;
  margin: 0;
  padding: 0;
  visibility: hidden;
}
.ReactTable .rt-table .rt-head .rt-tr .rt-th.column-header--expander + .rt-th {
  padding-left: 34px;
}
.ReactTable .rt-table .rt-head .rt-tr .rt-th.column-header--expander + .rt-th {
  margin-right: 25px;
}
.ReactTable .rt-table .rt-head .rt-tr .rt-th.column-header--expander + .rt-th .tg-table-resizer {
  right: -36.5px;
}
.ReactTable .rt-table .rt-head .rt-tr .rt-th .tg-table-resizer__border {
  background-color: #f5f5f5;
}
.ReactTable .rt-table .rt-head .rt-tr .rt-th:first-child, .ReactTable .rt-table .rt-head .rt-tr .rt-th.column-header--expander + .rt-th {
  border-left: none;
}
.ReactTable .rt-table .rt-head .rt-tr :last-child :not(.tg-table-resizer--resizing) .tg-table-resizer__border {
  width: 0px;
}
.ReactTable .rt-table .rt-body {
  display: block;
}
.ReactTable .rt-table .rt-body .rt-tr {
  position: relative;
  color: #141414;
  background: #ffffff;
}
.ReactTable .rt-table .rt-body .rt-tr.rt-tr--selected, .ReactTable .rt-table .rt-body .rt-tr.rt-tr--expanded {
  color: #ffffff;
  background-color: #273981 !important;
}
.ReactTable .rt-table .rt-body .rt-tr:not(:last-child):before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #dcdde0;
  content: "";
}
.ReactTable .rt-table .rt-body .rt-tr.rt-tr--expanded::before {
  content: none;
}
.ReactTable .rt-table .rt-body .rt-tr.-even {
  background: #ffffff;
}
.ReactTable .rt-table .rt-body .rt-tr.-odd {
  background: #ffffff;
}
.ReactTable .rt-table .rt-body .rt-tr .rt-td {
  padding: 9px 16px 8px 20px;
  border: none;
  overflow: hidden;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ReactTable .rt-table .rt-body .rt-tr .rt-td.rt-td-expandable {
  max-width: 25px;
  padding: 10px 0 0 10px;
}
.ReactTable .rt-table .rt-body .rt-tr .rt-td.rt-td-expandable + .rt-td {
  padding-left: 9px;
}
.ReactTable .rt-table .rt-body .rt-tr .rt-td .table__navigation {
  float: right;
  color: #0080b7;
  font-size: 18px;
  cursor: pointer;
}
.ReactTable .rt-table .rt-body .rt-tr-expanded,
.ReactTable .rt-table .rt-body .rt-td-expanded {
  display: block;
}
.ReactTable .rt-table--selectable .rt-tr {
  cursor: pointer;
}

.edge-traffic-stats .table-container__action-bar {
  padding: 0;
}
.edge-traffic-stats .empty-table {
  margin-left: 16px;
}
.edge-traffic-stats__table .rt-table {
  border: none;
}
.edge-traffic-stats__table .rt-table .rt-head .rt-tr {
  border-top: none;
  border-bottom: none;
}
.edge-traffic-stats__table .rt-table .rt-head .rt-tr .rt-th {
  font-weight: 700;
  font-size: 10px;
}
.edge-traffic-stats__table .rt-table .rt-body .rt-tr {
  border-bottom: 2px solid #dcdde0;
}
.edge-traffic-stats__table .rt-table .rt-body .rt-tr::before {
  border-bottom: none !important;
}
.edge-traffic-stats__table .rt-table .rt-body .rt-tr .rt-td {
  font-weight: 500;
  font-size: 10px;
}
.edge-traffic-stats__table .rt-table .rt-body .rt-tr .rt-td:first-child {
  display: flex;
  flex-grow: 15 !important;
  justify-content: flex-end;
  margin-right: 26px;
  padding-right: 8px;
  padding-left: 0;
  font-weight: 700;
  font-size: 10px;
  text-transform: capitalize;
}
.edge-traffic-stats__table .rt-table .rt-body .rt-tr .edge-traffic-stat-column--highlighted {
  font-weight: bold;
  color: #f1403e;
}

.process-info-table {
  margin-bottom: 0;
  border: 1px solid #efefef;
  font-size: 12px;
}
.process-info-table__column-header, .process-info-table__cell {
  padding-left: 15px;
  border-top: none;
  border-right: 1px solid #efefef;
  border-bottom: none;
  word-wrap: break-word;
}
.process-info-table__column-header:last-child, .process-info-table__cell:last-child {
  border-right: none;
}
.process-info-table__header {
  border-bottom: 1px solid #efefef;
}
.process-info-table__row {
  border-bottom: 1px solid #efefef;
}
.process-info-table__row:last-child {
  border-bottom: none;
}
.process-info-table span {
  word-wrap: break-word;
}

.element-details-expander {
  max-width: 5px;
  margin-right: 10px;
  cursor: pointer;
}

.element-details-content-section__header {
  display: flex;
  font-weight: 500;
}
.element-details-content-section__content {
  margin: 5px 0;
  margin-left: 16px;
  font-size: 12px;
  line-height: 20px;
}

.process-info {
  display: flex;
  flex-direction: column;
}
.process-info-presentation {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
  row-gap: 5px;
  font-size: 12px;
}
.process-info-presentation__title {
  font-weight: bold;
}
.process-info-presentation:not(:last-child) {
  margin-bottom: 12px;
}

.http-status-codes-tooltip {
  padding: 5px 8px;
  border: 1px solid #5f5f5f;
  border-radius: 4px;
  font-family: "Poppins", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  background-color: #ffffff;
}
.http-status-codes-tooltip__header {
  font-weight: bold;
}
.http-status-codes-tooltip__content {
  margin-top: 5px;
}

.http-status-codes-tooltip-descriptor__label {
  display: inline-block;
  margin-right: 3px;
}

.insights__insight {
  padding-right: 16px;
  font-weight: 500;
  font-size: 10px;
  cursor: pointer;
}
.insights__insight:not(:last-child) {
  margin-bottom: 8px;
}

.noClick {
  opacity: 0.6;
}

.edge-details {
  margin: 0 -18px;
}
.edge-details__more-section {
  margin-top: 16px;
}
.edge-details__more-section-header {
  height: 24px;
  padding-left: 37px;
  font-weight: 700;
  font-size: 10px;
  line-height: 24px;
  background-color: #f5f5f5;
}
.edge-details__more-section .details-section {
  margin-top: 16px;
}
.edge-details__more-section .details-section__title {
  margin-right: 24px;
}
.edge-details__more-section .protocols-and-ports .details-section__title {
  margin-left: 16px;
}
.edge-details__more-section .all-edge-policies .details-section__title {
  margin-left: 25px;
}
.edge-details__more-section .insights .details-section__title {
  margin-left: 23px;
}

.edge {
  color: #141414;
  font-weight: 500;
  font-size: inherit;
}
.edge__icon {
  display: inline-block;
  margin-right: 4px;
  margin-left: 4px;
}

.node-edges-by-type__edge-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -4px -7px;
  margin-right: 0;
  padding: 4px 7px;
  padding-right: 16px;
  font-size: 10px;
  cursor: pointer;
}
.node-edges-by-type__edge-container:not(:last-child) {
  margin-bottom: 5px;
}
.node-edges-by-type__edge-container:hover {
  background-color: #f5f5f5;
}
.node-edges-by-type__edge-container:hover .edge {
  display: flex;
  color: #273981;
}
.node-edges-by-type__edge-container:hover .node-edges-by-type__arrow {
  visibility: visible;
}
.node-edges-by-type__arrow {
  margin-left: 4px;
  color: #5f5f5f;
  font-size: 10px;
  visibility: hidden;
}

.node-top-level-dns-stats {
  margin-right: -18px;
  margin-left: -18px;
}
.node-top-level-dns-stats .table-container:not(:first-child) {
  margin-top: 16px;
}
.node-top-level-dns-stats .table-container__action-bar {
  padding: 0;
}
.node-top-level-dns-stats__table .rt-table {
  border: none;
}
.node-top-level-dns-stats__table .rt-table .rt-head .rt-tr {
  border-top: none;
  border-bottom: none;
}
.node-top-level-dns-stats__table .rt-table .rt-head .rt-tr .rt-th {
  font-weight: 700;
  font-size: 10px;
  text-align: center;
}
.node-top-level-dns-stats__table .rt-table .rt-body .rt-tr {
  border-bottom: 2px solid #dcdde0;
}
.node-top-level-dns-stats__table .rt-table .rt-body .rt-tr::before {
  border-bottom: none !important;
}
.node-top-level-dns-stats__table .rt-table .rt-body .rt-tr .rt-td {
  font-weight: 500;
  font-size: 10px;
  text-align: center;
}
.node-top-level-dns-stats__table .rt-table .rt-body .rt-tr .rt-td:first-child {
  font-weight: 700;
  font-size: 10px;
  text-transform: capitalize;
}

.node-top-qname-by-rcode-table-container .table-container__action-bar {
  padding: 0;
}
.node-top-qname-by-rcode-table-container .node-top-qname-by-rcode-table__head .rt-th.column-header--expander + .rt-th {
  margin-right: 10px !important;
}
.node-top-qname-by-rcode-table-container .node-top-qname-by-rcode-table-details {
  font-size: 10px;
}
.node-top-qname-by-rcode-table-container .node-top-qname-by-rcode-table-details__qnames {
  margin-bottom: 0;
  padding: 10px 20px;
}

.node-dns-server-ips-by-rcode-table-container .table-container__action-bar {
  padding: 0;
}
.node-dns-server-ips-by-rcode-table-container .node-dns-server-ips-by-rcode-table__head .rt-th.column-header--expander + .rt-th {
  margin-right: 10px !important;
}
.node-dns-server-ips-by-rcode-table-container .node-dns-server-ips-by-rcode-table-details {
  font-size: 10px;
}
.node-dns-server-ips-by-rcode-table-container .node-dns-server-ips-by-rcode-table-details__ips {
  margin-bottom: 0;
  padding: 10px 20px;
}

.time-series-of-top-level-dns-stats-tooltip {
  padding: 5px 8px;
  border: 1px solid #5f5f5f;
  border-radius: 4px;
  font-family: "Poppins", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  background-color: #ffffff;
}

.time-series-of-top-level-dns-stats-tooltip-content-item {
  margin-top: 5px;
}
.time-series-of-top-level-dns-stats-tooltip-content-item__header {
  font-weight: bold;
}

.time-series-of-top-level-dns-stats-tooltip-descriptor__label {
  display: inline-block;
  margin-right: 3px;
}

.node-details__details {
  display: grid;
  grid-row-gap: 8px;
  grid-column-gap: 16px;
  grid-template-columns: max-content auto;
}
.node-details__details .details-section {
  display: contents;
}
.node-details__details .details-section__title {
  margin-left: auto;
}

.details-header {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: min-content auto;
  align-items: center;
}
.details-header__title {
  grid-row: 2;
  grid-column: 2;
  font-weight: 500;
  font-size: 14px;
}
.details-header__sub-title {
  grid-row: 1;
  grid-column: 2;
  font-weight: 700;
  font-size: 8px;
}
.details-header__back-icon, .details-header__close-panel-icon {
  grid-row: 2;
  grid-column: 1;
  height: 24px;
  margin-right: 13px;
  font-size: 14px;
  cursor: pointer;
}

.service-graph-details {
  position: relative;
  height: 100%;
  padding: 16px;
  overflow-y: auto;
  color: #141414;
  font-family: "Poppins", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.service-graph-details__header {
  font-size: 14px;
}
.service-graph-details__content {
  margin-top: 16px;
  padding-right: 5px;
}

.side-panel-toolbar {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.side-panel-dropdown__toggle {
  z-index: -1 !important;
  opacity: 0;
}
.side-panel-dropdown__menu {
  top: -3px;
  right: 33px;
  left: auto;
  min-width: 300px;
  margin: 0;
  margin: initial;
  padding: 0;
  border: none;
  box-shadow: none;
  box-shadow: initial;
}

.topology-visibility-dropdown__http-flows-response-codes {
  margin-left: 25px;
}
.topology-visibility-dropdown__dropdown-control-panel {
  margin-top: 5px;
  text-align: right;
}
.topology-visibility-dropdown__http-checkbox {
  display: flex;
  align-items: center;
}
.topology-visibility-dropdown__http-checkbox-label {
  display: flex;
  align-items: center;
  margin: 0;
  margin-left: 8px;
}

.topology-reset-dropdown__content {
  display: flex;
  flex-direction: column;
}
.topology-reset-dropdown__reset-view-button {
  margin-bottom: 5px;
}

.service-graph-right-side-panel {
  height: 100%;
  background-color: #ffffff;
}
.service-graph-right-side-panel__side-panel-toolbar-container {
  position: absolute;
  left: -48px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-graph-right-side-panel__side-panel-toolbar-container::before, .service-graph-right-side-panel__side-panel-toolbar-container::after {
  flex-grow: 1;
  content: "";
}
.service-graph-right-side-panel__side-panel-toolbar {
  margin: 46px 0;
}

.CodeMirror {
  height: 25px;
}
.ReactCodeMirror {
  height: 30px;
}
.cm-category {
  color: #2196F3;
}
.cm-operator {
  color: #9E9E9E;
}
.cm-value {
  color: #E91E63;
}
.react-filter-box {
  overflow-y: hidden;
  height: 28px;
  padding: 4px 6px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #555555;
  vertical-align: middle;
  border-radius: 4px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border linear 0.2s, box-shadow linear 0.2s;
}
.react-filter-box.focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.react-filter-box.error {
  border-color: #a94442;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.react-filter-box.error.focus {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.CodeMirror-hints {
  padding: 5px;
  min-width: 100px;
}
.CodeMirror-hints .CodeMirror-hint {
  padding: 5px 5px;
}
li.CodeMirror-hint-active {
  background: #2196F3;
}
li.CodeMirror-hint-active .hint-value {
  color: white;
}

.react-filter-box {
  height: 28px;
  margin-bottom: 0;
  padding: 4px 8px;
  font-size: 12px;
  font-family: "Poppins", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  line-height: 11px;
  width: 100%;
}
.react-filter-box .react-codemirror2 {
  width: calc(100% - 22px);
}
.react-filter-box .CodeMirror * {
  font-family: "Poppins", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.react-filter-box .CodeMirror-placeholder {
  color: #b0b2b8;
  font-size: 12px;
}
.react-filter-box .CodeMirror-code .cm-value {
  color: #141414;
  font-weight: 500;
}

.CodeMirror-hints {
  font-size: 12px;
  font-family: "Poppins", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.tg-filter-box-search-icon {
  position: relative;
  right: 30px;
  width: 22px !important;
  margin-right: -22px;
  background-color: #ffffff;
  cursor: pointer;
}

.cytoscape-navigator{
	position: fixed;
	border: 1px solid #000;
	background: #fff;
	z-index: 99999;
	width: 400px;
	height: 400px;
	bottom: 0;
	right: 0;
	overflow: hidden;
}

.cytoscape-navigator > img{
	max-width: 100%;
	max-height: 100%;
}

.cytoscape-navigator > canvas{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 101;
}

.cytoscape-navigatorView{
	position: absolute;
	top: 0;
	left: 0;
	cursor: move;
	background: #B7E1ED;
	-moz-opacity: 0.50;
	opacity: 0.50;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=50);
	z-index: 102;
}

.cytoscape-navigatorOverlay{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 103;
}

.cy-context-menus-cxt-menu {
    display:none;
    z-index: 1000;
    position:absolute;
    border:1px solid #A0A0A0;
    padding: 0;
    margin: 0;
    width:auto;
}

.cy-context-menus-cxt-menuitem {
    display:block;
    width: 100%;
    padding: 3px 20px;
    position:relative;
    margin:0;
    background-color:#f8f8f8;
    font-weight:normal;
    font-size: 12px;
    white-space:nowrap;
    border: 0;
    text-align: left;
}

.cy-context-menus-cxt-menuitem:enabled {
    color: #000000;
}

.cy-context-menus-ctx-operation:focus {
  outline: none;
}

.cy-context-menus-cxt-menuitem:hover {
    color: #ffffff;
    -webkit-text-decoration: none;
    text-decoration: none;
    background-color: #0B9BCD;
    background-image: none;
    cursor: pointer;
}

.cy-context-menus-cxt-menuitem[content]:before {
    content:attr(content);
}

.cy-context-menus-divider {
  border-bottom:1px solid #A0A0A0;
}

.cy-context-menus-submenu-indicator {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
}
.topographic-chart {
  position: relative;
  background-color: #f5f5f5;
}
.topographic-chart__cytoscape {
  z-index: 0;
  height: 100%;
}
.topographic-chart__cytoscape div:first-of-type {
  width: auto !important;
}
.topographic-chart__navigator {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  height: 150px;
  border: 1px solid #000000;
  overflow: hidden;
  background: #ffffff;
}
.topographic-chart__navigator--hidden {
  display: none;
}

.topographic-chart-context-menu {
  padding: 14px 0 11px;
  border: 1px solid #dcdde0;
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0px 0px 8px 0px #dcdde0;
}

.topographic-chart-context-menu-item {
  margin: 0;
  padding: 5px 16px;
  color: #141414;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  background-color: #ffffff;
}
.topographic-chart-context-menu-item--header {
  display: flex;
  align-items: center;
  margin: 0 -16px;
  padding: 5px 16px;
  color: #ffffff;
}
.topographic-chart-context-menu-item--header svg {
  margin-right: 5px;
}
.topographic-chart-context-menu-item--icon {
  display: inline;
  width: 26px;
  height: 26px;
  margin-right: 8px;
}
.topographic-chart-context-menu-item.cy-context-menus-divider {
  border-bottom: 1px solid #d8d8d8;
}
.topographic-chart-context-menu-item:disabled {
  color: #dcdde0;
  pointer-events: none;
}
.topographic-chart-context-menu-item[title^="Not authorized"]:disabled {
  pointer-events: inherit;
}
.topographic-chart-context-menu-item[title^="Not authorized"]:disabled:hover {
  color: #dcdde0;
  background-color: #ffffff;
  cursor: default;
}
.topographic-chart-context-menu-item:not(:disabled):hover {
  color: #141414;
  background-color: #dcdde0;
}

.topographic-chart-context-menu .topographic-chart-context-menu {
  margin-top: -2px;
}

.topographic-chart-context-menu-header__icon {
  width: 26px;
  height: 26px;
  margin-right: 8px;
}
.topographic-chart-context-menu-header__node-name {
  margin-top: 3px;
}

.tippy-box {
  min-width: 255px;
  border: 1px solid #dcdde0;
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0px 0px 8px #dcdde0;
}
.tippy-box .tippy-content {
  position: relative;
  z-index: 1;
  padding: 16px;
  font-size: 14px;
}
.tippy-box .topographic-chart-tooltip-section:not(:last-child) {
  margin-bottom: 8px;
}
.tippy-box .topographic-chart-tooltip-section-title {
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 14px;
  font-family: "Poppins", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.tippy-box .topographic-chart-tooltip-data-content {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 12px;
  font-family: "Poppins", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.tippy-box .topographic-chart-tooltip-data-content__value {
  font-weight: 700;
}
.tippy-box .topographic-chart-tooltip-data-content--allowed .topographic-chart-tooltip-data-content__value {
  color: #1a8578;
}
.tippy-box .topographic-chart-tooltip-data-content--denied .topographic-chart-tooltip-data-content__value {
  color: #ff4d1f;
}
.tippy-box .topographic-chart-tooltip-data-content--deniedByRemote .topographic-chart-tooltip-data-content__value {
  color: #ff8888;
}

.cy-context-menus-submenu-indicator {
  visibility: hidden;
}

.topographic-spinner {
  display: flex;
  justify-content: center;
}
.topographic-spinner .spinner {
  position: absolute;
  top: 50%;
  width: 100px;
  height: 100px;
}

.topology__error {
  position: absolute;
  top: 50%;
  left: 45%;
  color: #fa7070;
  font-size: 20px;
}
.topology__no-data {
  position: absolute;
  top: 50%;
  left: 43%;
  font-size: 20px;
}

.service-graph {
  position: relative;
  height: calc(100% + 32px);
  margin: -16px;
}
.service-graph__module-label {
  display: flex;
  align-items: center;
}
.service-graph__module-additional-info {
  height: 20px;
  margin-left: 5px;
  padding: 0 2px;
  border: 1px solid #ffffff;
  border-radius: 3px;
  font-size: small;
  line-height: 20px;
}
.service-graph__split-pane {
  position: relative !important;
  min-height: calc(100% - 50px) !important;
}
.service-graph__action-bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding-top: 16px;
}
.service-graph__main-content {
  position: relative;
  height: 100%;
}
.service-graph__open-left-panel, .service-graph__open-right-panel, .service-graph__open-bottom-tabs {
  position: absolute;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: #fff;
}
.service-graph__open-left-panel:hover, .service-graph__open-right-panel:hover, .service-graph__open-bottom-tabs:hover {
  cursor: pointer;
}
.service-graph__open-left-panel {
  top: 0;
  left: 0;
  z-index: 9;
  border-right: 2px solid #dcdde0;
  border-bottom: 2px solid #dcdde0;
}
.service-graph__open-right-panel {
  top: 0;
  right: 0;
  border-bottom: 2px solid #dcdde0;
  border-left: 2px solid #dcdde0;
}
.service-graph__open-bottom-tabs {
  bottom: 0;
  left: 0;
  border-top: 2px solid #dcdde0;
  border-right: 2px solid #dcdde0;
}
.service-graph__hints.with-bottom-tabs-button {
  margin-left: 48px;
}
.service-graph__chart {
  z-index: 0;
  height: 100%;
}
.service-graph__tabs-close-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 36px;
  border-bottom: 2px solid #dcdde0;
  font-size: 16px;
  z-index: 10;
}
.service-graph__tabs-close-icon:hover {
  cursor: pointer;
}
.service-graph__tabs {
  width: 100%;
  height: 100%;
}
.service-graph__tabs > .nav-tabs {
  margin-left: 48px;
}
.service-graph__tabs > .nav-tabs li:first-child > a {
  padding-left: 0;
}
.service-graph__tabs > .nav-tabs .tg-tabs__tab a .chakra-popover__popper a {
  color: #273981 !important;
  border: none;
  display: inline;
  padding: 4px;
}
.service-graph .context-menu__content {
  height: 200px;
  overflow: auto;
}
.service-graph .ReactTable .rt-table {
  border-left-width: 1px;
}

.service-graph__chart:hover + .service-graph__hints {
  display: flex;
}

.service-graph-views__images, .service-graph-views__operations {
  margin-bottom: 10px;
}

.service-graph-action-bar__time-range-label {
  margin-right: 16px;
  margin-left: auto;
}
.service-graph-action-bar__time-range-label.with-right-panel-button {
  margin-right: 54px;
}
.service-graph-action-bar__breadcrumbs {
  margin-left: 16px;
  font-size: 12px;
  line-height: 20px;
}
.service-graph-action-bar__breadcrumbs.with-left-panel-button {
  margin-left: 70px;
}

.editable {
  position: relative;
}
.editable__icon {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: auto;
  margin-bottom: auto;
  transform: translate(-12px, -50%);
}

.tag-delete-btn {
  width: 24px;
  height: 24px;
  border-radius: 0;
  background-color: #273981;
}

.tag-item {
  display: inline-block;
  height: 24px;
  margin: 0;
  color: #141414;
  background-color: #dceaf3;
}
.tag-item__value {
  display: inline-block;
  max-width: 250px;
  margin: 2px 8px 2px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.tag-item__value-editor {
  margin: 0 4px;
  border: none;
  background-color: transparent;
}
.tag-item__value-editor::-moz-placeholder {
  color: #ffffff;
  opacity: 0.7;
}
.tag-item__value-editor::placeholder {
  color: #ffffff;
  opacity: 0.7;
}
.tag-item__value:hover {
  cursor: pointer;
}

.tag-delete-btn {
  width: 24px;
  height: 24px;
  border: none;
  color: #ffffff;
  font-size: 10px;
  background-color: #273981;
  outline: 0;
}
.tag-delete-btn:hover {
  background-color: #1084bd;
}

.tag-collection {
  display: inline-block;
  min-height: 30px;
  padding: 7px 16px;
  border: #dcdde0 solid 1px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 20px;
  background: #ffffff;
}
.tag-collection__invoke-command-button {
  padding: 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 24px;
}
.tag-collection__invoke-command-button:not(:first-child) {
  margin-left: 16px;
}

.tag-collection-empty {
  padding: 0;
  border: none;
  border-radius: none;
  background: transparent;
}

.tag-collection-full-width {
  width: 100%;
}

.tag-conjunctor {
  margin: 0 5px;
  font-weight: bold;
  vertical-align: middle;
}

.tg-radio__icon {
  margin-right: 7px;
}
.tg-radio__text-label {
  color: #141414;
  font-weight: 500;
  font-size: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.tg-radio__icon, .tg-radio__text-label {
  margin-bottom: 0;
  cursor: pointer;
}
.tg-radio input[type=radio] {
  display: none;
}
.tg-radio input[type=radio]:disabled + .tg-radio__icon {
  cursor: default;
  opacity: 0.7;
}
.tg-radio input[type=radio]:disabled ~ .tg-radio__text-label {
  cursor: default;
  opacity: 0.7;
}

.tg-radio-group .tg-radio {
  display: flex;
  align-items: center;
  margin-right: 5px;
  margin-bottom: 0;
}
.tg-radio-group .tg-radio:last-child {
  margin-right: 0;
}
.tg-radio-group .tg-radio:not(:last-child) {
  margin-bottom: 5px;
}
.tg-radio-group.tg-radio-group--inline .tg-radio {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 0;
}
.tg-radio-group.tg-radio-group--inline .tg-radio:last-child {
  margin-right: 0;
}

.typed-value-select {
  display: flex;
}
.typed-value-select__column {
  display: inline-block;
  vertical-align: top;
}
.typed-value-select__type {
  width: 140px;
}
.typed-value-select__value {
  width: 230px;
}
.typed-value-select__commands {
  display: flex;
  justify-content: flex-end;
  margin-top: 5px;
}
.typed-value-select__commands > button {
  margin-left: 10px;
}

.typed-value-input:focus {
  outline: none !important;
}

.typed-value-select-dropdown .tg-dropdown__menu {
  padding: 10px;
}
.typed-value-select-dropdown .tg-dropdown__toggle {
  display: none;
}

.create-capture-job-modal__header > h4 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
}
.create-capture-job-modal .capture-job__form {
  display: flex;
  flex-direction: column;
}
.create-capture-job-modal .capture-job__name, .create-capture-job-modal .capture-job__namespace, .create-capture-job-modal .capture-job__start-time, .create-capture-job-modal .capture-job__end-time, .create-capture-job-modal .capture-job__protocol, .create-capture-job-modal .capture-job__ports {
  display: flex;
  flex-direction: column;
  margin: 8px 0;
  font-weight: 500;
}
.create-capture-job-modal .capture-job__name {
  margin-top: 8px;
}
.create-capture-job-modal .capture-job__namespace div {
  font-size: 10px;
  line-height: 16px;
}
.create-capture-job-modal .capture-job__label {
  width: 100px;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}
.create-capture-job-modal .capture-job__date-time-input .form-control {
  display: block;
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid #dcdde0;
  border-radius: 6px;
  color: #141414;
  font-weight: 500;
  font-size: 14px;
  background-color: #ffffff;
  box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.04706);
  cursor: default;
}
.create-capture-job-modal .capture-job__date-time-input--error .form-control {
  border-color: #f1403e;
  color: #f1403e;
  background-image: url(/static/input-error-icon9d0a5cf2f98ca39116a3.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 16px 16px;
  background-origin: content-box;
}
.create-capture-job-modal .capture-job__controls {
  margin-top: 16px;
  text-align: right;
}
.create-capture-job-modal .capture-job__button:first-child {
  margin-right: 7px;
}
.create-capture-job-modal .capture-job__field-warning {
  margin-top: 8px;
  color: #5f5f5f;
  font-size: 12px;
  line-height: 20px;
}
.create-capture-job-modal .capture-job .tg-dropdown__menu {
  padding: 16px;
  border: 1px solid #dcdde0;
  border-radius: 0;
}
.create-capture-job-modal .capture-job .tg-dropdown__menu .tg-form-control {
  border: 1px solid #dcdde0;
  border-radius: 6px;
}
.create-capture-job-modal .capture-job .tg-dropdown__menu .tg-form-control input {
  border-radius: 0;
  background-color: transparent;
}
.create-capture-job-modal .capture-job .tg-dropdown__menu .typed-value-select__commands {
  justify-content: flex-start;
  margin-top: 16px;
}
.create-capture-job-modal .capture-job .tg-dropdown__menu .typed-value-select__commands > button {
  margin-left: 16px;
}
.create-capture-job-modal .capture-job .tg-dropdown__menu .typed-value-select__commands > button:first-child {
  margin-left: 0;
}

/*!
 * https://github.com/arqex/react-datetime
 */

.rdt {
  position: relative;
}
.rdtPicker {
  display: none;
  position: absolute;
  min-width: 250px;
  padding: 4px;
  margin-top: 1px;
  z-index: 99999 !important;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  border: 1px solid #f9f9f9;
}
.rdtOpen .rdtPicker {
  display: block;
}
.rdtStatic .rdtPicker {
  box-shadow: none;
  position: static;
}

.rdtPicker .rdtTimeToggle {
  text-align: center;
}

.rdtPicker table {
  width: 100%;
  margin: 0;
}
.rdtPicker td,
.rdtPicker th {
  text-align: center;
  height: 28px;
}
.rdtPicker td {
  cursor: pointer;
}
.rdtPicker td.rdtDay:hover,
.rdtPicker td.rdtHour:hover,
.rdtPicker td.rdtMinute:hover,
.rdtPicker td.rdtSecond:hover,
.rdtPicker .rdtTimeToggle:hover {
  background: #eeeeee;
  cursor: pointer;
}
.rdtPicker td.rdtOld,
.rdtPicker td.rdtNew {
  color: #999999;
}
.rdtPicker td.rdtToday {
  position: relative;
}
.rdtPicker td.rdtToday:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #428bca;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.rdtPicker td.rdtActive,
.rdtPicker td.rdtActive:hover {
  background-color: #428bca;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.rdtPicker td.rdtActive.rdtToday:before {
  border-bottom-color: #fff;
}
.rdtPicker td.rdtDisabled,
.rdtPicker td.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}

.rdtPicker td span.rdtOld {
  color: #999999;
}
.rdtPicker td span.rdtDisabled,
.rdtPicker td span.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}
.rdtPicker th {
  border-bottom: 1px solid #f9f9f9;
}
.rdtPicker .dow {
  width: 14.2857%;
  border-bottom: none;
  cursor: default;
}
.rdtPicker th.rdtSwitch {
  width: 100px;
}
.rdtPicker th.rdtNext,
.rdtPicker th.rdtPrev {
  font-size: 21px;
  vertical-align: top;
}

.rdtPrev span,
.rdtNext span {
  display: block;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */    /* Konqueror */      /* Firefox */       /* Internet Explorer/Edge */
  user-select: none;
}

.rdtPicker th.rdtDisabled,
.rdtPicker th.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}
.rdtPicker thead tr:first-of-type th {
  cursor: pointer;
}
.rdtPicker thead tr:first-of-type th:hover {
  background: #eeeeee;
}

.rdtPicker tfoot {
  border-top: 1px solid #f9f9f9;
}

.rdtPicker button {
  border: none;
  background: none;
  cursor: pointer;
}
.rdtPicker button:hover {
  background-color: #eee;
}

.rdtPicker thead button {
  width: 100%;
  height: 100%;
}

td.rdtMonth,
td.rdtYear {
  height: 50px;
  width: 25%;
  cursor: pointer;
}
td.rdtMonth:hover,
td.rdtYear:hover {
  background: #eee;
}

.rdtCounters {
  display: inline-block;
}

.rdtCounters > div {
  float: left;
}

.rdtCounter {
  height: 100px;
}

.rdtCounter {
  width: 40px;
}

.rdtCounterSeparator {
  line-height: 100px;
}

.rdtCounter .rdtBtn {
  height: 40%;
  line-height: 40px;
  cursor: pointer;
  display: block;

  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */    /* Konqueror */      /* Firefox */       /* Internet Explorer/Edge */
  user-select: none;
}
.rdtCounter .rdtBtn:hover {
  background: #eee;
}
.rdtCounter .rdtCount {
  height: 20%;
  font-size: 1.2em;
}

.rdtMilli {
  vertical-align: middle;
  padding-left: 8px;
  width: 48px;
}

.rdtMilli input {
  width: 100%;
  font-size: 1.2em;
  margin-top: 37px;
}

.rdtTime td {
  cursor: default;
}

.spinner {
  width: 100%;
  height: 100%;
}
.spinner__cube {
  float: left;
  width: 33%;
  height: 33%;
  background-color: #ee9b20;
  animation: spinnerCubesScaleDelay 1.3s infinite ease-in-out;
}
.spinner_cube1 {
  animation-delay: 0.2s;
}
.spinner_cube2 {
  animation-delay: 0.3s;
}
.spinner_cube3 {
  animation-delay: 0.4s;
}
.spinner_cube4 {
  animation-delay: 0.1s;
}
.spinner_cube5 {
  animation-delay: 0.2s;
}
.spinner_cube6 {
  animation-delay: 0.3s;
}
.spinner_cube7 {
  animation-delay: 0s;
}
.spinner_cube8 {
  animation-delay: 0.1s;
}
.spinner_cube9 {
  animation-delay: 0.2s;
}

@keyframes spinnerCubesScaleDelay {
  0%, 70%, 100% {
    transform: scale3d(1, 1, 1);
  }
  35% {
    transform: scale3d(0, 0, 1);
  }
}

.spinner-container {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 32px;
  height: 32px;
}

.policy-caption {
  border-bottom: solid thin #dcdde0;
}

.policy-caption .policy-caption__title {
  float: left;
  margin-top: 24px;
  margin-bottom: 4px;
  color: #141414;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
}

.order-placement__mode {
  margin-bottom: 10px;
}

.policy-position {
  display: inline-block;
  width: auto;
  width: initial;
  margin-top: 4px;
  color: #5f5f5f;
}
.policy-position__label {
  font-size: 12px;
}
.policy-position__value {
  margin-left: 4px;
}
.policy-position .tg-radio {
  color: #141414;
}

.policy-title__name {
  display: flex;
  align-items: center;
}
.policy-title__name > .policy-title__name-editor {
  width: 345px;
  border-radius: 4px;
  font-size: 12px;
}
.policy-title__staged-icon {
  margin-left: 8px;
}
.policy-title__federated-icon {
  width: 80px;
  margin-left: 5px;
}
.policy-title__error {
  margin-top: 3px;
  color: #ee0000;
}
.policy-title__federated {
  margin-left: 5px;
}

.policy-scope {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 24px;
}
.policy-scope__scope-selector {
  flex-basis: 165px;
  flex-grow: 0;
}
.policy-scope__namespace-selector {
  flex-basis: 200px;
  flex-grow: 0;
  margin-left: 16px;
}
.policy-scope .Select-control {
  border-radius: 4px;
}

.policy-options {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  padding: 0;
}
.policy-options__kubernetes {
  margin-right: 20px;
  margin-bottom: 10px;
}
.policy-options__pre-dnat, .policy-options__do-not-track, .policy-options__apply-on-forward {
  margin-right: 20px;
  margin-bottom: 10px;
}
.policy-options__kubernetes *, .policy-options__pre-dnat *, .policy-options__do-not-track *, .policy-options__apply-on-forward * {
  font-weight: 500;
  font-size: 14px;
}
.policy-options__warning {
  flex-basis: 100%;
  color: #ee0000;
}

.policy-rules {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  padding: 16px 0 0 0;
}
.policy-rules__ingress-type, .policy-rules__egress-type {
  flex-basis: 90px;
}
.policy-rules__ingress-type *, .policy-rules__egress-type * {
  font-weight: 500;
  font-size: 14px;
}
.policy-rules__warning {
  flex-basis: 100%;
  margin-top: 10px;
  color: #ee0000;
}

.two-column-radio-group {
  padding: 0 10px;
}
.two-column-radio-group__column {
  display: inline-block;
  width: 50%;
  vertical-align: top;
}
.two-column-radio-group__column--disabled {
  cursor: not-allowed;
  opacity: 0.2;
}

.icmp-selector {
  width: 260px;
  padding: 10px;
}
.icmp-selector__column {
  display: inline-block;
  width: 50%;
  vertical-align: top;
}
.icmp-selector__column--disabled {
  cursor: not-allowed;
  opacity: 0.2;
}

.text-value-editor__input {
  width: 270px;
}
.text-value-editor__warning {
  color: #fa7070;
}

.service-builder-dropdown .tg-dropdown__menu {
  min-width: 580px;
  padding: 10px;
}
.service-builder-dropdown .tg-dropdown__toggle {
  display: none;
}
.service-builder__commands {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.service-builder-commands__save-button {
  margin-left: 10px;
}
.service-builder__controls {
  display: flex;
  gap: var(--chakra-space-3);
}
.service-builder .text-value-editor {
  flex: 1;
}

.rule-builder__commands {
  margin-top: 7px;
  padding: 15px 15px 0 15px;
}
.rule-builder__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}
.rule-builder__title .label-selector-builder-window__header h4 {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
}
.rule-builder__header-title {
  margin-top: 8px;
  margin-bottom: 24px;
  font-size: 12px;
  line-height: 20px;
}

.rule-operator {
  display: flex;
  flex-wrap: wrap;
}
.rule-operator__action {
  flex-basis: 100px;
  margin-right: 10px;
}
.rule-operator__action .Select-control {
  height: 42px;
  border-radius: 4px;
  font-weight: 500;
}
.rule-operator__protocol, .rule-operator__icmp {
  margin-right: 10px;
}
.rule-operator__protocol-placeholder, .rule-operator__icmp-placeholder {
  min-width: 150px;
  border: 1px solid #dcdde0;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0px 1px 2px rgb 0 0 0/5%;
}
.rule-operator__protocol-placeholder__toggle, .rule-operator__icmp-placeholder__toggle {
  display: none;
}
.rule-operator__protocol-placeholder .placeholder-dropdown__text, .rule-operator__icmp-placeholder .placeholder-dropdown__text {
  height: 40px;
}
.rule-operator__protocol-placeholder__menu-label, .rule-operator__icmp-placeholder__menu-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.rule-operator__protocol-placeholder__menu-label-text, .rule-operator__icmp-placeholder__menu-label-text {
  color: #141414;
  font-weight: 500;
}
.rule-operator__protocol-placeholder__toggle-icon, .rule-operator__icmp-placeholder__toggle-icon {
  font-size: 20px;
}
.rule-operator__protocol-placeholder__menu, .rule-operator__icmp-placeholder__menu {
  padding: 20px 0 0;
  border-color: #dcdde0;
  border-radius: 4px;
  box-shadow: none;
}
.rule-operator__protocol-placeholder {
  min-width: 190px;
  height: 42px;
}
.rule-operator__protocol-dropdown {
  display: flex;
  min-width: 300px;
}
.rule-operator__protocol-dropdown .two-column-radio-group__column {
  width: auto;
  width: initial;
}
.rule-operator__protocol-dropdown .two-column-radio-group__column:not(:first-child) {
  margin-left: 40px;
}
.rule-operator__integer {
  flex-basis: 100px;
  margin-right: 10px;
}
.rule-operator__integer .form-control {
  height: 40px;
  border: 1px solid #dcdde0;
  border-radius: 4px;
}
.rule-operator .tg-radio {
  margin-bottom: 16px;
  line-height: 24px;
}

.entity-rule-operator {
  display: flex;
  flex-direction: column;
}
.entity-rule-operator > .entity-rule-operator__title:first-child {
  font-size: 12px;
  line-height: 20px;
}
.entity-rule-operator__title {
  margin-top: 24px;
  margin-bottom: 8px;
  color: #141414;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}
.entity-rule-operator__selectors-block .tg-radio-group > .tg-radio {
  margin-bottom: 0;
}
.entity-rule-operator__items {
  margin-left: 30px;
}
.entity-rule-operator__items > div > .entity-rule-operator__label-selector:first-child > .entity-rule-operator__title, .entity-rule-operator__service-account-names > .entity-rule-operator__title {
  margin-top: 0;
}
.entity-rule-operator__ports {
  margin-top: 10px;
}
.entity-rule-operator__ports-placeholder {
  width: 200px;
}
.entity-rule-operator__net {
  margin-top: 10px;
}
.entity-rule-operator__separator {
  margin: 3px 15px 3px 15px;
  color: #3f5569;
  font-weight: bold;
}
.entity-rule-operator__service-account-operator-block {
  padding-left: 16px;
  border-left: 2px solid #b0b2b8;
}

.rule-builder-commands {
  display: flex;
  justify-content: flex-end;
}
.rule-builder-commands__cancel-button {
  margin-left: 10px;
}
.rule-builder-commands__save-button {
  margin-left: 10px;
}

.label-selector-builder-window__header h4 {
  margin: 4px 0;
}

.rule-builder-modal {
  z-index: 100;
}

.k8s-rule-builder-header__title {
  margin: 8px 0;
  font-size: 12px;
  line-height: 20px;
}
.k8s-rule-builder__label {
  margin-top: 0;
  margin-bottom: 8px;
  color: #141414;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}
.k8s-rule-builder__source-title {
  font-size: 12px;
  line-height: 20px;
}
.k8s-rule-builder__source, .k8s-rule-builder__target, .k8s-rule-builder__ports-container {
  margin-left: 30px;
}
.k8s-rule-builder__separator {
  margin: 3px 15px 3px 15px;
  color: #3f5569;
  font-weight: bold;
}
.k8s-rule-builder-commands {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.k8s-rule-builder-commands__cancel-button, .k8s-rule-builder-commands__save-button {
  margin-top: 10px;
  margin-left: 10px;
}

.kubernetes-rule-builder-window__header h4 {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
}

.kubernates-rule-modal {
  z-index: 100;
}

.rule-description {
  min-width: 750px;
  margin-right: 5%;
  vertical-align: middle;
}
.rule-description__item {
  margin-right: 10px;
}
.rule-description .entity-rule {
  display: inline;
}

.rule-with-stats {
  display: flex;
  align-items: center;
}
.rule-with-stats__rule {
  flex: 3;
}
.rule-with-stats .rule__header {
  background-color: #dcdde0;
}
.rule-with-stats .rule__header-icon {
  background-color: #b0b2b8;
  box-shadow: 0 14px 0 0 #b0b2b8, 0 7px 0 0 #b0b2b8;
}

.rules__add-command {
  margin-bottom: 10px;
}

.calico-rules__rule {
  padding-bottom: 16px;
}

.kubernetes-rules__rule {
  padding-bottom: 16px;
}

.policy {
  border: 2px solid #dcdde0;
  color: #5f5f5f;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  background-color: #ffffff;
}
.policy__body {
  padding: 0 24px 8px;
}
.policy__scope-caption, .policy__name-caption, .policy__label-selector-caption, .policy__labels-caption, .policy__options-caption, .policy__ingress-rules-caption, .policy__egress-rules-caption, .policy__audit-logs-caption {
  margin-bottom: 16px;
}
.policy__type {
  padding-bottom: 10px;
}
.policy__row {
  display: flex;
  flex-direction: row wrap;
}
.policy__name-container {
  flex-basis: calc(100% - 370px);
}
.policy__stats-container,
.policy .rule-with-stats__stats {
  flex-basis: 370px;
  padding-top: 70px;
  padding-left: 24px;
}
.policy__stats-container .stats-item,
.policy .rule-with-stats__stats .stats-item {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 20px;
}
.policy__stats-container .stats-item__endpoints-count,
.policy .rule-with-stats__stats .stats-item__endpoints-count {
  color: #273981;
  font-weight: 700;
  line-height: 25px;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.policy__stats-container .stats-item svg,
.policy .rule-with-stats__stats .stats-item svg {
  font-size: 16px;
  vertical-align: middle;
}
.policy__stats-container .stats-item__name,
.policy .rule-with-stats__stats .stats-item__name {
  width: 85px;
  margin-left: 8px;
  white-space: nowrap;
}
.policy__stats-container .bytes-stats__label-container,
.policy .rule-with-stats__stats .bytes-stats__label-container {
  width: 109px;
  margin-right: 20px;
}
.policy__stats-container .bytes-stats__type,
.policy .rule-with-stats__stats .bytes-stats__type {
  margin-left: 8px;
}
.policy__stats-container .bytes-stats__counting-system, .policy__stats-container .bytes-stats__inbound-stats, .policy__stats-container .bytes-stats__outbound-stats,
.policy .rule-with-stats__stats .bytes-stats__counting-system,
.policy .rule-with-stats__stats .bytes-stats__inbound-stats,
.policy .rule-with-stats__stats .bytes-stats__outbound-stats {
  flex: 1;
  width: auto;
  width: initial;
  text-align: right;
}
.policy .rule-with-stats__stats {
  padding-top: 0;
}
.policy__label-selector, .policy__namespace-label-selector, .policy__service-account-label-selector {
  font-size: 12px;
  line-height: 20px;
}
.policy__label-selector .tag-collection, .policy__namespace-label-selector .tag-collection, .policy__service-account-label-selector .tag-collection {
  min-height: 0;
  min-height: initial;
}
.policy__service-account-label-selector {
  margin-bottom: 0;
}
.policy__label-selector, .policy__namespace-label-selector {
  margin-bottom: 10px;
}
.policy__service-account-label-selector {
  margin-bottom: 0px;
}
.policy__audit-logs {
  color: #141414;
}
.policy__audit-logs .timeline-event-list {
  border-radius: 0;
}
.policy__audit-logs .timeline-event-list__item {
  border-color: #dcdde0;
  border-radius: 0;
}
.policy__error {
  margin-top: 3px;
  color: #ee0000;
}
.policy .borderless-action-button {
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.policy .borderless-action-button__text {
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
}

.timeline-event-item {
  display: grid;
  grid-template-areas: "title commands" "content content";
  grid-template-columns: 3fr 1fr;
  align-items: center;
  list-style: none;
  background-color: #ffffff;
}
.timeline-event-item:hover {
  background-color: #e5e5e5;
}
.timeline-event-item__title {
  padding: 8px 10px;
  grid-area: title;
  cursor: pointer;
}
.timeline-event-item__commands {
  padding: 8px 10px;
  grid-area: commands;
  text-align: right;
}
.timeline-event-item__content {
  padding: 8px 10px;
  grid-area: content;
}
.timeline-event-item__meta {
  font-size: 12px;
}

.timeline-event-list {
  padding-left: 0;
  border-radius: 5px;
  list-style-type: none;
}
.timeline-event-list__item {
  border-right: 1px solid #999999;
  border-bottom: 1px solid #999999;
  border-left: 1px solid #999999;
}
.timeline-event-list__item:first-child {
  border-top: 1px solid #999999;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.timeline-event-list__item:last-child {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.timeline-group-marker {
  display: inline-block;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border: 2px solid #f69320;
  border-radius: 50%;
  background: #f69320;
}

.timeline-event-group__title {
  position: relative;
  margin-top: 15px;
  margin-left: -29px;
}
.timeline-event-group__title time {
  font-weight: 700;
  font-size: 10px;
}
.timeline-event-group__marker {
  margin-right: 19px;
  margin-bottom: 4px;
}
.timeline-event-group__event-list {
  margin-top: 10px;
}

.timeline {
  width: 100%;
}
.timeline__content {
  position: relative;
  padding-bottom: 10px;
  padding-left: 39px;
}
.timeline__content:before {
  position: absolute;
  top: 2px;
  left: 14px;
  z-index: 0;
  width: 0;
  height: 100%;
  border: 1px solid #b0b2b8;
  content: "";
}

/*
 *
 * Diff to HTML (diff2html.css)
 * Author: rtfpessoa
 *
 */

.d2h-wrapper {
  text-align: left;
}

.d2h-file-header {
  padding: 5px 10px;
  border-bottom: 1px solid #d8d8d8;
  background-color: #f7f7f7;
}

.d2h-file-stats {
  display: flex;
  margin-left: auto;
  font-size: 14px;
}

.d2h-lines-added {
  text-align: right;
  border: 1px solid #b4e2b4;
  border-radius: 5px 0 0 5px;
  color: #399839;
  padding: 2px;
  vertical-align: middle;
}

.d2h-lines-deleted {
  text-align: left;
  border: 1px solid #e9aeae;
  border-radius: 0 5px 5px 0;
  color: #c33;
  padding: 2px;
  vertical-align: middle;
  margin-left: 1px;
}

.d2h-file-name-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
}

.d2h-file-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-x: hidden;
  line-height: 21px;
}

.d2h-file-wrapper {
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 1em;
}

.d2h-diff-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Menlo", "Consolas", monospace;
  font-size: 13px;
}

.d2h-diff-tbody > tr > td {
  height: 20px;
  line-height: 20px;
}

.d2h-files-diff {
  display: block;
  width: 100%;
  height: 100%;
}

.d2h-file-diff {
  overflow-x: scroll;
  overflow-y: hidden;
}

.d2h-file-side-diff {
  display: inline-block;
  overflow-x: scroll;
  overflow-y: hidden;
  width: 50%;
  margin-right: -4px;
  margin-bottom: -8px;
}

.d2h-code-line {
  display: inline-block;
  white-space: nowrap;
  padding: 0 10px;
  margin-left: 80px;
}

.d2h-code-side-line {
  display: inline-block;
  white-space: nowrap;
  padding: 0 10px;
  margin-left: 50px;
}

.d2h-code-line del,
.d2h-code-side-line del {
  display: inline-block;
  margin-top: -1px;
  -webkit-text-decoration: none;
  text-decoration: none;
  background-color: #ffb6ba;
  border-radius: 0.2em;
}

.d2h-code-line ins,
.d2h-code-side-line ins {
  display: inline-block;
  margin-top: -1px;
  -webkit-text-decoration: none;
  text-decoration: none;
  background-color: #97f295;
  border-radius: 0.2em;
  text-align: left;
}

.d2h-code-line-prefix {
  display: inline;
  background: none;
  padding: 0;
  word-wrap: normal;
  white-space: pre;
}

.d2h-code-line-ctn {
  display: inline;
  background: none;
  padding: 0;
  word-wrap: normal;
  white-space: pre;
}

.line-num1 {
  box-sizing: border-box;
  float: left;
  width: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 3px;
}

.line-num2 {
  box-sizing: border-box;
  float: right;
  width: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 3px;
}

.d2h-code-linenumber {
  box-sizing: border-box;
  position: absolute;
  width: 86px;
  padding-left: 2px;
  padding-right: 2px;
  background-color: #fff;
  color: rgba(0, 0, 0, 0.3);
  text-align: right;
  border: solid #eeeeee;
  border-width: 0 1px 0 1px;
  cursor: pointer;
}

.d2h-code-side-linenumber {
  box-sizing: border-box;
  position: absolute;
  width: 56px;
  padding-left: 5px;
  padding-right: 5px;
  background-color: #fff;
  color: rgba(0, 0, 0, 0.3);
  text-align: right;
  border: solid #eeeeee;
  border-width: 0 1px 0 1px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*
 * Changes Highlight
 */

.d2h-del {
  background-color: #fee8e9;
  border-color: #e9aeae;
}

.d2h-ins {
  background-color: #dfd;
  border-color: #b4e2b4;
}

.d2h-info {
  background-color: #f8fafd;
  color: rgba(0, 0, 0, 0.3);
  border-color: #d5e4f2;
}

.d2h-file-diff .d2h-del.d2h-change {
  background-color: #fdf2d0;
}

.d2h-file-diff .d2h-ins.d2h-change {
  background-color: #ded;
}

/*
 * File Summary List
 */

.d2h-file-list-wrapper {
  margin-bottom: 10px;
}

.d2h-file-list-wrapper a {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #3572b0;
}

.d2h-file-list-wrapper a:visited {
  color: #3572b0;
}

.d2h-file-list-header {
  text-align: left;
}

.d2h-file-list-title {
  font-weight: bold;
}

.d2h-file-list-line {
  display: flex;
  text-align: left;
}

.d2h-file-list {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.d2h-file-list > li {
  border-bottom: #ddd solid 1px;
  padding: 5px 10px;
  margin: 0;
}

.d2h-file-list > li:last-child {
  border-bottom: none;
}

.d2h-file-switch {
  display: none;
  font-size: 10px;
  cursor: pointer;
}

.d2h-icon-wrapper {
  line-height: 31px;
}

.d2h-icon {
  vertical-align: middle;
  margin-right: 10px;
  fill: currentColor;
}

.d2h-deleted {
  color: #c33;
}

.d2h-added {
  color: #399839;
}

.d2h-changed {
  color: #d0b44c;
}

.d2h-moved {
  color: #3572b0;
}

.d2h-tag {
  display: flex;
  font-size: 10px;
  margin-left: 5px;
  padding: 0 2px;
  background-color: #fff;
}

.d2h-deleted-tag {
  border: #c33 1px solid;
}

.d2h-added-tag {
  border: #399839 1px solid;
}

.d2h-changed-tag {
  border: #d0b44c 1px solid;
}

.d2h-moved-tag {
  border: #3572b0 1px solid;
}

/*
 * Selection util.
 */

.selecting-left .d2h-code-line,
.selecting-left .d2h-code-line *,
.selecting-right td.d2h-code-linenumber,
.selecting-right td.d2h-code-linenumber *,
.selecting-left .d2h-code-side-line,
.selecting-left .d2h-code-side-line *,
.selecting-right td.d2h-code-side-linenumber,
.selecting-right td.d2h-code-side-linenumber * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.selecting-left .d2h-code-line::-moz-selection,
.selecting-left .d2h-code-line *::-moz-selection,
.selecting-right td.d2h-code-linenumber::-moz-selection,
.selecting-left .d2h-code-side-line::-moz-selection,
.selecting-left .d2h-code-side-line *::-moz-selection,
.selecting-right td.d2h-code-side-linenumber::-moz-selection,
.selecting-right td.d2h-code-side-linenumber *::-moz-selection {
  background: transparent;
}

.selecting-left .d2h-code-line::-moz-selection, .selecting-left .d2h-code-line *::-moz-selection, .selecting-right td.d2h-code-linenumber::-moz-selection, .selecting-left .d2h-code-side-line::-moz-selection, .selecting-left .d2h-code-side-line *::-moz-selection, .selecting-right td.d2h-code-side-linenumber::-moz-selection, .selecting-right td.d2h-code-side-linenumber *::-moz-selection {
  background: transparent;
}

.selecting-left .d2h-code-line::selection,
.selecting-left .d2h-code-line *::selection,
.selecting-right td.d2h-code-linenumber::selection,
.selecting-left .d2h-code-side-line::selection,
.selecting-left .d2h-code-side-line *::selection,
.selecting-right td.d2h-code-side-linenumber::selection,
.selecting-right td.d2h-code-side-linenumber *::selection {
  background: transparent;
}
.d2h-file-header {
  color: #ffffff;
  background-color: rgba(63, 85, 105, 0.5);
}
.d2h-file-header .d2h-tag,
.d2h-file-header .d2h-icon-wrapper,
.d2h-file-header .d2h-icon {
  display: none;
}

.d2h-file-wrapper {
  margin-bottom: 0;
}

.diff-modal__commands {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.diff-modal__select-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.diff-modal__source-select, .diff-modal__target-select {
  flex: 1;
}
.diff-modal__target-select {
  margin-left: 5px;
}
.diff-modal__select {
  width: 100%;
}
.diff-modal__close-button {
  margin-left: 15px;
}
.diff-modal__split-checkbox {
  flex: 1;
}
.diff-modal__title h4 {
  margin: 4px 0;
}

.change-log-timeline .timeline-event-list__item {
  border-color: var(--chakra-colors-tigeraGrey-200);
  border-radius: 0;
}

.open-compare-policies-button {
  margin-right: 10px;
}

.policy-commands {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 16px;
}
.policy-commands__command {
  height: 30px;
  margin-right: 10px;
}

.policy-action-enforce, .policy-action-edit {
  margin-right: 0;
}

.policy-action-export,
.policy-action-compare {
  width: 30px;
}
.policy-action-export svg,
.policy-action-compare svg {
  font-size: 16px;
}

.edit-policy {
  padding-bottom: 10px;
}
.edit-policy .policy__name-container {
  flex-basis: 100%;
}
.edit-policy__commands-and-warnings {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.edit-policy__commands {
  flex: 1;
  width: 50%;
}
.edit-policy__commands .policy-action-delete {
  margin-right: auto;
}
.edit-policy__error {
  color: #fa7070;
  text-align: center;
}
.edit-policy__error-message {
  font-size: 24px;
}
.edit-policy__spinner {
  display: flex;
  justify-content: center;
}
.edit-policy__spinner .spinner {
  width: 100px;
  height: 100px;
  margin-top: 100px;
}

.policy-action-delete {
  margin-right: auto;
}

.policy-commands {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 16px;
}
.policy-commands__command {
  height: 30px;
  margin-right: 10px;
}

.policy-action-enforce, .policy-action-edit {
  margin-right: 0;
}

.policy-action-export,
.policy-action-compare {
  width: 30px;
}
.policy-action-export svg,
.policy-action-compare svg {
  font-size: 16px;
}

.delete-policy {
  padding-bottom: 10px;
  color: #2b3e4d;
}
.delete-policy__body {
  padding: 0 15px;
}
.delete-policy__name-caption, .delete-policy__audit-logs-caption {
  margin-bottom: 10px;
}
.delete-policy__commands-and-warnings {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.delete-policy__warning {
  padding: 10px 0;
  color: red;
  font-size: 16px;
}
.delete-policy__commands {
  flex: 1;
  width: 50%;
}
.delete-policy__commands .policy-action-delete {
  margin-right: auto;
}
.delete-policy__error {
  color: #fa7070;
  text-align: center;
}
.delete-policy__error-message {
  font-size: 24px;
}
.delete-policy__icon {
  font-size: 100px;
}
.delete-policy__spinner {
  display: flex;
  justify-content: center;
}
.delete-policy__spinner .spinner {
  width: 100px;
  height: 100px;
  margin-top: 100px;
}

.create-policy {
  padding-bottom: 10px;
}
.create-policy .policy__body {
  padding-bottom: 24px;
}
.create-policy__commands {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.create-policy__error {
  color: #fa7070;
  text-align: center;
}
.create-policy__error-message {
  font-size: 24px;
}
.create-policy__icon {
  font-size: 100px;
}
.create-policy__spinner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.create-policy__spinner {
  width: 100px;
  height: 100px;
  margin-top: 100px;
}

.policy-commands {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 16px;
}
.policy-commands__command {
  height: 30px;
  margin-right: 10px;
}

.policy-action-enforce, .policy-action-edit {
  margin-right: 0;
}

.policy-action-export,
.policy-action-compare {
  width: 30px;
}
.policy-action-export svg,
.policy-action-compare svg {
  font-size: 16px;
}

.view-policy {
  padding-bottom: 10px;
}
.view-policy__commands-and-warnings {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.view-policy__error {
  color: #fa7070;
  text-align: center;
}
.view-policy__error-message {
  font-size: 24px;
}
.view-policy__spinner {
  display: flex;
  justify-content: center;
}
.view-policy__spinner .spinner {
  width: 100px;
  height: 100px;
  margin-top: 100px;
}

.select-policy-tier__title h4 {
  margin: 4px 0;
}
.select-policy-tier__body {
  padding: 15px 15px;
}
.select-policy-tier__label {
  margin-bottom: 5px;
}
.select-policy-tier__tier-select {
  margin-bottom: 10px;
}
.select-policy-tier__footer {
  display: flex;
  justify-content: flex-end;
  margin: 10px;
  border-top: 1px solid #bebebe;
  border-collapse: separate;
}
.select-policy-tier__footer > button {
  margin-top: 10px;
  margin-left: 10px;
}

