/* -- container -- */
.rodal,
.rodal-mask {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100; }

.rodal {
  position: fixed; }

/* -- mask -- */
.rodal-mask {
  position: absolute;
  background: rgba(0, 0, 0, 0.3); }

/* -- dialog -- */
.rodal-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 101;
  padding: 15px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); }

.rodal-dialog:focus {
  outline: none; }

/* -- close button -- */
.rodal-close {
  position: absolute;
  cursor: pointer;
  top: 16px;
  right: 16px;
  width: 16px;
  height: 16px; }

.rodal-close:before,
.rodal-close:after {
  position: absolute;
  content: '';
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #999;
  border-radius: 100%;
  -webkit-transition: background .2s;
  transition: background .2s; }

.rodal-close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.rodal-close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.rodal-close:hover:before,
.rodal-close:hover:after {
  background: #333; }

/* -- fade -- */
@-webkit-keyframes rodal-fade-enter {
  from {
    opacity: 0; } }

@keyframes rodal-fade-enter {
  from {
    opacity: 0; } }

.rodal-fade-enter {
  -webkit-animation: rodal-fade-enter both ease-in;
  animation: rodal-fade-enter both ease-in; }

@-webkit-keyframes rodal-fade-leave {
  to {
    opacity: 0; } }

@keyframes rodal-fade-leave {
  to {
    opacity: 0; } }

.rodal-fade-leave {
  -webkit-animation: rodal-fade-leave both ease-out;
  animation: rodal-fade-leave both ease-out; }

/* -- zoom -- */
@-webkit-keyframes rodal-zoom-enter {
  from {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes rodal-zoom-enter {
  from {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

.rodal-zoom-enter {
  -webkit-animation: rodal-zoom-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-zoom-enter both cubic-bezier(0.4, 0, 0, 1.5); }

@-webkit-keyframes rodal-zoom-leave {
  to {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes rodal-zoom-leave {
  to {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

.rodal-zoom-leave {
  -webkit-animation: rodal-zoom-leave both;
  animation: rodal-zoom-leave both; }

/* -- slideDown -- */
@-webkit-keyframes rodal-slideDown-enter {
  from {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0); } }

@keyframes rodal-slideDown-enter {
  from {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0); } }

.rodal-slideDown-enter {
  -webkit-animation: rodal-slideDown-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-slideDown-enter both cubic-bezier(0.4, 0, 0, 1.5); }

@-webkit-keyframes rodal-slideDown-leave {
  to {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0); } }

@keyframes rodal-slideDown-leave {
  to {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0); } }

.rodal-slideDown-leave {
  -webkit-animation: rodal-slideDown-leave both;
  animation: rodal-slideDown-leave both; }

/* -- slideLeft -- */
@-webkit-keyframes rodal-slideLeft-enter {
  from {
    -webkit-transform: translate3d(-150px, 0, 0);
    transform: translate3d(-150px, 0, 0); } }

@keyframes rodal-slideLeft-enter {
  from {
    -webkit-transform: translate3d(-150px, 0, 0);
    transform: translate3d(-150px, 0, 0); } }

.rodal-slideLeft-enter {
  -webkit-animation: rodal-slideLeft-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-slideLeft-enter both cubic-bezier(0.4, 0, 0, 1.5); }

@-webkit-keyframes rodal-slideLeft-leave {
  to {
    -webkit-transform: translate3d(-150px, 0, 0);
    transform: translate3d(-150px, 0, 0); } }

@keyframes rodal-slideLeft-leave {
  to {
    -webkit-transform: translate3d(-150px, 0, 0);
    transform: translate3d(-150px, 0, 0); } }

.rodal-slideLeft-leave {
  -webkit-animation: rodal-slideLeft-leave both;
  animation: rodal-slideLeft-leave both; }

/* -- slideRight -- */
@-webkit-keyframes rodal-slideRight-enter {
  from {
    -webkit-transform: translate3d(150px, 0, 0);
    transform: translate3d(150px, 0, 0); } }

@keyframes rodal-slideRight-enter {
  from {
    -webkit-transform: translate3d(150px, 0, 0);
    transform: translate3d(150px, 0, 0); } }

.rodal-slideRight-enter {
  -webkit-animation: rodal-slideRight-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-slideRight-enter both cubic-bezier(0.4, 0, 0, 1.5); }

@-webkit-keyframes rodal-slideRight-leave {
  to {
    -webkit-transform: translate3d(150px, 0, 0);
    transform: translate3d(150px, 0, 0); } }

@keyframes rodal-slideRight-leave {
  to {
    -webkit-transform: translate3d(150px, 0, 0);
    transform: translate3d(150px, 0, 0); } }

.rodal-slideRight-leave {
  -webkit-animation: rodal-slideRight-leave both;
  animation: rodal-slideRight-leave both; }

/* -- slideUp -- */
@-webkit-keyframes rodal-slideUp-enter {
  from {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0); } }

@keyframes rodal-slideUp-enter {
  from {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0); } }

.rodal-slideUp-enter {
  -webkit-animation: rodal-slideUp-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-slideUp-enter both cubic-bezier(0.4, 0, 0, 1.5); }

@-webkit-keyframes rodal-slideUp-leave {
  to {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0); } }

@keyframes rodal-slideUp-leave {
  to {
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0); } }

.rodal-slideUp-leave {
  -webkit-animation: rodal-slideUp-leave both;
  animation: rodal-slideUp-leave both; }

/* -- flip -- */
@-webkit-keyframes rodal-flip-enter {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 60deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 60deg); }
  70% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -15deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -15deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes rodal-flip-enter {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 60deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 60deg); }
  70% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -15deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -15deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

