/*! Oruga v0.7.0 | MIT License | github.com/oruga-ui/oruga */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes append-animate {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/**
 * Vue Transitions
 */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 150ms ease-out;
}

.fade-enter,
.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.zoom-in-enter-active,
.zoom-in-leave-active {
  transition: opacity 150ms ease-out;
}
.zoom-in-enter-active .animation-content,
.zoom-in-enter-active .animation-content,
.zoom-in-leave-active .animation-content,
.zoom-in-leave-active .animation-content {
  transition: transform 150ms ease-out;
}

.zoom-in-enter,
.zoom-in-enter-from,
.zoom-in-leave-active {
  opacity: 0;
}
.zoom-in-enter .animation-content,
.zoom-in-enter .animation-content,
.zoom-in-enter-from .animation-content,
.zoom-in-enter-from .animation-content,
.zoom-in-leave-active .animation-content,
.zoom-in-leave-active .animation-content {
  transform: scale(0.95);
}

.zoom-out-enter-active,
.zoom-out-leave-active {
  transition: opacity 150ms ease-out;
}
.zoom-out-enter-active .animation-content,
.zoom-out-enter-active .animation-content,
.zoom-out-leave-active .animation-content,
.zoom-out-leave-active .animation-content {
  transition: transform 150ms ease-out;
}

.zoom-out-enter,
.zoom-out-enter-from,
.zoom-out-leave-active {
  opacity: 0;
}
.zoom-out-enter .animation-content,
.zoom-out-enter .animation-content,
.zoom-out-enter-from .animation-content,
.zoom-out-enter-from .animation-content,
.zoom-out-leave-active .animation-content,
.zoom-out-leave-active .animation-content {
  transform: scale(1.05);
}

