@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900);/* DayPicker styles */
.DayPicker {
  display: inline-block;
  font-size: 1rem; }

.DayPicker-wrapper {
  position: relative;
  flex-direction: row;
  padding-bottom: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.DayPicker-Months {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }

.DayPicker-Month {
  display: table;
  margin: 0 1em;
  margin-top: 1em;
  border-spacing: 0;
  border-collapse: collapse;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.DayPicker-NavButton {
  position: absolute;
  top: 1em;
  right: 1.5em;
  left: auto;
  display: inline-block;
  margin-top: 2px;
  width: 1.25em;
  height: 1.25em;
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  color: #8B9898;
  cursor: pointer; }

.DayPicker-NavButton:hover {
  opacity: 0.8; }

.DayPicker-NavButton--prev {
  margin-right: 1.5em;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC"); }

.DayPicker-NavButton--next {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg=="); }

.DayPicker-NavButton--interactionDisabled {
  display: none; }

.DayPicker-Caption {
  display: table-caption;
  margin-bottom: 0.5em;
  padding: 0 0.5em;
  text-align: left; }

.DayPicker-Caption > div {
  font-weight: 500;
  font-size: 1.15em; }

.DayPicker-Weekdays {
  display: table-header-group;
  margin-top: 1em; }

.DayPicker-WeekdaysRow {
  display: table-row; }

.DayPicker-Weekday {
  display: table-cell;
  padding: 0.5em;
  color: #8B9898;
  text-align: center;
  font-size: 0.875em; }

.DayPicker-Weekday abbr[title] {
  border-bottom: none;
  text-decoration: none; }

.DayPicker-Body {
  display: table-row-group; }

.DayPicker-Week {
  display: table-row; }

.DayPicker-Day {
  display: table-cell;
  padding: 0.5em;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  cursor: pointer; }

.DayPicker-WeekNumber {
  display: table-cell;
  padding: 0.5em;
  min-width: 1em;
  border-right: 1px solid #EAECEC;
  color: #8B9898;
  vertical-align: middle;
  text-align: right;
  font-size: 0.75em;
  cursor: pointer; }

.DayPicker--interactionDisabled .DayPicker-Day {
  cursor: default; }

.DayPicker-Footer {
  padding-top: 0.5em; }

.DayPicker-TodayButton {
  border: none;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  color: #4A90E2;
  font-size: 0.875em;
  cursor: pointer; }

/* Default modifiers */
.DayPicker-Day--today {
  color: #D0021B;
  font-weight: 700; }

.DayPicker-Day--outside {
  color: #8B9898;
  cursor: default; }

.DayPicker-Day--disabled {
  color: #DCE0E0;
  cursor: default;
  /* background-color: #eff1f1; */ }

/* Example modifiers */
.DayPicker-Day--sunday {
  background-color: #F7F8F8; }

.DayPicker-Day--sunday:not(.DayPicker-Day--today) {
  color: #DCE0E0; }

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  position: relative;
  background-color: #4A90E2;
  color: #F0F8FF; }

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover {
  background-color: #51A0FA; }

.DayPicker:not(.DayPicker--interactionDisabled)
.DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover {
  background-color: #F0F8FF; }

/* DayPickerInput */
.DayPickerInput {
  display: inline-block; }

.DayPickerInput-OverlayWrapper {
  position: relative; }

.DayPickerInput-Overlay {
  position: absolute;
  left: 0;
  z-index: 1;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); }
.Toastify__toast-container {
  z-index: 9999;
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff; }

.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em; }

.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  margin-left: -160px; }

.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em; }

.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em; }

.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  margin-left: -160px; }

.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em; }

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0; }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0; }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0; }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial; } }

.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr; }

.Toastify__toast--rtl {
  direction: rtl; }

.Toastify__toast--default {
  background: #fff;
  color: #aaa; }

.Toastify__toast--info {
  background: #3498db; }

.Toastify__toast--success {
  background: #07bc0c; }

.Toastify__toast--warning {
  background: #f1c40f; }

.Toastify__toast--error {
  background: #e74c3c; }

.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1;
  flex: 1; }

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0; } }

.Toastify__close-button {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
  align-self: flex-start; }

.Toastify__close-button--default {
  color: #000;
  opacity: 0.3; }

.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1; }

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1); }
  100% {
    transform: scaleX(0); } }

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left; }

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards; }

.Toastify__progress-bar--controlled {
  transition: transform .2s; }

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right; }

.Toastify__progress-bar--default {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55); }

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft; }

.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight; }

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown; }

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp; }

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft; }

.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight; }

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp; }

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown; }

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes Toastify__zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn; }

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut; }

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.Toastify__flip-enter {
  animation-name: Toastify__flipIn; }

.Toastify__flip-exit {
  animation-name: Toastify__flipOut; }

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0); } }

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0); } }

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0); } }

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0); } }

.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft; }

.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight; }

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown; }

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp; }

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft; }

.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight; }

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp; }

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown; }

/*# sourceMappingURL=ReactToastify.css.map */
.tippy-touch {
  cursor: pointer !important; }

.tippy-notransition {
  transition: none !important; }

.tippy-popper {
  max-width: 400px;
  -webkit-perspective: 800px;
  perspective: 800px;
  z-index: 9999;
  outline: 0;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none; }

.tippy-popper.html-template {
  max-width: 96%;
  max-width: calc(100% - 20px); }

.tippy-popper[x-placement^=top] [x-arrow] {
  border-top: 7px solid #333;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  bottom: -7px;
  margin: 0 9px; }

.tippy-popper[x-placement^=top] [x-arrow].arrow-small {
  border-top: 5px solid #333;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  bottom: -5px; }

.tippy-popper[x-placement^=top] [x-arrow].arrow-big {
  border-top: 10px solid #333;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  bottom: -10px; }

.tippy-popper[x-placement^=top] [x-circle] {
  -webkit-transform-origin: 0 33%;
  transform-origin: 0 33%; }

.tippy-popper[x-placement^=top] [x-circle].enter {
  -webkit-transform: scale(1) translate(-50%, -55%);
  transform: scale(1) translate(-50%, -55%);
  opacity: 1; }

.tippy-popper[x-placement^=top] [x-circle].leave {
  -webkit-transform: scale(0.15) translate(-50%, -50%);
  transform: scale(0.15) translate(-50%, -50%);
  opacity: 0; }

.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-circle] {
  background-color: #fff; }

.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow] {
  border-top: 7px solid #fff;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent; }

.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow].arrow-small {
  border-top: 5px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent; }

.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow].arrow-big {
  border-top: 10px solid #fff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent; }

.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-circle] {
  background-color: rgba(0, 0, 0, 0.7); }

.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow] {
  border-top: 7px solid rgba(0, 0, 0, 0.7);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent; }

.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow].arrow-small {
  border-top: 5px solid rgba(0, 0, 0, 0.7);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent; }

.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow].arrow-big {
  border-top: 10px solid rgba(0, 0, 0, 0.7);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent; }

.tippy-popper[x-placement^=top] [data-animation=perspective] {
  -webkit-transform-origin: bottom;
  transform-origin: bottom; }

.tippy-popper[x-placement^=top] [data-animation=perspective].enter {
  opacity: 1;
  -webkit-transform: translateY(-10px) rotateX(0);
  transform: translateY(-10px) rotateX(0); }

.tippy-popper[x-placement^=top] [data-animation=perspective].leave {
  opacity: 0;
  -webkit-transform: translateY(0) rotateX(90deg);
  transform: translateY(0) rotateX(90deg); }

.tippy-popper[x-placement^=top] [data-animation=fade].enter {
  opacity: 1;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px); }

.tippy-popper[x-placement^=top] [data-animation=fade].leave {
  opacity: 0;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px); }

.tippy-popper[x-placement^=top] [data-animation=shift].enter {
  opacity: 1;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px); }

.tippy-popper[x-placement^=top] [data-animation=shift].leave {
  opacity: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0); }

.tippy-popper[x-placement^=top] [data-animation=scale].enter {
  opacity: 1;
  -webkit-transform: translateY(-10px) scale(1);
  transform: translateY(-10px) scale(1); }

.tippy-popper[x-placement^=top] [data-animation=scale].leave {
  opacity: 0;
  -webkit-transform: translateY(0) scale(0);
  transform: translateY(0) scale(0); }

.tippy-popper[x-placement^=bottom] [x-arrow] {
  border-bottom: 7px solid #333;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  top: -7px;
  margin: 0 9px; }

.tippy-popper[x-placement^=bottom] [x-arrow].arrow-small {
  border-bottom: 5px solid #333;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  top: -5px; }

.tippy-popper[x-placement^=bottom] [x-arrow].arrow-big {
  border-bottom: 10px solid #333;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  top: -10px; }

.tippy-popper[x-placement^=bottom] [x-circle] {
  -webkit-transform-origin: 0 -50%;
  transform-origin: 0 -50%; }

.tippy-popper[x-placement^=bottom] [x-circle].enter {
  -webkit-transform: scale(1) translate(-50%, -45%);
  transform: scale(1) translate(-50%, -45%);
  opacity: 1; }

.tippy-popper[x-placement^=bottom] [x-circle].leave {
  -webkit-transform: scale(0.15) translate(-50%, -5%);
  transform: scale(0.15) translate(-50%, -5%);
  opacity: 0; }

.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-circle] {
  background-color: #fff; }

.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow] {
  border-bottom: 7px solid #fff;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent; }

.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow].arrow-small {
  border-bottom: 5px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent; }

.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow].arrow-big {
  border-bottom: 10px solid #fff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent; }

.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-circle] {
  background-color: rgba(0, 0, 0, 0.7); }

.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow] {
  border-bottom: 7px solid rgba(0, 0, 0, 0.7);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent; }

.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow].arrow-small {
  border-bottom: 5px solid rgba(0, 0, 0, 0.7);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent; }

.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow].arrow-big {
  border-bottom: 10px solid rgba(0, 0, 0, 0.7);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent; }

.tippy-popper[x-placement^=bottom] [data-animation=perspective] {
  -webkit-transform-origin: top;
  transform-origin: top; }

.tippy-popper[x-placement^=bottom] [data-animation=perspective].enter {
  opacity: 1;
  -webkit-transform: translateY(10px) rotateX(0);
  transform: translateY(10px) rotateX(0); }

.tippy-popper[x-placement^=bottom] [data-animation=perspective].leave {
  opacity: 0;
  -webkit-transform: translateY(0) rotateX(-90deg);
  transform: translateY(0) rotateX(-90deg); }

.tippy-popper[x-placement^=bottom] [data-animation=fade].enter {
  opacity: 1;
  -webkit-transform: translateY(10px);
  transform: translateY(10px); }

.tippy-popper[x-placement^=bottom] [data-animation=fade].leave {
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px); }

.tippy-popper[x-placement^=bottom] [data-animation=shift].enter {
  opacity: 1;
  -webkit-transform: translateY(10px);
  transform: translateY(10px); }

.tippy-popper[x-placement^=bottom] [data-animation=shift].leave {
  opacity: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0); }

.tippy-popper[x-placement^=bottom] [data-animation=scale].enter {
  opacity: 1;
  -webkit-transform: translateY(10px) scale(1);
  transform: translateY(10px) scale(1); }

.tippy-popper[x-placement^=bottom] [data-animation=scale].leave {
  opacity: 0;
  -webkit-transform: translateY(0) scale(0);
  transform: translateY(0) scale(0); }

.tippy-popper[x-placement^=left] [x-arrow] {
  border-left: 7px solid #333;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  right: -7px;
  margin: 6px 0; }

.tippy-popper[x-placement^=left] [x-arrow].arrow-small {
  border-left: 5px solid #333;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  right: -5px; }

.tippy-popper[x-placement^=left] [x-arrow].arrow-big {
  border-left: 10px solid #333;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  right: -10px; }

.tippy-popper[x-placement^=left] [x-circle] {
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0; }

.tippy-popper[x-placement^=left] [x-circle].enter {
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
  opacity: 1; }

.tippy-popper[x-placement^=left] [x-circle].leave {
  -webkit-transform: scale(0.15) translate(-50%, -50%);
  transform: scale(0.15) translate(-50%, -50%);
  opacity: 0; }

.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-circle] {
  background-color: #fff; }

.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow] {
  border-left: 7px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent; }

.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow].arrow-small {
  border-left: 5px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent; }

.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow].arrow-big {
  border-left: 10px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent; }

.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-circle] {
  background-color: rgba(0, 0, 0, 0.7); }

.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow] {
  border-left: 7px solid rgba(0, 0, 0, 0.7);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent; }

.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow].arrow-small {
  border-left: 5px solid rgba(0, 0, 0, 0.7);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent; }

.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow].arrow-big {
  border-left: 10px solid rgba(0, 0, 0, 0.7);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent; }

.tippy-popper[x-placement^=left] [data-animation=perspective] {
  -webkit-transform-origin: right;
  transform-origin: right; }

.tippy-popper[x-placement^=left] [data-animation=perspective].enter {
  opacity: 1;
  -webkit-transform: translateX(-10px) rotateY(0);
  transform: translateX(-10px) rotateY(0); }

.tippy-popper[x-placement^=left] [data-animation=perspective].leave {
  opacity: 0;
  -webkit-transform: translateX(0) rotateY(-90deg);
  transform: translateX(0) rotateY(-90deg); }

.tippy-popper[x-placement^=left] [data-animation=fade].enter {
  opacity: 1;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px); }

.tippy-popper[x-placement^=left] [data-animation=fade].leave {
  opacity: 0;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px); }

.tippy-popper[x-placement^=left] [data-animation=shift].enter {
  opacity: 1;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px); }

.tippy-popper[x-placement^=left] [data-animation=shift].leave {
  opacity: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0); }

.tippy-popper[x-placement^=left] [data-animation=scale].enter {
  opacity: 1;
  -webkit-transform: translateX(-10px) scale(1);
  transform: translateX(-10px) scale(1); }

.tippy-popper[x-placement^=left] [data-animation=scale].leave {
  opacity: 0;
  -webkit-transform: translateX(0) scale(0);
  transform: translateX(0) scale(0); }

.tippy-popper[x-placement^=right] [x-arrow] {
  border-right: 7px solid #333;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  left: -7px;
  margin: 6px 0; }

.tippy-popper[x-placement^=right] [x-arrow].arrow-small {
  border-right: 5px solid #333;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  left: -5px; }

.tippy-popper[x-placement^=right] [x-arrow].arrow-big {
  border-right: 10px solid #333;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  left: -10px; }

.tippy-popper[x-placement^=right] [x-circle] {
  -webkit-transform-origin: -50% 0;
  transform-origin: -50% 0; }

.tippy-popper[x-placement^=right] [x-circle].enter {
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
  opacity: 1; }

.tippy-popper[x-placement^=right] [x-circle].leave {
  -webkit-transform: scale(0.15) translate(-50%, -50%);
  transform: scale(0.15) translate(-50%, -50%);
  opacity: 0; }

.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-circle] {
  background-color: #fff; }

.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow] {
  border-right: 7px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent; }

.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow].arrow-small {
  border-right: 5px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent; }

.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow].arrow-big {
  border-right: 10px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent; }

.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-circle] {
  background-color: rgba(0, 0, 0, 0.7); }

.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow] {
  border-right: 7px solid rgba(0, 0, 0, 0.7);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent; }

.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow].arrow-small {
  border-right: 5px solid rgba(0, 0, 0, 0.7);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent; }

.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow].arrow-big {
  border-right: 10px solid rgba(0, 0, 0, 0.7);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent; }

.tippy-popper[x-placement^=right] [data-animation=perspective] {
  -webkit-transform-origin: left;
  transform-origin: left; }

.tippy-popper[x-placement^=right] [data-animation=perspective].enter {
  opacity: 1;
  -webkit-transform: translateX(10px) rotateY(0);
  transform: translateX(10px) rotateY(0); }

.tippy-popper[x-placement^=right] [data-animation=perspective].leave {
  opacity: 0;
  -webkit-transform: translateX(0) rotateY(90deg);
  transform: translateX(0) rotateY(90deg); }

.tippy-popper[x-placement^=right] [data-animation=fade].enter {
  opacity: 1;
  -webkit-transform: translateX(10px);
  transform: translateX(10px); }

.tippy-popper[x-placement^=right] [data-animation=fade].leave {
  opacity: 0;
  -webkit-transform: translateX(10px);
  transform: translateX(10px); }

.tippy-popper[x-placement^=right] [data-animation=shift].enter {
  opacity: 1;
  -webkit-transform: translateX(10px);
  transform: translateX(10px); }

.tippy-popper[x-placement^=right] [data-animation=shift].leave {
  opacity: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0); }

.tippy-popper[x-placement^=right] [data-animation=scale].enter {
  opacity: 1;
  -webkit-transform: translateX(10px) scale(1);
  transform: translateX(10px) scale(1); }

.tippy-popper[x-placement^=right] [data-animation=scale].leave {
  opacity: 0;
  -webkit-transform: translateX(0) scale(0);
  transform: translateX(0) scale(0); }

.tippy-popper .tippy-tooltip.transparent-theme {
  background-color: rgba(0, 0, 0, 0.7); }

.tippy-popper .tippy-tooltip.transparent-theme[data-animatefill] {
  background-color: transparent; }

.tippy-popper .tippy-tooltip.light-theme {
  color: #26323d;
  box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.1), 0 4px 80px -8px rgba(0, 20, 60, 0.2);
  background-color: #fff; }

.tippy-popper .tippy-tooltip.light-theme[data-animatefill] {
  background-color: transparent; }