.rodal-flip-enter {
  -webkit-animation: rodal-flip-enter both ease-in;
  animation: rodal-flip-enter both ease-in;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes rodal-flip-leave {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -15deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -15deg); }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 45deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 45deg); } }

@keyframes rodal-flip-leave {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -15deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -15deg); }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 45deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 45deg); } }

.rodal-flip-leave {
  -webkit-animation: rodal-flip-leave both;
  animation: rodal-flip-leave both;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

/* -- rotate -- */
@-webkit-keyframes rodal-rotate-enter {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -180deg) scale3d(0.3, 0.3, 0.3);
    transform: rotate3d(0, 0, 1, -180deg) scale3d(0.3, 0.3, 0.3); } }

@keyframes rodal-rotate-enter {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -180deg) scale3d(0.3, 0.3, 0.3);
    transform: rotate3d(0, 0, 1, -180deg) scale3d(0.3, 0.3, 0.3); } }

.rodal-rotate-enter {
  -webkit-animation: rodal-rotate-enter both;
  animation: rodal-rotate-enter both;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes rodal-rotate-leave {
  to {
    -webkit-transform: rotate3d(0, 0, 1, 180deg) scale3d(0.3, 0.3, 0.3);
    transform: rotate3d(0, 0, 1, 180deg) scale3d(0.3, 0.3, 0.3); } }

@keyframes rodal-rotate-leave {
  to {
    -webkit-transform: rotate3d(0, 0, 1, 180deg) scale3d(0.3, 0.3, 0.3);
    transform: rotate3d(0, 0, 1, 180deg) scale3d(0.3, 0.3, 0.3); } }

.rodal-rotate-leave {
  -webkit-animation: rodal-rotate-leave both;
  animation: rodal-rotate-leave both;
  -webkit-transform-origin: center;
  transform-origin: center; }

/* -- door -- */
@-webkit-keyframes rodal-door-enter {
  from {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1); } }

@keyframes rodal-door-enter {
  from {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1); } }

.rodal-door-enter {
  -webkit-animation: rodal-door-enter both cubic-bezier(0.4, 0, 0, 1.5);
  animation: rodal-door-enter both cubic-bezier(0.4, 0, 0, 1.5); }

@-webkit-keyframes rodal-door-leave {
  60% {
    -webkit-transform: scale3d(0.01, 1, 1);
    transform: scale3d(0.01, 1, 1); }
  to {
    -webkit-transform: scale3d(0, 1, 0.1);
    transform: scale3d(0, 1, 0.1); } }

@keyframes rodal-door-leave {
  60% {
    -webkit-transform: scale3d(0.01, 1, 1);
    transform: scale3d(0.01, 1, 1); }
  to {
    -webkit-transform: scale3d(0, 1, 0.1);
    transform: scale3d(0, 1, 0.1); } }

.rodal-door-leave {
  -webkit-animation: rodal-door-leave both;
  animation: rodal-door-leave both; }

.autocomplete-input {
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  bottom: auto;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  display: block;
  font-size: 16px;
  list-style: none;
  padding: 1px;
  position: absolute;
  text-align: left;
  z-index: 20000;
  margin-top: 35px;
  margin-left: 200px;
  max-height: 700px;
  overflow: auto; }

.autocomplete-input > li {
  cursor: pointer;
  padding: 10px;
  min-width: 100px; }

.autocomplete-input > li.active {
  background-color: #e6e6e6; }

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

.dropdown__content {
  display: none;
  position: absolute; }

.dropdown--active .dropdown__content {
  position: absolute;
  display: inline-block;
  right: 0;
  margin: 35px 0 0 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  min-width: 274px;
  max-width: 100%;
  font-size: 16px;
  background: white;
  border: none;
  box-sizing: border-box; }

.dropdown__trigger {
  color: black;
  text-decoration: none; }

.dropdown__trigger:hover {
  color: black;
  text-decoration: none; }

.ReactTable {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.1); }

.ReactTable * {
  box-sizing: border-box; }

.ReactTable .rt-table {
  -webkit-box-flex: 1;
  -ms-flex: auto 1;
  flex: auto 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  border-collapse: collapse;
  overflow: auto; }

.ReactTable .rt-thead {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.ReactTable .rt-thead.-headerGroups {
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

.ReactTable .rt-thead.-filters {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

.ReactTable .rt-thead.-filters input, .ReactTable .rt-thead.-filters select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 5px 7px;
  font-size: inherit;
  border-radius: 3px;
  font-weight: normal;
  outline: none; }

.ReactTable .rt-thead.-filters .rt-th {
  border-right: 1px solid rgba(0, 0, 0, 0.02); }

.ReactTable .rt-thead.-header {
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15); }

.ReactTable .rt-thead .rt-tr {
  text-align: center; }

.ReactTable .rt-thead .rt-th, .ReactTable .rt-thead .rt-td {
  padding: 5px 5px;
  line-height: normal;
  position: relative;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: inset 0 0 0 0 transparent; }

.ReactTable .rt-thead .rt-th.-sort-asc, .ReactTable .rt-thead .rt-td.-sort-asc {
  box-shadow: inset 0 3px 0 0 rgba(0, 0, 0, 0.6); }

.ReactTable .rt-thead .rt-th.-sort-desc, .ReactTable .rt-thead .rt-td.-sort-desc {
  box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.6); }

.ReactTable .rt-thead .rt-th.-cursor-pointer, .ReactTable .rt-thead .rt-td.-cursor-pointer {
  cursor: pointer; }

.ReactTable .rt-thead .rt-th:last-child, .ReactTable .rt-thead .rt-td:last-child {
  border-right: 0; }

.ReactTable .rt-thead .rt-th:focus {
  outline: none; }