.slide-next-enter-active,
.slide-next-leave-active,
.slide-prev-enter-active,
.slide-prev-leave-active {
  transition: transform 250ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.slide-prev-leave-to,
.slide-next-enter,
.slide-next-enter-from {
  transform: translate3d(-100%, 0, 0);
  position: absolute;
  width: 100%;
}

.slide-prev-enter,
.slide-prev-enter-from,
.slide-next-leave-to {
  transform: translate3d(100%, 0, 0);
  position: absolute;
  width: 100%;
}

.slide-down-enter-active,
.slide-down-leave-active,
.slide-up-enter-active,
.slide-up-leave-active {
  transition: transform 250ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.slide-down-enter,
.slide-up-leave-to,
.slide-down-enter-from {
  transform: translate3d(0, -100%, 0);
  position: absolute;
  height: 100%;
}

.slide-up-enter,
.slide-up-enter-from,
.slide-down-leave-to {
  transform: translate3d(0, 100%, 0);
  position: absolute;
  height: 100%;
}

.slide-enter-active {
  transition: 150ms ease-out;
}

.slide-leave-active {
  transition: 150ms ease-out;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}

.slide-leave,
.slide-enter-to,
.slide-leave-from {
  max-height: 100px;
  overflow: hidden;
}

.slide-enter,
.slide-enter-from,
.slide-leave-to {
  overflow: hidden;
  max-height: 0;
}

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

html {
  box-sizing: border-box;
}

.o-noscroll {
  position: fixed;
  overflow-y: hidden;
  width: 100%;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}

.o-clipped {
  overflow: hidden;
}

/* @docs */
/* @docs */
.o-acp {
  position: relative;
}
.o-acp__menu {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  overflow: auto;
  z-index: 20;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.02);
  padding: 0.5rem 0 0.5rem 0;
  margin: 0;
  max-height: 200px;
}
.o-acp__menu--top {
  top: auto;
  bottom: 100%;
}
.o-acp__item {
  display: block;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  color: #000000;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.375rem 1rem;
}
.o-acp__item-group-title, .o-acp__item--empty {
  pointer-events: none;
  opacity: 0.5;
}
.o-acp__item--hover, .o-acp__item:hover {
  background: #f5f5f5;
  color: #000000;
}
.o-acp--expanded {
  width: 100%;
}

/* @docs */
/* @docs */
@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.o-btn {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: inline-flex;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  text-decoration: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #445e00;
  color: #ffffff;
  padding: calc(0.375em - 1px) 0.75em;
  border: 1px solid #445e00;
  border-radius: 4px;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  height: 2.25em;
}
.o-btn__wrapper {
  margin-left: -0.1875em;
  margin-right: -0.1875em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}
.o-btn__wrapper > * {
  margin-left: 0.1875em;
  margin-right: 0.1875em;
}
.o-btn__label {
  width: 100%;
}
.o-btn--expanded {
  width: 100%;
}
.o-btn--rounded {
  border-radius: 9999px;
}
.o-btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.o-btn--small {
  font-size: 0.75rem;
}
.o-btn--medium {
  font-size: 1.25rem;
}
.o-btn--large {
  font-size: 1.5rem;
}
.o-btn--primary {
  border-color: transparent;
  background-color: #445e00;
  color: #ffffff;
}
.o-btn--primary:hover {
  filter: brightness(97.5%);
}
.o-btn--danger {
  border-color: transparent;
  background-color: #b60000;
  color: #ffffff;
}
.o-btn--danger:hover {
  filter: brightness(97.5%);
}
.o-btn--warning {
  border-color: transparent;
  background-color: #f4c300;
  color: #000000;
}
.o-btn--warning:hover {
  filter: brightness(97.5%);
}
.o-btn--success {
  border-color: transparent;
  background-color: #006724;
  color: #ffffff;
}
.o-btn--success:hover {
  filter: brightness(97.5%);
}
.o-btn--info {
  border-color: transparent;
  background-color: #005c98;
  color: #ffffff;
}
.o-btn--info:hover {
  filter: brightness(97.5%);
}
.o-btn--outlined {
  background-color: transparent;
  border-color: #445e00;
  color: #445e00;
}
.o-btn--outlined:hover {
  border-color: transparent;
  background-color: #445e00;
  color: #ffffff;
}
.o-btn--outlined-primary {
  background-color: transparent;
  border-color: #445e00;
  color: #445e00;
}
.o-btn--outlined-primary:hover {
  border-color: transparent;
  background-color: #445e00;
  color: #ffffff;
}
.o-btn--outlined-danger {
  background-color: transparent;
  border-color: #b60000;
  color: #b60000;
}
.o-btn--outlined-danger:hover {
  border-color: transparent;
  background-color: #b60000;
  color: #ffffff;
}
.o-btn--outlined-warning {
  background-color: transparent;
  border-color: #f4c300;
  color: #f4c300;
}
.o-btn--outlined-warning:hover {
  border-color: transparent;
  background-color: #f4c300;
  color: #000000;
}
.o-btn--outlined-success {
  background-color: transparent;
  border-color: #006724;
  color: #006724;
}
.o-btn--outlined-success:hover {
  border-color: transparent;
  background-color: #006724;
  color: #ffffff;
}
.o-btn--outlined-info {
  background-color: transparent;
  border-color: #005c98;
  color: #005c98;
}
.o-btn--outlined-info:hover {
  border-color: transparent;
  background-color: #005c98;
  color: #ffffff;
}
.o-btn--loading {
  color: transparent !important;
  pointer-events: none;
}
.o-btn--loading::after {
  -webkit-animation: spinAround 500ms infinite linear;
  left: calc(50% - 0.5em);
  top: calc(50% - 0.5em);
  position: absolute !important;
  border: 2px solid #dbdbdb;
  border-radius: 9999px;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  display: block;
  height: 1em;
  width: 1em;
}
.o-btn--inverted {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #445e00;
}
.o-btn--inverted:hover {
  filter: brightness(95%);
}
.o-btn--inverted-primary {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #445e00;
}
.o-btn--inverted-primary:hover {
  filter: brightness(95%);
}
.o-btn--inverted-danger {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #b60000;
}
.o-btn--inverted-danger:hover {
  filter: brightness(95%);
}
.o-btn--inverted-warning {
  background-color: #000000;
  border-color: #000000;
  color: #f4c300;
}
.o-btn--inverted-warning:hover {
  filter: brightness(95%);
}
.o-btn--inverted-success {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #006724;
}
.o-btn--inverted-success:hover {
  filter: brightness(95%);
}
.o-btn--inverted-info {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #005c98;
}
.o-btn--inverted-info:hover {
  filter: brightness(95%);
}

/* @docs */
/* @docs */
.o-car {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.o-car__overlay {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  display: flex;
  max-height: 100vh;
  position: fixed;
  background-color: rgba(10, 10, 10, 0.86);
  z-index: 40;
}
.o-car__scene {
  position: relative;
  width: 100%;
}
.o-car__items {
  display: flex;
  width: 100%;
}
.o-car__items:not(.o-car__items--dragging) {
  transition: all 250ms ease-out 0s;
}
.o-car__item {
  border: 2px solid transparent;
  flex-shrink: 0;
}
.o-car__indicators {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
}
.o-car__indicators--inside {
  position: absolute;
}
.o-car__indicators--inside--bottom {
  bottom: 0;
}
.o-car__indicators--inside--top {
  top: 0;
}
.o-car__indicator:not(:last-child) {
  margin: 0 0.5rem 0 0;
}
.o-car__indicator__item {
  display: block;
  border: 1px solid #445e00;
  background: #ffffff;
  transition: 150ms ease-out;
}
.o-car__indicator__item--active, .o-car__indicator__item :hover {
  background: #445e00;
  border: 1px solid #445e00;
}
.o-car__indicator__item--boxes {
  width: 10px;
  height: 10px;
}
.o-car__indicator__item--dots {
  border-radius: 4px;
  width: 10px;
  height: 10px;
}
.o-car__indicator__item---lines {
  width: 5px;
  height: 25px;
}
.o-car__arrow__icon {
  cursor: pointer;
  background: #ffffff;
  color: #445e00;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  border: 1px solid #ffffff;
  transition: 150ms ease-out;
}
.o-car__arrow__icon-prev, .o-car__arrow__icon-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.o-car__arrow__icon-prev {
  left: 1.5rem;
}
.o-car__arrow__icon-next {
  right: 1.5rem;
}

/* @docs */
/* @docs */
.o-chk {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 1.5;
  margin-right: 0.5em;
}
.o-chk__check {
  width: 1rem;
  height: 1rem;
  outline: none;
  margin: 0;
  vertical-align: top;
  background-position: center;
  background-size: contain;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  flex-shrink: 0;
  cursor: pointer;
  background-repeat: no-repeat;
  background-color: #445e00;
  border-radius: 4px;
  border-width: 2px;
  border-color: #445e00;
  border-style: solid;
  transition-property: background;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}
.o-chk__check--checked {
  background-color: #445e00;
  border-color: #445e00;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 234 225' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;'%3E%3Cg transform='matrix(4.16667,0,0,4.16667,0,0)'%3E%3Cg transform='matrix(3.13817,0,0,3.13817,-69.2796,-49.5156)'%3E%3Cpath style='fill:%23ffffff' d='M22.504,26.219L28.637,32.386L39.494,18.284L37.348,16.379L28,27.725L24.46,24.196L22.504,26.219Z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.o-chk__check--indeterminate {
  background-color: #445e00;
  border-color: #445e00;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 417 417' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(4.16667,0,0,4.16667,0,0)'%3E%3Cg transform='matrix(6.96176,0,0,20.5682,-118.661,-806.753)'%3E%3Cpath style='fill:%23ffffff' d='M31.265,41.654C31.265,41.324 30.474,41.057 29.5,41.057L18.953,41.057C17.979,41.057 17.188,41.324 17.188,41.654C17.188,41.984 17.979,42.252 18.953,42.252L29.5,42.252C30.474,42.252 31.265,41.984 31.265,41.654Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.o-chk__label {
  padding: 0 0 0 0.5em;
}
.o-chk--disabled {
  opacity: 0.5;
}
.o-chk--small {
  font-size: 0.75rem;
}
.o-chk--medium {
  font-size: 1.25rem;
}
.o-chk--large {
  font-size: 1.5rem;
}
.o-chk--primary .o-chk__check {
  border-color: #445e00;
  background-color: #445e00;
}
.o-chk--primary .o-chk__check--checked {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 234 225' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;'%3E%3Cg transform='matrix(4.16667,0,0,4.16667,0,0)'%3E%3Cg transform='matrix(3.13817,0,0,3.13817,-69.2796,-49.5156)'%3E%3Cpath style='fill:%23ffffff' d='M22.504,26.219L28.637,32.386L39.494,18.284L37.348,16.379L28,27.725L24.46,24.196L22.504,26.219Z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.o-chk--primary .o-chk__check--indeterminate {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 417 417' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(4.16667,0,0,4.16667,0,0)'%3E%3Cg transform='matrix(6.96176,0,0,20.5682,-118.661,-806.753)'%3E%3Cpath style='fill:%23ffffff' d='M31.265,41.654C31.265,41.324 30.474,41.057 29.5,41.057L18.953,41.057C17.979,41.057 17.188,41.324 17.188,41.654C17.188,41.984 17.979,42.252 18.953,42.252L29.5,42.252C30.474,42.252 31.265,41.984 31.265,41.654Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.o-chk--danger .o-chk__check {
  border-color: #b60000;
  background-color: #b60000;
}
.o-chk--danger .o-chk__check--checked {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 234 225' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;'%3E%3Cg transform='matrix(4.16667,0,0,4.16667,0,0)'%3E%3Cg transform='matrix(3.13817,0,0,3.13817,-69.2796,-49.5156)'%3E%3Cpath style='fill:%23ffffff' d='M22.504,26.219L28.637,32.386L39.494,18.284L37.348,16.379L28,27.725L24.46,24.196L22.504,26.219Z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.o-chk--danger .o-chk__check--indeterminate {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 417 417' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(4.16667,0,0,4.16667,0,0)'%3E%3Cg transform='matrix(6.96176,0,0,20.5682,-118.661,-806.753)'%3E%3Cpath style='fill:%23ffffff' d='M31.265,41.654C31.265,41.324 30.474,41.057 29.5,41.057L18.953,41.057C17.979,41.057 17.188,41.324 17.188,41.654C17.188,41.984 17.979,42.252 18.953,42.252L29.5,42.252C30.474,42.252 31.265,41.984 31.265,41.654Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.o-chk--warning .o-chk__check {
  border-color: #f4c300;
  background-color: #f4c300;
}
.o-chk--warning .o-chk__check--checked {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 234 225' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;'%3E%3Cg transform='matrix(4.16667,0,0,4.16667,0,0)'%3E%3Cg transform='matrix(3.13817,0,0,3.13817,-69.2796,-49.5156)'%3E%3Cpath style='fill:%23000000' d='M22.504,26.219L28.637,32.386L39.494,18.284L37.348,16.379L28,27.725L24.46,24.196L22.504,26.219Z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.o-chk--warning .o-chk__check--indeterminate {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 417 417' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(4.16667,0,0,4.16667,0,0)'%3E%3Cg transform='matrix(6.96176,0,0,20.5682,-118.661,-806.753)'%3E%3Cpath style='fill:%23000000' d='M31.265,41.654C31.265,41.324 30.474,41.057 29.5,41.057L18.953,41.057C17.979,41.057 17.188,41.324 17.188,41.654C17.188,41.984 17.979,42.252 18.953,42.252L29.5,42.252C30.474,42.252 31.265,41.984 31.265,41.654Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.o-chk--success .o-chk__check {
  border-color: #006724;
  background-color: #006724;
}
.o-chk--success .o-chk__check--checked {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 234 225' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;'%3E%3Cg transform='matrix(4.16667,0,0,4.16667,0,0)'%3E%3Cg transform='matrix(3.13817,0,0,3.13817,-69.2796,-49.5156)'%3E%3Cpath style='fill:%23ffffff' d='M22.504,26.219L28.637,32.386L39.494,18.284L37.348,16.379L28,27.725L24.46,24.196L22.504,26.219Z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.o-chk--success .o-chk__check--indeterminate {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 417 417' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(4.16667,0,0,4.16667,0,0)'%3E%3Cg transform='matrix(6.96176,0,0,20.5682,-118.661,-806.753)'%3E%3Cpath style='fill:%23ffffff' d='M31.265,41.654C31.265,41.324 30.474,41.057 29.5,41.057L18.953,41.057C17.979,41.057 17.188,41.324 17.188,41.654C17.188,41.984 17.979,42.252 18.953,42.252L29.5,42.252C30.474,42.252 31.265,41.984 31.265,41.654Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.o-chk--info .o-chk__check {
  border-color: #005c98;
  background-color: #005c98;
}
.o-chk--info .o-chk__check--checked {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 234 225' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;'%3E%3Cg transform='matrix(4.16667,0,0,4.16667,0,0)'%3E%3Cg transform='matrix(3.13817,0,0,3.13817,-69.2796,-49.5156)'%3E%3Cpath style='fill:%23ffffff' d='M22.504,26.219L28.637,32.386L39.494,18.284L37.348,16.379L28,27.725L24.46,24.196L22.504,26.219Z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.o-chk--info .o-chk__check--indeterminate {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 417 417' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(4.16667,0,0,4.16667,0,0)'%3E%3Cg transform='matrix(6.96176,0,0,20.5682,-118.661,-806.753)'%3E%3Cpath style='fill:%23ffffff' d='M31.265,41.654C31.265,41.324 30.474,41.057 29.5,41.057L18.953,41.057C17.979,41.057 17.188,41.324 17.188,41.654C17.188,41.984 17.979,42.252 18.953,42.252L29.5,42.252C30.474,42.252 31.265,41.984 31.265,41.654Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* @docs */
/* @docs */
.o-clps__trigger {
  cursor: pointer;
}
.o-clps__content {
  display: inherit;
}

/* @docs */
/* @docs */
.o-dpck {
  font-size: 1rem;
}
.o-dpck--small {
  font-size: 0.75rem;
}
.o-dpck--medium {
  font-size: 1.25rem;
}
.o-dpck--large {
  font-size: 1.5rem;
}
.o-dpck__dropdown {
  width: 100%;
}
.o-dpck__box {
  display: block;
  position: relative;
  line-height: 1.5;
  padding: 0.375rem 1rem;
}
.o-dpck__header {
  padding: 0 0 0.875rem 0;
  margin: 0 0 0.875rem 0;
  border-bottom: 1px solid #dbdbdb;
}
.o-dpck__header__buttons {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
}
.o-dpck__header__buttons--small {
  font-size: 0.75rem;
}
.o-dpck__header__buttons--medium {
  font-size: 1.25rem;
}
.o-dpck__header__buttons--large {
  font-size: 1.5rem;
}
.o-dpck__header__previous, .o-dpck__header__next {
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  align-items: center;
  box-shadow: none;
  display: inline-flex;
  position: relative;
  vertical-align: top;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 4px;
  border-color: #dbdbdb;
  color: #363636;
  min-width: 2.25em;
  height: 2.25em;
  padding: 0.5em 0.5em;
  margin: 0.25rem;
}
.o-dpck__header__previous:hover, .o-dpck__header__next:hover {
  text-decoration: none;
  border-color: #b5b5b5;
  color: #363636;
}
.o-dpck__header__previous {
  order: 1;
}
.o-dpck__header__next {
  order: 3;
}
.o-dpck__header__list {
  order: 2;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  margin-left: -0.125rem;
  margin-right: -0.125rem;
}
.o-dpck__header__list > * {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}
.o-dpck__footer {
  padding: 0.875rem 0.5rem 0 0.5rem;
  margin: 0.875rem 0 0.875rem 0;
  border-top: 1px solid #dbdbdb;
}
.o-dpck__table, .o-dpck__month {
  display: table;
  margin: 0 auto 0 auto;
}
.o-dpck__table__head, .o-dpck__month__head {
  display: table-header-group;
  padding: 0 0 0.875rem 0;
  margin: 0 0 0.875rem 0;
  border-bottom: 1px solid #dbdbdb;
}
.o-dpck__table__body, .o-dpck__month__body {
  display: table-row-group;
}
.o-dpck__table__row, .o-dpck__month__row {
  display: table-row;
}
.o-dpck__table__head-cell, .o-dpck__month__head-cell {
  padding: #7a7a7a;
  font-weight: 600;
}
.o-dpck__table__cell, .o-dpck__month__cell {
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  text-decoration: none;
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
}
.o-dpck__table__cell--unselectable, .o-dpck__month__cell--unselectable {
  color: #b5b5b5;
}
.o-dpck__table__cell--today, .o-dpck__month__cell--today {
  border: solid 1px rgba(68, 94, 0, 0.5);
}
.o-dpck__table__cell--selectable, .o-dpck__month__cell--selectable {
  color: #4a4a4a;
}
.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered {
  background-color: #7a7a7a;
  color: #dbdbdb;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered {
  background-color: rgba(122, 122, 122, 0.5);
  color: #dbdbdb;
  border-radius: 0;
}
.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered {
  background-color: #7a7a7a;
  color: #dbdbdb;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.o-dpck__table__cell--selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered), .o-dpck__month__cell--selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered) {
  background-color: #445e00;
  color: #ffffff;
}
.o-dpck__table__cell--first-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered), .o-dpck__month__cell--first-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered) {
  background-color: #445e00;
  color: #ffffff;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.o-dpck__table__cell--within-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered), .o-dpck__month__cell--within-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered) {
  background-color: rgba(68, 94, 0, 0.5);
  border-radius: 0;
}
.o-dpck__table__cell--last-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered), .o-dpck__month__cell--last-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered) {
  background-color: #445e00;
  color: #ffffff;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.o-dpck__table__cell--nearby:not(.o-dpck__table__cell--selected, .o-dpck__month__cell--selected), .o-dpck__month__cell--nearby:not(.o-dpck__table__cell--selected, .o-dpck__month__cell--selected) {
  color: #b5b5b5;
}
.o-dpck__table__cell--invisible, .o-dpck__month__cell--invisible {
  visibility: hidden;
}
.o-dpck__table__cell--events, .o-dpck__month__cell--events {
  padding: 0.3rem 0.75rem 0.75rem;
  position: relative;
}
.o-dpck__table__events, .o-dpck__month__events {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 15%;
}
.o-dpck__table__event, .o-dpck__month__event {
  background-color: #b5b5b5;
}
.o-dpck__table__event--primary, .o-dpck__month__event--primary {
  background-color: #445e00;
  background-color: #445e00;
}
.o-dpck__table__event--danger, .o-dpck__month__event--danger {
  background-color: #b60000;
  background-color: #b60000;
}
.o-dpck__table__event--warning, .o-dpck__month__event--warning {
  background-color: #f4c300;
  background-color: #f4c300;
}
.o-dpck__table__event--success, .o-dpck__month__event--success {
  background-color: #006724;
  background-color: #006724;
}
.o-dpck__table__event--info, .o-dpck__month__event--info {
  background-color: #005c98;
  background-color: #005c98;
}
.o-dpck__table__event--dots, .o-dpck__month__event--dots {
  border-radius: 50%;
  margin: 0 0.1em;
  height: 0.35em;
  width: 0.35em;
}
.o-dpck__table__event--bars, .o-dpck__month__event--bars {
  height: 0.25em;
  width: 100%;
}
.o-dpck__month__table {
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 17rem;
}
.o-dpck__month__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.33%;
  height: 2.5rem;
}
.o-dpck--mobile .o-dpck__header__previous {
  order: 1;
  flex-grow: 1;
  flex-shrink: 1;
}
.o-dpck--mobile .o-dpck__header__next {
  order: 3;
  flex-grow: 1;
  flex-shrink: 1;
}
.o-dpck--mobile .o-dpck__header__list {
  order: 2;
  flex-grow: 1;
  flex-shrink: 1;
}

/* @docs */
/* @docs */
.o-dtpck__time {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* @docs */
/* @docs */
.o-drop {
  display: inline-flex;
  position: relative;
  vertical-align: top;
}
.o-drop--inline {
  display: inline;
}
.o-drop--inline .o-drop__menu {
  position: static;
  display: inline-block;
  padding: 0;
}
.o-drop__overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  cursor: pointer;
  display: none;
  background-color: rgba(0, 0, 0, 0.86);
  z-index: 40;
}
.o-drop__trigger {
  width: 100%;
}
.o-drop__menu {
  position: absolute;
  left: 0;
  top: 100%;
  display: block;
  min-width: 12rem;
  z-index: 20;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.02);
  padding: 0.5rem 0 0.5rem 0;
  margin: 0;
}
.o-drop__menu--top-left {
  top: auto;
  bottom: 100%;
  right: 0;
  left: auto;
}
.o-drop__menu--bottom-left {
  right: 0;
  left: auto;
}
.o-drop__menu--top-right {
  top: auto;
  bottom: 100%;
}
.o-drop__item {
  display: block;
  position: relative;
  cursor: pointer;
  color: #000000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.375rem 1rem;
}
.o-drop__item--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.o-drop__item--active {
  background-color: #445e00;
  color: #ffffff;
}
.o-drop__item:hover:not(.o-drop__item--active) {
  background-color: #f5f5f5;
  color: #000000;
}
.o-drop--expanded {
  width: 100%;
}
.o-drop--expanded .o-drop__menu {
  width: 100%;
}
.o-drop--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.o-drop--mobile > .o-drop__menu {
  position: fixed;
  top: 25%;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translate3d(-50%, -25%, 0);
  overflow-y: auto;
  width: calc(100vw - 40px);
  max-width: 460px;
  max-height: calc(100vh - 120px);
  z-index: 50;
}
.o-drop--mobile > .o-drop__overlay {
  display: block;
}

/* @docs */
/* @docs */
.o-field {
  flex-grow: 1;
}
.o-field:not(:last-child) {
  margin-bottom: 0.75rem;
}
.o-field__label {
  display: block;
  color: #363636;
  font-size: 1rem;
  font-weight: 600;
}
.o-field__label-small {
  font-size: 0.75rem;
}
.o-field__label-medium {
  font-size: 1.25rem;
}
.o-field__label-large {
  font-size: 1.5rem;
}
.o-field__message {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
.o-field__message-primary {
  color: #445e00;
}
.o-field__message-danger {
  color: #b60000;
}
.o-field__message-warning {
  color: #f4c300;
}
.o-field__message-success {
  color: #006724;
}
.o-field__message-info {
  color: #005c98;
}
.o-field--addons {
  display: flex;
  justify-content: flex-start;
}
.o-field--addons > *:first-child:not(:only-child) button,
.o-field--addons > button:first-child,
.o-field--addons > *:first-child:not(:only-child) input,
.o-field--addons > input:first-child,
.o-field--addons > *:first-child:not(:only-child) select,
.o-field--addons > select:first-child {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.o-field--addons > *:last-child:not(:only-child) button,
.o-field--addons > button:last-child,
.o-field--addons > *:last-child:not(:only-child) input,
.o-field--addons > input:last-child,
.o-field--addons > *:last-child:not(:only-child) select,
.o-field--addons > select:last-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.o-field--addons > *:not(:first-child):not(:last-child) button,
.o-field--addons > button:not(:first-child):not(:last-child),
.o-field--addons > *:not(:first-child):not(:last-child) input,
.o-field--addons > input:not(:first-child):not(:last-child),
.o-field--addons > *:not(:first-child):not(:last-child) select,
.o-field--addons > select:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.o-field--grouped {
  display: flex;
  margin-left: -0.37rem;
  margin-right: -0.37rem;
}
.o-field--grouped > * {
  margin-left: 0.37rem;
  margin-right: 0.37rem;
}
.o-field--grouped-multiline {
  flex-wrap: wrap;
}
.o-field--grouped-multiline:last-child {
  margin-bottom: -0.75rem;
}
.o-field__horizontal-body {
  display: flex;
  flex-basis: 0;
  flex-grow: 5;
  flex-shrink: 1;
  margin-left: -0.37rem;
  margin-right: -0.37rem;
}
.o-field__horizontal-body > * {
  margin-left: 0.37rem;
  margin-right: 0.37rem;
}
.o-field--horizontal {
  display: flex;
}
.o-field__horizontal-label {
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 0;
  margin: 0 1.5rem 0 0;
  text-align: right;
}
.o-field--mobile .o-field__horizontal-body {
  all: unset;
}
.o-field--mobile.o-field--horizontal {
  all: unset;
}
.o-field--mobile .o-field__horizontal-label {
  all: unset;
}

/* @docs */
/* @docs */
@keyframes icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.o-icon {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  transition: transform 150ms ease-out, opacity 300ms ease-out;
}
.o-icon--small {
  font-size: 0.75rem;
}
.o-icon--medium {
  font-size: 1.25rem;
}
.o-icon--large {
  font-size: 1.5rem;
}
.o-icon--primary {
  color: #445e00;
}
.o-icon--danger {
  color: #b60000;
}
.o-icon--warning {
  color: #f4c300;
}
.o-icon--success {
  color: #006724;
}
.o-icon--info {
  color: #005c98;
}
.o-icon--clickable {
  pointer-events: auto;
  cursor: pointer;
}
.o-icon--spin {
  animation-name: icon-spin;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 2s;
}

/* @docs */
/* @docs */
.o-ctrl-input {
  display: block;
  position: relative;
}
.o-ctrl-input--expanded {
  width: 100%;
  flex-grow: 1;
  flex-shrink: 1;
}

.o-input {
  -moz-appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  position: relative;
  vertical-align: top;
  width: 100%;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  max-width: 100%;
  background-color: #ffffff;
  border-color: #dbdbdb;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  color: #363636;
  font-size: 1rem;
  height: 2.25em;
  line-height: 1.5;
  padding: calc(0.375em - 1px) calc(0.625em - 1px);
  margin: 0;
}
.o-input-iconspace-left {
  padding-left: 2.25em;
}
.o-input-iconspace-right {
  padding-right: 2.25em;
}
.o-input--rounded {
  border-radius: 9999px;
}
.o-input--small {
  font-size: 0.75rem;
}
.o-input--medium {
  font-size: 1.25rem;
}
.o-input--large {
  font-size: 1.5rem;
}
.o-input--primary {
  border-color: #445e00;
}
.o-input--danger {
  border-color: #b60000;
}
.o-input--warning {
  border-color: #f4c300;
}
.o-input--success {
  border-color: #006724;
}
.o-input--info {
  border-color: #005c98;
}
.o-input__textarea {
  display: block;
  max-width: 100%;
  min-width: 100%;
  height: auto;
  resize: vertical;
  padding: 0.625em;
}
.o-input__textarea:not([rows]) {
  max-height: 600px;
  min-height: 120px;
}
.o-input__counter {
  display: block;
  float: right;
  font-size: 0.75rem;
  margin: 0.25rem 0 0 0.5rem;
}
.o-input__icon-left, .o-input__icon-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 2.25em;
  z-index: 4;
}
.o-input__icon-right {
  right: 0;
}
.o-input__icon-left {
  left: 0;
}

/* @docs */
/* @docs */
.o-inputit {
  display: block;
}
.o-inputit__container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  vertical-align: top;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
  padding: calc(.275em - 1px) 0 0;
  background-color: #ffffff;
  border-color: #dbdbdb;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  color: #363636;
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
}
.o-inputit__container--small {
  font-size: 0.75rem;
}
.o-inputit__container--medium {
  font-size: 1.25rem;
}
.o-inputit__container--large {
  font-size: 1.5rem;
}
.o-inputit__autocomplete {
  position: static;
  flex: 1;
}
.o-inputit__input {
  border: none;
  box-shadow: none;
}
.o-inputit__input:focus {
  box-shadow: none;
}
.o-inputit__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: -0.1875em;
  margin-right: -0.1875em;
  background-color: #445e00;
  color: #ffffff;
  border-radius: 4px;
  margin: 0 0 0 0.275em;
  padding: 0 0.75em 0 0.75em;
}
.o-inputit__item > * {
  margin-left: 0.1875em;
  margin-right: 0.1875em;
}
.o-inputit__item--primary {
  background-color: #445e00;
  color: #ffffff;
}
.o-inputit__item--danger {
  background-color: #b60000;
  color: #ffffff;
}
.o-inputit__item--warning {
  background-color: #f4c300;
  color: #000000;
}
.o-inputit__item--success {
  background-color: #006724;
  color: #ffffff;
}
.o-inputit__item--info {
  background-color: #005c98;
  color: #ffffff;
}
.o-inputit__counter {
  display: block;
  float: right;
  font-size: 0.75rem;
  margin: 0.25rem 0 0 0.5rem;
}
.o-inputit--expanded {
  width: 100%;
  flex-grow: 1;
  flex-shrink: 1;
}