.tippy-tooltip {
  position: relative;
  color: #fff;
  border-radius: 4px;
  font-size: .95rem;
  padding: .4rem .8rem;
  text-align: center;
  will-change: transform;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #333; }

.tippy-tooltip--small {
  padding: .25rem .5rem;
  font-size: .8rem; }

.tippy-tooltip--big {
  padding: .6rem 1.2rem;
  font-size: 1.2rem; }

.tippy-tooltip[data-animatefill] {
  overflow: hidden;
  background-color: transparent; }

.tippy-tooltip[data-interactive] {
  pointer-events: auto; }

.tippy-tooltip[data-inertia] {
  transition-timing-function: cubic-bezier(0.53, 2, 0.36, 0.85); }

.tippy-tooltip [x-arrow] {
  position: absolute;
  width: 0;
  height: 0; }

.tippy-tooltip [x-circle] {
  position: absolute;
  will-change: transform;
  background-color: #333;
  border-radius: 50%;
  width: 130%;
  width: calc(110% + 2rem);
  left: 50%;
  top: 50%;
  z-index: -1;
  overflow: hidden;
  transition: all ease; }

.tippy-tooltip [x-circle]:before {
  content: "";
  padding-top: 90%;
  float: left; }

@media (max-width: 450px) {
  .tippy-popper {
    max-width: 96%;
    max-width: calc(100% - 20px); } }
.App--1idK0 {
  display: flex;
  flex-flow: row nowrap;
  width: 100vw;
  min-width: 100vw;
  max-width: 100%;
  min-height: 100vh;
  height: auto; }
  .App--1idK0 .App__Left--1B6NT {
    flex: 1;
    display: flex;
    flex-flow: column nowrap; }
  .App--1idK0 .BackgroundImage--2clWj {
    background: transparent url(https://admin.titanium.myitsolver.com/assets/img/decoration.1024cd5e3c176c2914e98ecb39d5b0c1.svg) 0% 0% no-repeat padding-box;
    position: fixed;
    top: -20.4715576171875px;
    left: -257.2275390625px;
    width: 860px;
    height: 809px; }
  .App--1idK0 .App__Container--vhDiN {
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: auto; }
    .App--1idK0 .App__Container--vhDiN > * {
      flex: 1; }
  .App--1idK0 .App__Content--3_BVd {
    flex: 1;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    height: 100%; }
    .App--1idK0 .App__Content--3_BVd > div > .Panel {
      max-height: calc(100vh - 140px);
      overflow-y: auto; }
    .App--1idK0 .App__Content--3_BVd > * {
      flex: 1; }
.NotFound--1xtZh {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%; }
  .NotFound--1xtZh .Header--3vnEi {
    font-size: 36px;
    color: #272741;
    margin-bottom: 20px; }
  .NotFound--1xtZh .Link--1cguY {
    font-size: 24px; }
.ErrorBoundary--oIFnz {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%; }
  .ErrorBoundary--oIFnz .Header--pUSM8 {
    font-size: 36px;
    color: #272741;
    margin-bottom: 20px; }
  .ErrorBoundary--oIFnz .Link--2XEpS {
    font-size: 24px; }
    .ErrorBoundary--oIFnz .Link--2XEpS a {
      margin-right: 20px; }
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
body {
  background: transparent linear-gradient(230deg, #A487C2 0%, #633AA2 100%) 0% 0% no-repeat padding-box;
  overflow-y: auto;
  overflow-x: hidden; }
  body, body input, body textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: normal;
    color: #000000; }
  body input, body textarea {
    border: none;
    outline: none; }
  body a {
    color: #633aa2;
    text-decoration: none; }

.AuthChecker--ju2d5 {
  width: 100vw;
  height: 100vh;
  position: absolute;
  background: #1e1f32;
  background-size: 400% 400%;
  animation: AnimatedGradient--3E55p 2s ease infinite; }

@keyframes AnimatedGradient--3E55p {
  0% {
    background: #1e1f32; }
  50% {
    background: #24253c; }
  100% {
    background: #1e1f32; } }
.Notification__Body--1WBsX {
  display: inline-flex; }
  .Notification__Body--1WBsX .Notification__Content--24S9K {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center; }
    .Notification__Body--1WBsX .Notification__Content--24S9K div:not(:last-child) {
      margin-bottom: 5px; }
    .Notification__Body--1WBsX .Notification__Content--24S9K .Notification__Title--3tCAM {
      font-weight: bold;
      font-size: 15px; }
  .Notification__Body--1WBsX .Notification__Icon--1hTxP {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 15px;
    color: #ffffff;
    font-size: 24px; }
.Spinner--3IAE4 {
  font-size: 24px;
  animation: spin--3WlhX 1.5s infinite; }

@keyframes spin--3WlhX {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.Panel--2C8Lj {
  background: #FFF;
  border-radius: 23px;
  padding: 30px;
  margin-left: 100px; }
  .Panel--2C8Lj .Panel__Title--27UKG {
    font-size: 15px;
    color: #000000;
    margin-top: 7px;
    margin-bottom: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    text-transform: uppercase; }
    .Panel--2C8Lj .Panel__Title--27UKG svg {
      margin-right: 10px; }
    .Panel--2C8Lj .Panel__Title--27UKG div {
      display: flex;
      flex: 1;
      align-items: center; }
  .Panel--2C8Lj .Panel__Text--1on0x {
    line-height: 1.43; }
  .Panel--2C8Lj .Panel__DataTable--1ULxl {
    display: grid;
    grid-auto-rows: min-content;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0px;
    margin: 0 -10px;
    margin-top: 5px; }
    .Panel--2C8Lj .Panel__DataTable--1ULxl.Panel__DataTable-SmallTitle--3XivY {
      grid-template-columns: 1fr 2fr; }
    .Panel--2C8Lj .Panel__DataTable--1ULxl.Panel__DataTable_LastSeen--111p6 {
      grid-template-columns: repeat(3, 1fr); }
    .Panel--2C8Lj .Panel__DataTable--1ULxl .DataTable__Cell--2PJp5 {
      font-size: 13px;
      line-height: 1.2;
      padding: 0 10px; }
      .Panel--2C8Lj .Panel__DataTable--1ULxl .DataTable__Cell--2PJp5.Fraud--1F5aA {
        background-color: #ffe9e9; }
      .Panel--2C8Lj .Panel__DataTable--1ULxl .DataTable__Cell--2PJp5.Cell--label--2_UrV {
        font-weight: normal;
        color: #272741;
        border-radius: 50px 0 0 50px; }
      .Panel--2C8Lj .Panel__DataTable--1ULxl .DataTable__Cell--2PJp5.Cell--data--1GtY5 {
        font-weight: 300;
        color: #38373D;
        border-radius: 0 50px 50px 0; }
  .Panel--2C8Lj .Panel__Separator--3yTyH {
    margin: 25px 0 15px 0;
    height: 1px;
    background: #DBD0EB;
    width: 100%; }
    .Panel--2C8Lj .Panel__Separator--3yTyH.Panel__Separator-Small--8K4tT {
      margin: 15px 0 5px 0; }
.LogOutForm--_0X0e {
  position: fixed;
  top: 0px;
  right: 0px;
  display: flex;
  flex-flow: column nowrap;
  margin: 70px 18px;
  margin-right: 82px;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 23px;
  width: 200px;
  height: 200px;
  background: #FFF;
  z-index: 10; }
  .LogOutForm--_0X0e:after {
    bottom: 100%;
    left: 48%;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border: 10px solid rgba(136, 183, 213, 0);
    border-bottom-color: #ffffff;
    margin-left: -10px;
    transition: left 200ms; }
  .LogOutForm--_0X0e.Collapsed--3a0iy:after {
    left: 95%; }
  .LogOutForm--_0X0e .PanelHeader--1JgvC {
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%; }
    .LogOutForm--_0X0e .PanelHeader--1JgvC .NavLink--jhf0L {
      margin-top: 7px; }
  .LogOutForm--_0X0e .ProfilePanel--1mkZ_ {
    display: flex;
    flex-direction: column; }
    .LogOutForm--_0X0e .ProfilePanel--1mkZ_ .ProfilePanel__Cell--20Ybx {
      font-size: 16px;
      text-align: center;
      letter-spacing: 0px;
      color: #633AA2; }
      .LogOutForm--_0X0e .ProfilePanel--1mkZ_ .ProfilePanel__Cell--20Ybx.Cell--label--1fGg4 {
        font-weight: 600;
        margin-top: 20px; }
      .LogOutForm--_0X0e .ProfilePanel--1mkZ_ .ProfilePanel__Cell--20Ybx.Cell--data--2vYhL {
        font-weight: normal; }
  .LogOutForm--_0X0e .ProfileActions--2SjWJ {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center; }
.Button--koP1t {
  position: relative;
  width: 363px;
  height: 50px;
  border: 1px solid transparent;
  background: #7653ad 0% 0% no-repeat padding-box;
  border-radius: 6px;
  background: #7653AD;
  cursor: pointer;
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  user-select: none;
  padding: 5px 5px; }
  .Button--koP1t:hover {
    box-shadow: 0 5px 20px 0 rgba(13, 205, 195, 0.3); }
  .Button--koP1t.white--1HiVf {
    background: #fff;
    color: #633aa2;
    border: 1px solid #fff; }
  .Button--koP1t.purple--1oImV {
    background: linear-gradient(45deg, #789EFB, #8778fb); }
  .Button--koP1t.transparent--17xN4 {
    background: transparent;
    border: 1px solid #fff; }
  .Button--koP1t.small--2T3r1 {
    font-size: 12px;
    font-weight: 400; }
  .Button--koP1t.center--3jEKy {
    text-align: center; }
  .Button--koP1t.transparent-purple--2NFns {
    color: #7653AD;
    background: transparent;
    border: 1px solid #7653AD; }
  .Button--koP1t.transparent-purple-borderless--2XdJc {
    color: #7653AD;
    background: transparent;
    border: 0; }
  .Button--koP1t.big-padding--3eLtp {
    padding: 5px 20px; }
  .Button--koP1t.green--1f5kQ {
    border: 1px solid #51a351;
    color: #51a351;
    background: transparent;
    box-shadow: 0 0 0 0 rgba(81, 163, 81, 0.3); }
    .Button--koP1t.green--1f5kQ:hover {
      box-shadow: 0 5px 20px 0 rgba(81, 163, 81, 0.3); }
  .Button--koP1t.red--2Oc0j {
    border: 1px solid #d94747;
    color: #d94747;
    background: transparent;
    box-shadow: 0 0 0 0 rgba(189, 54, 47, 0.3); }
    .Button--koP1t.red--2Oc0j:hover {
      box-shadow: 0 5px 20px 0 rgba(189, 54, 47, 0.3); }
  .Button--koP1t.loading--R1ylg {
    opacity: 0.75; }
  .Button--koP1t.disabled--ksjUy {
    opacity: 0.75;
    cursor: default; }
    .Button--koP1t.disabled--ksjUy:hover {
      box-shadow: none; }
  .Button--koP1t.with-icon--1j_yE {
    padding-left: 45px;
    padding-right: 27px; }
  .Button--koP1t .Icon--3qLg4 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    font-size: 14px; }
.SidePanel--3QM74 {
  display: flex;
  flex-flow: column nowrap;
  min-width: 200px;
  width: 200px;
  height: 100%;
  z-index: 6;
  background-color: transparent;
  transition-property: all;
  transition-duration: 0.2s;
  margin-right: 100px;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  border: none;
  outline: none;
  position: sticky;
  top: 0; }
  .SidePanel--3QM74 .SidePanel__Header--1Dg88 {
    height: 57px;
    background: transparent;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    cursor: pointer; }
    .SidePanel--3QM74 .SidePanel__Header--1Dg88 .Header__UserPanel--1TR67 {
      margin-left: 32px;
      display: flex;
      flex-flow: row nowrap;
      align-items: center; }
      .SidePanel--3QM74 .SidePanel__Header--1Dg88 .Header__UserPanel--1TR67 .UserPanel__Avatar--1RA76 {
        font-size: 33px;
        color: #FFFFFF;
        border-radius: 100%;
        margin-right: 17px;
        box-shadow: 0 0 0 #789EFB;
        transition: box-shadow 200ms; }
        .SidePanel--3QM74 .SidePanel__Header--1Dg88 .Header__UserPanel--1TR67 .UserPanel__Avatar--1RA76 img {
          width: 23px;
          height: 23px;
          object-fit: cover; }
      .SidePanel--3QM74 .SidePanel__Header--1Dg88 .Header__UserPanel--1TR67 .UserPanel__Username--2-2_V {
        font-size: 14px;
        color: #FFF;
        transition: color 200ms; }
    .SidePanel--3QM74 .SidePanel__Header--1Dg88:hover .Header__UserPanel--1TR67 .UserPanel__Avatar--1RA76 {
      box-shadow: 0 0 3px #789EFB; }
    .SidePanel--3QM74 .SidePanel__Header--1Dg88:hover .Header__UserPanel--1TR67 .UserPanel__Username--2-2_V {
      color: #633aa2; }
  .SidePanel--3QM74 .SidePanel__Menu--3RSac {
    display: flex;
    position: fixed;
    flex-flow: column nowrap;
    margin: 70px 18px;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 23px;
    width: 200px;
    height: 409px;
    background: #FFF; }
    .SidePanel--3QM74 .SidePanel__Menu--3RSac .SidePanel__Padding--2bl9_ {
      padding: 15px;
      padding-top: 25px; }
    .SidePanel--3QM74 .SidePanel__Menu--3RSac .Menu__Item--2Xyao {
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      height: 25px;
      padding-left: 14px;
      text-decoration: none;
      border-radius: 5px;
      cursor: pointer; }
      .SidePanel--3QM74 .SidePanel__Menu--3RSac .Menu__Item--2Xyao {
        fill: #000000;
        color: #000000;
        transition-property: fill, box-shadow;
        transition-duration: 200ms; }
      .SidePanel--3QM74 .SidePanel__Menu--3RSac .Menu__Item--2Xyao .Item__Icon--1fb6c path {
        color: '#FFFFFF';
        transition-property: fill, box-shadow;
        transition-duration: 200ms; }
      .SidePanel--3QM74 .SidePanel__Menu--3RSac .Menu__Item--2Xyao .Item__Icon--1fb6c {
        margin-right: 18px;
        width: 20px;
        height: 15px;
        display: flex;
        justify-content: center; }
      .SidePanel--3QM74 .SidePanel__Menu--3RSac .Menu__Item--2Xyao .Item__Text---OwiR {
        font-size: 13px; }
      .SidePanel--3QM74 .SidePanel__Menu--3RSac .Menu__Item--2Xyao:hover, .SidePanel--3QM74 .SidePanel__Menu--3RSac .Menu__Item--2Xyao:hover .Item__Icon--1fb6c path {
        fill: #633aa2;
        color: #633aa2; }
      .SidePanel--3QM74 .SidePanel__Menu--3RSac .Menu__Item--2Xyao.Item--active--_NdBr {
        font-weight: bold; }
        .SidePanel--3QM74 .SidePanel__Menu--3RSac .Menu__Item--2Xyao.Item--active--_NdBr, .SidePanel--3QM74 .SidePanel__Menu--3RSac .Menu__Item--2Xyao.Item--active--_NdBr .Item__Icon--1fb6c path {
          fill: #633aa2;
          color: #633aa2; }
    .SidePanel--3QM74 .SidePanel__Menu--3RSac .Menu__Separator--1B1ZC {
      height: 25px;
      background: transparent; }
  .SidePanel--3QM74 .SidePanel__Toggle--15mVs {
    cursor: pointer;
    position: absolute;
    top: 550px;
    left: 10px;
    padding: 25px; }
  .SidePanel--3QM74.collapsed--2sYDR {
    min-width: 53px;
    width: 53px; }
    .SidePanel--3QM74.collapsed--2sYDR .SidePanel__Header--1Dg88 {
      justify-content: center; }
      .SidePanel--3QM74.collapsed--2sYDR .SidePanel__Header--1Dg88 .Header__UserPanel--1TR67 {
        margin: 17px 15px; }
        .SidePanel--3QM74.collapsed--2sYDR .SidePanel__Header--1Dg88 .Header__UserPanel--1TR67 .UserPanel__Avatar--1RA76 {
          margin: 0; }
        .SidePanel--3QM74.collapsed--2sYDR .SidePanel__Header--1Dg88 .Header__UserPanel--1TR67 .UserPanel__Username--2-2_V {
          display: none; }
    .SidePanel--3QM74.collapsed--2sYDR .SidePanel__Menu--3RSac {
      margin: 25px 5px; }
      .SidePanel--3QM74.collapsed--2sYDR .SidePanel__Menu--3RSac .Menu__Item--2Xyao .Item__Text---OwiR {
        display: none; }
      .SidePanel--3QM74.collapsed--2sYDR .SidePanel__Menu--3RSac .Menu__Separator--1B1ZC {
        margin: 20px 9px; }
    .SidePanel--3QM74.collapsed--2sYDR .SidePanel__Toggle--15mVs {
      top: 550px;
      left: 10px;
      padding: 25px 10px; }
.TransactionsTable__Wrapper--A9TDp {
  background: #FFF;
  border-radius: 23px;
  margin-left: 100px;
  padding: 30px; }
  .TransactionsTable__Wrapper--A9TDp .TableLoader--LZVTh {
    background: white;
    margin: 30px;
    width: calc(100% - 60px);
    border-radius: 5px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000; }
.Label--27nAT {
  font-size: 11px;
  color: #000000;
  letter-spacing: 1.1px; }
  .Label--27nAT.active--BrlNN {
    color: #633aa2;
    padding: 10px 0; }
  .Label__uppercase--3ij-f {
    text-transform: uppercase; }
.ButtonsGroup--2ZCRj {
  width: 100%;
  height: 35px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-around;
  user-select: none; }
  .ButtonsGroup--2ZCRj .Group__Item--1Bsvn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
    line-height: 33px;
    color: #000000;
    transition: border-bottom-color 200ms; }
    .ButtonsGroup--2ZCRj .Group__Item--1Bsvn:hover {
      color: #7653AD; }
    .ButtonsGroup--2ZCRj .Group__Item--1Bsvn.active--238JV {
      border-bottom: 2px solid #7653AD; }
      .ButtonsGroup--2ZCRj .Group__Item--1Bsvn.active--238JV:hover {
        color: #7653AD; }
  .ButtonsGroup--2ZCRj.Menu--2KKuK {
    width: auto; }
    .ButtonsGroup--2ZCRj.Menu--2KKuK .Group__Item--1Bsvn {
      padding: 7px 15px;
      text-transform: uppercase;
      font-size: 11px;
      letter-spacing: 1.1px;
      color: #000000; }
.FileInput--3224B {
  position: relative;
  border: 1px solid #707070;
  border-radius: 5px;
  height: 35px;
  padding: 0 14px;
  display: flex;
  flex-flow: row nowrap;
  width: 250px;
  cursor: pointer; }
  .FileInput--3224B input[type=file] {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    cursor: default; }
  .FileInput--3224B .FileInput__Overlay--1gYBC {
    flex: 1;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center; }
    .FileInput--3224B .FileInput__Overlay--1gYBC .Overlay__FileName--3txpJ {
      font-size: 14px;
      color: #000000; }
      .FileInput--3224B .FileInput__Overlay--1gYBC .Overlay__FileName--3txpJ .Placeholder--39pNB {
        color: #707070; }
    .FileInput--3224B .FileInput__Overlay--1gYBC .Overlay__Icon--ubIwk {
      margin-left: 14px; }
      .FileInput--3224B .FileInput__Overlay--1gYBC .Overlay__Icon--ubIwk svg {
        color: #7653AD; }
.Toggle--3xOP2 {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  cursor: pointer;
  flex: 0 !important; }
  .Toggle--3xOP2 .Toggle__Handle--3uyl6 {
    position: relative;
    width: 35px;
    height: 15px;
    transition-property: background, border-color;
    transition-duration: 200ms;
    background: #CDCED1;
    border: 1px solid #CDCED1;
    box-sizing: border-box;
    border-radius: 18px; }
    .Toggle--3xOP2 .Toggle__Handle--3uyl6 .Handle__Inner--DTdP- {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      position: absolute;
      transition: left 200ms;
      left: -1px;
      top: -3px;
      background: #FFF;
      box-shadow: 0px 2px 4px #00000029; }
  .Toggle--3xOP2 .Toggle__Label--3WqT6 {
    margin-left: 16px;
    font-size: 14px;
    color: #000000; }
  .Toggle--3xOP2.Toggle--active--3pVmE .Toggle__Handle--3uyl6 {
    background: #865fc2;
    border-color: #865fc2; }
    .Toggle--3xOP2.Toggle--active--3pVmE .Toggle__Handle--3uyl6 .Handle__Inner--DTdP- {
      left: 20px; }
.Input--VyIAO {
  border: 1px solid #707070;
  border-radius: 4px;
  height: 35px;
  padding: 0 14px;
  font-size: 14px;
  color: #000000;
  width: 100%;
  transition: border-color 200ms; }
  .Input--VyIAO::placeholder {
    color: #707070; }
  .Input--VyIAO:disabled {
    background: rgba(200, 200, 200, 0.3);
    border: 0; }
  .Input--VyIAO:focus {
    border-color: #7653AD; }

.original-disabled--3kijf:disabled {
  border: 1px solid #707070;
  background: rgba(239, 239, 239, 0.3); }
.NoDataWrapper--2Yx-e {
  text-align: center;
  font-size: 14px;
  padding: 0 20px; }
.Modal--rooR_ {
  padding: 15px; }
  .Modal--rooR_ .Title--1QxC7 {
    font-size: 15px;
    font-weight: 600;
    color: #272741;
    padding-bottom: 20px; }
  .Modal--rooR_ .Text--35wZu {
    font-size: 15px;
    color: #38373D;
    padding-bottom: 30px; }
  .Modal--rooR_ .Actions--4vPWw {
    float: right; }
    .Modal--rooR_ .Actions--4vPWw * {
      margin-left: 10px; }

.Overlay--2EXHq {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.65);
  z-index: 100; }

.Content--1m5kA {
  position: absolute;
  width: auto;
  min-width: 400px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border: 1px solid #cccccc;
  background: white;
  overflow: auto;
  border-radius: 4px;
  outline: none;
  padding: 20px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3); }
.Connected--3kOL3 {
  color: #00A53F;
  font-family: 'Montserrat'; }
  .Connected--3kOL3 .Connected__Title--1WGmO {
    margin-top: 5px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold; }
  .Connected--3kOL3 .Connected__Text--2HPz- {
    font-size: 13px; }
    .Connected--3kOL3 .Connected__Text--2HPz- a {
      color: inherit;
      text-decoration: underline; }
    .Connected--3kOL3 .Connected__Text--2HPz- a:visited {
      color: inherit; }
.CheckBox--wZKhZ {
  width: 15px;
  height: 15px;
  border-radius: 2px;
  border: 1px solid #707070;
  cursor: pointer;
  box-sizing: border-box;
  user-select: none;
  color: #A487C2; }
  .CheckBox--active--3p-ZA {
    border: 1px solid transparent; }
.Select--2MGR4 {
  position: relative; }
  .Select--2MGR4 .Select__Field--3Tutn {
    width: 150px;
    height: 35px;
    outline: none;
    background-color: transparent;
    border: 1px solid #707070;
    border-radius: 4px;
    color: #000000;
    -webkit-appearance: none;
    appearance: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    position: relative;
    cursor: pointer; }
    .Select--2MGR4 .Select__Field--3Tutn.Fluid--2cGi8 {
      width: calc(100% - 22px); }
    .Select--2MGR4 .Select__Field--3Tutn .AutocompleteInput--15LQs {
      color: #000000;
      font-size: 14px;
      width: calc(100% - 20px); }
      .Select--2MGR4 .Select__Field--3Tutn .AutocompleteInput--15LQs::placeholder {
        color: #707070; }
    .Select--2MGR4 .Select__Field--3Tutn .CurrentValue--S0hmC {
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow-x: hidden;
      max-width: calc(100% - 20px); }
    .Select--2MGR4 .Select__Field--3Tutn .Placeholder--3S8w9 {
      color: #707070; }
    .Select--2MGR4 .Select__Field--3Tutn .Select__Field__Icon--Arrow--26lZE {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 10px; }
    .Select--2MGR4 .Select__Field--3Tutn .Select__Field__Icon--Times--2P4nn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 25px;
      padding: 3px 8px;
      border-right: 1px solid #e1e1e1;
      font-size: 12px; }
  .Select--2MGR4 .Select__Dropdown--iiVl5 {
    position: absolute;
    z-index: 1;
    margin-top: 2px;
    padding: 5px 0;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    background-color: white;
    max-height: 200px;
    overflow-y: auto;
    scroll-behavior: smooth; }
    .Select--2MGR4 .Select__Dropdown--iiVl5 .Select__Dropdown__Item--36061 {
      width: calc(100% - 20px);
      padding: 5px 10px;
      cursor: pointer;
      color: #000000;
      font-size: 14px;
      font-weight: 400; }
      .Select--2MGR4 .Select__Dropdown--iiVl5 .Select__Dropdown__Item--36061.active--kCifA {
        background-color: rgba(120, 158, 251, 0.1); }
    .Select--2MGR4 .Select__Dropdown--iiVl5 .NoOptions--1bM5s {
      padding: 3px 0 3px 10px;
      color: #707070; }
.Datepicker--1lZVh {
  position: relative; }
  .Datepicker--1lZVh .disabled--xkOl- {
    border: 0 !important;
    cursor: default !important;
    background: rgba(200, 200, 200, 0.3) !important; }
  .Datepicker--1lZVh .Datepicker__Field--1g7Bg {
    min-width: 120px;
    height: 35px;
    outline: none;
    background-color: transparent;
    border: none;
    border: 1px solid #707070;
    color: #000000;
    -webkit-appearance: none;
    appearance: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    position: relative;
    cursor: pointer; }
    .Datepicker--1lZVh .Datepicker__Field--1g7Bg .Placeholder--PlV6l {
      color: #707070; }
    .Datepicker--1lZVh .Datepicker__Field--1g7Bg .Datepicker__Field__Icon--2SfG7 {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 10px;
      font-size: 12px; }
  .Datepicker--1lZVh .Datepicker__Dropdown--3o-pl {
    position: absolute;
    z-index: 1;
    padding: 0;
    margin-top: 3px;
    margin-left: -1px;
    left: 0;
    width: auto;
    min-width: 273px;
    height: auto;
    border: 1px solid #e1e1e1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    background-color: white; }
    .Datepicker--1lZVh .Datepicker__Dropdown--3o-pl .Datepicker__Dropdown__Item--1CJgP {
      width: calc(100% - 20px);
      padding: 5px 10px;
      cursor: pointer;
      color: #000000; }
      .Datepicker--1lZVh .Datepicker__Dropdown--3o-pl .Datepicker__Dropdown__Item--1CJgP:hover {
        background-color: rgba(120, 158, 251, 0.1); }
.Multiinput--3NGFl {
  position: relative;
  min-width: 100%;
  max-width: calc(100%);
  height: 35px;
  background-color: transparent;
  color: #000000;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 14px;
  border: 1px solid #707070;
  border-radius: 6px; }
  .Multiinput--3NGFl .Multiinput__Values--39LS2 {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10px;
    overflow: hidden; }
    .Multiinput--3NGFl .Multiinput__Values--39LS2 .Tag--1cTDd {
      border-radius: 5px;
      background-color: #ebebeb;
      padding: 4px 7px;
      margin-right: 5px;
      display: flex;
      align-items: center;
      color: #38373D;
      white-space: nowrap; }
      .Multiinput--3NGFl .Multiinput__Values--39LS2 .Tag--1cTDd .Cross--3Xs-9 {
        margin-left: 5px;
        cursor: pointer; }
    .Multiinput--3NGFl .Multiinput__Values--39LS2 .Plus--2dZSL {
      margin: 0 7px;
      cursor: pointer; }
  .Multiinput--3NGFl .Multiinput__Input--W0iI5 {
    width: 100%;
    min-width: 150px;
    transition: width 0.25s;
    background-color: transparent;
    border: none;
    color: #000000;
    font-size: 14px; }
    .Multiinput--3NGFl .Multiinput__Input--W0iI5::placeholder {
      color: #707070; }
.Input--32qaT {
  width: 100%;
  height: 50px;
  outline: none;
  background-color: transparent;
  color: #000000;
  -webkit-appearance: none;
  appearance: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  position: relative;
  box-sizing: border-box;
  border: 2px solid #7653AD;
  border-radius: 12px; }
  .Input--32qaT::placeholder {
    color: #707070; }
.paging--Zzme- {
  position: relative;
  border: 1px solid transparent;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  padding-inline-start: 20px !important;
  padding: 0 20px; }
  .paging--Zzme- a:focus {
    outline: none; }
  .paging--Zzme- .disabled--32j1P {
    visibility: hidden; }
  .paging--Zzme- .active--3pov1 {
    background: #7653AD;
    border-radius: 4px; }
    .paging--Zzme- .active--3pov1 a {
      color: white; }
  .paging--Zzme- ul {
    display: inline-block;
    padding-left: 15px;
    padding-right: 15px; }
  .paging--Zzme- li {
    display: inline-block;
    min-width: 25px;
    text-align: center; }
    .paging--Zzme- li a {
      color: #7653AD; }
.Header--1jyLE {
  height: 70px;
  flex: 0 0 auto;
  background: transparent;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  padding: 0 100px;
  z-index: 10;
  position: sticky;
  top: 0; }
  .Header--1jyLE .Header__Logo--36EGb {
    width: auto;
    height: 40px;
    margin-top: 1px; }
  .Header--1jyLE .Header__Title--whBx- {
    margin-left: 32px;
    font-family: 'Montserrat';
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 14px;
    color: #ffffff;
    width: 100%; }
.Textarea--9jdzr {
  width: 100%;
  outline: none;
  border: 1px solid #707070;
  border-radius: 5px;
  background-color: transparent;
  color: #000000;
  -webkit-appearance: none;
  appearance: none;
  font-size: 14px;
  padding: 10px;
  position: relative;
  box-sizing: border-box; }
  .Textarea--9jdzr::placeholder {
    color: #707070; }
  .Textarea--9jdzr.Not-resizable--3Dq4j {
    resize: none; }
.Wrapper--28rtL {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  cursor: pointer;
  user-select: none; }
  .Wrapper--28rtL .RoundButton--2IzRU {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-image: linear-gradient(45deg, #789EFB, #8778FB);
    border-radius: 20px;
    box-shadow: 0 0 0 0 rgba(13, 205, 195, 0.3);
    transition: box-shadow 200ms; }
    .Wrapper--28rtL .RoundButton--2IzRU .Spinner--2FG3u {
      font-size: 18px;
      animation: spin--2oScc 1.5s infinite; }

@keyframes spin--2oScc {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
  .Wrapper--28rtL .Label--sVQBB {
    margin-left: 15px;
    transition: color 200ms; }
  .Wrapper--28rtL:hover .RoundButton--2IzRU {
    box-shadow: 0 5px 20px 0 rgba(13, 205, 195, 0.3); }
  .Wrapper--28rtL:hover .Label--sVQBB {
    color: #633aa2; }
  .Wrapper--28rtL.loading--5bRiS .RoundButton--2IzRU {
    opacity: 0.75; }
  .Wrapper--28rtL.loading--5bRiS .Label--sVQBB {
    color: #CDCED1; }
  .Wrapper--28rtL.disabled--3e16C {
    cursor: default; }
    .Wrapper--28rtL.disabled--3e16C .RoundButton--2IzRU {
      opacity: 0.75; }
    .Wrapper--28rtL.disabled--3e16C .Label--sVQBB {
      color: #CDCED1; }
    .Wrapper--28rtL.disabled--3e16C:hover .RoundButton--2IzRU {
      box-shadow: 0 0 0 0 rgba(13, 205, 195, 0.3); }
    .Wrapper--28rtL.disabled--3e16C:hover .Label--sVQBB {
      color: #CDCED1; }
.ChartTooltip--1nB31 {
  position: absolute;
  width: auto;
  height: auto;
  background-color: rgba(0, 0, 0, 0.5); }

.TooltipContent--_UO_q {
  background-color: #38373d;
  margin: -6px -13px -7px -13px;
  padding: 11px 13px 11px 11px;
  border-radius: 3px;
  text-align: left; }
  .TooltipContent--_UO_q .Title--3X44v {
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px; }
  .TooltipContent--_UO_q .Item--1i0Qz {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 12px; }
    .TooltipContent--_UO_q .Item--1i0Qz .Icon--J1Dmv {
      width: 8px;
      height: 8px;
      border-radius: 5px;
      margin-right: 5px;
      display: inline-block;
      box-shadow: 0 0 2px #000000; }
      .TooltipContent--_UO_q .Item--1i0Qz .Icon--J1Dmv.rejected--2tHxu {
        background: #fd9393; }
      .TooltipContent--_UO_q .Item--1i0Qz .Icon--J1Dmv.prevented--2CKNR {
        background: #789efb; }
      .TooltipContent--_UO_q .Item--1i0Qz .Icon--J1Dmv.disputed--3eVkV {
        background: #e9d66b; }
      .TooltipContent--_UO_q .Item--1i0Qz .Icon--J1Dmv.none--1jNNU {
        background: #C8C8C8; }
      .TooltipContent--_UO_q .Item--1i0Qz .Icon--J1Dmv.sum--cSJft {
        background: #717171; }
.Dashboard---haSh {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  grid-gap: 30px;
  padding: 0;
  margin-bottom: 30px;
  max-width: calc(100vw - 300px); }
  .Dashboard---haSh .Panel__Header--3PBh8 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; }
    .Dashboard---haSh .Panel__Header--3PBh8 .Title--1S9jE div:first-child {
      margin-bottom: 10px; }
  .Dashboard---haSh .Panel__Body--1Ds5g {
    margin-top: 33px;
    width: auto;
    max-width: calc(100vw - 482px); }
.ChartLine--wzMmc {
  max-width: calc(100vw - 482px);
  height: 100%;
  position: relative;
  display: inline-flex;
  flex-flow: row nowrap; }
  .ChartLine--wzMmc .Chart--2icpc {
    width: calc(100vw - 700px);
    display: flex;
    align-items: center;
    justify-content: center; }
    .ChartLine--wzMmc .Chart--2icpc .Chart__Wrapper--3Eyjb {
      width: calc(100vw - 700px);
      height: 100%; }
  .ChartLine--wzMmc .Legend--1Pf7c {
    width: 200px;
    display: flex;
    flex-flow: column nowrap; }
    .ChartLine--wzMmc .Legend--1Pf7c .Legend__Item--AYXFd {
      margin: 10px 10px 10px 25px;
      display: inline-flex;
      align-items: center;
      text-transform: uppercase;
      font-size: 11px;
      letter-spacing: 1.1px;
      color: #4d4c54; }
      .ChartLine--wzMmc .Legend--1Pf7c .Legend__Item--AYXFd .Icon--1fJwp {
        width: 8px;
        height: 8px;
        border-radius: 5px;
        margin-right: 15px;
        display: inline-block; }
        .ChartLine--wzMmc .Legend--1Pf7c .Legend__Item--AYXFd .Icon--1fJwp.rejected--3t1yP {
          background: #fd9393; }
        .ChartLine--wzMmc .Legend--1Pf7c .Legend__Item--AYXFd .Icon--1fJwp.prevented--3vG-Y {
          background: #789efb; }
        .ChartLine--wzMmc .Legend--1Pf7c .Legend__Item--AYXFd .Icon--1fJwp.disputed--2v8uu {
          background: #e9d66b; }
        .ChartLine--wzMmc .Legend--1Pf7c .Legend__Item--AYXFd .Icon--1fJwp.none--2RVVd {
          background: #C8C8C8; }
        .ChartLine--wzMmc .Legend--1Pf7c .Legend__Item--AYXFd .Icon--1fJwp.sum--17EBp {
          background: #717171; }
.FileUploadPanel--1qVAi {
  display: flex;
  flex-direction: column; }
  .FileUploadPanel--1qVAi .FileUploadPanel__Text--3nTkA {
    grid-area: text;
    padding-right: 10px; }
    .FileUploadPanel--1qVAi .FileUploadPanel__Text--3nTkA .FileUploadPanel__Link--3l1sd {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      margin-right: 150px; }
    .FileUploadPanel--1qVAi .FileUploadPanel__Text--3nTkA .Text__link--3iKQa {
      color: #a487c2;
      cursor: pointer; }
  .FileUploadPanel--1qVAi .FileUploadPanel__FileLabel--2EQIF {
    margin-top: 7px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 25px; }
  .FileUploadPanel--1qVAi .FileUploadPanel__FileInput--D6akv {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-right: 150px;
    margin-bottom: 25px; }
  .FileUploadPanel--1qVAi .FileUploadPanel__SeonCheckbox--2iOMH {
    display: flex;
    flex-direction: column;
    font-size: 20px; }
    .FileUploadPanel--1qVAi .FileUploadPanel__SeonCheckbox--2iOMH .TGL--3xIPc {
      margin-top: 10px;
      margin-bottom: 10px; }
  .FileUploadPanel--1qVAi .Submit_Button--V4B68 {
    grid-area: submit-button;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    margin-right: 150px; }
    .FileUploadPanel--1qVAi .Submit_Button--V4B68 Button {
      background: #7653ad 0% 0% no-repeat padding-box;
      width: 100%;
      border-radius: 6px;
      display: flex;
      cursor: pointer; }
  .FileUploadPanel--1qVAi .FileUploadPanel__PrevTable--2C18D {
    grid-area: prev-table;
    margin-top: 35px;
    display: flex;
    flex-flow: column nowrap; }
    .FileUploadPanel--1qVAi .FileUploadPanel__PrevTable--2C18D .PrevTable__Row--23XpM {
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      font-size: 14px;
      color: #000000;
      line-height: 1.2;
      border-bottom: 1px solid #707070;
      overflow: hidden;
      min-height: 40px;
      animation: slideDown--Z9xQ3 .1s ease-in-out;
      padding: 4px 2px;
      margin-right: 5px; }

@keyframes slideDown--Z9xQ3 {
  from {
    opacity: 0;
    max-height: 20px; }
  to {
    opacity: 1;
    max-height: 43px; } }
      .FileUploadPanel--1qVAi .FileUploadPanel__PrevTable--2C18D .PrevTable__Row--23XpM .PrevTable__Date--2pmg5 {
        margin-right: 15px; }
      .FileUploadPanel--1qVAi .FileUploadPanel__PrevTable--2C18D .PrevTable__Row--23XpM .PrevTable__Name--obzUS {
        flex: 1;
        padding-right: 15px; }
      .FileUploadPanel--1qVAi .FileUploadPanel__PrevTable--2C18D .PrevTable__Row--23XpM .PrevTable__Transactions--1uegn {
        flex: 1; }
      .FileUploadPanel--1qVAi .FileUploadPanel__PrevTable--2C18D .PrevTable__Row--23XpM .PrevTable__ShowResultsBtn--3pXE8 {
        margin: 0 5px;
        text-align: center; }
      .FileUploadPanel--1qVAi .FileUploadPanel__PrevTable--2C18D .PrevTable__Row--23XpM .PrevTable__RemoveBtn--16XU5 {
        font-size: 18px;
        font-weight: 300;
        color: #F16DA5;
        cursor: pointer;
        padding: 10px; }
    .FileUploadPanel--1qVAi .FileUploadPanel__PrevTable--2C18D .PrevTable__ShowMoreBtn--2810- {
      padding-top: 15px;
      padding-bottom: 15px;
      margin-bottom: -30px;
      display: flex;
      flex-flow: row nowrap;
      justify-content: center;
      align-items: center;
      cursor: pointer; }
      .FileUploadPanel--1qVAi .FileUploadPanel__PrevTable--2C18D .PrevTable__ShowMoreBtn--2810- svg {
        color: #6A6A8A; }
    .FileUploadPanel--1qVAi .FileUploadPanel__PrevTable--2C18D .PrevTable__LoadingRow--2SZ6M {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 43px;
      color: #000000;
      border-bottom: 1px solid #707070; }
      .FileUploadPanel--1qVAi .FileUploadPanel__PrevTable--2C18D .PrevTable__LoadingRow--2SZ6M .Spinner--efZDo {
        font-size: 24px;
        animation: spin--2JE2B 1.5s infinite; }

@keyframes spin--2JE2B {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.FraudCheck--CTdki {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  grid-gap: 30px;
  padding: 0;
  margin-bottom: 20px; }

.ROW--uYBY4 {
  display: flex;
  flex-direction: row; }

.W50--lBERv {
  width: 50%; }
.ManualCheckPanel--319jN {
  display: flex;
  flex-direction: column; }
  .ManualCheckPanel--319jN Button {
    background: #7653ad 0% 0% no-repeat padding-box;
    border-radius: 6px;
    display: flex;
    cursor: pointer; }
  .ManualCheckPanel--319jN .ROWTOGGLE--3P0aJ {
    display: flex;
    flex-direction: row; }
  .ManualCheckPanel--319jN .TGL--1BQhI {
    width: 50%;
    margin-top: 10px;
    margin-bottom: 10px; }
  .ManualCheckPanel--319jN .ManualCheckPanel__Separator--1wIyC {
    margin: 24px 0;
    height: 1px;
    background: #707070; }
  .ManualCheckPanel--319jN .ManualCheckPanel__TopControls--3bd42 {
    display: flex;
    flex-flow: column nowrap;
    margin-top: 20px; }
    .ManualCheckPanel--319jN .ManualCheckPanel__TopControls--3bd42 .Top__Button--W1qIc {
      display: flex;
      flex-direction: row;
      justify-content: center;
      margin-top: 20px;
      margin-left: 20px;
      margin-right: 20px; }
  .ManualCheckPanel--319jN .ManualCheckPanel__Form--2qbAS {
    margin-top: 30px; }
    .ManualCheckPanel--319jN .ManualCheckPanel__Form--2qbAS .Form__Row--3ITuW {
      display: flex;
      flex-flow: row nowrap;
      justify-content: space-between;
      align-items: center; }
      .ManualCheckPanel--319jN .ManualCheckPanel__Form--2qbAS .Form__Row--3ITuW:not(:last-of-type) {
        margin-bottom: 8px; }
      .ManualCheckPanel--319jN .ManualCheckPanel__Form--2qbAS .Form__Row--3ITuW .Row__Label--3wj9n {
        font-size: 14px;
        color: #000000; }
      .ManualCheckPanel--319jN .ManualCheckPanel__Form--2qbAS .Form__Row--3ITuW .Row__Input--2wMTx {
        display: flex;
        align-items: center;
        flex-flow: row nowrap; }
        .ManualCheckPanel--319jN .ManualCheckPanel__Form--2qbAS .Form__Row--3ITuW .Row__Input--2wMTx input {
          width: 250px; }
    .ManualCheckPanel--319jN .ManualCheckPanel__Form--2qbAS .Form__Group--1HMSL {
      margin-bottom: 10px;
      margin-right: -10px; }
      .ManualCheckPanel--319jN .ManualCheckPanel__Form--2qbAS .Form__Group--1HMSL .Group__Header--3IBsC {
        font-size: 18px;
        font-weight: bold;
        margin-top: 18px;
        margin-bottom: 5px;
        letter-spacing: 1.1px;
        color: #000000;
        text-transform: uppercase; }
      .ManualCheckPanel--319jN .ManualCheckPanel__Form--2qbAS .Form__Group--1HMSL .Group__AddPerson--1wQtJ {
        margin-top: 5px;
        margin-bottom: 5px;
        font-size: 14px;
        color: #A487C2;
        width: 265px;
        display: flex;
        justify-content: flex-end;
        margin-right: 25px;
        cursor: pointer; }
      .ManualCheckPanel--319jN .ManualCheckPanel__Form--2qbAS .Form__Group--1HMSL .Group__RemovePerson--J-CuU {
        margin-top: 5px;
        margin-bottom: 5px;
        font-size: 18px;
        font-weight: 300;
        color: #F16DA5;
        cursor: pointer; }
        .ManualCheckPanel--319jN .ManualCheckPanel__Form--2qbAS .Form__Group--1HMSL .Group__RemovePerson--J-CuU.Hidden--18-ib {
          visibility: hidden; }
.ProvidersTable--tHxcG {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }
  .ProvidersTable--tHxcG .ProvidersTable__Column--3leSa {
    padding: 15px 15px;
    flex: 1;
    min-width: 350px; }
  .ProvidersTable--tHxcG .ProvidersTable__Item--_UTaP {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px; }
    .ProvidersTable--tHxcG .ProvidersTable__Item--_UTaP .Item__Icon--2c6PY {
      width: 50px;
      text-align: start; }
      .ProvidersTable--tHxcG .ProvidersTable__Item--_UTaP .Item__Icon--2c6PY img {
        width: 35px;
        height: 25px;
        -o-object-fit: contain;
        object-fit: contain; }
    .ProvidersTable--tHxcG .ProvidersTable__Item--_UTaP .Item__Text--2H7jH {
      grid-area: text;
      font-size: 13px;
      line-height: 1.71;
      color: #38373D;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      width: 100%;
      max-width: 150px; }
      .ProvidersTable--tHxcG .ProvidersTable__Item--_UTaP .Item__Text--2H7jH .Text__ProviderName--3rCbQ {
        color: #633aa2; }
      .ProvidersTable--tHxcG .ProvidersTable__Item--_UTaP .Item__Text--2H7jH a {
        color: #38373D;
        transition: color 200ms; }
        .ProvidersTable--tHxcG .ProvidersTable__Item--_UTaP .Item__Text--2H7jH a:hover {
          color: #633aa2; }
      .ProvidersTable--tHxcG .ProvidersTable__Item--_UTaP .Item__Text--2H7jH div {
        margin-right: 10px; }
    .ProvidersTable--tHxcG .ProvidersTable__Item--_UTaP .Item__Content--14MtP {
      margin-top: 10px;
      grid-area: picture;
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      min-width: 0;
      margin-left: 5px; }
    .ProvidersTable--tHxcG .ProvidersTable__Item--_UTaP .Item__Picture--3PuuT img {
      width: 65px;
      height: 65px;
      object-fit: contain;
      border-radius: 7px;
      margin-right: 10px; }
    .ProvidersTable--tHxcG .ProvidersTable__Item--_UTaP.Item--disabled--1iAqz .Item__Icon--2c6PY svg {
      color: #CDCED1; }
    .ProvidersTable--tHxcG .ProvidersTable__Item--_UTaP.Item--disabled--1iAqz .Item__Text--2H7jH, .ProvidersTable--tHxcG .ProvidersTable__Item--_UTaP.Item--disabled--1iAqz .Item__Text--2H7jH .Text__ProviderName--3rCbQ {
      color: #CDCED1; }
.HitList--1H07v .HitListHeader--3gqN4 {
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #000000;
  margin-top: 4px;
  margin-bottom: 15px; }

.HitList--1H07v .HitListTable--3AsKA {
  padding: 0;
  margin: 0;
  width: 100%;
  background: white;
  border-radius: 5px;
  border-collapse: collapse; }
  .HitList--1H07v .HitListTable--3AsKA td {
    padding: 9px 0;
    white-space: nowrap; }
    .HitList--1H07v .HitListTable--3AsKA td.Td--header--1xrLp {
      font-size: 14px;
      color: #272741; }
    .HitList--1H07v .HitListTable--3AsKA td.Td--text--2dRFT {
      font-size: 14px;
      color: #000000;
      text-align: left; }
    .HitList--1H07v .HitListTable--3AsKA td.Td--link--T66ku {
      text-align: right; }
.HitList--1aGnY {
  overflow-y: hidden;
  position: relative;
  height: auto;
  transition: max-height 0.5s; }
  .HitList--1aGnY.Collapsed--yKFmS:after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 90%);
    width: 100%;
    height: 125px; }
  .HitList--1aGnY .HitListHeader--1vqYv {
    font-size: 11px;
    line-height: 40px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #000000; }
  .HitList--1aGnY .HitListTable--3r7vj {
    padding: 0;
    margin: 0;
    width: 100%;
    background: white;
    border-radius: 5px;
    border-collapse: collapse; }
    .HitList--1aGnY .HitListTable--3r7vj .Tr--header--3r2FQ {
      font-size: 14px;
      color: #272741; }
      .HitList--1aGnY .HitListTable--3r7vj .Tr--header--3r2FQ .Value--1aNqq {
        font-weight: bold; }
    .HitList--1aGnY .HitListTable--3r7vj td {
      padding: 5px 5px;
      white-space: nowrap; }
    .HitList--1aGnY .HitListTable--3r7vj .Td--text--2Ebhu {
      font-size: 14px;
      color: #000000;
      text-align: left; }
    .HitList--1aGnY .HitListTable--3r7vj .Td--company--3gb-B {
      padding-left: 25px; }
    .HitList--1aGnY .HitListTable--3r7vj .Td--class--3wm9e {
      display: flex;
      align-items: center;
      justify-content: center; }
      .HitList--1aGnY .HitListTable--3r7vj .Td--class--3wm9e .ClassBadge--19tQ2 {
        width: 100px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid transparent;
        border-radius: 12px;
        background-color: #ffffff;
        font-size: 14px;
        color: #000000;
        text-transform: uppercase; }
        .HitList--1aGnY .HitListTable--3r7vj .Td--class--3wm9e .ClassBadge--19tQ2.ClassBadge--none--3m3Sg {
          border: 1px solid #dedede; }
        .HitList--1aGnY .HitListTable--3r7vj .Td--class--3wm9e .ClassBadge--19tQ2.ClassBadge--rejected--3xJby {
          background-color: #ffe9e9; }
        .HitList--1aGnY .HitListTable--3r7vj .Td--class--3wm9e .ClassBadge--19tQ2.ClassBadge--disputed--2P4v8 {
          background-color: #fff5df; }
        .HitList--1aGnY .HitListTable--3r7vj .Td--class--3wm9e .ClassBadge--19tQ2.ClassBadge--prevented--3cyMY {
          background-color: #e4ecfe; }
    .HitList--1aGnY .HitListTable--3r7vj .Td--remove--_PVlS {
      display: flex;
      align-items: center;
      justify-content: center; }
      .HitList--1aGnY .HitListTable--3r7vj .Td--remove--_PVlS .RemoveButton--3_BqB {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 90px;
        padding: 5px;
        border: 1px solid #fd9393;
        border-radius: 20px;
        font-size: 13px;
        color: #fd9393;
        cursor: pointer;
        text-align: center;
        box-shadow: 0 0 8px 0 white;
        transition: box-shadow 200ms; }
        .HitList--1aGnY .HitListTable--3r7vj .Td--remove--_PVlS .RemoveButton--3_BqB:hover {
          box-shadow: 0 0 8px 0 #fd9393; }
    .HitList--1aGnY .HitListTable--3r7vj .Td--link--2aRyV {
      text-align: right; }

.ShowButton--Rywi4 {
  width: 100%;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center; }
.Select--1PMg0 {
  position: relative; }
  .Select--1PMg0 .Select__Field--3VGMC {
    width: 102px;
    height: 34px;
    border-radius: 17px;
    outline: none;
    background-color: transparent;
    text-transform: uppercase;
    border: none;
    color: #000000;
    -webkit-appearance: none;
    appearance: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    position: relative;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 200ms; }
    .Select--1PMg0 .Select__Field--3VGMC.Select__Field--edit-row--31bMc {
      height: 35px;
      border-radius: 18px; }
      .Select--1PMg0 .Select__Field--3VGMC.Select__Field--edit-row--31bMc.Select__Field--default--25Gu9 {
        color: #ffffff;
        font-family: 'Myriad Pro', sans-serif;
        font-size: 14px;
        border: 1px solid #ffffff; }
        .Select--1PMg0 .Select__Field--3VGMC.Select__Field--edit-row--31bMc.Select__Field--default--25Gu9:hover {
          background-color: transparent; }
    .Select--1PMg0 .Select__Field--3VGMC .Select__Field__Icon--3iOZb {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 10px; }
    .Select--1PMg0 .Select__Field--3VGMC.Select__Field--default--25Gu9 {
      text-transform: none;
      border: 1px solid #dedede; }
      .Select--1PMg0 .Select__Field--3VGMC.Select__Field--default--25Gu9:hover {
        background-color: #fafafa; }
    .Select--1PMg0 .Select__Field--3VGMC.Select__Field--rejected--2VWR7 {
      background-color: #ffe9e9; }
      .Select--1PMg0 .Select__Field--3VGMC.Select__Field--rejected--2VWR7:hover {
        background-color: #f8e2e2; }
    .Select--1PMg0 .Select__Field--3VGMC.Select__Field--prevented--1y_eH {
      background-color: #e4ecfe; }
      .Select--1PMg0 .Select__Field--3VGMC.Select__Field--prevented--1y_eH:hover {
        background-color: #dfe6f8; }
    .Select--1PMg0 .Select__Field--3VGMC.Select__Field--disputed--1uhr6 {
      background-color: #fff5df; }
      .Select--1PMg0 .Select__Field--3VGMC.Select__Field--disputed--1uhr6:hover {
        background-color: #faf0db; }
  .Select--1PMg0 .Select__Dropdown--2AKsy {
    position: absolute;
    z-index: 5;
    padding: 7px 0;
    margin-left: -14px;
    width: 152px;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    background-color: #fff; }
    .Select--1PMg0 .Select__Dropdown--2AKsy.Select__Dropdown--down--1bgK- {
      margin-top: 10px;
      top: 100%; }
    .Select--1PMg0 .Select__Dropdown--2AKsy.Select__Dropdown--up--yTbaw {
      margin-bottom: 10px;
      bottom: 100%; }
    .Select--1PMg0 .Select__Dropdown--2AKsy .Select__Dropdown__Item--n0yI9 {
      width: calc(100% - 24px);
      cursor: pointer;
      padding: 7px 12px;
      border: 0;
      background-color: #fff;
      transition: background-color 200ms; }
      .Select--1PMg0 .Select__Dropdown--2AKsy .Select__Dropdown__Item--n0yI9:hover {
        background-color: #f5f5f5; }
      .Select--1PMg0 .Select__Dropdown--2AKsy .Select__Dropdown__Item--n0yI9 .Icon--2xpNJ {
        width: 10px;
        height: 10px;
        border-radius: 5px;
        margin-right: 12px;
        display: inline-block;
        box-shadow: 0 0 2px #000000; }
        .Select--1PMg0 .Select__Dropdown--2AKsy .Select__Dropdown__Item--n0yI9 .Icon--2xpNJ.Icon--rejected--1nHqZ {
          background: #fd9393; }
        .Select--1PMg0 .Select__Dropdown--2AKsy .Select__Dropdown__Item--n0yI9 .Icon--2xpNJ.Icon--prevented--1w-uD {
          background: #e4ecfe; }
        .Select--1PMg0 .Select__Dropdown--2AKsy .Select__Dropdown__Item--n0yI9 .Icon--2xpNJ.Icon--disputed--3RnP9 {
          background: #f4d670; }
      .Select--1PMg0 .Select__Dropdown--2AKsy .Select__Dropdown__Item--n0yI9 .Title--1lSYw {
        color: #38373D;
        font-size: 14px;
        text-transform: uppercase;
        display: inline-block; }
      .Select--1PMg0 .Select__Dropdown--2AKsy .Select__Dropdown__Item--n0yI9 .Reasons--2CN3v {
        margin: 7px 0;
        padding-left: 35px; }
        .Select--1PMg0 .Select__Dropdown--2AKsy .Select__Dropdown__Item--n0yI9 .Reasons--2CN3v p {
          text-transform: uppercase;
          font-size: 11px;
          color: #000000; }
          .Select--1PMg0 .Select__Dropdown--2AKsy .Select__Dropdown__Item--n0yI9 .Reasons--2CN3v p:last-child {
            margin-bottom: 0; }
      .Select--1PMg0 .Select__Dropdown--2AKsy .Select__Dropdown__Item--n0yI9:last-child .Reasons--2CN3v {
        margin-bottom: 0; }
.FraudTopPanel--2tuQS {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  padding: 20px 0; }
  .FraudTopPanel--2tuQS .FraudTopPanel__Data--1V8EM {
    display: flex;
    align-items: center; }
    .FraudTopPanel--2tuQS .FraudTopPanel__Data--1V8EM div {
      margin-right: 20px; }
  .FraudTopPanel--2tuQS .FraudTopPanel__Class--37gqO {
    display: inline-flex;
    align-items: center; }
    .FraudTopPanel--2tuQS .FraudTopPanel__Class--37gqO .Label--3B-HO {
      font-weight: 400;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1.1px;
      margin-right: 20px; }

.Select--3Vo4e {
  width: 102px;
  height: 34px;
  border-radius: 17px;
  outline: none;
  background-color: transparent;
  text-transform: uppercase;
  border: none;
  color: #000000;
  -webkit-appearance: none;
  appearance: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
  position: relative;
  border: 1px solid transparent; }
  .Select--3Vo4e.Select--none--DhRYr {
    border: 1px solid #dedede; }
  .Select--3Vo4e.Select--rejected--1eUrM {
    background-color: #ffe9e9; }
  .Select--3Vo4e.Select--prevented--1AFXH {
    background-color: #e4ecfe; }
  .Select--3Vo4e.Select--disputed--3Gt36 {
    background-color: #fff5df; }
.Submit_Button--1IRKG {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 10px;
  width: 100%; }
  .Submit_Button--1IRKG a > div {
    font-size: 16px;
    font-weight: bold; }
  .Submit_Button--1IRKG div {
    background: #7653AD; }
.MatchesPanel--2KmS9 {
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  height: auto; }
  .MatchesPanel--2KmS9 .MatchesPanel__Statistics--1dF-_ {
    flex: 1;
    border-right: 1px solid #f5f5fc;
    padding-right: 30px;
    display: flex;
    flex-flow: column;
    justify-content: space-between; }
    .MatchesPanel--2KmS9 .MatchesPanel__Statistics--1dF-_ .Statistics__Row--xJPua {
      display: flex;
      justify-content: space-between;
      width: 100%;
      padding-bottom: 10px; }
      .MatchesPanel--2KmS9 .MatchesPanel__Statistics--1dF-_ .Statistics__Row--xJPua.Top--2eMds {
        align-items: flex-start; }
      .MatchesPanel--2KmS9 .MatchesPanel__Statistics--1dF-_ .Statistics__Row--xJPua.Bottom--1Figw {
        align-items: flex-end; }
      .MatchesPanel--2KmS9 .MatchesPanel__Statistics--1dF-_ .Statistics__Row--xJPua .Statistics__Cell--1_NWG .MatchesFound--number--qnEnk {
        font-size: 45px;
        color: #6d6c72;
        font-weight: 300; }
      .MatchesPanel--2KmS9 .MatchesPanel__Statistics--1dF-_ .Statistics__Row--xJPua .Statistics__Cell--1_NWG .MatchesFound--title--1D5U7 {
        font-size: 11px;
        color: #000000;
        line-height: 30px;
        letter-spacing: 1.1px;
        text-transform: uppercase; }
      .MatchesPanel--2KmS9 .MatchesPanel__Statistics--1dF-_ .Statistics__Row--xJPua .Statistics__Cell--1_NWG .Fields--number--1dVVE {
        font-size: 24px;
        color: #6d6c72;
        text-align: right;
        font-weight: 300; }
      .MatchesPanel--2KmS9 .MatchesPanel__Statistics--1dF-_ .Statistics__Row--xJPua .Statistics__Cell--1_NWG .Fields--title--1JHVL {
        font-size: 14px;
        color: #CDCED1;
        line-height: 20px;
        text-align: right; }
    .MatchesPanel--2KmS9 .MatchesPanel__Statistics--1dF-_ .TransactionID--2kQmT {
      display: flex;
      align-items: center; }
      .MatchesPanel--2KmS9 .MatchesPanel__Statistics--1dF-_ .TransactionID--2kQmT .Id--number--3Kceb {
        display: inline-flex;
        font-size: 14px;
        line-height: 20px;
        color: #CDCED1; }
      .MatchesPanel--2KmS9 .MatchesPanel__Statistics--1dF-_ .TransactionID--2kQmT .Id--title--2LTYH {
        display: inline-flex;
        font-size: 11px;
        color: #000000;
        line-height: 20px;
        letter-spacing: 1.1px;
        text-transform: uppercase;
        padding-right: 5px; }
  .MatchesPanel--2KmS9 .MatchesPanel__List--2A4vM {
    flex: 2;
    padding-left: 30px; }
.FraudTransactionDetails__Wrapper--Hd0W9 {
  display: flex;
  flex-flow: row nowrap;
  height: 100%; }
  .FraudTransactionDetails__Wrapper--Hd0W9 .FraudTransactionDetails--WwE5U {
    flex-flow: column nowrap;
    padding: 0;
    flex: 1; }
    .FraudTransactionDetails__Wrapper--Hd0W9 .FraudTransactionDetails--WwE5U .FraudTransactionDetails__Row--1olsj {
      display: flex;
      flex-flow: row nowrap; }
      .FraudTransactionDetails__Wrapper--Hd0W9 .FraudTransactionDetails--WwE5U .FraudTransactionDetails__Row--1olsj > .Row__Column--2-Guc {
        flex: 1; }
        .FraudTransactionDetails__Wrapper--Hd0W9 .FraudTransactionDetails--WwE5U .FraudTransactionDetails__Row--1olsj > .Row__Column--2-Guc:not(:first-of-type) {
          margin-left: -80px; }
        .FraudTransactionDetails__Wrapper--Hd0W9 .FraudTransactionDetails--WwE5U .FraudTransactionDetails__Row--1olsj > .Row__Column--2-Guc > * {
          margin-bottom: 30px; }
    .FraudTransactionDetails__Wrapper--Hd0W9 .FraudTransactionDetails--WwE5U .FraudTransactionDetails__Title--3Azwy {
      font-size: 18px;
      line-height: 1.33;
      color: #737A85;
      margin-bottom: 20px; }
.TransactionPanel--2YHnN .TransactionPanel__Header--3SOrj {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: space-between; }

.TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 32px; }
  .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O {
    flex: 1;
    display: flex;
    flex-flow: column nowrap; }
    .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O:first-child {
      padding-right: 30px; }
    .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O:last-child {
      padding-left: 30px; }
    .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Fields__Header--1nJr7 {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 1.1px;
      color: #000000;
      text-transform: uppercase;
      margin-top: 40px;
      margin-bottom: 15px; }
      .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Fields__Header--1nJr7:first-child {
        margin-top: 0; }
    .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Fields__Row--19rFY {
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: space-between;
      padding: 4px 0;
      height: 35px; }
      .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Fields__Row--19rFY.group-end--HWULi {
        margin-bottom: 44px; }
      .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Fields__Row--19rFY .Row__Title--2Je6L {
        font-size: 14px;
        color: #000000; }
      .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Fields__Row--19rFY .Row__Input--2_zDq {
        width: 280px;
        min-width: 280px;
        position: relative; }
        .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Fields__Row--19rFY .Row__Input--2_zDq.Inline--2IdK1 {
          display: inline-flex; }
        .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Fields__Row--19rFY .Row__Input--2_zDq .Row__Input__Input--Rfa3p {
          width: 75px; }
        .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Fields__Row--19rFY .Row__Input--2_zDq .Row__Input__Select--uWsHE {
          width: calc(100% - 75px); }
        .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Fields__Row--19rFY .Row__Input--2_zDq .Group__AddPerson--ta122 {
          margin: 5px;
          font-size: 14px;
          color: #633aa2;
          width: 265px;
          cursor: pointer; }
        .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Fields__Row--19rFY .Row__Input--2_zDq .Group__RemovePerson--2viLo {
          position: absolute;
          margin: 5px;
          font-size: 18px;
          font-weight: 300;
          color: #F16DA5;
          cursor: pointer;
          left: calc(100% + 3px);
          top: 3px; }
          .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Fields__Row--19rFY .Row__Input--2_zDq .Group__RemovePerson--2viLo.Hidden--3lyOX {
            visibility: hidden; }
    .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Passenger__Form--3lX-2 {
      position: relative;
      background-color: #f9f9f9;
      border: 1px solid #e1e1e1;
      border-radius: 4px;
      margin-right: -23px;
      padding: 19px 23px;
      margin-bottom: 11px; }
      .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Passenger__Form--3lX-2 .Form__Close--19l6- {
        font-size: 18px;
        line-height: 12px;
        color: #fd9393;
        position: absolute;
        top: 0;
        right: 0;
        padding: 10px;
        cursor: pointer; }
      .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Passenger__Form--3lX-2 .Form__Header--190hM {
        text-transform: uppercase;
        margin-bottom: 11px;
        font-size: 11px;
        letter-spacing: 1.1px;
        color: #000000; }
      .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Passenger__Form--3lX-2 .Form__Row--3f8VO {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: space-between;
        padding: 4px 0; }
        .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Passenger__Form--3lX-2 .Form__Row--3f8VO.group-end--HWULi {
          margin-bottom: 44px; }
        .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Passenger__Form--3lX-2 .Form__Row--3f8VO .Row__Title--2Je6L {
          font-size: 14px;
          color: #000000; }
        .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Passenger__Form--3lX-2 .Form__Row--3f8VO .Row__Input--2_zDq {
          width: 250px; }
    .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Passenger__AddButton--1PuWX {
      position: relative;
      background-color: #f9f9f9;
      border: 1px solid #e1e1e1;
      border-radius: 4px;
      margin-right: -23px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #789efb;
      cursor: pointer;
      transition: background-color 200ms; }
      .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Passenger__AddButton--1PuWX:hover {
        background-color: #f5f5f5; }
      .TransactionPanel--2YHnN .TransactionPanel__Fields--3jFoq .Fields__Column--1Fv7O .Passenger__AddButton--1PuWX .AddButton__Icon--2ODZF {
        font-size: 12px;
        margin-right: 10px; }

.TransactionPanel--2YHnN .Submit_Button--4-KYn {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center; }
.ROW--TIZVb {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }
  .ROW--TIZVb .Label--3K6l3 {
    font-weight: bold;
    margin-right: 10px; }

.COL--rf8DI {
  display: flex;
  flex-direction: column; }

.FONTSIZE--3WAQW {
  font-size: 18px; }

.H2HEADER--3c4ZC {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px; }

.BOLD--3K0o7 {
  font-weight: bold; }

.PURPLE--120l6 {
  color: #633aa2; }

.LIGHTPURPLE--s-ht4 {
  color: #decfed; }

.BLACK--3rwwp {
  color: black; }

.MARGIN--2-VIm {
  margin-top: 10px;
  margin-bottom: 20px; }

.W100END--125fM {
  width: 100px;
  align-items: flex-end; }

.W50--1FQ5R {
  width: 50%;
  margin-top: 10px;
  margin-bottom: 10px; }

.W66--3M84J {
  width: 66%;
  margin-top: 10px;
  margin-bottom: 10px; }

.W33--2M4qB {
  width: 33%;
  margin-top: 10px;
  margin-bottom: 10px; }

.ERRORTEXT--WGRNL {
  color: red;
  align-self: flex-end;
  margin-bottom: 5px; }

.LEFTARROW--1nGOh {
  transform: scale(-1, 1); }

.DISABLEDARROW--WjR1Y path {
  fill: #9e9e9e;
  color: #9e9e9e; }

.ICON_PURPLE--6-RRH {
  margin: 10px; }

.ICON_LIGHTPURPLE--bKfhZ {
  margin: 10px; }

.ICON--3Fq7L {
  margin: 10px; }

.ICON_PURPLE--6-RRH path {
  fill: #633aa2;
  color: #633aa2; }

.ICON_LIGHTPURPLE--bKfhZ path {
  fill: #decfed;
  color: #decfed; }

.ICON--3Fq7L path {
  fill: black;
  color: black; }

.CENTERICON--h_2s_ {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center; }

.CENTER--1DGN1 {
  align-items: center; }

.RESULTS_FILE--2JelY {
  font-size: 14px;
  font-weight: bold;
  margin-top: 25px;
  text-transform: uppercase; }

.FILE-HEADER--2L71k {
  font-size: 13px;
  margin-top: 20px;
  text-transform: uppercase; }

.MatchesPanel--lc26i {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  height: auto; }
  .MatchesPanel--lc26i .MatchesPanel__Content--VgtiR {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "general stat" "data1 stat" "data2 data2 " "data3 data3 " "data4 data5" "data6 data5 "; }
    .MatchesPanel--lc26i .MatchesPanel__Content--VgtiR > div:nth-child(n) {
      padding: 15px; }
    .MatchesPanel--lc26i .MatchesPanel__Content--VgtiR > div:nth-child(1) {
      grid-area: general;
      border-right: #754FAB solid 1px;
      border-bottom: #754FAB solid 1px; }
    .MatchesPanel--lc26i .MatchesPanel__Content--VgtiR > div:nth-child(2) {
      grid-area: stat;
      border-bottom: #754FAB solid 1px; }
    .MatchesPanel--lc26i .MatchesPanel__Content--VgtiR > div:nth-child(3) {
      grid-area: data1;
      border-right: #754FAB solid 1px;
      border-bottom: #754FAB solid 1px; }
    .MatchesPanel--lc26i .MatchesPanel__Content--VgtiR > div:nth-child(4) {
      grid-area: data2;
      border-bottom: #754FAB solid 1px; }
    .MatchesPanel--lc26i .MatchesPanel__Content--VgtiR > div:nth-child(5) {
      grid-area: data3;
      border-bottom: #754FAB solid 1px; }
    .MatchesPanel--lc26i .MatchesPanel__Content--VgtiR > div:nth-child(6) {
      grid-area: data4;
      border-right: #754FAB solid 1px;
      border-bottom: #754FAB solid 1px; }
    .MatchesPanel--lc26i .MatchesPanel__Content--VgtiR > div:nth-child(7) {
      grid-area: data5;
      border-bottom: #754FAB solid 1px; }
    .MatchesPanel--lc26i .MatchesPanel__Content--VgtiR > div:nth-child(8) {
      grid-area: data6;
      border-right: #754FAB solid 1px;
      border-bottom: #754FAB solid 1px; }
  .MatchesPanel--lc26i .Text__link--3PPHE {
    color: #a487c2;
    cursor: pointer; }
  .MatchesPanel--lc26i .Results__ResultsFor--2FG7l {
    display: flex;
    margin-right: 10px; }
  .MatchesPanel--lc26i .Results__Download--2ecue {
    margin-left: 35px; }
  .MatchesPanel--lc26i .Results__Title--262ot {
    font-size: 15px;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 10px;
    text-transform: uppercase; }
    .MatchesPanel--lc26i .Results__Title--262ot svg {
      margin-right: 5px; }
  .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 {
    margin: -30px -30px 0;
    padding: 20px 30px;
    border-top-right-radius: 23px;
    border-top-left-radius: 23px;
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 0;
    background: white; }
    .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7:after {
      content: "";
      width: 100%;
      height: 20px;
      position: absolute;
      bottom: -20px;
      left: 0;
      right: 0;
      background: transparent linear-gradient(180deg, #7653AD -10%, #FFFFFF00 100%) 0% 0% no-repeat padding-box; }
    .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo {
      flex: 1;
      padding-right: 30px;
      display: flex;
      flex-flow: row; }
      .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo .DIVIDER--1KGeA {
        width: 100%;
        height: 1px;
        background-color: black; }
      .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo .RESULTS_DIVIDER--2Dtpk {
        margin-top: 20px; }
      .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo .DATABUTTON--1LXp3 {
        height: 44px;
        max-height: 44px;
        width: 110px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin: 0 10px;
        background-color: transparent;
        cursor: pointer;
        box-shadow: 0px 0px 6px #00000029;
        border: none;
        border-radius: 17px; }
        .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo .DATABUTTON--1LXp3.active--1Ho0O {
          background: #754FAB; }
        .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo .DATABUTTON--1LXp3:focus {
          border: none;
          outline: 0; }
        .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo .DATABUTTON--1LXp3 .IconWrapper--28VvN {
          width: 16px;
          padding: 0 5px;
          margin-right: 5px; }
      .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo .Logo--2VIzg {
        width: 67px;
        height: 21px; }
      .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo .Statistics__Row--2usvY {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding-bottom: 10px; }
        .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo .Statistics__Row--2usvY.Top--2cPCp {
          align-items: flex-start; }
        .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo .Statistics__Row--2usvY.Bottom--20_52 {
          align-items: flex-end; }
        .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo .Statistics__Row--2usvY .Statistics__Cell--1LAyz .MatchesFound--number--1xeIV {
          font-size: 45px;
          color: #6d6c72;
          font-weight: 300; }
        .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo .Statistics__Row--2usvY .Statistics__Cell--1LAyz .MatchesFound--title--2JYyI {
          font-size: 11px;
          color: #000000;
          line-height: 30px;
          letter-spacing: 1.1px;
          text-transform: uppercase; }
        .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo .Statistics__Row--2usvY .Statistics__Cell--1LAyz .Fields--number--1RMfj {
          font-size: 24px;
          color: #6d6c72;
          text-align: right;
          font-weight: 300; }
        .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo .Statistics__Row--2usvY .Statistics__Cell--1LAyz .Fields--title--pC-uA {
          font-size: 14px;
          color: #CDCED1;
          line-height: 20px;
          text-align: right; }
      .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo .TransactionID--3m3-n {
        display: flex;
        align-items: center; }
        .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo .TransactionID--3m3-n .Id--number--2U1kv {
          display: inline-flex;
          font-size: 14px;
          line-height: 20px;
          color: #CDCED1; }
        .MatchesPanel--lc26i .MatchesPanel__Header--2xxF7 .MatchesPanel__Statistics--2dGOo .TransactionID--3m3-n .Id--title--fbIBt {
          display: inline-flex;
          font-size: 11px;
          color: #000000;
          line-height: 20px;
          letter-spacing: 1.1px;
          text-transform: uppercase;
          padding-right: 5px; }
  .MatchesPanel--lc26i .MatchesPanel__List--2RmDc {
    margin-top: 20px; }

.Content .Panel {
  padding: 5px 30px; }
.TransactionsListPagination--x_0k7 {
  min-width: 200px;
  width: 200px;
  height: 57px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start; }
  .TransactionsListPagination--x_0k7 .Button--1hByF {
    font-size: 14px;
    color: #ffffff;
    width: 50px;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none; }
    .TransactionsListPagination--x_0k7 .Button--1hByF:hover {
      color: #633AA2; }
    .TransactionsListPagination--x_0k7 .Button--1hByF:first-child {
      border-right: 1px solid #fff; }
    .TransactionsListPagination--x_0k7 .Button--1hByF.disabled--18vbg {
      cursor: default;
      color: #adadad; }
.TransactionDetails__Header--1Fzm2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%; }
  .TransactionDetails__Header--1Fzm2 .Item--330sr {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    height: 100%; }
    .TransactionDetails__Header--1Fzm2 .Item--330sr .Back--3h0Jp a {
      color: #fff;
      display: flex;
      align-items: center;
      cursor: pointer;
      padding-right: 40px;
      height: 100%; }
      .TransactionDetails__Header--1Fzm2 .Item--330sr .Back--3h0Jp a .Icon--2tJde {
        margin-right: 15px; }
    .TransactionDetails__Header--1Fzm2 .Item--330sr .Btn--3C2wO {
      margin: 0 10px; }
.TransactionEdit__Wrapper--1UsiH {
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  height: 100%; }
  .TransactionEdit__Wrapper--1UsiH .TransactionEdit--1DE1K {
    flex: 1;
    overflow-y: auto;
    min-width: 965px; }
    .TransactionEdit__Wrapper--1UsiH .TransactionEdit--1DE1K .TransactionEdit__Content--Y4P9_ {
      display: grid;
      grid-template-columns: 1fr;
      grid-auto-rows: min-content;
      grid-gap: 30px; }
    .TransactionEdit__Wrapper--1UsiH .TransactionEdit--1DE1K .TransactionEdit__Btns--1jHiU {
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      align-items: center; }
      .TransactionEdit__Wrapper--1UsiH .TransactionEdit--1DE1K .TransactionEdit__Btns--1jHiU > .Btn--1-kfv {
        margin-left: 20px; }
.TransactionEdit__Header--1gaAt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%; }
  .TransactionEdit__Header--1gaAt .Item--3mUVz {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    height: 100%; }
    .TransactionEdit__Header--1gaAt .Item--3mUVz .Back--3yy0- a {
      color: #fff;
      display: flex;
      align-items: center;
      cursor: pointer;
      padding-right: 40px;
      height: 100%; }
      .TransactionEdit__Header--1gaAt .Item--3mUVz .Back--3yy0- a .Icon--2lRLh {
        margin-right: 15px; }
    .TransactionEdit__Header--1gaAt .Item--3mUVz .Btn--1xL_7 {
      margin: 0 10px; }
.Filters--2ot2m {
  background: #fff;
  border-bottom-left-radius: 4px;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.07);
  position: absolute;
  top: 0;
  left: 0;
  min-width: calc(100vw - 550px);
  max-width: calc(100vw - 550px);
  margin-left: 30px;
  padding: 25px;
  z-index: 5;
  border-radius: 23px;
  box-sizing: border-box;
  overflow-y: visible !important; }
  .Filters--2ot2m .Filters__SupportRow--1E4yS {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .Filters--2ot2m .Filters__SupportRow--1E4yS.Top--2Lwsl {
      text-transform: uppercase;
      margin-bottom: 18px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1.1px;
      color: #000000; }
    .Filters--2ot2m .Filters__SupportRow--1E4yS.Bottom--smDA5 {
      margin-top: 17px;
      font-size: 14px; }
  .Filters--2ot2m .Filters__Rows--13-1D .Filters__Rows__Line--iWg8_ {
    display: flex;
    flex-direction: column;
    position: relative; }
    .Filters--2ot2m .Filters__Rows--13-1D .Filters__Rows__Line--iWg8_:not(:last-child) {
      margin-bottom: 12px; }
      .Filters--2ot2m .Filters__Rows--13-1D .Filters__Rows__Line--iWg8_:not(:last-child) .Filters__Buttons--ATxjG {
        visibility: hidden; }
    .Filters--2ot2m .Filters__Rows--13-1D .Filters__Rows__Line--iWg8_:last-child .Filters__Buttons--ATxjG {
      visibility: visible;
      display: flex;
      flex: 1;
      flex-direction: row;
      justify-content: flex-end;
      align-items: center;
      transition: none; }
      .Filters--2ot2m .Filters__Rows--13-1D .Filters__Rows__Line--iWg8_:last-child .Filters__Buttons--ATxjG .Item--RTJaL.Blue--2FJvv {
        cursor: pointer;
        color: #A487C2; }
      .Filters--2ot2m .Filters__Rows--13-1D .Filters__Rows__Line--iWg8_:last-child .Filters__Buttons--ATxjG .Item--RTJaL .Item__Button--beLZp {
        font-size: 14px;
        width: 114px;
        height: 35px;
        padding: 0 40px;
        margin-left: 20px; }
    .Filters--2ot2m .Filters__Rows--13-1D .Filters__Rows__Line--iWg8_ .FieldCross--1CcXg {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 10px;
      cursor: pointer; }
    .Filters--2ot2m .Filters__Rows--13-1D .Filters__Rows__Line--iWg8_ .Filters__Rows__Line__Row--1QN7v {
      display: flex;
      flex-direction: row;
      margin-bottom: 15px; }
      .Filters--2ot2m .Filters__Rows--13-1D .Filters__Rows__Line--iWg8_ .Filters__Rows__Line__Row--1QN7v .Filters__Rows__Line__Input--wMt4n {
        margin-left: 20px;
        display: flex;
        flex: 1;
        width: auto; }
.TransactionsTable__Wrapper--oP2-- {
  border-radius: 23px;
  margin-left: 30px;
  padding-bottom: 5px;
  padding-top: 5px;
  height: calc(100vh - 140px);
  overflow-y: auto;
  max-width: calc(100vw - 330px);
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .TransactionsTable__Wrapper--oP2-- .Download__Links--QfLZB {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 10px;
    margin-top: -10px; }
    .TransactionsTable__Wrapper--oP2-- .Download__Links--QfLZB .Text__link--TIcxU {
      color: #a487c2;
      cursor: pointer;
      margin-left: 20px; }
  .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY {
    max-width: calc(100vw - 330px);
    overflow-x: auto;
    overflow-y: auto;
    border-radius: 5px; }
    .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc {
      padding: 0;
      margin: 0;
      width: 100%;
      background: white;
      border: 0;
      border-collapse: collapse;
      position: relative; }
      .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc thead th {
        position: sticky;
        top: 0;
        background: white; }
        .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc thead th > div {
          border-bottom: 1px solid #633AA2; }
      .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .Table__Tr--1V-lZ.Table__Tr--active--XZlpj {
        box-shadow: 0 0 15px -3px rgba(0, 0, 0, 0.07);
        transition: box-shadow 0.25s ease-in-out; }
      .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .Table__Tr--1V-lZ .Table__Tr__Th--qk9-w {
        min-width: 50px;
        height: 45px;
        border-bottom: 1px solid #633AA2;
        border-right: 1px solid #633AA2;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1.1px;
        white-space: nowrap; }
        .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .Table__Tr--1V-lZ .Table__Tr__Th--qk9-w:last-of-type {
          border-right: 1px solid transparent; }
        .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .Table__Tr--1V-lZ .Table__Tr__Th--qk9-w > div {
          width: 100%;
          height: 100%;
          display: flex;
          align-items: center;
          justify-content: flex-start;
          padding: 0 15px; }
        .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .Table__Tr--1V-lZ .Table__Tr__Th--qk9-w.Table__Tr__Th--can-sort--36HFx {
          cursor: pointer; }
        .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .Table__Tr--1V-lZ .Table__Tr__Th--qk9-w.Table__Tr__Th--fixed-small--6op55 {
          font-size: 14px; }
          .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .Table__Tr--1V-lZ .Table__Tr__Th--qk9-w.Table__Tr__Th--fixed-small--6op55 > div {
            justify-content: center;
            padding: 0; }
        .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .Table__Tr--1V-lZ .Table__Tr__Th--qk9-w.Table__Tr__Th--settings--2ZFiX {
          cursor: pointer; }
        .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .Table__Tr--1V-lZ .Table__Tr__Th--qk9-w .Icon--274LG {
          display: inline-flex;
          margin-left: 3px; }
      .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .Table__Tr--1V-lZ .Table__Tr__Td--3A1V3 {
        font-size: 14px;
        height: 55px;
        border-bottom: 1px solid #633AA2;
        border-right: 1px solid #633AA2;
        white-space: nowrap; }
        .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .Table__Tr--1V-lZ .Table__Tr__Td--3A1V3:last-of-type {
          border-right: 1px solid transparent; }
        .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .Table__Tr--1V-lZ .Table__Tr__Td--3A1V3.Table__Tr__Td--fixed-small--3_LmQ > div a {
          justify-content: center; }
        .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .Table__Tr--1V-lZ .Table__Tr__Td--3A1V3 > div {
          width: 100%;
          height: 100%;
          display: flex;
          align-items: center;
          justify-content: center; }
          .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .Table__Tr--1V-lZ .Table__Tr__Td--3A1V3 > div a {
            display: flex;
            align-items: center;
            padding: 0 15px;
            width: 100%;
            height: 100%;
            margin: 0;
            color: #000000; }
        .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .Table__Tr--1V-lZ .Table__Tr__Td--3A1V3 .Table__Tr__Td--name--3O7k5 {
          font-size: 17px; }
        .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .Table__Tr--1V-lZ .Table__Tr__Td--3A1V3 .Table__Tr__Td--email--1yiQb {
          font-size: 12px; }
        .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .Table__Tr--1V-lZ .Table__Tr__Td--3A1V3 .Table__Tr__Td--action--3PlW_ {
          font-size: 22px; }
      .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .TransactionsTable__Footer--peGrj {
        padding: 0;
        margin: 0; }
        .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .TransactionsTable__Footer--peGrj .TransactionsTable__Footer__Td--1WwCv {
          padding: 0;
          margin: 0; }
          .TransactionsTable__Wrapper--oP2-- .TransactionsTable__Container--3kmzY .TransactionsTable--yAnvc .TransactionsTable__Footer--peGrj .TransactionsTable__Footer__Td--1WwCv .TransactionCount--2-5HH {
            margin: 11px 13px;
            font-size: 12px;
            color: #CDCED1; }

.TransactionsTable__Footer__Td--1WwCv {
  width: 100%; }

.Fields--2C7MR {
  display: flex;
  flex-flow: row nowrap;
  align-items: center; }
  .Fields--2C7MR .Fields__Item--QAnA7 {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    margin-right: 10px; }
    .Fields--2C7MR .Fields__Item--QAnA7:last-child {
      margin-right: 0; }
    .Fields--2C7MR .Fields__Item--QAnA7 .Item__Value--3SNxJ {
      font-size: 14px;
      color: #000000;
      margin-bottom: 5px; }
    .Fields--2C7MR .Fields__Item--QAnA7 .Item__Title--1M5Ec {
      font-size: 12px;
      color: #000000;
      font-style: italic; }
.Table__EditRow--3AvEb {
  background-image: linear-gradient(45deg, #789EFB, #8778FB);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  height: auto;
  display: flex;
  padding: 17px 23px 16px 30px;
  margin: 0; }
  .Table__EditRow--3AvEb .Table__EditRow__Item--OtVgZ {
    flex: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .Table__EditRow--3AvEb .Table__EditRow__Item--OtVgZ:first-child {
      border-right: 1px solid #99a2fc;
      padding-right: 40px; }
    .Table__EditRow--3AvEb .Table__EditRow__Item--OtVgZ:last-child {
      padding-left: 40px; }
    .Table__EditRow--3AvEb .Table__EditRow__Item--OtVgZ .Item__Title--2U-ux {
      color: #fff;
      font-family: 'Myriad Pro', sans-serif;
      font-size: 14px; }
    .Table__EditRow--3AvEb .Table__EditRow__Item--OtVgZ .Item__ButtonsSet--d1Y8H {
      display: flex; }
      .Table__EditRow--3AvEb .Table__EditRow__Item--OtVgZ .Item__ButtonsSet--d1Y8H .Item__Button--1LVr4 {
        padding: 0 22px;
        min-width: 80px; }
      .Table__EditRow--3AvEb .Table__EditRow__Item--OtVgZ .Item__ButtonsSet--d1Y8H .Margin--2R_mf {
        min-width: 15px; }
      .Table__EditRow--3AvEb .Table__EditRow__Item--OtVgZ .Item__ButtonsSet--d1Y8H .Select--1RgXK {
        position: relative; }
        .Table__EditRow--3AvEb .Table__EditRow__Item--OtVgZ .Item__ButtonsSet--d1Y8H .Select--1RgXK .Arrow--2YhcS {
          position: absolute;
          top: 50%;
          right: 10px;
          transform: translateY(-50%); }
.ResultPage__Header--2sx1K {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%; }
  .ResultPage__Header--2sx1K .Item--2QYwQ {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    height: 100%; }
    .ResultPage__Header--2sx1K .Item--2QYwQ .Back--1UE8X a {
      color: #fff;
      display: flex;
      align-items: center;
      cursor: pointer;
      padding-right: 40px;
      height: 100%; }
      .ResultPage__Header--2sx1K .Item--2QYwQ .Back--1UE8X a .Icon--2jyoA {
        margin-right: 15px; }
    .ResultPage__Header--2sx1K .Item--2QYwQ .Name--2E1fX {
      color: #fff; }
    .ResultPage__Header--2sx1K .Item--2QYwQ .Divider--3M8Bk {
      width: 0;
      height: 24px;
      border: solid 2px #482C72;
      margin: 0 30px; }
    .ResultPage__Header--2sx1K .Item--2QYwQ .Filter--1pqRk {
      display: flex;
      align-items: center;
      cursor: pointer;
      height: 100%;
      color: #482C72; }
      .ResultPage__Header--2sx1K .Item--2QYwQ .Filter--1pqRk.active--2DPtT {
        color: #fff; }
      .ResultPage__Header--2sx1K .Item--2QYwQ .Filter--1pqRk:hover {
        color: #fff; }
      .ResultPage__Header--2sx1K .Item--2QYwQ .Filter--1pqRk .Icon--2jyoA {
        margin-left: 10px; }
    .ResultPage__Header--2sx1K .Item--2QYwQ .Count--1MAXl {
      color: #fff;
      padding-right: 25px; }
.ColumnsSettings--1i_U1 {
  position: relative;
  box-sizing: border-box;
  width: 340px;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: #ffffff;
  padding: 15px; }
  .ColumnsSettings--1i_U1 .ColumnsSettings__Header--2GJ09 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between; }
    .ColumnsSettings--1i_U1 .ColumnsSettings__Header--2GJ09 .Header__Text--16wTX {
      font-size: 14px;
      line-height: 18px;
      color: #6a6a8a; }
    .ColumnsSettings--1i_U1 .ColumnsSettings__Header--2GJ09 .Header__Close--3DwXj {
      font-size: 18px;
      cursor: pointer; }
  .ColumnsSettings--1i_U1 .ColumnsSettings__List--3XF1L {
    margin-top: 18px;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    max-height: 50vh;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #F2F2F2;
    border-radius: 4px; }
    .ColumnsSettings--1i_U1 .ColumnsSettings__List--3XF1L .ColumnsSettings__Item--32V2i {
      position: relative;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: space-between;
      width: calc(100% - 24px);
      padding: 8px 12px;
      border-bottom: 0;
      user-select: none; }
      .ColumnsSettings--1i_U1 .ColumnsSettings__List--3XF1L .ColumnsSettings__Item--32V2i:not(:last-child) {
        border-bottom: 1px solid #F2F2F2; }
      .ColumnsSettings--1i_U1 .ColumnsSettings__List--3XF1L .ColumnsSettings__Item--32V2i.dragged--qwws4 {
        transform: scale(1.01);
        border-bottom: 1px solid transparent;
        box-shadow: 0 0 1px 1px #e1e1e1; }
      .ColumnsSettings--1i_U1 .ColumnsSettings__List--3XF1L .ColumnsSettings__Item--32V2i .Item__Left--1kwG6 {
        display: flex;
        flex-flow: row nowrap;
        align-items: center; }
        .ColumnsSettings--1i_U1 .ColumnsSettings__List--3XF1L .ColumnsSettings__Item--32V2i .Item__Left--1kwG6 .Item__Left__Icon--331UH {
          margin: -5px -5px;
          padding: 5px 5px;
          cursor: grab;
          cursor: -moz-grab;
          cursor: -webkit-grab; }
          .ColumnsSettings--1i_U1 .ColumnsSettings__List--3XF1L .ColumnsSettings__Item--32V2i .Item__Left--1kwG6 .Item__Left__Icon--331UH:active {
            cursor: grabbing;
            cursor: -moz-grabbing;
            cursor: -webkit-grabbing; }
          .ColumnsSettings--1i_U1 .ColumnsSettings__List--3XF1L .ColumnsSettings__Item--32V2i .Item__Left--1kwG6 .Item__Left__Icon--331UH.disabled--2HQ8Z {
            opacity: 0.5;
            cursor: not-allowed; }
        .ColumnsSettings--1i_U1 .ColumnsSettings__List--3XF1L .ColumnsSettings__Item--32V2i .Item__Left--1kwG6 .Item__Left__Text--3ARem {
          margin-left: 12px; }
      .ColumnsSettings--1i_U1 .ColumnsSettings__List--3XF1L .ColumnsSettings__Item--32V2i .Item__Right--1jeny {
        font-size: 18px;
        font-weight: 300;
        color: #fd9393;
        cursor: pointer; }
        .ColumnsSettings--1i_U1 .ColumnsSettings__List--3XF1L .ColumnsSettings__Item--32V2i .Item__Right--1jeny.disabled--2HQ8Z {
          opacity: 0.5;
          color: #808080;
          cursor: not-allowed; }
  .ColumnsSettings--1i_U1 .ColumnsSettings__Select--3LvOj {
    width: 100%;
    margin-top: 8px;
    position: relative; }
  .ColumnsSettings--1i_U1 .ColumnsSettings__Actions--37M-S {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    width: 100%; }

.Overlay--1WnS6 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100; }

.Content--2dfRd {
  position: absolute;
  z-index: 1;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: white;
  overflow: initial;
  border-radius: 23px;
  outline: none;
  padding: 20px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3); }
.Logo--QF1g1 {
  font-size: 18px;
  font-weight: bold;
  color: #FEFEFF;
  letter-spacing: normal;
  user-select: none; }
  .Logo--QF1g1.Black--3mJyj {
    color: #1e1f32; }

.Logo__BackOffice--3bNN4 {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  box-sizing: border-box;
  color: #FEFEFF; }
  .Logo__BackOffice--3bNN4 .BackOffice__First--2ExYH {
    display: flex;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: normal;
    user-select: none;
    justify-content: center;
    letter-spacing: .8px; }
  .Logo__BackOffice--3bNN4 .BackOffice__Second--2XgYc {
    display: flex;
    font-size: 14px;
    letter-spacing: 0.2px;
    user-select: none;
    opacity: .6; }
  .Logo__BackOffice--3bNN4.Black--3mJyj {
    color: #1e1f32; }
.Login--3fPkN {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: transparent linear-gradient(206deg, #A487C2 0%, #633AA2 100%) 0% 0% no-repeat padding-box;
  padding-top: 165px;
  box-sizing: border-box; }
  .Login--3fPkN .BackgroundImage--27zH_ {
    background-image: url(https://admin.titanium.myitsolver.com/assets/img/decoration.1024cd5e3c176c2914e98ecb39d5b0c1.svg);
    position: fixed;
    top: -20.4715576171875px;
    left: -257.2275390625px;
    width: 860px;
    height: 809px;
    background-repeat: no-repeat; }
  .Login--3fPkN .Login__Form--1ODMX {
    box-sizing: border-box;
    width: 449px;
    height: 425px;
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    border-radius: 23px;
    background-color: #ffffff;
    box-shadow: 0px 3px 6px #00000029; }
    .Login--3fPkN .Login__Form--1ODMX .Form__Padding--1bg0Z {
      padding: 43px;
      display: flex;
      flex-flow: column nowrap; }
    .Login--3fPkN .Login__Form--1ODMX .Form__Center--2w8eP {
      display: flex;
      align-items: center;
      justify-content: center;
      align-content: center; }
    .Login--3fPkN .Login__Form--1ODMX .Form__Title--1UM_M {
      display: flex;
      justify-content: center;
      margin-bottom: 10px;
      user-select: none; }
    .Login--3fPkN .Login__Form--1ODMX .Form__Row--1ZQ2t {
      position: relative;
      width: 100%;
      margin-bottom: 16px; }
      .Login--3fPkN .Login__Form--1ODMX .Form__Row--1ZQ2t:last-child {
        margin-bottom: 0;
        margin-top: 13px; }
      .Login--3fPkN .Login__Form--1ODMX .Form__Row--1ZQ2t .Row__Label--1OYPH {
        font-size: 11px;
        line-height: 1.82;
        color: #7d8893; }
      .Login--3fPkN .Login__Form--1ODMX .Form__Row--1ZQ2t .Row__Input--1lnaL {
        position: relative;
        width: 100%;
        box-sizing: border-box;
        margin: 10 0px; }
      .Login--3fPkN .Login__Form--1ODMX .Form__Row--1ZQ2t .Row__Text--2yvJl {
        font-size: 18px;
        text-align: center; }
        .Login--3fPkN .Login__Form--1ODMX .Form__Row--1ZQ2t .Row__Text--2yvJl.Secondary--2gJZ- {
          font-size: 15px;
          font-weight: normal;
          color: #707070; }
    .Login--3fPkN .Login__Form--1ODMX .Form__Column--rDl1N {
      display: flex;
      flex-flow: row; }
    .Login--3fPkN .Login__Form--1ODMX .Checkbox--3CmuR {
      display: flex;
      flex-flow: row;
      margin-top: 30px;
      margin-bottom: 50px;
      align-items: center; }
      .Login--3fPkN .Login__Form--1ODMX .Checkbox--3CmuR .BoxLabel--1B5Fy {
        margin-left: 5px; }
    .Login--3fPkN .Login__Form--1ODMX .Form__Button--3wT1T {
      background: #633AA2 0% 0% no-repeat padding-box;
      border-radius: 6px;
      display: flex;
      cursor: pointer; }
  .Login--3fPkN .Login__NavLink--2r42a {
    font-size: 14px;
    text-align: right;
    font-weight: 200;
    text-decoration: underline;
    color: #707070;
    cursor: pointer;
    margin-bottom: 20px; }
  .Login--3fPkN .Login__Copyright--372_7 {
    position: absolute;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.79;
    letter-spacing: 0.4px;
    color: #86869D;
    bottom: 35px; }
.Settings--37oql {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  grid-gap: 30px;
  padding: 0;
  margin-bottom: 30px; }
  .Settings--37oql .SettingsPanel--2VQl5 {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    width: 100%; }
    .Settings--37oql .SettingsPanel--2VQl5 .Input__Anonymity--30svO {
      font-weight: 400;
      font-size: 20px; }
    .Settings--37oql .SettingsPanel--2VQl5 .SettingsPanel__Column--ggpvW .Column__Title--3MQrH {
      margin-bottom: 26px;
      font-size: 20px;
      font-weight: 400; }
      .Settings--37oql .SettingsPanel--2VQl5 .SettingsPanel__Column--ggpvW .Column__Title--3MQrH.Second--2Dxpc {
        margin-top: 52px; }
    .Settings--37oql .SettingsPanel--2VQl5 .SettingsPanel__Column--ggpvW .Row--1I3ji {
      display: flex;
      flex-direction: row; }
    .Settings--37oql .SettingsPanel--2VQl5 .SettingsPanel__Column--ggpvW .Row__Title--2xYab {
      margin-left: 20px; }
    .Settings--37oql .SettingsPanel--2VQl5 .SettingsPanel__Column--ggpvW .Column__Field--aWbfs {
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      height: 35px;
      margin-bottom: 20px; }
      .Settings--37oql .SettingsPanel--2VQl5 .SettingsPanel__Column--ggpvW .Column__Field--aWbfs .Field__Label--2nz-A {
        width: 200px;
        font-size: 14px;
        color: #000000;
        display: inline-flex;
        align-items: center; }
        .Settings--37oql .SettingsPanel--2VQl5 .SettingsPanel__Column--ggpvW .Column__Field--aWbfs .Field__Label--2nz-A .Label__Tooltip--1Tuk9 {
          margin-left: 12px; }
      .Settings--37oql .SettingsPanel--2VQl5 .SettingsPanel__Column--ggpvW .Column__Field--aWbfs .Field__Input--3kvhe {
        width: 250px; }
        .Settings--37oql .SettingsPanel--2VQl5 .SettingsPanel__Column--ggpvW .Column__Field--aWbfs .Field__Input--3kvhe .Input__Select--gmlcc {
          width: 100%;
          box-sizing: border-box; }
        .Settings--37oql .SettingsPanel--2VQl5 .SettingsPanel__Column--ggpvW .Column__Field--aWbfs .Field__Input--3kvhe .Input__Toggle--3XxKO {
          margin-right: 20px; }
      .Settings--37oql .SettingsPanel--2VQl5 .SettingsPanel__Column--ggpvW .Column__Field--aWbfs .Field__InputSelect--12En7 {
        width: 250px;
        display: inline-flex; }
        .Settings--37oql .SettingsPanel--2VQl5 .SettingsPanel__Column--ggpvW .Column__Field--aWbfs .Field__InputSelect--12En7 .Field__InputSelect__Input--34bmu {
          width: 75px; }
        .Settings--37oql .SettingsPanel--2VQl5 .SettingsPanel__Column--ggpvW .Column__Field--aWbfs .Field__InputSelect--12En7 .Field__InputSelect__Select--3D6lg {
          width: calc(100% - 75px); }
      .Settings--37oql .SettingsPanel--2VQl5 .SettingsPanel__Column--ggpvW .Column__Field--aWbfs .Field__Text--1iCye {
        line-height: 22px;
        max-width: 450px;
        margin-bottom: 50px;
        margin-top: 20px; }
    .Settings--37oql .SettingsPanel--2VQl5 .Column__Toggle--2E3O- {
      height: 35px;
      margin-top: 10px; }
  .Settings--37oql .SettingsPanel__SaveButton--1-jZw {
    display: flex;
    flex-direction: row;
    justify-content: center; }
    .Settings--37oql .SettingsPanel__SaveButton--1-jZw Button {
      border-radius: 6px;
      cursor: pointer; }
.UsersList--1F9vE {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  grid-gap: 30px;
  padding: 0;
  margin-bottom: 30px; }
  .UsersList--1F9vE .Table--2H03j {
    padding: 0;
    width: 100%;
    background: white;
    border-radius: 5px;
    border-collapse: collapse; }
    .UsersList--1F9vE .Table--2H03j .Table__Tr--1GKca .Table__Tr__Th--1R6Yb {
      min-width: 50px;
      border-bottom: 1px solid #F2F2F2;
      text-align: left;
      font-weight: 600;
      font-size: 11px;
      text-transform: uppercase;
      padding: 15px 24px;
      letter-spacing: 1.1px;
      white-space: nowrap;
      cursor: pointer; }
      .UsersList--1F9vE .Table--2H03j .Table__Tr--1GKca .Table__Tr__Th--1R6Yb .Icon--1Tamc {
        display: inline-flex;
        margin-left: 3px; }
    .UsersList--1F9vE .Table--2H03j .Table__Tr--1GKca .Table__Tr__Td--2ivYG {
      height: 65px;
      padding: 15px 24px;
      border-bottom: 1px solid #f4f4f4;
      font-size: 14px;
      white-space: nowrap; }
      .UsersList--1F9vE .Table--2H03j .Table__Tr--1GKca .Table__Tr__Td--2ivYG.Table__Tr__Td--id--2s6Vg {
        font-size: 12px; }
      .UsersList--1F9vE .Table--2H03j .Table__Tr--1GKca .Table__Tr__Td--2ivYG.Table__Tr__Td--date--1sAxe {
        font-size: 12px;
        color: #c3c4c7; }
      .UsersList--1F9vE .Table--2H03j .Table__Tr--1GKca .Table__Tr__Td--2ivYG .Table__Tr__Td--name--2hg1D {
        font-size: 17px; }
      .UsersList--1F9vE .Table--2H03j .Table__Tr--1GKca .Table__Tr__Td--2ivYG .Table__Tr__Td--email--54ddY {
        color: #d3d4d6;
        font-size: 12px; }
.ChangePassword__Form--w0_TS {
  box-sizing: border-box;
  width: 315px;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: #ffffff;
  padding: 15px; }
  .ChangePassword__Form--w0_TS .Form__Title--1DBm_ {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 30px;
    width: 100%; }
  .ChangePassword__Form--w0_TS .Form__Row--2Tph8 {
    position: relative;
    width: 100%;
    margin-bottom: 16px; }
    .ChangePassword__Form--w0_TS .Form__Row--2Tph8:last-child {
      margin-bottom: 0;
      margin-top: 13px; }
    .ChangePassword__Form--w0_TS .Form__Row--2Tph8 .Row__Label--3XHH2 {
      font-size: 11px;
      line-height: 1.82;
      color: #7d8893; }
    .ChangePassword__Form--w0_TS .Form__Row--2Tph8 .Row__Input--2f_21 {
      position: relative;
      width: 100%;
      box-sizing: border-box; }
    .ChangePassword__Form--w0_TS .Form__Row--2Tph8 .Row__Text--RoRU1 {
      font-size: 18px;
      text-align: center; }
      .ChangePassword__Form--w0_TS .Form__Row--2Tph8 .Row__Text--RoRU1.Secondary--vlu4P {
        font-size: 15px;
        font-weight: normal;
        color: #CDCED1; }
  .ChangePassword__Form--w0_TS .Form__Buttons--2fsAa {
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 15px;
    width: 100%; }
  .ChangePassword__Form--w0_TS .Form__CloseBtn--1wdNQ {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 20px;
    cursor: pointer; }

.Overlay--3Ij3k {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.65);
  z-index: 100; }

.Content--1hfES {
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: white;
  overflow: auto;
  border-radius: 4px;
  outline: none;
  padding: 20px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3); }
.ArkowlSettings--oQ8RX {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  grid-gap: 30px;
  padding: 0;
  margin-bottom: 30px; }
  .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    width: 100%; }
    .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .AS_Row--1xF_d {
      display: flex;
      flex-direction: row; }
    .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .Halfwidth--2XGfB {
      width: 50%; }
    .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .Input__Anonymity--20VC7 {
      font-weight: 400;
      font-size: 20px; }
    .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .ArkowlSettingsPanel__Column--3mkd9 .Column__Title--JqQMm {
      margin-bottom: 26px;
      font-size: 20px;
      font-weight: 400; }
      .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .ArkowlSettingsPanel__Column--3mkd9 .Column__Title--JqQMm.Second--eaw2b {
        margin-top: 52px; }
    .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .ArkowlSettingsPanel__Column--3mkd9 .Row--1dA1R {
      display: flex;
      flex-direction: row; }
    .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .ArkowlSettingsPanel__Column--3mkd9 .Row__Title--1d8VL {
      margin-left: 20px; }
    .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .ArkowlSettingsPanel__Column--3mkd9 .Column__Field--2zQKL {
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      height: 35px;
      margin-bottom: 20px; }
      .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .ArkowlSettingsPanel__Column--3mkd9 .Column__Field--2zQKL .Field__Label--1nQIo {
        width: 200px;
        font-size: 14px;
        color: #000000;
        display: inline-flex;
        align-items: center; }
        .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .ArkowlSettingsPanel__Column--3mkd9 .Column__Field--2zQKL .Field__Label--1nQIo .Label__Tooltip--2dMbe {
          margin-left: 12px; }
      .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .ArkowlSettingsPanel__Column--3mkd9 .Column__Field--2zQKL .Field__Input--1lDB8 {
        width: 250px; }
        .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .ArkowlSettingsPanel__Column--3mkd9 .Column__Field--2zQKL .Field__Input--1lDB8 .Input__Select--1uB-M {
          width: 100%;
          box-sizing: border-box; }
        .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .ArkowlSettingsPanel__Column--3mkd9 .Column__Field--2zQKL .Field__Input--1lDB8 .Input__Toggle--1kdJp {
          margin-right: 20px; }
      .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .ArkowlSettingsPanel__Column--3mkd9 .Column__Field--2zQKL .Field__InputSelect--2n6IH {
        width: 250px;
        display: inline-flex; }
        .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .ArkowlSettingsPanel__Column--3mkd9 .Column__Field--2zQKL .Field__InputSelect--2n6IH .Field__InputSelect__Input--3tvFw {
          width: 75px; }
        .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .ArkowlSettingsPanel__Column--3mkd9 .Column__Field--2zQKL .Field__InputSelect--2n6IH .Field__InputSelect__Select--2iDWs {
          width: calc(100% - 75px); }
      .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .ArkowlSettingsPanel__Column--3mkd9 .Column__Field--2zQKL .Field__Text--2lJ-D {
        line-height: 22px;
        max-width: 450px;
        margin-bottom: 50px;
        margin-top: 20px; }
    .ArkowlSettings--oQ8RX .ArkowlSettingsPanel--1fjE1 .Column__Toggle---nhxm {
      height: 35px;
      margin-top: 10px; }
  .ArkowlSettings--oQ8RX .ArkowlSettingsPanel__SaveButton--4d9Jl {
    display: flex;
    flex-direction: row;
    justify-content: center; }
    .ArkowlSettings--oQ8RX .ArkowlSettingsPanel__SaveButton--4d9Jl Button {
      background: #633AA2 0% 0% no-repeat padding-box;
      border-radius: 6px;
      cursor: pointer; }
.MyAccount--1p-eq {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  grid-gap: 30px;
  padding: 0; }
  .MyAccount--1p-eq .ProfilePanel--1qouY {
    display: grid;
    grid-auto-rows: min-content;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 3px;
    margin: 0 -10px; }
    .MyAccount--1p-eq .ProfilePanel--1qouY .ProfilePanel__Cell--1cq_Y {
      font-size: 14px;
      line-height: 2.25;
      padding: 0 10px; }
      .MyAccount--1p-eq .ProfilePanel--1qouY .ProfilePanel__Cell--1cq_Y.Cell--label---wckv {
        font-weight: normal;
        color: #272741;
        border-radius: 50px 0 0 50px; }
      .MyAccount--1p-eq .ProfilePanel--1qouY .ProfilePanel__Cell--1cq_Y.Cell--data--3QPYn {
        font-weight: 300;
        color: #38373D;
        border-radius: 0 50px 50px 0; }
  .MyAccount--1p-eq .ProfileActions--C_jBY {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center; }
    .MyAccount--1p-eq .ProfileActions--C_jBY div {
      margin-right: 20px; }
.DeleteProfile__Form--Uv0Yf {
  box-sizing: border-box;
  width: 315px;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: #ffffff;
  padding: 15px; }
  .DeleteProfile__Form--Uv0Yf .Form__Title--1Yg8O {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
    width: 100%; }
  .DeleteProfile__Form--Uv0Yf .Form__Text--3F1wU {
    margin-bottom: 30px; }
  .DeleteProfile__Form--Uv0Yf .Form__Row--jYQVM {
    position: relative;
    width: 100%;
    margin-bottom: 16px; }
    .DeleteProfile__Form--Uv0Yf .Form__Row--jYQVM:last-child {
      margin-bottom: 0;
      margin-top: 13px; }
    .DeleteProfile__Form--Uv0Yf .Form__Row--jYQVM .Row__Label--1v2ry {
      font-size: 11px;
      line-height: 1.82;
      color: #7d8893; }
    .DeleteProfile__Form--Uv0Yf .Form__Row--jYQVM .Row__Input--YT5rG {
      position: relative;
      width: 100%;
      box-sizing: border-box; }
    .DeleteProfile__Form--Uv0Yf .Form__Row--jYQVM .Row__Text--21jEe {
      font-size: 18px;
      text-align: center; }
      .DeleteProfile__Form--Uv0Yf .Form__Row--jYQVM .Row__Text--21jEe.Secondary--1OCzt {
        font-size: 15px;
        font-weight: normal;
        color: #CDCED1; }
  .DeleteProfile__Form--Uv0Yf .Form__Buttons--1ykIh {
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 15px;
    width: 100%; }
  .DeleteProfile__Form--Uv0Yf .Form__CloseBtn--2zRBu {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 20px;
    cursor: pointer; }

.Overlay--4orta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.65);
  z-index: 100; }

.Content--1z-SL {
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: white;
  overflow: auto;
  border-radius: 4px;
  outline: none;
  padding: 20px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3); }
.Support--33Mzk {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  grid-gap: 30px;
  padding: 0;
  margin-bottom: 30px; }
  .Support--33Mzk .Support__Form--24C0c {
    display: flex;
    flex-flow: column nowrap; }
    .Support--33Mzk .Support__Form--24C0c .Form__Row--3F1MW {
      margin-top: 25px;
      width: 100%;
      display: flex;
      flex-flow: row nowrap;
      justify-content: space-around; }
      .Support--33Mzk .Support__Form--24C0c .Form__Row--3F1MW:first-child {
        margin-top: 15px; }
      .Support--33Mzk .Support__Form--24C0c .Form__Row--3F1MW .Field--ai4z7 {
        flex: 1; }
        .Support--33Mzk .Support__Form--24C0c .Form__Row--3F1MW .Field--ai4z7:first-child {
          margin-right: 10px; }
        .Support--33Mzk .Support__Form--24C0c .Form__Row--3F1MW .Field--ai4z7:last-child {
          margin-left: 10px; }
        .Support--33Mzk .Support__Form--24C0c .Form__Row--3F1MW .Field--ai4z7.Field--2x--2QAJO {
          flex: 2;
          margin: 0; }
        .Support--33Mzk .Support__Form--24C0c .Form__Row--3F1MW .Field--ai4z7.FieldButton--1N-eC {
          display: flex;
          align-items: flex-end;
          justify-content: flex-end; }
        .Support--33Mzk .Support__Form--24C0c .Form__Row--3F1MW .Field--ai4z7 .Label--3lQyk {
          white-space: nowrap;
          text-align: left;
          font-weight: 400;
          font-size: 11px;
          text-transform: uppercase;
          letter-spacing: 1.1px;
          margin-bottom: 12px;
          display: inline-flex;
          align-items: center; }
    .Support--33Mzk .Support__Form--24C0c .Field--button--39Q_V {
      display: flex;
      align-items: flex-end;
      padding-left: 15px; }
.Import--2SJ0f {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  grid-gap: 30px;
  padding: 0;
  margin-bottom: 30px; }
.FileImportPanel--l9_xQ {
  display: flex;
  flex-flow: row nowrap;
  width: 100%; }
  .FileImportPanel--l9_xQ .FileImportPanel__Left--38vk5 {
    flex: 1; }
    .FileImportPanel--l9_xQ .FileImportPanel__Left--38vk5 .Text__link--1gPma {
      color: #a487c2;
      cursor: pointer; }
  .FileImportPanel--l9_xQ .FileImportPanel__Right--10MBv {
    flex: 1; }
    .FileImportPanel--l9_xQ .FileImportPanel__Right--10MBv .FileImportPanel__FileLabel--2Uuge {
      margin: 13px 0 20px; }
      .FileImportPanel--l9_xQ .FileImportPanel__Right--10MBv .FileImportPanel__FileLabel--2Uuge:not(:first-child) {
        margin-top: 30px; }
    .FileImportPanel--l9_xQ .FileImportPanel__Right--10MBv .FileImportPanel__FileInput--KxTR1 {
      display: flex;
      flex-flow: row nowrap;
      justify-content: space-between;
      align-items: center; }
    .FileImportPanel--l9_xQ .FileImportPanel__Right--10MBv .FileImportPanel__Input--dYbcd {
      width: 280px;
      display: inline-flex; }
      .FileImportPanel--l9_xQ .FileImportPanel__Right--10MBv .FileImportPanel__Input--dYbcd .Row__Input__Input--10tnW {
        width: 75px; }
      .FileImportPanel--l9_xQ .FileImportPanel__Right--10MBv .FileImportPanel__Input--dYbcd .Row__Input__Select--1DwG_ {
        width: calc(100% - 75px); }
    .FileImportPanel--l9_xQ .FileImportPanel__Right--10MBv .Submit_Button--2cPn3 {
      margin-top: 25px;
      display: flex;
      flex-direction: row;
      justify-content: center; }
.BillingDetails--1aTvp {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  grid-gap: 30px;
  padding: 0;
  margin-bottom: 30px; }
  .BillingDetails--1aTvp .Table--3xo56 {
    margin-top: 30px;
    padding: 0;
    width: 100%;
    border-collapse: collapse; }
    .BillingDetails--1aTvp .Table--3xo56 .Table__Tr--3NtKT .Table__Tr__Th--2w0qz {
      min-width: 50px;
      padding: 15px 15px 20px;
      border-bottom: 1px solid #f4f4f4;
      white-space: nowrap;
      text-align: left;
      font-weight: 600;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1.1px; }
      .BillingDetails--1aTvp .Table--3xo56 .Table__Tr--3NtKT .Table__Tr__Th--2w0qz.Table__Tr__Th--action--1vOQM {
        min-width: 1px;
        max-width: 1px;
        overflow: hidden;
        font-size: 14px; }
    .BillingDetails--1aTvp .Table--3xo56 .Table__Tr--3NtKT .Table__Tr__Td--38lBM {
      padding: 10px 15px;
      font-size: 14px;
      white-space: nowrap; }
      .BillingDetails--1aTvp .Table--3xo56 .Table__Tr--3NtKT .Table__Tr__Td--38lBM.Table__Tr__Td--action--3Sfvb {
        min-width: 1px;
        max-width: 1px;
        overflow: hidden;
        text-align: right;
        cursor: pointer;
        font-size: 18px;
        font-weight: 300;
        color: #F16DA5; }
      .BillingDetails--1aTvp .Table--3xo56 .Table__Tr--3NtKT .Table__Tr__Td--38lBM .Expand--23j45 {
        animation: slideDown--KOwao .2s ease-in-out; }

@keyframes slideDown--KOwao {
  from {
    opacity: 0;
    max-height: 0; }
  to {
    opacity: 1;
    max-height: 36px; } }
    .BillingDetails--1aTvp .Table--3xo56 .Table__Tr--3NtKT:first-child .Table__Tr__Td--38lBM {
      padding-top: 20px; }
  .BillingDetails--1aTvp .ShowMoreBtn--1Psgr {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    height: 45px;
    margin: 15px -30px -30px -30px;
    border-top: 1px solid #f4f4f4;
    cursor: pointer;
    width: calc(100% + 60px); }
    .BillingDetails--1aTvp .ShowMoreBtn--1Psgr.Loading--19-Is {
      opacity: 0.5;
      cursor: default; }
    .BillingDetails--1aTvp .ShowMoreBtn--1Psgr svg {
      color: #6A6A8A; }
.CustomerDetails--3OsDq {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  grid-gap: 30px;
  padding: 30px; }
  .CustomerDetails--3OsDq .Row--AZP0B {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start; }
    .CustomerDetails--3OsDq .Row--AZP0B:first-child {
      border-bottom: 1px solid #F2F2F2;
      padding-bottom: 30px; }
    .CustomerDetails--3OsDq .Row--AZP0B:last-child {
      padding-top: 30px; }
    .CustomerDetails--3OsDq .Row--AZP0B .Field--3hFj8 {
      display: flex;
      flex-flow: column nowrap; }
      .CustomerDetails--3OsDq .Row--AZP0B .Field--3hFj8.Field--x1--2ckXg {
        flex: 1; }
      .CustomerDetails--3OsDq .Row--AZP0B .Field--3hFj8.Field--x2--3M3Q6 {
        flex: 2; }
      .CustomerDetails--3OsDq .Row--AZP0B .Field--3hFj8.Title--33yin {
        margin-top: -8px; }
      .CustomerDetails--3OsDq .Row--AZP0B .Field--3hFj8.Button--1bqMl {
        display: flex;
        align-items: flex-end; }
      .CustomerDetails--3OsDq .Row--AZP0B .Field--3hFj8 .Label--3awmi {
        white-space: nowrap;
        text-align: left;
        font-weight: 400;
        font-size: 11px;
        line-height: 14px;
        text-transform: uppercase;
        letter-spacing: 1.1px;
        margin-bottom: 12px;
        display: inline-flex;
        align-items: center; }
      .CustomerDetails--3OsDq .Row--AZP0B .Field--3hFj8 .Toggle__Wrapper--1Lo_P {
        height: 35px;
        display: flex;
        align-items: center; }
      .CustomerDetails--3OsDq .Row--AZP0B .Field--3hFj8 .Dates--1ESR5 {
        display: inline-flex; }
      .CustomerDetails--3OsDq .Row--AZP0B .Field--3hFj8 .Statistics--2aXOI {
        height: 42px;
        font-size: 36px;
        font-weight: 300;
        color: #000000; }
.AddUser__Form--3OUcq {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: #ffffff;
  padding: 15px; }
  .AddUser__Form--3OUcq .Form__Title--3k_kb {
    font-size: 18px;
    color: #737A85;
    margin-bottom: 30px;
    width: 100%; }
  .AddUser__Form--3OUcq .Form__Row--3w-MF {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center; }
    .AddUser__Form--3OUcq .Form__Row--3w-MF:last-child {
      margin-bottom: 0;
      margin-top: 13px; }
    .AddUser__Form--3OUcq .Form__Row--3w-MF .Row__Label--1EctY {
      font-size: 14px;
      color: #000000;
      margin-right: 10px; }
    .AddUser__Form--3OUcq .Form__Row--3w-MF .Row__Input--3hPlg {
      width: 250px; }
      .AddUser__Form--3OUcq .Form__Row--3w-MF .Row__Input--3hPlg .Text--2FK43 {
        padding: 0 14px;
        height: 35px;
        display: flex;
        align-items: center;
        border: 1px solid #E9E9F4;
        border-radius: 4px;
        background-color: #f7f7f7;
        cursor: default; }
  .AddUser__Form--3OUcq .Form__Buttons--12mqG {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 15px;
    width: 100%; }
    .AddUser__Form--3OUcq .Form__Buttons--12mqG div {
      margin-left: 20px; }
  .AddUser__Form--3OUcq .Form__CloseBtn---dhWk {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 20px;
    cursor: pointer; }

.Overlay--2AYkr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.65);
  z-index: 100; }

.Content--cA-yd {
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border: 1px solid #cccccc;
  background: white;
  overflow: auto;
  border-radius: 4px;
  outline: none;
  padding: 20px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3); }
.Customers--1c8hH {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  grid-gap: 30px;
  padding: 30px; }
  .Customers--1c8hH .Actions--i7My3 {
    margin: -10px -10px 40px -10px;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center; }
    .Customers--1c8hH .Actions--i7My3 .Field--2stFK {
      flex: 1;
      margin-right: 30px; }
      .Customers--1c8hH .Actions--i7My3 .Field--2stFK .Button--1ZHQc {
        display: inline-flex;
        flex-flow: row nowrap;
        align-items: center;
        cursor: pointer; }
        .Customers--1c8hH .Actions--i7My3 .Field--2stFK .Button--1ZHQc div:first-child {
          margin-right: 17px; }
  .Customers--1c8hH .Table--1Nw18 {
    padding: 0;
    margin: -30px;
    width: calc(100% + 60px);
    background: white;
    border-radius: 5px;
    border-collapse: collapse; }
    .Customers--1c8hH .Table--1Nw18 .Table__Tr--1WM2E .Table__Tr__Th--14Jyj {
      min-width: 50px;
      height: 45px;
      border-bottom: 1px solid #f4f4f4;
      font-weight: 400;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1.1px;
      text-align: left;
      white-space: nowrap;
      cursor: pointer; }
      .Customers--1c8hH .Table--1Nw18 .Table__Tr--1WM2E .Table__Tr__Th--14Jyj > div {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0 15px; }
      .Customers--1c8hH .Table--1Nw18 .Table__Tr--1WM2E .Table__Tr__Th--14Jyj.NoLink--TJAkX {
        cursor: auto; }
      .Customers--1c8hH .Table--1Nw18 .Table__Tr--1WM2E .Table__Tr__Th--14Jyj .Icon--HwPUQ {
        display: inline-flex;
        margin-left: 3px; }
    .Customers--1c8hH .Table--1Nw18 .Table__Tr--1WM2E .Table__Tr__Td--2Wqw0 {
      font-size: 14px;
      height: 65px;
      border-bottom: 1px solid #f4f4f4;
      white-space: nowrap; }
      .Customers--1c8hH .Table--1Nw18 .Table__Tr--1WM2E .Table__Tr__Td--2Wqw0 > div {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center; }
        .Customers--1c8hH .Table--1Nw18 .Table__Tr--1WM2E .Table__Tr__Td--2Wqw0 > div a {
          display: flex;
          align-items: center;
          padding: 0 15px;
          width: 100%;
          height: 100%;
          margin: 0;
          color: #000000; }
      .Customers--1c8hH .Table--1Nw18 .Table__Tr--1WM2E .Table__Tr__Td--2Wqw0 .Table__Tr__Td--id--Wei2c {
        font-size: 12px; }
      .Customers--1c8hH .Table--1Nw18 .Table__Tr--1WM2E .Table__Tr__Td--2Wqw0 .Table__Tr__Td--name--1cGls {
        font-size: 17px; }
      .Customers--1c8hH .Table--1Nw18 .Table__Tr--1WM2E .Table__Tr__Td--2Wqw0 .Table__Tr__Td--action--3Kz98 {
        font-size: 22px; }
        .Customers--1c8hH .Table--1Nw18 .Table__Tr--1WM2E .Table__Tr__Td--2Wqw0 .Table__Tr__Td--action--3Kz98 a {
          justify-content: flex-end; }
    .Customers--1c8hH .Table--1Nw18 .Table__Footer--2PcML {
      padding: 0;
      margin: 0; }
      .Customers--1c8hH .Table--1Nw18 .Table__Footer--2PcML .Table__Footer__Td--wiS_3 {
        padding: 0;
        margin: 0; }
        .Customers--1c8hH .Table--1Nw18 .Table__Footer--2PcML .Table__Footer__Td--wiS_3 .Count--1cIVn {
          margin: 11px 13px;
          font-size: 12px;
          color: #CDCED1; }
.CreditCard--2p2vw {
  position: relative;
  width: 397px;
  height: 217px;
  background: url([object Module]);
  color: #555;
  border-radius: 16px;
  margin-top: 20px; }
  .CreditCard--2p2vw .CreditCard__Name---KYoG {
    position: absolute;
    left: 35px;
    top: 35px;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1.3px; }
  .CreditCard--2p2vw .CreditCard__Logo--Vnt3p {
    position: absolute;
    right: 35px;
    top: 35px; }
  .CreditCard--2p2vw .CreditCard__ExpDate--1XYA- {
    position: absolute;
    bottom: 82px;
    left: 35px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center; }
    .CreditCard--2p2vw .CreditCard__ExpDate--1XYA- .ExpDate__Label--KT9QG {
      font-size: 12px;
      letter-spacing: 1.2px; }
    .CreditCard--2p2vw .CreditCard__ExpDate--1XYA- .ExpDate__Date--2vFI5 {
      font-size: 16.5px;
      letter-spacing: 1.2px;
      margin-left: 13px; }
  .CreditCard--2p2vw .CreditCard__CardNumber--1Enq3 {
    position: absolute;
    bottom: 35px;
    left: 35px;
    font-size: 21.5px;
    font-weight: 300;
    letter-spacing: 4.3px; }
.CustomerDetailsHeader--ku7a_ {
  display: flex;
  flex-flow: row nowrap;
  height: 100%; }
  .CustomerDetailsHeader--ku7a_ .Back--2GfL5 a {
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-right: 40px;
    height: 100%; }
    .CustomerDetailsHeader--ku7a_ .Back--2GfL5 a .Icon--3VDbJ {
      margin-right: 15px; }
  .CustomerDetailsHeader--ku7a_ .Menu--1qfb1 {
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start; }
    .CustomerDetailsHeader--ku7a_ .Menu--1qfb1 a {
      height: 100%; }
      .CustomerDetailsHeader--ku7a_ .Menu--1qfb1 a .Menu__Item--1T-MO {
        display: flex;
        align-items: center;
        justify-content: center;
        height: calc(100% - 2px);
        padding: 0 16px;
        border-bottom: 2px solid transparent;
        color: #86869D;
        transition: border-bottom-color 200ms; }
        .CustomerDetailsHeader--ku7a_ .Menu--1qfb1 a .Menu__Item--1T-MO:hover {
          border-bottom: 2px solid rgba(120, 158, 251, 0.76);
          color: #e3e3e3; }
        .CustomerDetailsHeader--ku7a_ .Menu--1qfb1 a .Menu__Item--1T-MO.active--1bwET {
          border-bottom: 2px solid #865fc2;
          color: #ffffff; }
.UsersAdmin--2MtrT {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  grid-gap: 30px;
  padding: 30px; }
  .UsersAdmin--2MtrT .Actions--21sec {
    margin: -10px -10px 40px -10px;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center; }
    .UsersAdmin--2MtrT .Actions--21sec .Field--1Pg57 {
      flex: 1;
      margin-right: 30px; }
  .UsersAdmin--2MtrT .Table--3TDAf {
    padding: 0;
    margin: -30px;
    width: calc(100% + 60px);
    background: white;
    border-radius: 5px;
    border-collapse: collapse; }
    .UsersAdmin--2MtrT .Table--3TDAf .Table__Tr--181LJ .Table__Tr__Th--2JK1i {
      min-width: 50px;
      border-bottom: 1px solid #F2F2F2;
      text-align: left;
      font-weight: 400;
      font-size: 11px;
      text-transform: uppercase;
      padding: 15px 24px;
      letter-spacing: 1.1px;
      white-space: nowrap;
      cursor: pointer; }
      .UsersAdmin--2MtrT .Table--3TDAf .Table__Tr--181LJ .Table__Tr__Th--2JK1i.NoLink--UY_Vc {
        cursor: auto; }
      .UsersAdmin--2MtrT .Table--3TDAf .Table__Tr--181LJ .Table__Tr__Th--2JK1i .Icon--32OLi {
        display: inline-flex;
        margin-left: 3px; }
    .UsersAdmin--2MtrT .Table--3TDAf .Table__Tr--181LJ .Table__Tr__Td--2swZf {
      height: 65px;
      padding: 15px 24px;
      border-bottom: 1px solid #f4f4f4;
      font-size: 14px;
      white-space: nowrap;
      cursor: pointer; }
      .UsersAdmin--2MtrT .Table--3TDAf .Table__Tr--181LJ .Table__Tr__Td--2swZf.Table__Tr__Td--id--1aVIP {
        font-size: 12px; }
      .UsersAdmin--2MtrT .Table--3TDAf .Table__Tr--181LJ .Table__Tr__Td--2swZf.Table__Tr__Td--date--23Wtn {
        font-size: 12px;
        color: #c3c4c7; }
      .UsersAdmin--2MtrT .Table--3TDAf .Table__Tr--181LJ .Table__Tr__Td--2swZf.Table__Tr__Td--name--l9EDA {
        font-size: 17px; }
      .UsersAdmin--2MtrT .Table--3TDAf .Table__Tr--181LJ .Table__Tr__Td--2swZf .Table__Tr__Td--action--3z8pR {
        font-size: 22px;
        text-align: right; }
    .UsersAdmin--2MtrT .Table--3TDAf .Table__Footer--2t3KZ {
      padding: 0;
      margin: 0; }
      .UsersAdmin--2MtrT .Table--3TDAf .Table__Footer--2t3KZ .Table__Footer__Td--3sx2g {
        padding: 0;
        margin: 0; }
        .UsersAdmin--2MtrT .Table--3TDAf .Table__Footer--2t3KZ .Table__Footer__Td--3sx2g .Count--30tAz {
          margin: 11px 13px;
          font-size: 12px;
          color: #CDCED1; }