.ReactTable .rt-thead .rt-resizable-header {
  overflow: visible; }

.ReactTable .rt-thead .rt-resizable-header:last-child {
  overflow: hidden; }

.ReactTable .rt-thead .rt-resizable-header-content {
  overflow: hidden;
  text-overflow: ellipsis; }

.ReactTable .rt-thead .rt-header-pivot {
  border-right-color: #f7f7f7; }

.ReactTable .rt-thead .rt-header-pivot:after, .ReactTable .rt-thead .rt-header-pivot:before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

.ReactTable .rt-thead .rt-header-pivot:after {
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #fff;
  border-width: 8px;
  margin-top: -8px; }

.ReactTable .rt-thead .rt-header-pivot:before {
  border-color: rgba(102, 102, 102, 0);
  border-left-color: #f7f7f7;
  border-width: 10px;
  margin-top: -10px; }

.ReactTable .rt-tbody {
  -webkit-box-flex: 99999;
  -ms-flex: 99999 1 auto;
  flex: 99999 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: auto; }

.ReactTable .rt-tbody .rt-tr-group {
  border-bottom: solid 1px rgba(0, 0, 0, 0.05); }

.ReactTable .rt-tbody .rt-tr-group:last-child {
  border-bottom: 0; }

.ReactTable .rt-tbody .rt-td {
  border-right: 1px solid rgba(0, 0, 0, 0.02); }

.ReactTable .rt-tbody .rt-td:last-child {
  border-right: 0; }

.ReactTable .rt-tbody .rt-expandable {
  cursor: pointer;
  text-overflow: clip; }

.ReactTable .rt-tr-group {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }

.ReactTable .rt-tr {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }

.ReactTable .rt-th, .ReactTable .rt-td {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 7px 5px;
  overflow: hidden;
  transition: .3s ease;
  transition-property: width,min-width,padding,opacity; }

.ReactTable .rt-th.-hidden, .ReactTable .rt-td.-hidden {
  width: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important; }

.ReactTable .rt-expander {
  display: inline-block;
  position: relative;
  margin: 0;
  color: transparent;
  margin: 0 10px; }

.ReactTable .rt-expander:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
  border-left: 5.04px solid transparent;
  border-right: 5.04px solid transparent;
  border-top: 7px solid rgba(0, 0, 0, 0.8);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer; }

.ReactTable .rt-expander.-open:after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0); }

.ReactTable .rt-resizer {
  display: inline-block;
  position: absolute;
  width: 36px;
  top: 0;
  bottom: 0;
  right: -18px;
  cursor: col-resize;
  z-index: 10; }

.ReactTable .rt-tfoot {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15); }

.ReactTable .rt-tfoot .rt-td {
  border-right: 1px solid rgba(0, 0, 0, 0.05); }

.ReactTable .rt-tfoot .rt-td:last-child {
  border-right: 0; }

.ReactTable.-striped .rt-tr.-odd {
  background: rgba(0, 0, 0, 0.03); }

.ReactTable.-highlight .rt-tbody .rt-tr:not(.-padRow):hover {
  background: rgba(0, 0, 0, 0.05); }

.ReactTable .-pagination {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 3px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  border-top: 2px solid rgba(0, 0, 0, 0.1); }

.ReactTable .-pagination input, .ReactTable .-pagination select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 5px 7px;
  font-size: inherit;
  border-radius: 3px;
  font-weight: normal;
  outline: none; }

.ReactTable .-pagination .-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 3px;
  padding: 6px;
  font-size: 1em;
  color: rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.1);
  transition: all .1s ease;
  cursor: pointer;
  outline: none; }

.ReactTable .-pagination .-btn[disabled] {
  opacity: .5;
  cursor: default; }