/* @docs */
/* @docs */
.o-load {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
  z-index: 29;
}
.o-load--fullpage {
  position: fixed;
  z-index: 999;
}
.o-load__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: #7f7f7f;
  background: rgba(255, 255, 255, 0.5);
}

/* @docs */
/* @docs */
.o-menu {
  font-size: 1rem;
}
.o-menu--small {
  font-size: 0.75rem;
}
.o-menu--medium {
  font-size: 1.25rem;
}
.o-menu--large {
  font-size: 1.5rem;
}

.o-menu-list {
  line-height: 1.25em;
}
.o-menu-list .o-menu-list,
.o-menu-list .o-menu-item__wrapper {
  list-style: none;
}
.o-menu-list .o-menu-item__submenu {
  border-left: 1px solid #445e00;
  padding-left: 0.75em;
  margin: 0.75em;
}

.o-menu-label {
  color: #7a7a7a;
  font-size: 0.75em;
  text-transform: uppercase;
}
.o-menu-label:not(:first-child) {
  margin-top: 1em;
}
.o-menu-label:not(:last-child) {
  margin-bottom: 1em;
}

.o-menu-item {
  color: #4a4a4a;
  padding: 0.5em 0.75em;
  display: block;
  list-style: none;
}
.o-menu-item:hover:not(.o-menu-item--active):not(.o-menu-item--disabled) {
  color: #000000;
  background-color: #b5b5b5;
}
.o-menu-item--active {
  color: #ffffff;
  background-color: #445e00;
}
.o-menu-item--disabled {
  color: #b5b5b5;
}

/* @docs */
/* @docs */
.o-modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 40;
}
.o-modal__overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background-color: rgba(10, 10, 10, 0.86);
}
.o-modal__content {
  overflow: auto;
  position: relative;
  margin: 0 auto;
  max-height: calc(100vh - 160px);
  background-color: #ffffff;
  border-radius: 4px;
}
.o-modal__content--full-screen {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  margin: 0;
  background-color: #f5f5f5;
}
.o-modal__close {
  background: none;
  position: fixed;
  border: none;
  display: inline-block;
  vertical-align: top;
  border-radius: 9999px;
  right: 20px;
  top: 20px;
  height: 32px;
  width: 32px;
  color: #ffffff;
}
.o-modal--mobile .o-modal__content {
  width: 100%;
}

/* @docs */
/* @docs */
.o-notification {
  background-color: #445e00;
  color: #ffffff;
  border-radius: 4px;
  padding: 1.75em 1.75em;
  margin-bottom: 1.5rem;
  position: relative;
  transform-origin: 50% 0;
}
.o-notification__content {
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  text-align: inherit;
  overflow-y: hidden;
  overflow-x: auto;
}
.o-notification__wrapper {
  align-items: flex-start;
  display: flex;
  text-align: inherit;
  padding-top: 0;
  border: 0;
}
.o-notification__icon {
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 1rem;
}
.o-notification__close {
  position: absolute;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 0;
  flex-shrink: 0;
  vertical-align: top;
  background-color: rgba(10, 10, 10, 0.2);
  border-radius: 9999px;
  right: 0.5rem;
  top: 0.5rem;
  height: 20px;
  width: 20px;
  color: #ffffff;
}
.o-notification--primary {
  border-color: transparent;
  background-color: #445e00;
  color: #ffffff;
}
.o-notification--primary:hover {
  filter: brightness(97.5%);
}
.o-notification--danger {
  border-color: transparent;
  background-color: #b60000;
  color: #ffffff;
}
.o-notification--danger:hover {
  filter: brightness(97.5%);
}
.o-notification--warning {
  border-color: transparent;
  background-color: #f4c300;
  color: #000000;
}
.o-notification--warning:hover {
  filter: brightness(97.5%);
}
.o-notification--success {
  border-color: transparent;
  background-color: #006724;
  color: #ffffff;
}
.o-notification--success:hover {
  filter: brightness(97.5%);
}
.o-notification--info {
  border-color: transparent;
  background-color: #005c98;
  color: #ffffff;
}
.o-notification--info:hover {
  filter: brightness(97.5%);
}

.o-notices {
  position: fixed;
  display: flex;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
  padding: 2em;
  z-index: 1000;
}
.o-notices .o-notification {
  pointer-events: stroke;
  max-width: 600px;
  animation: append-animate 0.3s linear;
}
.o-notices .o-notification--top, .o-notices .o-notification--bottom {
  align-self: center;
}
.o-notices .o-notification--top-right, .o-notices .o-notification--bottom-right {
  align-self: flex-end;
}
.o-notices .o-notification--top-left, .o-notices .o-notification--bottom-left {
  align-self: flex-start;
}
.o-notices--top {
  flex-direction: column;
}
.o-notices--bottom {
  flex-direction: column-reverse;
}
.o-notices--bottom .o-notification {
  margin-bottom: 0;
}
.o-notices--bottom .o-notification:not(:first-child) {
  margin-bottom: 1.5rem;
}
.o-notices__custom-container {
  position: absolute;
}

/* @docs */
/* @docs */
.o-pag {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  justify-content: space-between;
  font-size: 1rem;
  margin: -0.25rem;
}
.o-pag--small {
  font-size: 0.75rem;
}
.o-pag--medium {
  font-size: 1.25rem;
}
.o-pag--large {
  font-size: 1.5rem;
}
.o-pag__link {
  -moz-appearance: none;
  -webkit-appearance: none;
  align-items: center;
  box-shadow: none;
  display: inline-flex;
  position: relative;
  vertical-align: top;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 4px;
  border-color: #dbdbdb;
  color: #363636;
  min-width: 2.25em;
  height: 2.25em;
  padding: 0.5em 0.5em;
  margin: 0.25rem;
}
.o-pag__link:hover {
  text-decoration: none;
  border-color: #b5b5b5;
}
.o-pag__link--rounded {
  border-radius: 9999px;
}
.o-pag__link--disabled {
  pointer-events: none;
  opacity: 0.5;
}
.o-pag__link--current {
  pointer-events: none;
  background-color: #445e00;
  border-color: #445e00;
  color: #fff;
}
.o-pag__ellipsis {
  justify-content: center;
  text-align: center;
  pointer-events: none;
  margin: 0.25rem;
  color: #b5b5b5;
}
.o-pag--simple {
  justify-content: normal;
}
.o-pag--centered {
  justify-content: center;
}
.o-pag--centered .o-pag__previous {
  order: 1;
}
.o-pag--centered .o-pag__next {
  order: 3;
}
.o-pag--centered .o-pag__list {
  justify-content: center;
  order: 2;
}
.o-pag--right {
  justify-content: flex-end;
}
.o-pag--right .o-pag__previous {
  order: 1;
}
.o-pag--right .o-pag__next {
  order: 2;
}
.o-pag--right .o-pag__list {
  justify-content: flex-end;
  order: 2;
}
.o-pag__next {
  order: 3;
}
.o-pag__previous {
  order: 2;
}
.o-pag__list {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  flex-shrink: 1;
  justify-content: flex-start;
  order: 1;
}
.o-pag--mobile {
  justify-content: flex-start;
  flex-wrap: wrap;
}
.o-pag--mobile .o-pag__link {
  flex-grow: 1;
  flex-shrink: 1;
}
.o-pag--mobile .o-pag__previous {
  flex-grow: 1;
  flex-shrink: 1;
  order: 0;
}
.o-pag--mobile .o-pag__next {
  flex-grow: 1;
  flex-shrink: 1;
  order: 0;
}
.o-pag--mobile .o-pag__ellipsis {
  flex-grow: 1;
  flex-shrink: 1;
}
.o-pag--mobile .o-pag__list {
  order: 0;
}