.ReactTable .-pagination .-btn:not([disabled]):hover {
  background: rgba(0, 0, 0, 0.3);
  color: #fff; }

.ReactTable .-pagination .-previous, .ReactTable .-pagination .-next {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center; }

.ReactTable .-pagination .-center {
  -webkit-box-flex: 1.5;
  -ms-flex: 1.5;
  flex: 1.5;
  text-align: center;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.ReactTable .-pagination .-pageInfo {
  display: inline-block;
  margin: 3px 10px;
  white-space: nowrap; }

.ReactTable .-pagination .-pageJump {
  display: inline-block; }

.ReactTable .-pagination .-pageJump input {
  width: 70px;
  text-align: center; }

.ReactTable .-pagination .-pageSizeOptions {
  margin: 3px 10px; }

.ReactTable .rt-noData {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  transition: all .3s ease;
  z-index: 1;
  pointer-events: none;
  padding: 20px;
  color: rgba(0, 0, 0, 0.5); }

.ReactTable .-loading {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  transition: all .3s ease;
  z-index: -1;
  opacity: 0;
  pointer-events: none; }

.ReactTable .-loading > div {
  position: absolute;
  display: block;
  text-align: center;
  width: 100%;
  top: 50%;
  left: 0;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  -webkit-transform: translateY(-52%);
  transform: translateY(-52%);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.ReactTable .-loading.-active {
  opacity: 1;
  z-index: 2;
  pointer-events: all; }

.ReactTable .-loading.-active > div {
  -webkit-transform: translateY(50%);
  transform: translateY(50%); }

.ReactTable .rt-resizing .rt-th, .ReactTable .rt-resizing .rt-td {
  transition: none !important;
  cursor: col-resize;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

ol.progtrckr {
  list-style-type: none;
  padding: 0; }

ol.progtrckr li {
  display: inline-block;
  text-align: center;
  line-height: 4.5rem;
  cursor: pointer; }

ol.progtrckr li span {
  padding: 0 1.5rem; }

@media (max-width: 650px) {
  .progtrckr li span {
    display: none; } }

.progtrckr em {
  display: none;
  font-weight: 700;
  padding-left: 1rem; }

@media (max-width: 650px) {
  .progtrckr em {
    display: inline; } }

ol.progtrckr li.progtrckr-todo {
  color: silver;
  border-bottom: 4px solid silver; }

ol.progtrckr li.progtrckr-doing {
  color: black;
  border-bottom: 4px solid #CCCCCC; }

ol.progtrckr li.progtrckr-done {
  color: black;
  border-bottom: 4px solid #5cb85c; }

ol.progtrckr li:after {
  content: "\00a0\00a0"; }

ol.progtrckr li:before {
  position: relative;
  bottom: -3.7rem;
  float: left;
  left: 50%; }

ol.progtrckr li.progtrckr-todo:before {
  content: "\039F";
  color: silver;
  background-color: white;
  width: 1.2em;
  line-height: 1.4em; }

ol.progtrckr li.progtrckr-todo:hover:before {
  color: #ff4500; }

ol.progtrckr li.progtrckr-doing:before {
  content: "\2022";
  color: white;
  background-color: #CCCCCC;
  width: 1.2em;
  line-height: 1.2em;
  border-radius: 1.2em; }

ol.progtrckr li.progtrckr-doing:hover:before {
  color: #ff4500; }

ol.progtrckr li.progtrckr-done:before {
  content: "\2713";
  color: white;
  background-color: #5cb85c;
  width: 1.2em;
  line-height: 1.2em;
  border-radius: 1.2em; }

ol.progtrckr li.progtrckr-done:hover:before {
  color: #333; }

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

.dropdown__content {
  display: none;
  position: absolute; }

.dropdown--active .dropdown__content {
  position: absolute;
  display: inline-block;
  margin: 35px 0 0 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  min-width: 274px;
  max-width: 100%;
  font-size: 16px;
  background: white;
  border: none;
  box-sizing: border-box; }

.dropdown__trigger {
  color: black;
  text-decoration: none; }

.dropdown__trigger:hover {
  color: black;
  text-decoration: none; }

.ace_editor.ace_autocomplete {
  width: 550px !important;
  z-index: 200000;
  border: 1px lightgray solid;
  position: fixed;
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
  background: #fefefe;
  color: #111; }

/*!
 * # Semantic UI 2.4.1 - Table
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */
.ui.table {
  width: 100%;
  background: #fff;
  margin: 1em 0;
  border: 1px solid rgba(34, 36, 38, 0.15);
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: .28571429rem;
  text-align: left;
  color: rgba(0, 0, 0, 0.87);
  border-collapse: separate;
  border-spacing: 0; }

.ui.table:first-child {
  margin-top: 0; }

.ui.table:last-child {
  margin-bottom: 0; }

.ui.table td, .ui.table th {
  -webkit-transition: background .1s ease,color .1s ease;
  transition: background .1s ease,color .1s ease; }

.ui.table thead {
  -webkit-box-shadow: none;
  box-shadow: none; }

.ui.table thead th {
  cursor: auto;
  background: #f9fafb;
  text-align: inherit;
  color: rgba(0, 0, 0, 0.87);
  padding: .92857143em .78571429em;
  vertical-align: inherit;
  font-style: none;
  font-weight: 700;
  text-transform: none;
  border-bottom: 1px solid rgba(34, 36, 38, 0.1);
  border-left: none; }

.ui.table thead tr > th:first-child {
  border-left: none; }

.ui.table thead tr:first-child > th:first-child {
  border-radius: .28571429rem 0 0 0; }

.ui.table thead tr:first-child > th:last-child {
  border-radius: 0 .28571429rem 0 0; }

.ui.table thead tr:first-child > th:only-child {
  border-radius: .28571429rem .28571429rem 0 0; }

.ui.table tfoot {
  -webkit-box-shadow: none;
  box-shadow: none; }

.ui.table tfoot th {
  cursor: auto;
  border-top: 1px solid rgba(34, 36, 38, 0.15);
  background: #f9fafb;
  text-align: inherit;
  color: rgba(0, 0, 0, 0.87);
  padding: .78571429em .78571429em;
  vertical-align: middle;
  font-style: normal;
  font-weight: 400;
  text-transform: none; }

.ui.table tfoot tr > th:first-child {
  border-left: none; }

.ui.table tfoot tr:first-child > th:first-child {
  border-radius: 0 0 0 .28571429rem; }

.ui.table tfoot tr:first-child > th:last-child {
  border-radius: 0 0 .28571429rem 0; }

.ui.table tfoot tr:first-child > th:only-child {
  border-radius: 0 0 .28571429rem .28571429rem; }

.ui.table tr td {
  border-top: 1px solid rgba(34, 36, 38, 0.1); }

.ui.table tr:first-child td {
  border-top: none; }

.ui.table tbody + tbody tr:first-child td {
  border-top: 1px solid rgba(34, 36, 38, 0.1); }

.ui.table td {
  padding: .78571429em .78571429em;
  text-align: inherit; }

.ui.table > .icon {
  vertical-align: baseline; }

.ui.table > .icon:only-child {
  margin: 0; }

.ui.table.segment {
  padding: 0; }

.ui.table.segment:after {
  display: none; }

.ui.table.segment.stacked:after {
  display: block; }

@media only screen and (max-width: 767px) {
  .ui.table:not(.unstackable) {
    width: 100%; }
  .ui.table:not(.unstackable) tbody, .ui.table:not(.unstackable) tr, .ui.table:not(.unstackable) tr > td, .ui.table:not(.unstackable) tr > th {
    width: auto !important;
    display: block !important; }
  .ui.table:not(.unstackable) {
    padding: 0; }
  .ui.table:not(.unstackable) thead {
    display: block; }
  .ui.table:not(.unstackable) tfoot {
    display: block; }
  .ui.table:not(.unstackable) tr {
    padding-top: 1em;
    padding-bottom: 1em;
    -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset !important;
    box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset !important; }
  .ui.table:not(.unstackable) tr > td, .ui.table:not(.unstackable) tr > th {
    background: 0 0;
    border: none !important;
    padding: 0.25em 0.75em !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
  .ui.table:not(.unstackable) td:first-child, .ui.table:not(.unstackable) th:first-child {
    font-weight: 700; }
  .ui.definition.table:not(.unstackable) thead th:first-child {
    -webkit-box-shadow: none !important;
    box-shadow: none !important; } }

.ui.table td .image, .ui.table td .image img, .ui.table th .image, .ui.table th .image img {
  max-width: none; }

.ui.structured.table {
  border-collapse: collapse; }

.ui.structured.table thead th {
  border-left: none;
  border-right: none; }

.ui.structured.sortable.table thead th {
  border-left: 1px solid rgba(34, 36, 38, 0.15);
  border-right: 1px solid rgba(34, 36, 38, 0.15); }

.ui.structured.basic.table th {
  border-left: none;
  border-right: none; }

.ui.structured.celled.table tr td, .ui.structured.celled.table tr th {
  border-left: 1px solid rgba(34, 36, 38, 0.1);
  border-right: 1px solid rgba(34, 36, 38, 0.1); }

.ui.definition.table thead:not(.full-width) th:first-child {
  pointer-events: none;
  background: 0 0;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: -1px -1px 0 1px #fff;
  box-shadow: -1px -1px 0 1px #fff; }

.ui.definition.table tfoot:not(.full-width) th:first-child {
  pointer-events: none;
  background: 0 0;
  font-weight: rgba(0, 0, 0, 0.4);
  color: normal;
  -webkit-box-shadow: 1px 1px 0 1px #fff;
  box-shadow: 1px 1px 0 1px #fff; }

.ui.celled.definition.table thead:not(.full-width) th:first-child {
  -webkit-box-shadow: 0 -1px 0 1px #fff;
  box-shadow: 0 -1px 0 1px #fff; }

.ui.celled.definition.table tfoot:not(.full-width) th:first-child {
  -webkit-box-shadow: 0 1px 0 1px #fff;
  box-shadow: 0 1px 0 1px #fff; }

.ui.definition.table tr td.definition, .ui.definition.table tr td:first-child:not(.ignored) {
  background: rgba(0, 0, 0, 0.03);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.95);
  text-transform: '';
  -webkit-box-shadow: '';
  box-shadow: '';
  text-align: '';
  font-size: 1em;
  padding-left: '';
  padding-right: ''; }

.ui.definition.table thead:not(.full-width) th:nth-child(2) {
  border-left: 1px solid rgba(34, 36, 38, 0.15); }

.ui.definition.table tfoot:not(.full-width) th:nth-child(2) {
  border-left: 1px solid rgba(34, 36, 38, 0.15); }

.ui.definition.table td:nth-child(2) {
  border-left: 1px solid rgba(34, 36, 38, 0.15); }

.ui.table td.positive, .ui.table tr.positive {
  -webkit-box-shadow: 0 0 0 #a3c293 inset;
  box-shadow: 0 0 0 #a3c293 inset; }

.ui.table td.positive, .ui.table tr.positive {
  background: #fcfff5 !important;
  color: #2c662d !important; }

.ui.table td.negative, .ui.table tr.negative {
  -webkit-box-shadow: 0 0 0 #e0b4b4 inset;
  box-shadow: 0 0 0 #e0b4b4 inset; }

.ui.table td.negative, .ui.table tr.negative {
  background: #fff6f6 !important;
  color: #9f3a38 !important; }

.ui.table td.error, .ui.table tr.error {
  -webkit-box-shadow: 0 0 0 #e0b4b4 inset;
  box-shadow: 0 0 0 #e0b4b4 inset; }

.ui.table td.error, .ui.table tr.error {
  background: #fff6f6 !important;
  color: #9f3a38 !important; }

.ui.table td.warning, .ui.table tr.warning {
  -webkit-box-shadow: 0 0 0 #c9ba9b inset;
  box-shadow: 0 0 0 #c9ba9b inset; }

.ui.table td.warning, .ui.table tr.warning {
  background: #fffaf3 !important;
  color: #573a08 !important; }

.ui.table td.active, .ui.table tr.active {
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.87) inset;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.87) inset; }

.ui.table td.active, .ui.table tr.active {
  background: #e0e0e0 !important;
  color: rgba(0, 0, 0, 0.87) !important; }

.ui.table tr td.disabled, .ui.table tr.disabled td, .ui.table tr.disabled:hover, .ui.table tr:hover td.disabled {
  pointer-events: none;
  color: rgba(40, 40, 40, 0.3); }

@media only screen and (max-width: 991px) {
  .ui[class*="tablet stackable"].table, .ui[class*="tablet stackable"].table tbody, .ui[class*="tablet stackable"].table tr, .ui[class*="tablet stackable"].table tr > td, .ui[class*="tablet stackable"].table tr > th {
    width: 100% !important;
    display: block !important; }
  .ui[class*="tablet stackable"].table {
    padding: 0; }
  .ui[class*="tablet stackable"].table thead {
    display: block; }
  .ui[class*="tablet stackable"].table tfoot {
    display: block; }
  .ui[class*="tablet stackable"].table tr {
    padding-top: 1em;
    padding-bottom: 1em;
    -webkit-box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset !important;
    box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset !important; }
  .ui[class*="tablet stackable"].table tr > td, .ui[class*="tablet stackable"].table tr > th {
    background: 0 0;
    border: none !important;
    padding: .25em .75em;
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
  .ui.definition[class*="tablet stackable"].table thead th:first-child {
    -webkit-box-shadow: none !important;
    box-shadow: none !important; } }

.ui.table [class*="left aligned"], .ui.table[class*="left aligned"] {
  text-align: left; }

.ui.table [class*="center aligned"], .ui.table[class*="center aligned"] {
  text-align: center; }

.ui.table [class*="right aligned"], .ui.table[class*="right aligned"] {
  text-align: right; }

.ui.table [class*="top aligned"], .ui.table[class*="top aligned"] {
  vertical-align: top; }

.ui.table [class*="middle aligned"], .ui.table[class*="middle aligned"] {
  vertical-align: middle; }

.ui.table [class*="bottom aligned"], .ui.table[class*="bottom aligned"] {
  vertical-align: bottom; }

.ui.table td.collapsing, .ui.table th.collapsing {
  width: 1px;
  white-space: nowrap; }

.ui.fixed.table {
  table-layout: fixed; }

.ui.fixed.table td, .ui.fixed.table th {
  overflow: hidden;
  text-overflow: ellipsis; }

.ui.selectable.table tbody tr:hover, .ui.table tbody tr td.selectable:hover {
  background: rgba(0, 0, 0, 0.05) !important;
  color: rgba(0, 0, 0, 0.95) !important; }

.ui.inverted.table tbody tr td.selectable:hover, .ui.selectable.inverted.table tbody tr:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important; }

.ui.table tbody tr td.selectable {
  padding: 0; }

.ui.table tbody tr td.selectable > a:not(.ui) {
  display: block;
  color: inherit;
  padding: .78571429em .78571429em; }

.ui.selectable.table tr.error:hover, .ui.selectable.table tr:hover td.error, .ui.table tr td.selectable.error:hover {
  background: #ffe7e7 !important;
  color: #943634 !important; }

.ui.selectable.table tr.warning:hover, .ui.selectable.table tr:hover td.warning, .ui.table tr td.selectable.warning:hover {
  background: #fff4e4 !important;
  color: #493107 !important; }

.ui.selectable.table tr.active:hover, .ui.selectable.table tr:hover td.active, .ui.table tr td.selectable.active:hover {
  background: #e0e0e0 !important;
  color: rgba(0, 0, 0, 0.87) !important; }

.ui.selectable.table tr.positive:hover, .ui.selectable.table tr:hover td.positive, .ui.table tr td.selectable.positive:hover {
  background: #f7ffe6 !important;
  color: #275b28 !important; }

.ui.selectable.table tr.negative:hover, .ui.selectable.table tr:hover td.negative, .ui.table tr td.selectable.negative:hover {
  background: #ffe7e7 !important;
  color: #943634 !important; }

.ui.attached.table {
  top: 0;
  bottom: 0;
  border-radius: 0;
  margin: 0 -1px;
  width: calc(100% - (-1px * 2));
  max-width: calc(100% - (-1px * 2));
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #d4d4d5; }

.ui.attached + .ui.attached.table:not(.top) {
  border-top: none; }

.ui[class*="top attached"].table {
  bottom: 0;
  margin-bottom: 0;
  top: 0;
  margin-top: 1em;
  border-radius: .28571429rem .28571429rem 0 0; }

.ui.table[class*="top attached"]:first-child {
  margin-top: 0; }

.ui[class*="bottom attached"].table {
  bottom: 0;
  margin-top: 0;
  top: 0;
  margin-bottom: 1em;
  -webkit-box-shadow: none,none;
  box-shadow: none,none;
  border-radius: 0 0 .28571429rem .28571429rem; }

.ui[class*="bottom attached"].table:last-child {
  margin-bottom: 0; }

.ui.striped.table tbody tr:nth-child(2n), .ui.striped.table > tr:nth-child(2n) {
  background-color: rgba(0, 0, 50, 0.02); }

.ui.inverted.striped.table tbody tr:nth-child(2n), .ui.inverted.striped.table > tr:nth-child(2n) {
  background-color: rgba(255, 255, 255, 0.05); }

.ui.striped.selectable.selectable.selectable.table tbody tr.active:hover {
  background: #efefef !important;
  color: rgba(0, 0, 0, 0.95) !important; }

.ui.table [class*="single line"], .ui.table[class*="single line"] {
  white-space: nowrap; }

.ui.table [class*="single line"], .ui.table[class*="single line"] {
  white-space: nowrap; }

.ui.red.table {
  border-top: .2em solid #db2828; }

.ui.inverted.red.table {
  background-color: #db2828 !important;
  color: #fff !important; }

.ui.orange.table {
  border-top: .2em solid #f2711c; }

.ui.inverted.orange.table {
  background-color: #f2711c !important;
  color: #fff !important; }

.ui.yellow.table {
  border-top: .2em solid #fbbd08; }

.ui.inverted.yellow.table {
  background-color: #fbbd08 !important;
  color: #fff !important; }

.ui.olive.table {
  border-top: .2em solid #b5cc18; }

.ui.inverted.olive.table {
  background-color: #b5cc18 !important;
  color: #fff !important; }

.ui.green.table {
  border-top: .2em solid #21ba45; }

.ui.inverted.green.table {
  background-color: #21ba45 !important;
  color: #fff !important; }

.ui.teal.table {
  border-top: .2em solid #00b5ad; }

.ui.inverted.teal.table {
  background-color: #00b5ad !important;
  color: #fff !important; }

.ui.blue.table {
  border-top: .2em solid #2185d0; }

.ui.inverted.blue.table {
  background-color: #2185d0 !important;
  color: #fff !important; }

.ui.violet.table {
  border-top: .2em solid #6435c9; }

.ui.inverted.violet.table {
  background-color: #6435c9 !important;
  color: #fff !important; }

.ui.purple.table {
  border-top: .2em solid #a333c8; }

.ui.inverted.purple.table {
  background-color: #a333c8 !important;
  color: #fff !important; }

.ui.pink.table {
  border-top: .2em solid #e03997; }

.ui.inverted.pink.table {
  background-color: #e03997 !important;
  color: #fff !important; }

.ui.brown.table {
  border-top: .2em solid #a5673f; }

.ui.inverted.brown.table {
  background-color: #a5673f !important;
  color: #fff !important; }

.ui.grey.table {
  border-top: .2em solid #767676; }

.ui.inverted.grey.table {
  background-color: #767676 !important;
  color: #fff !important; }

.ui.black.table {
  border-top: .2em solid #1b1c1d; }

.ui.inverted.black.table {
  background-color: #1b1c1d !important;
  color: #fff !important; }

.ui.one.column.table td {
  width: 100%; }

.ui.two.column.table td {
  width: 50%; }

.ui.three.column.table td {
  width: 33.33333333%; }

.ui.four.column.table td {
  width: 25%; }

.ui.five.column.table td {
  width: 20%; }

.ui.six.column.table td {
  width: 16.66666667%; }

.ui.seven.column.table td {
  width: 14.28571429%; }

.ui.eight.column.table td {
  width: 12.5%; }

.ui.nine.column.table td {
  width: 11.11111111%; }

.ui.ten.column.table td {
  width: 10%; }

.ui.eleven.column.table td {
  width: 9.09090909%; }

.ui.twelve.column.table td {
  width: 8.33333333%; }

.ui.thirteen.column.table td {
  width: 7.69230769%; }

.ui.fourteen.column.table td {
  width: 7.14285714%; }

.ui.fifteen.column.table td {
  width: 6.66666667%; }

.ui.sixteen.column.table td {
  width: 6.25%; }

.ui.table td.one.wide, .ui.table th.one.wide {
  width: 6.25%; }

.ui.table td.two.wide, .ui.table th.two.wide {
  width: 12.5%; }

.ui.table td.three.wide, .ui.table th.three.wide {
  width: 18.75%; }

.ui.table td.four.wide, .ui.table th.four.wide {
  width: 25%; }

.ui.table td.five.wide, .ui.table th.five.wide {
  width: 31.25%; }

.ui.table td.six.wide, .ui.table th.six.wide {
  width: 37.5%; }

.ui.table td.seven.wide, .ui.table th.seven.wide {
  width: 43.75%; }

.ui.table td.eight.wide, .ui.table th.eight.wide {
  width: 50%; }

.ui.table td.nine.wide, .ui.table th.nine.wide {
  width: 56.25%; }

.ui.table td.ten.wide, .ui.table th.ten.wide {
  width: 62.5%; }

.ui.table td.eleven.wide, .ui.table th.eleven.wide {
  width: 68.75%; }

.ui.table td.twelve.wide, .ui.table th.twelve.wide {
  width: 75%; }

.ui.table td.thirteen.wide, .ui.table th.thirteen.wide {
  width: 81.25%; }

.ui.table td.fourteen.wide, .ui.table th.fourteen.wide {
  width: 87.5%; }

.ui.table td.fifteen.wide, .ui.table th.fifteen.wide {
  width: 93.75%; }

.ui.table td.sixteen.wide, .ui.table th.sixteen.wide {
  width: 100%; }

.ui.sortable.table thead th {
  cursor: pointer;
  white-space: nowrap;
  border-left: 1px solid rgba(34, 36, 38, 0.15);
  color: rgba(0, 0, 0, 0.87); }

.ui.sortable.table thead th:first-child {
  border-left: none; }

.ui.sortable.table thead th.sorted, .ui.sortable.table thead th.sorted:hover {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.ui.sortable.table thead th:after {
  display: none;
  font-style: normal;
  font-weight: 400;
  text-decoration: inherit;
  content: '';
  height: 1em;
  width: auto;
  opacity: .8;
  margin: 0 0 0 .5em;
  font-family: Icons; }

.ui.sortable.table thead th.ascending:after {
  content: '\f0d8'; }

.ui.sortable.table thead th.descending:after {
  content: '\f0d7'; }

.ui.sortable.table th.disabled:hover {
  cursor: auto;
  color: rgba(40, 40, 40, 0.3); }

.ui.sortable.table thead th:hover {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8); }

.ui.sortable.table thead th.sorted {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.95); }

.ui.sortable.table thead th.sorted:after {
  display: inline-block; }

.ui.sortable.table thead th.sorted:hover {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.95); }

.ui.inverted.sortable.table thead th.sorted {
  background: rgba(255, 255, 255, 0.15) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
  background: rgba(255, 255, 255, 0.15) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  background: rgba(255, 255, 255, 0.15) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  color: #fff; }

.ui.inverted.sortable.table thead th:hover {
  background: rgba(255, 255, 255, 0.08) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
  background: rgba(255, 255, 255, 0.08) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  background: rgba(255, 255, 255, 0.08) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  color: #fff; }

.ui.inverted.sortable.table thead th {
  border-left-color: transparent;
  border-right-color: transparent; }

.ui.inverted.table {
  background: #333;
  color: rgba(255, 255, 255, 0.9);
  border: none; }

.ui.inverted.table th {
  background-color: rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.9) !important; }

.ui.inverted.table tr td {
  border-color: rgba(255, 255, 255, 0.1) !important; }

.ui.inverted.table tr td.disabled, .ui.inverted.table tr.disabled td, .ui.inverted.table tr.disabled:hover td, .ui.inverted.table tr:hover td.disabled {
  pointer-events: none;
  color: rgba(225, 225, 225, 0.3); }

.ui.inverted.definition.table tfoot:not(.full-width) th:first-child, .ui.inverted.definition.table thead:not(.full-width) th:first-child {
  background: #fff; }

.ui.inverted.definition.table tr td:first-child {
  background: rgba(255, 255, 255, 0.02);
  color: #fff; }

.ui.collapsing.table {
  width: auto; }

.ui.basic.table {
  background: 0 0;
  border: 1px solid rgba(34, 36, 38, 0.15);
  -webkit-box-shadow: none;
  box-shadow: none; }

.ui.basic.table tfoot, .ui.basic.table thead {
  -webkit-box-shadow: none;
  box-shadow: none; }

.ui.basic.table th {
  background: 0 0;
  border-left: none; }

.ui.basic.table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

.ui.basic.table td {
  background: 0 0; }

.ui.basic.striped.table tbody tr:nth-child(2n) {
  background-color: rgba(0, 0, 0, 0.05) !important; }

.ui[class*="very basic"].table {
  border: none; }

.ui[class*="very basic"].table:not(.sortable):not(.striped) td, .ui[class*="very basic"].table:not(.sortable):not(.striped) th {
  padding: ''; }

.ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child, .ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child {
  padding-left: 0; }

.ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child, .ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child {
  padding-right: 0; }

.ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th {
  padding-top: 0; }

.ui.celled.table tr td, .ui.celled.table tr th {
  border-left: 1px solid rgba(34, 36, 38, 0.1); }

.ui.celled.table tr td:first-child, .ui.celled.table tr th:first-child {
  border-left: none; }

.ui.padded.table th {
  padding-left: 1em;
  padding-right: 1em; }

.ui.padded.table td, .ui.padded.table th {
  padding: 1em 1em; }

.ui[class*="very padded"].table th {
  padding-left: 1.5em;
  padding-right: 1.5em; }

.ui[class*="very padded"].table td {
  padding: 1.5em 1.5em; }

.ui.compact.table th {
  padding-left: .7em;
  padding-right: .7em; }

.ui.compact.table td {
  padding: .5em .7em; }

.ui[class*="very compact"].table th {
  padding-left: .6em;
  padding-right: .6em; }

.ui[class*="very compact"].table td {
  padding: .4em .6em; }

.ui.small.table {
  font-size: .9em; }

.ui.table {
  font-size: 1em; }

.ui.large.table {
  font-size: 1.1em; }

/*
 *
 * Diff to HTML (diff2html.css)
 * Author: rtfpessoa
 *
 */
.d2h-wrapper {
  text-align: left; }

.d2h-file-header {
  height: 35px;
  padding: 5px 10px;
  /* border-bottom: 1px solid #d8d8d8; */
  background-color: #f7f7f7;
  display: none !important; }

.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;
  /* hide file name */
  display: none; }

.d2h-file-wrapper {
  /* border: 1px solid #ddd; */
  border-radius: 3px; }

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

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

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

.d2h-file-side-diff {
  display: inline-block;
  overflow-x: scroll;
  overflow-y: hidden;
  width: 50%;
  margin-right: 0px;
  /* add */
  vertical-align: text-top;
  white-space: normal; }

.d2h-code-line {
  display: inline-block;
  white-space: nowrap;
  /* Compensate for the absolute positioning of the line numbers */
  padding: 0 8em; }

.d2h-code-side-line {
  display: inline-block;
  white-space: nowrap;
  /* Compensate for the absolute positioning of the line numbers */
  /* padding: 0 4.5em; */
  /* remove absolute line number */
  padding: 0 0.5em; }

.d2h-code-line del,
.d2h-code-side-line del {
  display: inline-block;
  margin-top: -1px;
  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;
  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;
  /* remove + - */
  display: none; }

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

.line-num1 {
  box-sizing: border-box;
  float: left;
  width: 3.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.5em 0 0.5em; }

.line-num2 {
  box-sizing: border-box;
  float: right;
  width: 3.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.5em 0 0.5em; }

.d2h-code-linenumber {
  box-sizing: border-box;
  width: 7.5em;
  /* Keep the numbers fixed on line contents scroll */
  position: absolute;
  display: inline-block;
  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-linenumber:after {
  content: '\200b'; }

.d2h-code-side-linenumber {
  /* Keep the numbers fixed on line contents scroll */
  position: absolute;
  display: inline-block;
  box-sizing: border-box;
  width: 4em;
  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;
  /* hide col 1 */
  display: none; }

.d2h-code-side-linenumber:after {
  content: '\200b'; }

.d2h-code-side-emptyplaceholder,
.d2h-emptyplaceholder {
  background-color: #f1f1f1;
  border-color: #e1e1e1; }

/*
 * Changes Highlight
 */
.d2h-del {
  /* remove back ground */
  /* background-color: #fee8e9; */
  border-color: #e9aeae; }

.d2h-ins {
  /* remove back ground */
  /* background-color: #dfd; */
  border-color: #b4e2b4; }

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

.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 {
  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 {
  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;
  /* remove tag header */
  display: none; }

.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;
  -ms-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::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; }

table.d2h-diff-table {
  height: 100%;
  width: 100%; }

.ui.table .d2h-diff-table tr td {
  min-width: 200px;
  border: none; }

.react-ip-input {
  padding: 2px 2px; }

.react-ip-input input {
  font-size: 14px; }