/* @docs */
/* @docs */
.o-radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 1.25;
  margin-right: 0.5em;
}
.o-radio__check {
  width: 1rem;
  height: 1rem;
  margin: 0;
  vertical-align: top;
  background-position: center;
  background-size: contain;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  border-radius: 50%;
  cursor: pointer;
  background-repeat: no-repeat;
  transition-property: background;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(10.1032,0,0,10.1032,-255.068,-313.298)'%3E%3Ccircle cx='30.195' cy='35.959' r='4.85' style='fill:%23445e00;'/%3E%3C/g%3E%3C/svg%3E");
}
.o-radio__check--checked {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(4.38544,0,0,4.38544,-94.4336,-58.9876)'%3E%3Cpath d='M32.935,13.679C39.102,13.679 44.108,18.685 44.108,24.852C44.108,31.019 39.102,36.025 32.935,36.025C26.768,36.025 21.761,31.019 21.761,24.852C21.761,18.685 26.768,13.679 32.935,13.679ZM32.798,17.05C37.105,17.05 40.601,20.546 40.601,24.852C40.601,29.158 37.105,32.655 32.798,32.655C28.492,32.655 24.996,29.158 24.996,24.852C24.996,20.546 28.492,17.05 32.798,17.05Z' style='fill:%23445e00;'/%3E%3Ccircle cx='32.84' cy='24.8' r='7.9' style='fill:transparent;'/%3E%3C/g%3E%3C/svg%3E");
}
.o-radio__label {
  padding: 0 0 0 0.5em;
}
.o-radio--disabled {
  opacity: 0.5;
}
.o-radio--small {
  font-size: 0.75rem;
}
.o-radio--medium {
  font-size: 1.25rem;
}
.o-radio--large {
  font-size: 1.5rem;
}
.o-radio--primary .o-radio__check {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(10.1032,0,0,10.1032,-255.068,-313.298)'%3E%3Ccircle cx='30.195' cy='35.959' r='4.85' style='fill:%23445e00;'/%3E%3C/g%3E%3C/svg%3E");
}
.o-radio--primary .o-radio__check--checked {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(4.38544,0,0,4.38544,-94.4336,-58.9876)'%3E%3Cpath d='M32.935,13.679C39.102,13.679 44.108,18.685 44.108,24.852C44.108,31.019 39.102,36.025 32.935,36.025C26.768,36.025 21.761,31.019 21.761,24.852C21.761,18.685 26.768,13.679 32.935,13.679ZM32.798,17.05C37.105,17.05 40.601,20.546 40.601,24.852C40.601,29.158 37.105,32.655 32.798,32.655C28.492,32.655 24.996,29.158 24.996,24.852C24.996,20.546 28.492,17.05 32.798,17.05Z' style='fill:%23445e00;'/%3E%3Ccircle cx='32.84' cy='24.8' r='7.9' style='fill:%23ffffff;'/%3E%3C/g%3E%3C/svg%3E");
}
.o-radio--danger .o-radio__check {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(10.1032,0,0,10.1032,-255.068,-313.298)'%3E%3Ccircle cx='30.195' cy='35.959' r='4.85' style='fill:%23b60000;'/%3E%3C/g%3E%3C/svg%3E");
}
.o-radio--danger .o-radio__check--checked {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(4.38544,0,0,4.38544,-94.4336,-58.9876)'%3E%3Cpath d='M32.935,13.679C39.102,13.679 44.108,18.685 44.108,24.852C44.108,31.019 39.102,36.025 32.935,36.025C26.768,36.025 21.761,31.019 21.761,24.852C21.761,18.685 26.768,13.679 32.935,13.679ZM32.798,17.05C37.105,17.05 40.601,20.546 40.601,24.852C40.601,29.158 37.105,32.655 32.798,32.655C28.492,32.655 24.996,29.158 24.996,24.852C24.996,20.546 28.492,17.05 32.798,17.05Z' style='fill:%23b60000;'/%3E%3Ccircle cx='32.84' cy='24.8' r='7.9' style='fill:%23ffffff;'/%3E%3C/g%3E%3C/svg%3E");
}
.o-radio--warning .o-radio__check {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(10.1032,0,0,10.1032,-255.068,-313.298)'%3E%3Ccircle cx='30.195' cy='35.959' r='4.85' style='fill:%23f4c300;'/%3E%3C/g%3E%3C/svg%3E");
}
.o-radio--warning .o-radio__check--checked {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(4.38544,0,0,4.38544,-94.4336,-58.9876)'%3E%3Cpath d='M32.935,13.679C39.102,13.679 44.108,18.685 44.108,24.852C44.108,31.019 39.102,36.025 32.935,36.025C26.768,36.025 21.761,31.019 21.761,24.852C21.761,18.685 26.768,13.679 32.935,13.679ZM32.798,17.05C37.105,17.05 40.601,20.546 40.601,24.852C40.601,29.158 37.105,32.655 32.798,32.655C28.492,32.655 24.996,29.158 24.996,24.852C24.996,20.546 28.492,17.05 32.798,17.05Z' style='fill:%23f4c300;'/%3E%3Ccircle cx='32.84' cy='24.8' r='7.9' style='fill:%23000000;'/%3E%3C/g%3E%3C/svg%3E");
}
.o-radio--success .o-radio__check {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(10.1032,0,0,10.1032,-255.068,-313.298)'%3E%3Ccircle cx='30.195' cy='35.959' r='4.85' style='fill:%23006724;'/%3E%3C/g%3E%3C/svg%3E");
}
.o-radio--success .o-radio__check--checked {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(4.38544,0,0,4.38544,-94.4336,-58.9876)'%3E%3Cpath d='M32.935,13.679C39.102,13.679 44.108,18.685 44.108,24.852C44.108,31.019 39.102,36.025 32.935,36.025C26.768,36.025 21.761,31.019 21.761,24.852C21.761,18.685 26.768,13.679 32.935,13.679ZM32.798,17.05C37.105,17.05 40.601,20.546 40.601,24.852C40.601,29.158 37.105,32.655 32.798,32.655C28.492,32.655 24.996,29.158 24.996,24.852C24.996,20.546 28.492,17.05 32.798,17.05Z' style='fill:%23006724;'/%3E%3Ccircle cx='32.84' cy='24.8' r='7.9' style='fill:%23ffffff;'/%3E%3C/g%3E%3C/svg%3E");
}
.o-radio--info .o-radio__check {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(10.1032,0,0,10.1032,-255.068,-313.298)'%3E%3Ccircle cx='30.195' cy='35.959' r='4.85' style='fill:%23005c98;'/%3E%3C/g%3E%3C/svg%3E");
}
.o-radio--info .o-radio__check--checked {
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(4.38544,0,0,4.38544,-94.4336,-58.9876)'%3E%3Cpath d='M32.935,13.679C39.102,13.679 44.108,18.685 44.108,24.852C44.108,31.019 39.102,36.025 32.935,36.025C26.768,36.025 21.761,31.019 21.761,24.852C21.761,18.685 26.768,13.679 32.935,13.679ZM32.798,17.05C37.105,17.05 40.601,20.546 40.601,24.852C40.601,29.158 37.105,32.655 32.798,32.655C28.492,32.655 24.996,29.158 24.996,24.852C24.996,20.546 28.492,17.05 32.798,17.05Z' style='fill:%23005c98;'/%3E%3Ccircle cx='32.84' cy='24.8' r='7.9' style='fill:%23ffffff;'/%3E%3C/g%3E%3C/svg%3E");
}

/* @docs */
/* @docs */
.o-ctrl-sel {
  display: inline-flex;
  position: relative;
}
.o-ctrl-sel--expanded {
  width: 100%;
  flex-grow: 1;
  flex-shrink: 1;
}

.o-sel {
  -moz-appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  position: relative;
  vertical-align: top;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
  max-width: 100%;
  width: 100%;
  background-color: #fff;
  border-color: #dbdbdb;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
  color: #363636;
  margin: 0;
  box-shadow: none;
  line-height: 1.5;
  padding: calc(0.375em - 1px) calc(0.625em - 1px);
  height: 2.25em;
}
.o-sel-arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:serif='http://www.serif.com/' width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;'%3E%3Cg transform='matrix(5.70052,0,0,5.70052,-1329.79,-547.054)'%3E%3Cpath d='M233.451,101.749L235.617,99.422L242.013,105.565L248.463,99.422L250.642,101.749L242.013,110.052L233.451,101.749Z' style='fill:%23363636;stroke:white;stroke-width:0.18px;'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1rem;
  background-position: calc(100% - 1rem * 0.5) center;
  padding-right: calc(1rem * 2);
}
.o-sel-iconspace-left {
  padding-left: 2.25em;
}
.o-sel-iconspace-right {
  padding-right: 2.25em;
}
.o-sel--small {
  font-size: 0.75rem;
}
.o-sel--medium {
  font-size: 1.25rem;
}
.o-sel--large {
  font-size: 1.5rem;
}
.o-sel--primary {
  border-color: #445e00;
}
.o-sel--danger {
  border-color: #b60000;
}
.o-sel--warning {
  border-color: #f4c300;
}
.o-sel--success {
  border-color: #006724;
}
.o-sel--info {
  border-color: #005c98;
}
.o-sel--rounded {
  border-radius: 9999px;
}
.o-sel--multiple {
  height: auto;
  padding: 0;
}
.o-sel--placeholder {
  opacity: 0.5;
}
.o-sel__icon-left, .o-sel__icon-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 2.25em;
  z-index: 4;
}
.o-sel__icon-right {
  right: 0;
}
.o-sel__icon-left {
  left: 0;
}

/* @docs */
/* @docs */
@keyframes skeleton-loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.o-sklt {
  display: inline-flex;
  flex-direction: column;
  vertical-align: middle;
  width: 100%;
}
.o-sklt__item {
  width: 100%;
  background: linear-gradient(90deg, #dbdbdb 25%, rgba(219, 219, 219, 0.5) 50%, #dbdbdb 75%);
  margin: 0.5rem 0 0 0;
  line-height: 1rem;
}
.o-sklt__item--rounded {
  border-radius: 4px;
}
.o-sklt__item--animated {
  background-size: 400% 100%;
  animation-name: skeleton-loading;
  animation-iteration-count: infinite;
  animation-duration: 1.5s;
}
.o-sklt__item::after {
  content: " ";
}
.o-sklt__item--small {
  line-height: 0.75rem;
}
.o-sklt__item--medium {
  line-height: 1.25rem;
}
.o-sklt__item--large {
  line-height: 1.5rem;
}
.o-sklt--centered {
  align-items: center;
}
.o-sklt--right {
  align-items: flex-end;
  margin: 0.5rem 0 0 0;
}

/* @docs */
/* @docs */
.o-side__content {
  background-color: #dbdbdb;
  box-shadow: 5px 0px 13px 3px rgba(0, 0, 0, 0.1);
  width: 260px;
  z-index: calc(38 + 1);
}
.o-side__content--primary {
  background-color: #445e00;
}
.o-side__content--danger {
  background-color: #b60000;
}
.o-side__content--warning {
  background-color: #f4c300;
}
.o-side__content--success {
  background-color: #006724;
}
.o-side__content--info {
  background-color: #005c98;
}
.o-side__content--fixed {
  position: fixed;
  left: 0;
  top: 0;
}
.o-side__content--absolute {
  position: absolute;
  left: 0;
  top: 0;
}
.o-side__content--right {
  left: auto;
  right: 0;
}
.o-side__content--mini {
  width: 80px;
}
.o-side__content--mini-expand:hover {
  transition: width;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
  width: 260px;
}
.o-side__content--static {
  position: static;
}
.o-side__content--absolute, .o-side__content--static {
  transition: width 150ms ease-out;
}
.o-side__content--fullwidth {
  width: 100%;
  max-width: 100%;
}
.o-side__content--fullheight {
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-content: stretch;
}
.o-side__overlay {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  position: fixed;
  background: rgba(10, 10, 10, 0.86);
  z-index: 38;
}

/* @docs */
/* @docs */
.o-slide {
  margin: 1em 0;
  background: transparent;
  width: 100%;
}
.o-slide__thumb {
  box-shadow: none;
  border: 1px solid #b5b5b5;
  border-radius: 4px;
  background: #ffffff;
}
.o-slide__thumb:focus {
  transform: scale(1.25);
}
.o-slide__thumb--rounded {
  border-radius: 9999px;
}
.o-slide__thumb--dragging {
  cursor: grabbing;
  filter: brightness(0.8);
}
.o-slide__track {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  background: #dbdbdb;
  border-radius: 4px;
}
.o-slide__fill {
  position: absolute;
  height: 100%;
  box-shadow: 0px 0px 0px #7a7a7a;
  background: #445e00;
  border-radius: 4px;
  border: 0px solid #7a7a7a;
  top: 50%;
  transform: translateY(-50%);
}
.o-slide__fill--primary {
  background: #445e00;
}
.o-slide__fill--danger {
  background: #b60000;
}
.o-slide__fill--warning {
  background: #f4c300;
}
.o-slide__fill--success {
  background: #006724;
}
.o-slide__fill--info {
  background: #005c98;
}
.o-slide .o-slide__track {
  height: 0.5rem;
}
.o-slide .o-slide__thumb {
  height: 1rem;
  width: 1rem;
}
.o-slide .o-slide__tick {
  height: 0.25rem;
}
.o-slide .o-slide__tick-label {
  font-size: 0.75rem;
  position: absolute;
  top: calc(0.5rem * 0.5 + 2px);
  left: 50%;
  transform: translateX(-50%);
}
.o-slide--small .o-slide__track {
  height: 0.375rem;
}
.o-slide--small .o-slide__thumb {
  height: 0.75rem;
  width: 0.75rem;
}
.o-slide--small .o-slide__tick {
  height: 0.1875rem;
}
.o-slide--small .o-slide__tick-label {
  font-size: 0.75rem;
  position: absolute;
  top: calc(0.375rem * 0.5 + 2px);
  left: 50%;
  transform: translateX(-50%);
}
.o-slide--medium .o-slide__track {
  height: 0.625rem;
}
.o-slide--medium .o-slide__thumb {
  height: 1.25rem;
  width: 1.25rem;
}
.o-slide--medium .o-slide__tick {
  height: 0.3125rem;
}
.o-slide--medium .o-slide__tick-label {
  font-size: 0.75rem;
  position: absolute;
  top: calc(0.625rem * 0.5 + 2px);
  left: 50%;
  transform: translateX(-50%);
}
.o-slide--large .o-slide__track {
  height: 0.75rem;
}
.o-slide--large .o-slide__thumb {
  height: 1.5rem;
  width: 1.5rem;
}
.o-slide--large .o-slide__tick {
  height: 0.375rem;
}
.o-slide--large .o-slide__tick-label {
  font-size: 0.75rem;
  position: absolute;
  top: calc(0.75rem * 0.5 + 2px);
  left: 50%;
  transform: translateX(-50%);
}
.o-slide__tick {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  width: 3px;
  background: #445e00;
  border-radius: 4px;
}
.o-slide__tick--hidden {
  background: transparent;
}
.o-slide__thumb-wrapper {
  display: inline-flex;
  align-items: center;
  position: absolute;
  cursor: grab;
  transform: translate(-50%, -50%);
  top: 50%;
  flex-direction: column;
}
.o-slide--disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}

/* @docs */
/* @docs */
.o-steps {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  min-height: calc(1rem * 2);
}
.o-steps .o-steps__divider {
  height: 0.2em;
  top: 1rem;
}
.o-steps .o-steps__marker {
  height: calc(1rem * 2);
  width: calc(1rem * 2);
}
.o-steps .o-steps__title {
  background-color: white;
  text-align: center;
  z-index: 1;
  padding: 0.2em;
  font-size: calc(1rem * 1.2);
  height: 600;
  line-height: 1rem;
}
.o-steps .o-steps__wrapper-vertical .o-steps--label-right .o-steps__divider {
  left: calc((1rem - 0.2em) * 0.5);
}
.o-steps .o-steps__wrapper-vertical .o-steps--label-left .o-steps__divider {
  left: auto;
  right: calc((1rem - 0.2em) * 0.5);
}
.o-steps .o-steps__wrapper-vertical.o-steps__wrapper-position-right .o-steps--label-right .o-steps__divider {
  left: calc((1rem - 0.2em) * 0.5);
}
.o-steps .o-steps__wrapper-vertical.o-steps__wrapper-position-right .o-steps--label-left .o-steps__divider {
  left: auto;
  right: calc((1rem - 0.2em) * 0.5);
}
.o-steps--small {
  font-size: 0.75rem;
  min-height: calc(0.75rem * 2);
}
.o-steps--small .o-steps__divider {
  height: 0.2em;
  top: 0.75rem;
}
.o-steps--small .o-steps__marker {
  height: calc(0.75rem * 2);
  width: calc(0.75rem * 2);
}
.o-steps--small .o-steps__title {
  background-color: white;
  text-align: center;
  z-index: 1;
  padding: 0.2em;
  font-size: calc(0.75rem * 1.2);
  height: 600;
  line-height: 0.75rem;
}
.o-steps--small .o-steps__wrapper-vertical .o-steps--label-right .o-steps__divider {
  left: calc((0.75rem - 0.2em) * 0.5);
}
.o-steps--small .o-steps__wrapper-vertical .o-steps--label-left .o-steps__divider {
  left: auto;
  right: calc((0.75rem - 0.2em) * 0.5);
}
.o-steps--small .o-steps__wrapper-vertical.o-steps__wrapper-position-right .o-steps--label-right .o-steps__divider {
  left: calc((0.75rem - 0.2em) * 0.5);
}
.o-steps--small .o-steps__wrapper-vertical.o-steps__wrapper-position-right .o-steps--label-left .o-steps__divider {
  left: auto;
  right: calc((0.75rem - 0.2em) * 0.5);
}
.o-steps--medium {
  font-size: 1.25rem;
  min-height: calc(1.25rem * 2);
}
.o-steps--medium .o-steps__divider {
  height: 0.2em;
  top: 1.25rem;
}
.o-steps--medium .o-steps__marker {
  height: calc(1.25rem * 2);
  width: calc(1.25rem * 2);
}
.o-steps--medium .o-steps__title {
  background-color: white;
  text-align: center;
  z-index: 1;
  padding: 0.2em;
  font-size: calc(1.25rem * 1.2);
  height: 600;
  line-height: 1.25rem;
}
.o-steps--medium .o-steps__wrapper-vertical .o-steps--label-right .o-steps__divider {
  left: calc((1.25rem - 0.2em) * 0.5);
}
.o-steps--medium .o-steps__wrapper-vertical .o-steps--label-left .o-steps__divider {
  left: auto;
  right: calc((1.25rem - 0.2em) * 0.5);
}
.o-steps--medium .o-steps__wrapper-vertical.o-steps__wrapper-position-right .o-steps--label-right .o-steps__divider {
  left: calc((1.25rem - 0.2em) * 0.5);
}
.o-steps--medium .o-steps__wrapper-vertical.o-steps__wrapper-position-right .o-steps--label-left .o-steps__divider {
  left: auto;
  right: calc((1.25rem - 0.2em) * 0.5);
}
.o-steps--large {
  font-size: 1.5rem;
  min-height: calc(1.5rem * 2);
}
.o-steps--large .o-steps__divider {
  height: 0.2em;
  top: 1.5rem;
}
.o-steps--large .o-steps__marker {
  height: calc(1.5rem * 2);
  width: calc(1.5rem * 2);
}
.o-steps--large .o-steps__title {
  background-color: white;
  text-align: center;
  z-index: 1;
  padding: 0.2em;
  font-size: calc(1.5rem * 1.2);
  height: 600;
  line-height: 1.5rem;
}
.o-steps--large .o-steps__wrapper-vertical .o-steps--label-right .o-steps__divider {
  left: calc((1.5rem - 0.2em) * 0.5);
}
.o-steps--large .o-steps__wrapper-vertical .o-steps--label-left .o-steps__divider {
  left: auto;
  right: calc((1.5rem - 0.2em) * 0.5);
}
.o-steps--large .o-steps__wrapper-vertical.o-steps__wrapper-position-right .o-steps--label-right .o-steps__divider {
  left: calc((1.5rem - 0.2em) * 0.5);
}
.o-steps--large .o-steps__wrapper-vertical.o-steps__wrapper-position-right .o-steps--label-left .o-steps__divider {
  left: auto;
  right: calc((1.5rem - 0.2em) * 0.5);
}
.o-steps__nav-item {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  margin-top: 0;
  position: relative;
  flex-grow: 1;
  flex-basis: 1em;
}
.o-steps__nav-item--primary.o-steps__nav-item-active .o-steps__marker {
  background-color: #ffffff;
  border-color: #445e00;
  color: #445e00;
}
.o-steps__nav-item--primary.o-steps__nav-item-active .o-steps__divider {
  background: linear-gradient(to left, #dbdbdb 50%, #445e00 50%);
  background-size: 200% 100%;
}
.o-steps__nav-item--primary.o-steps__nav-item-previous .o-steps__marker {
  color: #ffffff;
  background-color: #445e00;
}
.o-steps__nav-item--primary.o-steps__nav-item-previous .o-steps__divider {
  background: linear-gradient(to left, #dbdbdb 50%, #445e00 50%);
  background-size: 200% 100%;
}
.o-steps__nav-item--danger.o-steps__nav-item-active .o-steps__marker {
  background-color: #ffffff;
  border-color: #b60000;
  color: #b60000;
}
.o-steps__nav-item--danger.o-steps__nav-item-active .o-steps__divider {
  background: linear-gradient(to left, #dbdbdb 50%, #b60000 50%);
  background-size: 200% 100%;
}
.o-steps__nav-item--danger.o-steps__nav-item-previous .o-steps__marker {
  color: #ffffff;
  background-color: #b60000;
}
.o-steps__nav-item--danger.o-steps__nav-item-previous .o-steps__divider {
  background: linear-gradient(to left, #dbdbdb 50%, #b60000 50%);
  background-size: 200% 100%;
}
.o-steps__nav-item--warning.o-steps__nav-item-active .o-steps__marker {
  background-color: #000000;
  border-color: #f4c300;
  color: #f4c300;
}
.o-steps__nav-item--warning.o-steps__nav-item-active .o-steps__divider {
  background: linear-gradient(to left, #dbdbdb 50%, #f4c300 50%);
  background-size: 200% 100%;
}
.o-steps__nav-item--warning.o-steps__nav-item-previous .o-steps__marker {
  color: #000000;
  background-color: #f4c300;
}
.o-steps__nav-item--warning.o-steps__nav-item-previous .o-steps__divider {
  background: linear-gradient(to left, #dbdbdb 50%, #f4c300 50%);
  background-size: 200% 100%;
}
.o-steps__nav-item--success.o-steps__nav-item-active .o-steps__marker {
  background-color: #ffffff;
  border-color: #006724;
  color: #006724;
}
.o-steps__nav-item--success.o-steps__nav-item-active .o-steps__divider {
  background: linear-gradient(to left, #dbdbdb 50%, #006724 50%);
  background-size: 200% 100%;
}
.o-steps__nav-item--success.o-steps__nav-item-previous .o-steps__marker {
  color: #ffffff;
  background-color: #006724;
}
.o-steps__nav-item--success.o-steps__nav-item-previous .o-steps__divider {
  background: linear-gradient(to left, #dbdbdb 50%, #006724 50%);
  background-size: 200% 100%;
}
.o-steps__nav-item--info.o-steps__nav-item-active .o-steps__marker {
  background-color: #ffffff;
  border-color: #005c98;
  color: #005c98;
}
.o-steps__nav-item--info.o-steps__nav-item-active .o-steps__divider {
  background: linear-gradient(to left, #dbdbdb 50%, #005c98 50%);
  background-size: 200% 100%;
}
.o-steps__nav-item--info.o-steps__nav-item-previous .o-steps__marker {
  color: #ffffff;
  background-color: #005c98;
}
.o-steps__nav-item--info.o-steps__nav-item-previous .o-steps__divider {
  background: linear-gradient(to left, #dbdbdb 50%, #005c98 50%);
  background-size: 200% 100%;
}
.o-steps__divider {
  background: linear-gradient(to left, #dbdbdb 50%, #445e00 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 100%;
}
.o-steps__content {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.o-steps__content-transitioning {
  overflow: hidden;
}
.o-steps--animated .o-steps__divider {
  transition-property: background;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}
.o-steps__link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #4a4a4a;
  cursor: pointer;
  text-decoration: none;
}
.o-steps__link-label-right {
  flex-direction: row;
}
.o-steps__link-label-left {
  flex-direction: row-reverse;
}
.o-steps__link:hover {
  text-decoration: none;
}
.o-steps__link:not(.o-steps__link-clickable) {
  cursor: not-allowed;
}
.o-steps__marker {
  align-items: center;
  display: flex;
  justify-content: center;
  font-weight: 700;
  background: #b5b5b5;
  color: #ffffff;
  border: 0.2em solid #fff;
  z-index: 1;
  overflow: hidden;
}
.o-steps__marker--rounded {
  border-radius: 9999px;
}
.o-steps__details {
  background-color: white;
  text-align: center;
  z-index: 1;
  padding: 0.2em;
}
.o-steps__nav-item-active .o-steps__link {
  cursor: default;
}
.o-steps__nav-item-active .o-steps__marker {
  background-color: #ffffff;
  border-color: #445e00;
  color: #445e00;
}
.o-steps__nav-item-active .o-steps__divider {
  background-position: left bottom;
}
.o-steps__nav-item-previous .o-steps__marker {
  color: #ffffff;
  background-color: #445e00;
}
.o-steps__nav-item-previous .o-steps__divider {
  background-position: left bottom;
}
.o-steps__item {
  flex-shrink: 0;
  flex-basis: auto;
}
.o-steps__wrapper-vertical {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.o-steps__wrapper-vertical .o-steps {
  height: 100%;
  flex-direction: column;
}
.o-steps__wrapper-vertical .o-steps__divider {
  height: 100%;
  width: 0.2em;
  top: -50%;
  left: calc(50% - 0.1em);
}
.o-steps__wrapper-vertical .o-steps__item-active .o-steps__divider, .o-steps__wrapper-vertical .o-steps__item-previous .o-steps__divider {
  background-position: right top;
}
.o-steps__wrapper-vertical .o-steps__nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 0;
}
.o-steps__wrapper-vertical .o-steps__nav-item--primary .o-steps__divider {
  background: linear-gradient(to left, #dbdbdb 50%, #445e00 50%);
  background-size: 100% 200%;
  background-position: left bottom;
}
.o-steps__wrapper-vertical .o-steps__nav-item--danger .o-steps__divider {
  background: linear-gradient(to left, #dbdbdb 50%, #b60000 50%);
  background-size: 100% 200%;
  background-position: left bottom;
}
.o-steps__wrapper-vertical .o-steps__nav-item--warning .o-steps__divider {
  background: linear-gradient(to left, #dbdbdb 50%, #f4c300 50%);
  background-size: 100% 200%;
  background-position: left bottom;
}
.o-steps__wrapper-vertical .o-steps__nav-item--success .o-steps__divider {
  background: linear-gradient(to left, #dbdbdb 50%, #006724 50%);
  background-size: 100% 200%;
  background-position: left bottom;
}
.o-steps__wrapper-vertical .o-steps__nav-item--info .o-steps__divider {
  background: linear-gradient(to left, #dbdbdb 50%, #005c98 50%);
  background-size: 100% 200%;
  background-position: left bottom;
}
.o-steps__wrapper-vertical .o-steps__content {
  flex-grow: 1;
  flex-basis: 70%;
}
.o-steps__wrapper-vertical .o-steps__navigation {
  flex-basis: 100%;
}
.o-steps__wrapper-vertical.o-steps__wrapper-position-right {
  flex-direction: row-reverse;
}
.o-steps--mobile .o-steps__title {
  display: none;
  padding: 0;
}
.o-steps--mobile .o-steps__divider {
  height: 0.2em;
  top: 1rem;
}
.o-steps--mobile .o-steps__divider .o-steps--small {
  top: 0.75rem;
}
.o-steps--mobile .o-steps__divider .o-steps--medium {
  top: 1.25rem;
}
.o-steps--mobile .o-steps__divider .o-steps--large {
  top: 1.5rem;
}

/* @docs */
/* @docs */
.o-switch {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.o-switch--primary .o-switch__check--checked {
  background: #445e00;
}
.o-switch--primary-passive .o-switch__check:not(.o-switch__check--checked) {
  background: #445e00;
}
.o-switch--danger .o-switch__check--checked {
  background: #b60000;
}
.o-switch--danger-passive .o-switch__check:not(.o-switch__check--checked) {
  background: #b60000;
}
.o-switch--warning .o-switch__check--checked {
  background: #f4c300;
}
.o-switch--warning-passive .o-switch__check:not(.o-switch__check--checked) {
  background: #f4c300;
}
.o-switch--success .o-switch__check--checked {
  background: #006724;
}
.o-switch--success-passive .o-switch__check:not(.o-switch__check--checked) {
  background: #006724;
}
.o-switch--info .o-switch__check--checked {
  background: #005c98;
}
.o-switch--info-passive .o-switch__check:not(.o-switch__check--checked) {
  background: #005c98;
}
.o-switch--small {
  font-size: 0.75rem;
}
.o-switch--medium {
  font-size: 1.25rem;
}
.o-switch--large {
  font-size: 1.5rem;
}
.o-switch__label {
  margin-left: 0.5em;
}
.o-switch--left {
  flex-direction: row-reverse;
}
.o-switch--left .o-switch__label {
  margin-left: 0;
  margin-right: 0.5em;
}
.o-switch__check-switch {
  content: "";
  display: block;
  height: calc((2.75em - 0.2em * 2) * 0.5);
  width: calc((2.75em - 0.2em * 2) * 0.5);
  background: #f5f5f5;
  box-shadow: 0 3px 1px 0 rgba(0, 0, 0, 0.05), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 3px 0 rgba(0, 0, 0, 0.05);
  transition-property: transform;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
  will-change: transform;
  transform-origin: left;
}
.o-switch__check {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 2.75em;
  height: calc(2.75em * 0.5 + 0.2em);
  padding: 0.2em;
  background: #b5b5b5;
  border-radius: 4px;
  transition-property: background;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}
.o-switch__check--checked {
  background: #445e00;
}
.o-switch__check--checked .o-switch__check-switch {
  transform: translate3d(100%, 0, 0);
}
.o-switch__input {
  position: absolute;
  left: 0;
  opacity: 0;
  z-index: -1;
}
.o-switch--rounded {
  border-radius: 9999px;
}
.o-switch--disabled {
  opacity: 0.5;
}

/* @docs */
/* @docs */
.o-table {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: #fff;
  color: black;
}
.o-table__root {
  position: relative;
}
.o-table__wrapper {
  transition: opacity 300ms ease-out;
  position: relative;
}
.o-table__wrapper--sticky-header {
  height: 300px;
  overflow-y: auto;
}
.o-table__wrapper--sticky-header th {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 0;
  background: #fff;
}
.o-table__wrapper--scrollable {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  max-width: 100%;
}
.o-table__wrapper--mobile {
  overflow-x: auto;
}
.o-table__wrapper--mobile .o-table__mobile-sort {
  display: block;
}
.o-table__wrapper--mobile .o-table {
  background-color: transparent;
}
.o-table__wrapper--mobile thead tr {
  box-shadow: none;
  border-width: 0;
}
.o-table__wrapper--mobile thead tr th {
  display: none;
}
.o-table__wrapper--mobile thead tr .o-table-th-checkbox {
  display: block;
  width: 100%;
  text-align: right;
  border: 0;
}
.o-table__wrapper--mobile tfoot th {
  border: 0;
  display: inherit;
}
.o-table__wrapper--mobile tr {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  position: relative;
  display: block;
}
.o-table__wrapper--mobile tr td {
  border: 0;
  display: inherit;
}
.o-table__wrapper--mobile tr td:last-child {
  border-bottom: 0;
}
.o-table__wrapper--mobile tr:not(:last-child) {
  margin: 0 0 1rem 0;
}
.o-table__wrapper--mobile tr:not(.o-table__tr--selected) {
  background: inherit;
  background: #fff;
}
.o-table__wrapper--mobile tr:not(.o-table__tr--selected):hover {
  background-color: inherit;
  background-color: #fff;
}
.o-table__wrapper--mobile tr.o-table--detailed {
  margin: -1rem 0 0 0;
}
.o-table__wrapper--mobile tr:not(.o-table--detailed):not(.o-table--empty):not(.o-table__footer) td {
  display: flex;
  width: auto;
  justify-content: space-between;
  text-align: right;
  border-bottom: #f5f5f5 1px solid;
}
.o-table__wrapper--mobile tr:not(.o-table--detailed):not(.o-table--empty):not(.o-table__footer) td:before {
  content: attr(data-label);
  font-weight: 600;
  padding-right: 0 0.5em 0 0;
  text-align: left;
}
.o-table__mobile-sort {
  display: none;
}
.o-table__th {
  vertical-align: top;
  text-align: left;
  position: relative;
  font-weight: 600;
  color: #363636;
  border-bottom: 2px solid #dbdbdb;
  padding: 0.5em 0.75em;
}
.o-table__th--centered {
  text-align: center;
}
.o-table__th--right {
  text-align: right;
}
.o-table__th__sort-icon {
  position: absolute;
  right: 0;
}
.o-table__th-checkbox {
  width: 40px;
}
.o-table__th-current-sort {
  border-color: #7a7a7a;
  font-weight: 700;
}
.o-table__th--sortable {
  cursor: pointer;
}
.o-table__th--sortable:hover {
  border-color: #7a7a7a;
}
.o-table__th--sticky {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 0;
  z-index: calc(1 + 2);
  background: #fff;
}
.o-table__th--unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.o-table__th--detailed {
  width: 14px;
}
.o-table__td {
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid #dbdbdb;
  padding: 0.5em 0.75em;
}
.o-table__td--sticky {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 1;
  background: #fff;
}
.o-table__td--right {
  text-align: right;
}
.o-table__td--centered {
  text-align: center;
}
.o-table__td-chevron {
  vertical-align: middle;
  width: 40px;
  color: #445e00;
}
.o-table:focus {
  border-color: #445e00;
  box-shadow: 0 0 0 0.125em rgba(68, 94, 0, 0.25);
}
.o-table--bordered tr:last-child td, .o-table--bordered tr:last-child th {
  border: 1px solid #dbdbdb;
}
.o-table--bordered td, .o-table--bordered th {
  border: 1px solid #dbdbdb;
}
.o-table--striped tbody tr:not(.o-table__tr--selected):nth-child(2n) {
  background-color: #fafafa;
}
.o-table--narrowed td, .o-table--narrowed th {
  padding: 0.25em 0.5em;
}
.o-table--hoverable tbody tr:not(.o-table__tr--selected):hover {
  background-color: #fafafa;
}
.o-table__detail {
  box-shadow: inset 0 1px 3px #7a7a7a;
  background: #fafafa;
}
.o-table__detail td {
  padding: 1rem;
}
.o-table__tr--selected {
  background-color: #445e00;
  color: #ffffff;
}
.o-table__tr--selected-primary {
  background-color: #445e00;
  color: #ffffff;
}
.o-table__tr--selected-danger {
  background-color: #b60000;
  color: #ffffff;
}
.o-table__tr--selected-warning {
  background-color: #f4c300;
  color: #000000;
}
.o-table__tr--selected-success {
  background-color: #006724;
  color: #ffffff;
}
.o-table__tr--selected-info {
  background-color: #005c98;
  color: #ffffff;
}
.o-table__pagination {
  align-items: center;
  justify-content: space-between;
  display: flex;
}
.o-table__pagination > div:first-child {
  align-items: center;
  justify-content: flex-start;
}
.o-table__pagination > div:last-child {
  align-items: center;
  justify-content: flex-end;
}
.o-table__pagination > div:last-child > div {
  align-items: center;
  display: flex;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
  justify-content: center;
}
.o-table__pagination > div {
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
}

/* @docs */
/* @docs */
.o-tabs--fullwidth {
  width: 100%;
}
.o-tabs--fullwidth .o-tabs__nav-item-wrapper {
  flex-grow: 1;
  flex-shrink: 0;
}
.o-tabs--fullwidth .o-tabs__nav-item-default, .o-tabs--fullwidth .o-tabs__nav-item-boxed, .o-tabs--fullwidth .o-tabs__nav-item-toggle {
  height: 100%;
}
.o-tabs--vertical {
  display: flex;
  flex-direction: row;
}
.o-tabs--vertical .o-tabs__nav {
  flex-direction: column;
  align-items: stretch;
  flex-grow: 0;
  border-bottom: none;
}
.o-tabs--vertical .o-tabs__nav-item-boxed {
  border-bottom-color: transparent;
  border-right-color: #dbdbdb;
  border-radius: 4px 0 0 4px;
}
.o-tabs--vertical .o-tabs__nav-item-boxed--active {
  border-bottom-color: #dbdbdb;
  border-right-color: transparent;
}
.o-tabs--right {
  flex-direction: row-reverse;
}
.o-tabs--right .o-tabs__nav-item-boxed {
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-left-color: #dbdbdb;
  border-radius: 0 4px 4px 0;
}
.o-tabs--right .o-tabs__nav-item-boxed--active {
  border-bottom-color: #dbdbdb;
  border-right-color: #dbdbdb;
  border-left-color: transparent;
}
.o-tabs__nav {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0;
  padding: 0;
  align-items: center;
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: flex-start;
  overflow-x: auto;
  padding-bottom: 1px;
  font-size: 1rem;
}
.o-tabs__nav--small {
  font-size: 0.75rem;
}
.o-tabs__nav--medium {
  font-size: 1.25rem;
}
.o-tabs__nav--large {
  font-size: 1.5rem;
}
.o-tabs__nav--centered {
  justify-content: center;
}
.o-tabs__nav--right {
  justify-content: flex-end;
}
.o-tabs__nav-item-icon {
  margin-right: 0.5em;
}
.o-tabs__nav-item-default {
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  background-color: transparent;
  align-items: center;
  line-height: 1.5;
  font-size: 1rem;
  border-bottom-color: #dbdbdb;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  color: #4a4a4a;
  display: flex;
  justify-content: center;
  margin-bottom: -1px;
  padding: 0.5em 1em;
  vertical-align: top;
  cursor: pointer;
  text-decoration: none;
}
.o-tabs__nav-item-default--active {
  border-bottom-color: #445e00;
  color: #445e00;
}
.o-tabs__nav-item-default--disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}
.o-tabs__nav-item-default:hover:not(.o-tabs__nav-item-default--active) {
  background-color: whitesmoke;
  border-bottom-color: #dbdbdb;
}
.o-tabs__nav-item-boxed {
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  background-color: transparent;
  align-items: center;
  line-height: 1.5;
  font-size: 1rem;
  border-bottom-color: #dbdbdb;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  color: #4a4a4a;
  display: flex;
  justify-content: center;
  margin-bottom: -1px;
  padding: 0.5em 1em;
  vertical-align: top;
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px 4px 0 0;
  border-bottom-color: transparent;
}
.o-tabs__nav-item-boxed--active {
  border-bottom-color: #445e00;
  color: #445e00;
  background-color: white;
  border-color: #dbdbdb;
  border-bottom-color: transparent;
}
.o-tabs__nav-item-boxed--disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}
.o-tabs__nav-item-boxed:hover:not(.o-tabs__nav-item-boxed--active) {
  background-color: whitesmoke;
}
.o-tabs__nav-item-toggle {
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  background-color: transparent;
  align-items: center;
  line-height: 1.5;
  font-size: 1rem;
  border-bottom-color: #dbdbdb;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  color: #4a4a4a;
  display: flex;
  justify-content: center;
  margin-bottom: -1px;
  padding: 0.5em 1em;
  vertical-align: top;
  cursor: pointer;
  text-decoration: none;
  border-color: #dbdbdb;
  border-style: solid;
  border-width: 1px;
  margin-bottom: 0;
  position: relative;
}
.o-tabs__nav-item-toggle--active {
  background-color: #445e00;
  border-color: #445e00;
  color: #ffffff;
}
.o-tabs__nav-item-toggle--disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}
.o-tabs__nav-item-toggle:hover:not(.o-tabs__nav-item-toggle--active) {
  background-color: whitesmoke;
  border-color: #b5b5b5;
}
.o-tabs__content {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1rem;
}
.o-tabs__content--transitioning {
  overflow: hidden;
}
.o-tabs:not(:last-child) {
  margin-bottom: 1.5rem;
}

/* @docs */
/* @docs */
.o-tpck {
  font-size: 1rem;
}
.o-tpck--small {
  font-size: 0.75rem;
}
.o-tpck--medium {
  font-size: 1.25rem;
}
.o-tpck--large {
  font-size: 1.5rem;
}
.o-tpck__dropdown {
  width: 100%;
}
.o-tpck__box {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  padding: 0.375rem 1rem;
}
.o-tpck__select {
  -moz-appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  position: relative;
  vertical-align: top;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  border: 0;
  font-size: inherit;
  font-weight: 600;
  line-height: 1.5;
  padding: calc(0.375em - 1px) calc(0.625em - 1px);
  color: #363636;
}
.o-tpck__select-placeholder {
  opacity: 0.5;
}
.o-tpck__separator {
  font-weight: 600;
}
.o-tpck__footer {
  padding: 0 0.5rem;
  margin: 0.875rem 0 0 0;
}

/* @docs */
/* @docs */
.o-tip {
  position: relative;
  display: inline-flex;
}
.o-tip__arrow--top {
  top: 100%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  border-top-style: solid;
  border-top-width: 5px;
  border-right-style: solid;
  border-right-color: transparent;
  border-left-style: solid;
  border-left-color: transparent;
  border-right-width: 5px;
  border-left-width: 5px;
}
.o-tip__content--top {
  top: auto;
  right: auto;
  bottom: calc((5px + 2px) + 100%);
  left: 50%;
  transform: translateX(-50%);
}
.o-tip__arrow--right {
  top: 50%;
  right: 100%;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
  border-right-style: solid;
  border-right-width: 5px;
  border-top-style: solid;
  border-top-color: transparent;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
}
.o-tip__content--right {
  top: 50%;
  right: auto;
  bottom: auto;
  left: calc((5px + 2px) + 100%);
  transform: translateY(-50%);
}
.o-tip__arrow--bottom {
  top: auto;
  right: auto;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-style: solid;
  border-bottom-width: 5px;
  border-right-style: solid;
  border-right-color: transparent;
  border-left-style: solid;
  border-left-color: transparent;
  border-right-width: 5px;
  border-left-width: 5px;
}
.o-tip__content--bottom {
  top: calc((5px + 2px) + 100%);
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
}
.o-tip__arrow--left {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 100%;
  transform: translateY(-50%);
  border-left-style: solid;
  border-left-width: 5px;
  border-top-style: solid;
  border-top-color: transparent;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
}
.o-tip__content--left {
  top: 50%;
  right: calc((5px + 2px) + 100%);
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
}
.o-tip__arrow {
  position: absolute;
  content: "";
  pointer-events: none;
  z-index: 38;
  color: #445e00;
}
.o-tip__arrow--primary {
  color: #445e00;
}
.o-tip__arrow--danger {
  color: #b60000;
}
.o-tip__arrow--warning {
  color: #f4c300;
}
.o-tip__arrow--success {
  color: #006724;
}
.o-tip__arrow--info {
  color: #005c98;
}
.o-tip__content {
  position: absolute;
  white-space: nowrap;
  max-width: 300px;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 400;
  box-shadow: 0px 1px 2px 1px rgba(0, 1, 0, 0.2);
  z-index: 38;
  background-color: #445e00;
  color: #ffffff;
}
.o-tip__content--primary {
  background: #445e00;
  color: #ffffff;
}
.o-tip__content--danger {
  background: #b60000;
  color: #ffffff;
}
.o-tip__content--warning {
  background: #f4c300;
  color: #000000;
}
.o-tip__content--success {
  background: #006724;
  color: #ffffff;
}
.o-tip__content--info {
  background: #005c98;
  color: #ffffff;
}
.o-tip__content--always {
  opacity: 1;
  visibility: visible;
}
.o-tip__content--multiline {
  text-align: center;
  white-space: normal;
  width: 300px;
}
.o-tip__trigger {
  width: 100%;
}

/* @docs */
/* @docs */
.o-upl {
  position: relative;
  display: inline-flex;
}
.o-upl--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.o-upl--expanded {
  width: 100%;
}
.o-upl__draggable {
  cursor: pointer;
  width: 100%;
  padding: 0.25em;
  border: 1px dashed #b5b5b5;
  border-radius: 4px;
}
.o-upl__draggable--hovered {
  border-color: #7a7a7a;
}
.o-upl__draggable--hovered-primary {
  border-color: #445e00;
}
.o-upl__draggable--hovered-danger {
  border-color: #b60000;
}
.o-upl__draggable--hovered-warning {
  border-color: #f4c300;
}
.o-upl__draggable--hovered-success {
  border-color: #006724;
}
.o-upl__draggable--hovered-info {
  border-color: #005c98;
}
.o-upl input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: -1;
}
