:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
}
.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }
}
.Toastify__toast {
  --y: 0;
  position: relative;
  -ms-touch-action: none;
      touch-action: none;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
  overflow: hidden;
}
.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}
.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body, .Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}
.Toastify__toast--stacked[data-collapsed=false] {
  overflow: visible;
}
.Toastify__toast--stacked[data-collapsed=true]:not(:last-child) > * {
  opacity: 0;
}
.Toastify__toast--stacked:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}
.Toastify__toast--stacked[data-pos=top] {
  top: 0;
}
.Toastify__toast--stacked[data-pos=bot] {
  bottom: 0;
}
.Toastify__toast--stacked[data-pos=bot].Toastify__toast--stacked:before {
  transform-origin: top;
}
.Toastify__toast--stacked[data-pos=top].Toastify__toast--stacked:before {
  transform-origin: bottom;
}
.Toastify__toast--stacked:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  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;
  z-index: 1;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.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: 100%;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: initial;
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--wrp {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--wrp[data-hidden=true] {
  opacity: 0;
}
.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@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, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 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, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 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, calc(var(--y) - 10px), 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 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, calc(var(--y) - 10px), 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 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: translate3d(0, var(--y), 0) 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: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) 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, var(--y), 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 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;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=ReactToastify.css.map */
:root {
	--toastify-color-success: #46a147;
	--toastify-color-error: #ff6565;
	--toastify-color-warning: #e4bc56;
	--toastify-color-info: #29abe2;
	--toastify-color-progress-light: #73879c;
	--toastify-toast-bd-radius: 0.25rem;
	--toastify-toast-width: 25rem;
	--toastify-color-progress-bgo: 0.75;
	--toastify-font-family: "Open Sans", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"
}

.Toastify__toast{
	padding: 1.25rem;
	padding-top: 1.875rem;
	--tw-shadow: 0 2px 10px rgba(0,0,0,0.15);
	--tw-shadow-colored: 0 2px 10px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}

.Toastify__toast-body{
	white-space: pre-line;
	padding: 0px;
	font-size: 13px;
	line-height: 1.625;
	--tw-text-opacity: 1;
	color: rgb(33 47 64 / var(--tw-text-opacity, 1))}

.Toastify__toast-icon{
	margin-right: 1rem;
	width: auto}

.Toastify__toast--success .Toastify__toast-icon{
	color: var(--toastify-icon-color-success)}
.Toastify__toast--error .Toastify__toast-icon{
	color: var(--toastify-icon-color-error)}
.Toastify__toast--warning .Toastify__toast-icon{
	color: var(--toastify-icon-color-warning)}
.Toastify__toast--info .Toastify__toast-icon{
	color: var(--toastify-icon-color-info)}

.Toastify__progress-bar{
	border-radius: 0px;
	opacity: 1}

.Toastify__progress-bar--wrp{
	bottom: auto;
	top: 0px;
	height: 0.375rem;
	border-radius: 0px}

@keyframes M5MU6H6AV5ESYESl {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes gSAKI6aDBwV0CuRg {
	0% {
		width: 100%;
		border-radius: 0.125rem;
		border-left-color: var(--main-color);
	}
	50% {
		border-left-color: var(--main-color);
	}
}

.Wq_zc8CxXH4Tdon3 {
	animation: gSAKI6aDBwV0CuRg 300ms, M5MU6H6AV5ESYESl 1400ms 300ms linear infinite;
}

.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}
.tippy-box[data-animation=shift-toward][data-state=hidden]{opacity:0}.tippy-box[data-animation=shift-toward][data-state=hidden][data-placement^=top]{transform:translateY(-10px)}.tippy-box[data-animation=shift-toward][data-state=hidden][data-placement^=bottom]{transform:translateY(10px)}.tippy-box[data-animation=shift-toward][data-state=hidden][data-placement^=left]{transform:translateX(-10px)}.tippy-box[data-animation=shift-toward][data-state=hidden][data-placement^=right]{transform:translateX(10px)}
.tippy-box[data-theme~=custom],.tippy-box[data-theme~=custom-error]{font-size:13px;background-color:#4a5867;color:#fff;padding:7px 10px;border-radius:3px;box-shadow:1px 2px 3px rgba(0,0,0,.15);text-align:left}.tippy-box[data-theme~=custom][data-placement^=right]>.tippy-arrow::before,.tippy-box[data-theme~=custom-error][data-placement^=right]>.tippy-arrow::before{border-right-color:#4a5867}.tippy-box[data-theme~=custom][data-placement^=bottom]>.tippy-arrow::before,.tippy-box[data-theme~=custom-error][data-placement^=bottom]>.tippy-arrow::before{border-bottom-color:#4a5867}.tippy-box[data-theme~=custom][data-placement^=top]>.tippy-arrow::before,.tippy-box[data-theme~=custom-error][data-placement^=top]>.tippy-arrow::before{border-top-color:#4a5867}.tippy-box[data-theme~=custom][data-placement^=left]>.tippy-arrow::before,.tippy-box[data-theme~=custom-error][data-placement^=left]>.tippy-arrow::before{border-left-color:#4a5867}.tippy-box[data-theme~=custom] table,.tippy-box[data-theme~=custom-error] table{color:#4a5867}.tippy-box .tippy-content a{text-decoration:underline;color:#fff;font-weight:bold}.tippy-box .tippy-content a:hover,.tippy-box .tippy-content a:focus{color:#fff}.tippy-box[data-theme~=custom-error]{background-color:#ff6565}.tippy-box[data-theme~=custom-error][data-placement^=right]>.tippy-arrow::before{border-right-color:#ff6565}.tippy-box[data-theme~=custom-error][data-placement^=bottom]>.tippy-arrow::before{border-bottom-color:#ff6565}.tippy-box[data-theme~=custom-error][data-placement^=top]>.tippy-arrow::before{border-top-color:#ff6565}.tippy-box[data-theme~=custom-error][data-placement^=left]>.tippy-arrow::before{border-left-color:#ff6565}
.v2_common_element_icon{-webkit-user-select:none;user-select:none;width:1em;height:1em;display:inline-block;flex-shrink:0;outline:none}
.cssModulesScope .cssModules-gaRkruO3EyUHJNdx{display:flex;flex-direction:column;align-items:center}.cssModulesScope .cssModules-gaRkruO3EyUHJNdx img{width:200px}
.cssModulesScope .cssModules-RXtIVYHtlIbjcAFg{display:flex;align-items:center;overflow:hidden;text-overflow:ellipsis;max-width:160px}.cssModulesScope .cssModules-Ny4CWPRZukK_ts6j{min-width:40px}
.cssModulesScope .cssModules-psypKA3MZWAAcSoe{opacity:.3}
@keyframes cssModules-UFSofkCODr8VWcSy{100%{transform:rotate(360deg)}}@keyframes cssModules-YbtwuHJF87MMGVFq{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:90,200;stroke-dashoffset:-35}100%{stroke-dasharray:90,200;stroke-dashoffset:-135}}.cssModulesScope .cssModules-bCams3s7QhE2uvCj{animation:cssModules-UFSofkCODr8VWcSy 2s linear infinite;transform-origin:center center}.cssModulesScope .cssModules-CjwAeW1kSGEc2OdP{opacity:.15}.cssModulesScope .cssModules-wBp4yVbzq0EnrQgE{z-index:2;stroke-dasharray:200,200;stroke-dashoffset:-1;animation:cssModules-YbtwuHJF87MMGVFq 2s ease-in-out infinite;stroke-linecap:round}.cssModulesScope .cssModules-gDns_9CGhQx51igl{display:flex}.cssModulesScope .cssModules-J7EkC8CIdmELKxSC{flex-direction:row;align-items:center}.cssModulesScope .cssModules-J7EkC8CIdmELKxSC .cssModules-bCams3s7QhE2uvCj{width:18px;height:18px}.cssModulesScope .cssModules-J7EkC8CIdmELKxSC .cssModules-WJB4p_IpTjg1RyGM{margin-left:10px}.cssModulesScope .cssModules-o2WXsTfuRCEmn9Mz{flex-direction:row;align-items:center}.cssModulesScope .cssModules-o2WXsTfuRCEmn9Mz .cssModules-bCams3s7QhE2uvCj{width:20px;height:20px}.cssModulesScope .cssModules-o2WXsTfuRCEmn9Mz .cssModules-WJB4p_IpTjg1RyGM{margin-left:10px}.cssModulesScope .cssModules-duG1YAsJU2QEnzoN{flex-direction:column;align-items:center}.cssModulesScope .cssModules-duG1YAsJU2QEnzoN .cssModules-bCams3s7QhE2uvCj{width:50px;height:50px}.cssModulesScope .cssModules-duG1YAsJU2QEnzoN .cssModules-WJB4p_IpTjg1RyGM{margin-top:10px}.cssModulesScope .cssModules-MPZw5GkekmcLECdV .cssModules-CjwAeW1kSGEc2OdP{stroke:#73879c}.cssModulesScope .cssModules-MPZw5GkekmcLECdV .cssModules-wBp4yVbzq0EnrQgE{stroke:#73879c}.cssModulesScope .cssModules-MPZw5GkekmcLECdV .cssModules-WJB4p_IpTjg1RyGM{color:#73879c}.cssModulesScope .cssModules-OnkewTeH75IxrYXB .cssModules-CjwAeW1kSGEc2OdP{stroke:#fff}.cssModulesScope .cssModules-OnkewTeH75IxrYXB .cssModules-wBp4yVbzq0EnrQgE{stroke:#fff}.cssModulesScope .cssModules-OnkewTeH75IxrYXB .cssModules-WJB4p_IpTjg1RyGM{color:#fff}
.cssModulesScope .cssModules-ITkRATGCzOgOtw2r{display:flex;align-items:center}.cssModulesScope .cssModules-LG1lqCufUukGpKNf{display:flex;align-items:center;margin-right:8px}
.cssModulesScope .cssModules-aewByerImA8MGJMz{opacity:.3}
.cssModulesScope .cssModules-ujg5soHL_VEUCdI7{position:relative;margin:0}.cssModulesScope .cssModules-EfstpHUkhOUay_F_{position:relative}.cssModulesScope .cssModules-jeAo6FHapnA1I7Le{display:block;width:100%;height:36px;padding:8px 10px;border:0;outline:0;-webkit-appearance:none;box-shadow:inset 0 0 0 1px #73879c;text-align:left;text-align:start;background:#fff;border-radius:2px;color:#1f2a32}.cssModulesScope .cssModules-jeAo6FHapnA1I7Le.cssModules-EOvfCZ3NtY69OQA9{text-align:center}.cssModulesScope .cssModules-jeAo6FHapnA1I7Le.cssModules-UBk75HwwkMEvZwgf{text-align:right}.cssModulesScope .cssModules-jeAo6FHapnA1I7Le:hover{box-shadow:inset 0 0 0 2px #5fae9f}.cssModulesScope .cssModules-jeAo6FHapnA1I7Le:hover~.cssModules-MzrP9N71N40IOGEs{border-color:#5fae9f}.cssModulesScope .cssModules-jeAo6FHapnA1I7Le:focus{box-shadow:0 0 5px rgba(95,174,159,.7),inset 0 0 5px 2px rgba(95,174,159,.7),inset 0 0 0 2px #5fae9f}.cssModulesScope .cssModules-jeAo6FHapnA1I7Le:focus~.cssModules-MzrP9N71N40IOGEs{border-color:#5fae9f}.cssModulesScope .cssModules-uhw7fDapnEUa6dak,.cssModulesScope .cssModules-pVaSuiNBiG0G6Syb{background-color:#e6e9ed;box-shadow:inset 0 0 0 1px #fff;font-size:14px;height:45px;padding-left:20px;padding-right:20px}.cssModulesScope .cssModules-uhw7fDapnEUa6dak+.cssModules-eSiTuR0SLXAHPNVV,.cssModulesScope .cssModules-pVaSuiNBiG0G6Syb+.cssModules-eSiTuR0SLXAHPNVV{background-color:rgba(0,0,0,0);font-size:14px}.cssModulesScope .cssModules-uhw7fDapnEUa6dak.cssModules-EOvfCZ3NtY69OQA9+.cssModules-eSiTuR0SLXAHPNVV,.cssModulesScope .cssModules-pVaSuiNBiG0G6Syb.cssModules-EOvfCZ3NtY69OQA9+.cssModules-eSiTuR0SLXAHPNVV{left:50%;transform:translateX(-50%) translateY(-50%)}.cssModulesScope .cssModules-uhw7fDapnEUa6dak.cssModules-mQnEdN26As8u7ewz+.cssModules-eSiTuR0SLXAHPNVV,.cssModulesScope .cssModules-uhw7fDapnEUa6dak.cssModules-jeAo6FHapnA1I7Le:not(.cssModules-xC6wc7LVwBwK5waL):focus+.cssModules-eSiTuR0SLXAHPNVV,.cssModulesScope .cssModules-pVaSuiNBiG0G6Syb.cssModules-mQnEdN26As8u7ewz+.cssModules-eSiTuR0SLXAHPNVV,.cssModulesScope .cssModules-pVaSuiNBiG0G6Syb.cssModules-jeAo6FHapnA1I7Le:not(.cssModules-xC6wc7LVwBwK5waL):focus+.cssModules-eSiTuR0SLXAHPNVV{display:none}.cssModulesScope .cssModules-uhw7fDapnEUa6dak:hover,.cssModulesScope .cssModules-pVaSuiNBiG0G6Syb:hover{box-shadow:inset 0 0 0 2px #fff}.cssModulesScope .cssModules-uhw7fDapnEUa6dak:hover~.cssModules-MzrP9N71N40IOGEs,.cssModulesScope .cssModules-pVaSuiNBiG0G6Syb:hover~.cssModules-MzrP9N71N40IOGEs{border-color:#fff}.cssModulesScope .cssModules-uhw7fDapnEUa6dak:focus,.cssModulesScope .cssModules-pVaSuiNBiG0G6Syb:focus{box-shadow:0 0 5px rgba(255,255,255,.7),inset 0 0 5px 2px rgba(255,255,255,.7),inset 0 0 0 2px #fff}.cssModulesScope .cssModules-uhw7fDapnEUa6dak:focus~.cssModules-MzrP9N71N40IOGEs,.cssModulesScope .cssModules-pVaSuiNBiG0G6Syb:focus~.cssModules-MzrP9N71N40IOGEs{border-color:#fff}.cssModulesScope .cssModules-pVaSuiNBiG0G6Syb{letter-spacing:4px;font-size:20px;font-weight:700}.cssModulesScope .cssModules-mQnEdN26As8u7ewz.cssModules-IavQAPz172c2KT1u~.cssModules-eSiTuR0SLXAHPNVV,.cssModulesScope .cssModules-jeAo6FHapnA1I7Le:not(.cssModules-xC6wc7LVwBwK5waL):focus.cssModules-IavQAPz172c2KT1u~.cssModules-eSiTuR0SLXAHPNVV{padding:0 5px}.cssModulesScope .cssModules-mQnEdN26As8u7ewz~.cssModules-eSiTuR0SLXAHPNVV,.cssModulesScope .cssModules-jeAo6FHapnA1I7Le:not(.cssModules-xC6wc7LVwBwK5waL):focus~.cssModules-eSiTuR0SLXAHPNVV{transform:translate(6px, -6px);top:-1px;left:0;color:#73879c;font-style:normal;background:#fff;font-size:11px}.cssModulesScope .cssModules-gOucmOnasswG5UGz{box-shadow:inset 0 0 0 1px #46a147}.cssModulesScope .cssModules-gOucmOnasswG5UGz:hover{box-shadow:inset 0 0 0 2px #46a147}.cssModulesScope .cssModules-gOucmOnasswG5UGz:focus{box-shadow:0 0 5px rgba(70,161,71,.7),inset 0 0 5px 2px rgba(70,161,71,.7),inset 0 0 0 2px #46a147}.cssModulesScope .cssModules-gOucmOnasswG5UGz:hover~.cssModules-MzrP9N71N40IOGEs,.cssModulesScope .cssModules-gOucmOnasswG5UGz:focus~.cssModules-MzrP9N71N40IOGEs,.cssModulesScope .cssModules-gOucmOnasswG5UGz~.cssModules-MzrP9N71N40IOGEs{border-color:#46a147}.cssModulesScope .cssModules-YyS3e82QsUw4puXp{box-shadow:inset 0 0 0 1px #ff6565}.cssModulesScope .cssModules-YyS3e82QsUw4puXp:hover{box-shadow:inset 0 0 0 2px #ff6565}.cssModulesScope .cssModules-YyS3e82QsUw4puXp:focus{box-shadow:0 0 5px rgba(255,101,101,.7),inset 0 0 5px 2px rgba(255,101,101,.7),inset 0 0 0 2px #ff6565}.cssModulesScope .cssModules-YyS3e82QsUw4puXp:hover~.cssModules-MzrP9N71N40IOGEs,.cssModulesScope .cssModules-YyS3e82QsUw4puXp:focus~.cssModules-MzrP9N71N40IOGEs,.cssModulesScope .cssModules-YyS3e82QsUw4puXp~.cssModules-MzrP9N71N40IOGEs{border-color:#ff6565}.cssModulesScope .cssModules-ownRmxVkJ1Erkut_~.cssModules-MzrP9N71N40IOGEs,.cssModulesScope .cssModules-xC6wc7LVwBwK5waL~.cssModules-MzrP9N71N40IOGEs{opacity:.3}.cssModulesScope .cssModules-ownRmxVkJ1Erkut_~.cssModules-MzrP9N71N40IOGEs:hover svg,.cssModulesScope .cssModules-xC6wc7LVwBwK5waL~.cssModules-MzrP9N71N40IOGEs:hover svg{color:#73879c;transform:scale(1)}.cssModulesScope .cssModules-ownRmxVkJ1Erkut_{opacity:.3;background:rgba(0,0,0,0);box-shadow:inset 0 0 0 1px #73879c}.cssModulesScope .cssModules-ownRmxVkJ1Erkut_:hover{box-shadow:inset 0 0 0 1px #73879c}.cssModulesScope .cssModules-ownRmxVkJ1Erkut_+.cssModules-eSiTuR0SLXAHPNVV{opacity:1;color:rgba(115,135,156,.3);background:rgba(0,0,0,0)}.cssModulesScope .cssModules-ownRmxVkJ1Erkut_~.cssModules-MzrP9N71N40IOGEs:hover svg{color:#73879c;transform:scale(1)}.cssModulesScope .cssModules-xC6wc7LVwBwK5waL{box-shadow:inset 0 0 0 1px #a0adbc;background-color:#eee}.cssModulesScope .cssModules-xC6wc7LVwBwK5waL:hover:not(:focus){box-shadow:inset 0 0 0 1px #dfe1e5}.cssModulesScope .cssModules-xC6wc7LVwBwK5waL:hover:not(:focus)~.cssModules-MzrP9N71N40IOGEs{border-color:#73879c}.cssModulesScope .cssModules-xC6wc7LVwBwK5waL~.cssModules-eSiTuR0SLXAHPNVV{background:rgba(0,0,0,0)}.cssModulesScope .cssModules-xC6wc7LVwBwK5waL.cssModules-mQnEdN26As8u7ewz~.cssModules-eSiTuR0SLXAHPNVV{background:#fff}.cssModulesScope .cssModules-eSiTuR0SLXAHPNVV{position:absolute;transition:all .3s ease 0s;transition-property:transform,left,top;transform:translate(0, -50%);left:5px;top:50%;pointer-events:none;-webkit-user-select:none;user-select:none;font-style:italic;color:#73879c;padding:0 5px;background:#fff;border-radius:5px;font-size:12px}.cssModulesScope .cssModules-bJQV3jMwgzItokVJ{top:17px}.cssModulesScope .cssModules-mIqd7ty2Q5wKueny{display:block;margin-top:4px;color:#ff6565;font-size:13px}.cssModulesScope .cssModules-MzrP9N71N40IOGEs{position:absolute;-webkit-user-select:none;user-select:none;pointer-events:none;right:0;top:0;width:36px;height:100%;padding:0;padding-right:1px;text-align:center;display:flex;align-items:center;justify-content:center;border:0;background:rgba(0,0,0,0)}.cssModulesScope .cssModules-MzrP9N71N40IOGEs svg{will-change:color,transform;transition:color,transform .4s;transform:scale(1)}.cssModulesScope .cssModules-MzrP9N71N40IOGEs:hover svg{color:#4a5867;transform:scale(1.2)}.cssModulesScope .cssModules-pPwI4xkDikr8jDgI{pointer-events:none}.cssModulesScope .cssModules-mT7yhzh1jsujNcU9{font-size:15px;color:#73879c}.cssModulesScope .cssModules-G2E1aPRo8k0KdFVn{z-index:3;position:absolute;top:1px;bottom:1px;left:10px;padding:0;display:flex;justify-content:center;line-height:0;align-items:center;color:#73879c}.cssModulesScope .cssModules-AsvRR8Ckvc82NRZC{opacity:.3}span.cssModules-UMHJJ0NnN0clgZKD{position:absolute;top:0;bottom:0;right:10px;height:100%;display:flex;align-items:center;color:#73879c}.cssModulesScope .cssModules-K6ZPeoHAO9gyE9cg[type=number]::-webkit-outer-spin-button,.cssModulesScope .cssModules-K6ZPeoHAO9gyE9cg[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.cssModulesScope .cssModules-K6ZPeoHAO9gyE9cg[type=number]{-moz-appearance:textfield}.cssModulesScope .cssModules-SIwcjMNrOImftDev{height:20px;min-width:80px;padding-top:0;padding-bottom:1px;padding-left:10px;padding-right:10px;font-size:11px}.cssModulesScope .cssModules-SIwcjMNrOImftDev.cssModules-EOvfCZ3NtY69OQA9[type=number]{text-indent:10px}.cssModulesScope .cssModules-SIwcjMNrOImftDev~.cssModules-MzrP9N71N40IOGEs{width:20px;pointer-events:none}.cssModulesScope .cssModules-IavQAPz172c2KT1u{width:36px;font-size:13px;text-align:center}.cssModulesScope .cssModules-IavQAPz172c2KT1u~.cssModules-eSiTuR0SLXAHPNVV{padding:0 2px}.cssModulesScope .cssModules-Mdm35yEDgR9nlLgQ .cssModules-jeAo6FHapnA1I7Le{height:20px;padding:2px 10px;font-size:11px}.cssModulesScope .cssModules-Mdm35yEDgR9nlLgQ .cssModules-jeAo6FHapnA1I7Le:hover,.cssModulesScope .cssModules-Mdm35yEDgR9nlLgQ .cssModules-jeAo6FHapnA1I7Le:focus,.cssModulesScope .cssModules-Mdm35yEDgR9nlLgQ .cssModules-jeAo6FHapnA1I7Le:focus:hover{border:1px solid #5fae9f;padding:2px 10px}.cssModulesScope .cssModules-Mdm35yEDgR9nlLgQ .cssModules-nYRFY15MGI8dUWor{padding-right:30px}.cssModulesScope .cssModules-Mdm35yEDgR9nlLgQ .cssModules-nYRFY15MGI8dUWor:hover,.cssModulesScope .cssModules-Mdm35yEDgR9nlLgQ .cssModules-nYRFY15MGI8dUWor:focus,.cssModulesScope .cssModules-Mdm35yEDgR9nlLgQ .cssModules-nYRFY15MGI8dUWor:focus:hover{padding-right:29px}.cssModulesScope .cssModules-Mdm35yEDgR9nlLgQ .cssModules-MzrP9N71N40IOGEs{width:20px}.cssModulesScope .cssModules-Mdm35yEDgR9nlLgQ .cssModules-mT7yhzh1jsujNcU9{font-size:9px}.cssModulesScope .cssModules-DwSLnBDNG8nKF8_S{padding-right:46px}.cssModulesScope .cssModules-DwSLnBDNG8nKF8_S[type=number]::-webkit-outer-spin-button,.cssModulesScope .cssModules-DwSLnBDNG8nKF8_S[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.cssModulesScope .cssModules-DwSLnBDNG8nKF8_S[type=number]{-moz-appearance:textfield}.cssModulesScope .cssModules-nYRFY15MGI8dUWor{padding-right:46px}.cssModulesScope .cssModules-nYRFY15MGI8dUWor:hover,.cssModulesScope .cssModules-nYRFY15MGI8dUWor:focus,.cssModulesScope .cssModules-nYRFY15MGI8dUWor:focus:hover{padding-right:45px}.cssModulesScope .cssModules-FehjUUReJYgL89oZ{padding-left:20px}.cssModulesScope .cssModules-FehjUUReJYgL89oZ:not(.cssModules-mQnEdN26As8u7ewz)~.cssModules-eSiTuR0SLXAHPNVV{left:15px}
.pika-single{width:300px;display:inline-block;vertical-align:top;padding:10px;background:#fff;box-shadow:0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);z-index:400}.pika-single .pika-title{display:table;background:#60afa0;vertical-align:top;margin:-10px -10px 0;padding:10px}.pika-single .pika-title .pika-label{width:50%;float:left;margin-bottom:10px;padding-right:10px;font-size:15px;text-transform:uppercase;color:#fff;font-family:"Open Sans",sans-serif}.pika-single .pika-title .pika-label .pika-select{width:100%;padding:5px;display:inline-block;margin-top:5px;vertical-align:top;background:rgba(0,0,0,0);border:1px solid #4a9285}.pika-single .pika-title .pika-label .pika-select option{color:gray}.pika-single .pika-title .pika-label .pika-select option:disabled{color:#d3d3d3}.pika-single .pika-title .pika-label:nth-child(2){padding-right:0;padding-left:10px}.pika-single .pika-title .pika-prev{float:left;display:inline-block;background:#4a9285;border:0;color:#fff;padding:8px 15px;font-size:12px;text-transform:uppercase;transition:all .35s ease 0s}.pika-single .pika-title .pika-prev:hover{background:#397066}.pika-single .pika-title .pika-next{float:right;display:inline-block;background:#4a9285;border:0;color:#fff;padding:8px 15px;font-size:12px;text-transform:uppercase;transition:all .35s ease 0s}.pika-single .pika-title .pika-next:hover{background:#397066}.pika-single .pika-table{width:100%;margin-top:10px}.pika-single .pika-table thead tr th{text-transform:uppercase;font-size:15px;font-weight:500;font-family:"Open Sans",sans-serif;text-align:center;border-bottom:2px solid #ddd;padding:.4em .3em}.pika-single .pika-table thead tr th abbr{text-decoration:none;border:0}.pika-single .pika-table tbody tr td{padding:.3em .3em;text-align:center;font-weight:600}.pika-single .pika-table tbody tr td button{background:rgba(0,0,0,0);border:0;height:30px;width:30px;padding:0;border-radius:100%;transition:all .35s ease 0s}.pika-single .pika-table tbody tr td.is-selected button,.pika-single .pika-table tbody tr td:hover button{background:#90c791;color:#fff}body .embeddedServiceHelpButton .helpButton .uiButton{background-color:#212f40;font-family:"Salesforce Sans",sans-serif}body .embeddedServiceHelpButton .helpButton .uiButton:focus{outline:1px solid #212f40}@font-face{font-family:"Salesforce Sans";src:url("https://c1.sfdcstatic.com/etc/clientlibs/sfdc-aem-master/clientlibs_base/fonts/SalesforceSans-Regular.woff") format("woff"),url("https://c1.sfdcstatic.com/etc/clientlibs/sfdc-aem-master/clientlibs_base/fonts/SalesforceSans-Regular.ttf") format("truetype")}.globalScope .ReactModal__Content .input-style .input-label span{background:#fff}.globalScope .ReactModal__Overlay{background:#000 !important;background:rgba(23,32,38,.85) !important;overflow-y:auto}.globalScope .ReactModal__StylePrimary{margin:-20px}.globalScope .ReactModal__StylePrimary .responsive-table .table tbody>tr>td,.globalScope .ReactModal__StylePrimary .responsive-table .ux-table tbody>tr>td,.globalScope .ReactModal__StylePrimary .responsive-table .table tbody>tr>th,.globalScope .ReactModal__StylePrimary .responsive-table .ux-table tbody>tr>th{padding:8px 18px;border-color:#94999d}.globalScope .ReactModal__StylePrimary .modal-content{border:0;box-shadow:none}.globalScope .ReactModal__StylePrimary .modal-content .modal-header{text-align:center;padding:3px;background-color:#fafffa;border-radius:6px 6px 0 0}.globalScope .ReactModal__StylePrimary .modal-content .modal-body .responsive-table{margin-bottom:30px}.globalScope .ReactModal__StylePrimary .modal-content .modal-header h4{font-size:20px;font-weight:600;text-transform:uppercase;color:#46a147;line-height:2}.globalScope .ReactModal__StylePrimary .modal-content .modal-body{background-color:#fafffa}.globalScope .ReactModal__StylePrimary .modal-content .modal-footer{background-color:#fafffa}.globalScope .ReactModal__Content.ReactModal__Content--after-open{position:relative !important;left:auto !important;right:auto !important;top:auto !important;bottom:auto !important;margin:30px auto !important;padding:20px !important;overflow:visible !important;height:auto !important}@media only screen and (min-width: 992px){.globalScope .ReactModal__Content.ReactModal__Content--after-open{margin:60px auto !important}}.globalScope .ReactModal__Content:after,.globalScope .ReactModal__Content:before{content:" ";display:table}.globalScope .ReactModal__Content:after{clear:both}.is-disabled button.pika-button.pika-day{pointer-events:none;cursor:default;color:#999;opacity:.3}.is-today button.pika-button.pika-day{background:#4692b2;border-radius:50%;color:#fff}.pika-single .pika-table tbody tr td.is-disabled:hover button{background:none !important;color:#999}.pika-single.is-hidden{display:none !important}.pika-single button.pika-day{font-size:12px;font-weight:bold;color:#4c555b}.pika-single select.pika-select-month,.pika-single select.pika-select-year{color:#fff}body.state-mainMenu--isOpened{overflow:hidden;-webkit-overflow-scrolling:auto}body.modal-open{overflow:hidden;padding-right:15px}.globalScope{/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css *//*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;margin:0}.globalScope article,.globalScope aside,.globalScope details,.globalScope figcaption,.globalScope figure,.globalScope footer,.globalScope header,.globalScope hgroup,.globalScope main,.globalScope menu,.globalScope nav,.globalScope section,.globalScope summary{display:block}.globalScope audio,.globalScope canvas,.globalScope progress,.globalScope video{display:inline-block;vertical-align:baseline}.globalScope audio:not([controls]){display:none;height:0}.globalScope [hidden],.globalScope template{display:none}.globalScope a:not([class*=s-bg-]){background-color:rgba(0,0,0,0)}.globalScope a:active,.globalScope a:hover{outline:0}.globalScope abbr[title]{border-bottom:1px dotted}.globalScope b,.globalScope strong{font-weight:bold}.globalScope dfn{font-style:italic}.globalScope h1{font-size:2em;margin:.67em 0}.globalScope mark{background:#ff0;color:#000}.globalScope small{font-size:80%}.globalScope sub,.globalScope sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.globalScope sup{top:-0.5em}.globalScope sub{bottom:-0.25em}.globalScope img{border:0}.globalScope svg:not(:root){overflow:hidden}.globalScope figure{margin:1em 40px}.globalScope hr{box-sizing:content-box;height:0}.globalScope pre{overflow:auto}.globalScope code,.globalScope kbd,.globalScope pre,.globalScope samp{font-family:monospace,monospace;font-size:1em}.globalScope button:not([class*=s-text-]):not(.MuiButton-root):not(.v1-button),.globalScope input,.globalScope optgroup,.globalScope select,.globalScope textarea{color:inherit;font:inherit;margin:0}.globalScope button{overflow:visible}.globalScope button,.globalScope select{text-transform:none}.globalScope button,.globalScope input[type=button],.globalScope input[type=reset],.globalScope input[type=submit]{-webkit-appearance:button;cursor:pointer}.globalScope button[disabled],.globalScope input[disabled]{cursor:default}.globalScope button::-moz-focus-inner,.globalScope input::-moz-focus-inner{border:0;padding:0}.globalScope input{line-height:normal}.globalScope input[type=checkbox],.globalScope input[type=radio]{box-sizing:border-box;padding:0}.globalScope input[type=number]::-webkit-inner-spin-button,.globalScope input[type=number]::-webkit-outer-spin-button{height:auto}.globalScope input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}.globalScope input[type=search]::-webkit-search-cancel-button,.globalScope input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.globalScope fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.globalScope legend{border:0;padding:0}.globalScope textarea{overflow:auto}.globalScope optgroup{font-weight:bold}.globalScope table{border-collapse:collapse;border-spacing:0}.globalScope td,.globalScope th{padding:0}@media print{.globalScope *,.globalScope *:before,.globalScope *:after{background:rgba(0,0,0,0) !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}.globalScope a,.globalScope a:visited{text-decoration:underline}.globalScope a[href]:after{content:" (" attr(href) ")"}.globalScope abbr[title]:after{content:" (" attr(title) ")"}.globalScope a[href^="#"]:after,.globalScope a[href^="javascript:"]:after{content:""}.globalScope pre,.globalScope blockquote{border:1px solid #999;page-break-inside:avoid}.globalScope thead{display:table-header-group}.globalScope tr,.globalScope img{page-break-inside:avoid}.globalScope img{max-width:100% !important}.globalScope p,.globalScope h2,.globalScope h3{orphans:3;widows:3}.globalScope h2,.globalScope h3{page-break-after:avoid}.globalScope .navbar{display:none}.globalScope .btn>.caret,.globalScope .dropup>.btn>.caret{border-top-color:#000 !important}.globalScope .label{border:1px solid #000}.globalScope .table,.globalScope .ux-table{border-collapse:collapse !important}.globalScope .table td,.globalScope .ux-table td,.globalScope .table th,.globalScope .ux-table th{background-color:#fff !important}.globalScope .table-bordered th,.globalScope .table-bordered td{border:1px solid #ddd !important}}.globalScope *{box-sizing:border-box}.globalScope *:before,.globalScope *:after{box-sizing:border-box}.globalScope{-webkit-tap-highlight-color:rgba(0,0,0,0);font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;line-height:1.428571429;color:#333;background-color:#fff}.globalScope input,.globalScope button:not([class*=s-text-]):not(.MuiButton-root):not(.v1-button),.globalScope select,.globalScope textarea{font-family:inherit;font-size:inherit;line-height:inherit}.globalScope a:not([class*=s-text-]):not(.MuiButton-root):not(.v1-button){color:#337ab7;text-decoration:none}.globalScope a:not([class*=s-text-]):not(.MuiButton-root):not(.v1-button):hover,.globalScope a:not([class*=s-text-]):not(.MuiButton-root):not(.v1-button):focus{color:#23527c;text-decoration:underline}.globalScope a:not([class*=s-text-]):not(.MuiButton-root):not(.v1-button):focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.globalScope figure{margin:0}.globalScope img{vertical-align:middle}.globalScope .img-thumbnail{padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:2px;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.globalScope hr{margin-top:17px;margin-bottom:17px;border:0;border-top:1px solid #eee}.globalScope .sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.globalScope .sr-only-focusable:active,.globalScope .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.globalScope [role=button]{cursor:pointer}.globalScope h1,.globalScope h2,.globalScope h3,.globalScope h4,.globalScope h5,.globalScope h6,.globalScope .h1,.globalScope .h2,.globalScope .h3,.globalScope .h4,.globalScope .h5,.globalScope .h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.globalScope h1 small,.globalScope h1 .small,.globalScope h2 small,.globalScope h2 .small,.globalScope h3 small,.globalScope h3 .small,.globalScope h4 small,.globalScope h4 .small,.globalScope h5 small,.globalScope h5 .small,.globalScope h6 small,.globalScope h6 .small,.globalScope .h1 small,.globalScope .h1 .small,.globalScope .h2 small,.globalScope .h2 .small,.globalScope .h3 small,.globalScope .h3 .small,.globalScope .h4 small,.globalScope .h4 .small,.globalScope .h5 small,.globalScope .h5 .small,.globalScope .h6 small,.globalScope .h6 .small{font-weight:normal;line-height:1;color:#777}.globalScope h1,.globalScope .h1,.globalScope h2,.globalScope .h2,.globalScope h3,.globalScope .h3{margin-top:17px;margin-bottom:8.5px}.globalScope h1 small,.globalScope h1 .small,.globalScope .h1 small,.globalScope .h1 .small,.globalScope h2 small,.globalScope h2 .small,.globalScope .h2 small,.globalScope .h2 .small,.globalScope h3 small,.globalScope h3 .small,.globalScope .h3 small,.globalScope .h3 .small{font-size:65%}.globalScope h4,.globalScope .h4,.globalScope h5,.globalScope .h5,.globalScope h6,.globalScope .h6{margin-top:8.5px;margin-bottom:8.5px}.globalScope h4 small,.globalScope h4 .small,.globalScope .h4 small,.globalScope .h4 .small,.globalScope h5 small,.globalScope h5 .small,.globalScope .h5 small,.globalScope .h5 .small,.globalScope h6 small,.globalScope h6 .small,.globalScope .h6 small,.globalScope .h6 .small{font-size:75%}.globalScope h1,.globalScope .h1{font-size:31px}.globalScope h2,.globalScope .h2{font-size:25px}.globalScope h3,.globalScope .h3{font-size:21px}.globalScope h4,.globalScope .h4{font-size:15px}.globalScope h5,.globalScope .h5{font-size:12px}.globalScope h6,.globalScope .h6{font-size:11px}.globalScope p{margin:0 0 8.5px}.globalScope small,.globalScope .small{font-size:91%}.globalScope .text-left{text-align:left}.globalScope .text-right{text-align:right}.globalScope .text-center{text-align:center}.globalScope .text-justify{text-align:justify}.globalScope .text-nowrap{white-space:nowrap}.globalScope .text-lowercase{text-transform:lowercase}.globalScope .text-uppercase{text-transform:uppercase}.globalScope .text-capitalize{text-transform:capitalize}.globalScope .text-muted{color:#777}.globalScope ul,.globalScope ol{margin-top:0;margin-bottom:8.5px}.globalScope ul ul,.globalScope ul ol,.globalScope ol ul,.globalScope ol ol{margin-bottom:0}.globalScope .container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.globalScope .container:before,.globalScope .container:after{content:" ";display:table}.globalScope .container:after{clear:both}@media(min-width: 768px){.globalScope .container{width:750px}}@media(min-width: 992px){.globalScope .container{width:970px}}@media(min-width: 1200px){.globalScope .container{width:1170px}}.globalScope .container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.globalScope .container-fluid:before,.globalScope .container-fluid:after{content:" ";display:table}.globalScope .container-fluid:after{clear:both}.globalScope .row{margin-left:-15px;margin-right:-15px}.globalScope .row:before,.globalScope .row:after{content:" ";display:table}.globalScope .row:after{clear:both}.globalScope .col-xs-1,.globalScope .col-sm-1,.globalScope .col-md-1,.globalScope .col-lg-1,.globalScope .col-xs-2,.globalScope .col-sm-2,.globalScope .col-md-2,.globalScope .col-lg-2,.globalScope .col-xs-3,.globalScope .col-sm-3,.globalScope .col-md-3,.globalScope .col-lg-3,.globalScope .col-xs-4,.globalScope .col-sm-4,.globalScope .col-md-4,.globalScope .col-lg-4,.globalScope .col-xs-5,.globalScope .col-sm-5,.globalScope .col-md-5,.globalScope .col-lg-5,.globalScope .col-xs-6,.globalScope .col-sm-6,.globalScope .col-md-6,.globalScope .col-lg-6,.globalScope .col-xs-7,.globalScope .col-sm-7,.globalScope .col-md-7,.globalScope .col-lg-7,.globalScope .col-xs-8,.globalScope .col-sm-8,.globalScope .col-md-8,.globalScope .col-lg-8,.globalScope .col-xs-9,.globalScope .col-sm-9,.globalScope .col-md-9,.globalScope .col-lg-9,.globalScope .col-xs-10,.globalScope .col-sm-10,.globalScope .col-md-10,.globalScope .col-lg-10,.globalScope .col-xs-11,.globalScope .col-sm-11,.globalScope .col-md-11,.globalScope .col-lg-11,.globalScope .col-xs-12,.globalScope .col-sm-12,.globalScope .col-md-12,.globalScope .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.globalScope .col-xs-1,.globalScope .col-xs-2,.globalScope .col-xs-3,.globalScope .col-xs-4,.globalScope .col-xs-5,.globalScope .col-xs-6,.globalScope .col-xs-7,.globalScope .col-xs-8,.globalScope .col-xs-9,.globalScope .col-xs-10,.globalScope .col-xs-11,.globalScope .col-xs-12{float:left}.globalScope .col-xs-1{width:8.3333333333%}.globalScope .col-xs-2{width:16.6666666667%}.globalScope .col-xs-3{width:25%}.globalScope .col-xs-4{width:33.3333333333%}.globalScope .col-xs-5{width:41.6666666667%}.globalScope .col-xs-6{width:50%}.globalScope .col-xs-7{width:58.3333333333%}.globalScope .col-xs-8{width:66.6666666667%}.globalScope .col-xs-9{width:75%}.globalScope .col-xs-10{width:83.3333333333%}.globalScope .col-xs-11{width:91.6666666667%}.globalScope .col-xs-12{width:100%}.globalScope .col-xs-pull-0{right:auto}.globalScope .col-xs-pull-1{right:8.3333333333%}.globalScope .col-xs-pull-2{right:16.6666666667%}.globalScope .col-xs-pull-3{right:25%}.globalScope .col-xs-pull-4{right:33.3333333333%}.globalScope .col-xs-pull-5{right:41.6666666667%}.globalScope .col-xs-pull-6{right:50%}.globalScope .col-xs-pull-7{right:58.3333333333%}.globalScope .col-xs-pull-8{right:66.6666666667%}.globalScope .col-xs-pull-9{right:75%}.globalScope .col-xs-pull-10{right:83.3333333333%}.globalScope .col-xs-pull-11{right:91.6666666667%}.globalScope .col-xs-pull-12{right:100%}.globalScope .col-xs-push-0{left:auto}.globalScope .col-xs-push-1{left:8.3333333333%}.globalScope .col-xs-push-2{left:16.6666666667%}.globalScope .col-xs-push-3{left:25%}.globalScope .col-xs-push-4{left:33.3333333333%}.globalScope .col-xs-push-5{left:41.6666666667%}.globalScope .col-xs-push-6{left:50%}.globalScope .col-xs-push-7{left:58.3333333333%}.globalScope .col-xs-push-8{left:66.6666666667%}.globalScope .col-xs-push-9{left:75%}.globalScope .col-xs-push-10{left:83.3333333333%}.globalScope .col-xs-push-11{left:91.6666666667%}.globalScope .col-xs-push-12{left:100%}.globalScope .col-xs-offset-0{margin-left:0%}.globalScope .col-xs-offset-1{margin-left:8.3333333333%}.globalScope .col-xs-offset-2{margin-left:16.6666666667%}.globalScope .col-xs-offset-3{margin-left:25%}.globalScope .col-xs-offset-4{margin-left:33.3333333333%}.globalScope .col-xs-offset-5{margin-left:41.6666666667%}.globalScope .col-xs-offset-6{margin-left:50%}.globalScope .col-xs-offset-7{margin-left:58.3333333333%}.globalScope .col-xs-offset-8{margin-left:66.6666666667%}.globalScope .col-xs-offset-9{margin-left:75%}.globalScope .col-xs-offset-10{margin-left:83.3333333333%}.globalScope .col-xs-offset-11{margin-left:91.6666666667%}.globalScope .col-xs-offset-12{margin-left:100%}@media(min-width: 768px){.globalScope .col-sm-1,.globalScope .col-sm-2,.globalScope .col-sm-3,.globalScope .col-sm-4,.globalScope .col-sm-5,.globalScope .col-sm-6,.globalScope .col-sm-7,.globalScope .col-sm-8,.globalScope .col-sm-9,.globalScope .col-sm-10,.globalScope .col-sm-11,.globalScope .col-sm-12{float:left}.globalScope .col-sm-1{width:8.3333333333%}.globalScope .col-sm-2{width:16.6666666667%}.globalScope .col-sm-3{width:25%}.globalScope .col-sm-4{width:33.3333333333%}.globalScope .col-sm-5{width:41.6666666667%}.globalScope .col-sm-6{width:50%}.globalScope .col-sm-7{width:58.3333333333%}.globalScope .col-sm-8{width:66.6666666667%}.globalScope .col-sm-9{width:75%}.globalScope .col-sm-10{width:83.3333333333%}.globalScope .col-sm-11{width:91.6666666667%}.globalScope .col-sm-12{width:100%}.globalScope .col-sm-pull-0{right:auto}.globalScope .col-sm-pull-1{right:8.3333333333%}.globalScope .col-sm-pull-2{right:16.6666666667%}.globalScope .col-sm-pull-3{right:25%}.globalScope .col-sm-pull-4{right:33.3333333333%}.globalScope .col-sm-pull-5{right:41.6666666667%}.globalScope .col-sm-pull-6{right:50%}.globalScope .col-sm-pull-7{right:58.3333333333%}.globalScope .col-sm-pull-8{right:66.6666666667%}.globalScope .col-sm-pull-9{right:75%}.globalScope .col-sm-pull-10{right:83.3333333333%}.globalScope .col-sm-pull-11{right:91.6666666667%}.globalScope .col-sm-pull-12{right:100%}.globalScope .col-sm-push-0{left:auto}.globalScope .col-sm-push-1{left:8.3333333333%}.globalScope .col-sm-push-2{left:16.6666666667%}.globalScope .col-sm-push-3{left:25%}.globalScope .col-sm-push-4{left:33.3333333333%}.globalScope .col-sm-push-5{left:41.6666666667%}.globalScope .col-sm-push-6{left:50%}.globalScope .col-sm-push-7{left:58.3333333333%}.globalScope .col-sm-push-8{left:66.6666666667%}.globalScope .col-sm-push-9{left:75%}.globalScope .col-sm-push-10{left:83.3333333333%}.globalScope .col-sm-push-11{left:91.6666666667%}.globalScope .col-sm-push-12{left:100%}.globalScope .col-sm-offset-0{margin-left:0%}.globalScope .col-sm-offset-1{margin-left:8.3333333333%}.globalScope .col-sm-offset-2{margin-left:16.6666666667%}.globalScope .col-sm-offset-3{margin-left:25%}.globalScope .col-sm-offset-4{margin-left:33.3333333333%}.globalScope .col-sm-offset-5{margin-left:41.6666666667%}.globalScope .col-sm-offset-6{margin-left:50%}.globalScope .col-sm-offset-7{margin-left:58.3333333333%}.globalScope .col-sm-offset-8{margin-left:66.6666666667%}.globalScope .col-sm-offset-9{margin-left:75%}.globalScope .col-sm-offset-10{margin-left:83.3333333333%}.globalScope .col-sm-offset-11{margin-left:91.6666666667%}.globalScope .col-sm-offset-12{margin-left:100%}}@media(min-width: 992px){.globalScope .col-md-1,.globalScope .col-md-2,.globalScope .col-md-3,.globalScope .col-md-4,.globalScope .col-md-5,.globalScope .col-md-6,.globalScope .col-md-7,.globalScope .col-md-8,.globalScope .col-md-9,.globalScope .col-md-10,.globalScope .col-md-11,.globalScope .col-md-12{float:left}.globalScope .col-md-1{width:8.3333333333%}.globalScope .col-md-2{width:16.6666666667%}.globalScope .col-md-3{width:25%}.globalScope .col-md-4{width:33.3333333333%}.globalScope .col-md-5{width:41.6666666667%}.globalScope .col-md-6{width:50%}.globalScope .col-md-7{width:58.3333333333%}.globalScope .col-md-8{width:66.6666666667%}.globalScope .col-md-9{width:75%}.globalScope .col-md-10{width:83.3333333333%}.globalScope .col-md-11{width:91.6666666667%}.globalScope .col-md-12{width:100%}.globalScope .col-md-pull-0{right:auto}.globalScope .col-md-pull-1{right:8.3333333333%}.globalScope .col-md-pull-2{right:16.6666666667%}.globalScope .col-md-pull-3{right:25%}.globalScope .col-md-pull-4{right:33.3333333333%}.globalScope .col-md-pull-5{right:41.6666666667%}.globalScope .col-md-pull-6{right:50%}.globalScope .col-md-pull-7{right:58.3333333333%}.globalScope .col-md-pull-8{right:66.6666666667%}.globalScope .col-md-pull-9{right:75%}.globalScope .col-md-pull-10{right:83.3333333333%}.globalScope .col-md-pull-11{right:91.6666666667%}.globalScope .col-md-pull-12{right:100%}.globalScope .col-md-push-0{left:auto}.globalScope .col-md-push-1{left:8.3333333333%}.globalScope .col-md-push-2{left:16.6666666667%}.globalScope .col-md-push-3{left:25%}.globalScope .col-md-push-4{left:33.3333333333%}.globalScope .col-md-push-5{left:41.6666666667%}.globalScope .col-md-push-6{left:50%}.globalScope .col-md-push-7{left:58.3333333333%}.globalScope .col-md-push-8{left:66.6666666667%}.globalScope .col-md-push-9{left:75%}.globalScope .col-md-push-10{left:83.3333333333%}.globalScope .col-md-push-11{left:91.6666666667%}.globalScope .col-md-push-12{left:100%}.globalScope .col-md-offset-0{margin-left:0%}.globalScope .col-md-offset-1{margin-left:8.3333333333%}.globalScope .col-md-offset-2{margin-left:16.6666666667%}.globalScope .col-md-offset-3{margin-left:25%}.globalScope .col-md-offset-4{margin-left:33.3333333333%}.globalScope .col-md-offset-5{margin-left:41.6666666667%}.globalScope .col-md-offset-6{margin-left:50%}.globalScope .col-md-offset-7{margin-left:58.3333333333%}.globalScope .col-md-offset-8{margin-left:66.6666666667%}.globalScope .col-md-offset-9{margin-left:75%}.globalScope .col-md-offset-10{margin-left:83.3333333333%}.globalScope .col-md-offset-11{margin-left:91.6666666667%}.globalScope .col-md-offset-12{margin-left:100%}}@media(min-width: 1200px){.globalScope .col-lg-1,.globalScope .col-lg-2,.globalScope .col-lg-3,.globalScope .col-lg-4,.globalScope .col-lg-5,.globalScope .col-lg-6,.globalScope .col-lg-7,.globalScope .col-lg-8,.globalScope .col-lg-9,.globalScope .col-lg-10,.globalScope .col-lg-11,.globalScope .col-lg-12{float:left}.globalScope .col-lg-1{width:8.3333333333%}.globalScope .col-lg-2{width:16.6666666667%}.globalScope .col-lg-3{width:25%}.globalScope .col-lg-4{width:33.3333333333%}.globalScope .col-lg-5{width:41.6666666667%}.globalScope .col-lg-6{width:50%}.globalScope .col-lg-7{width:58.3333333333%}.globalScope .col-lg-8{width:66.6666666667%}.globalScope .col-lg-9{width:75%}.globalScope .col-lg-10{width:83.3333333333%}.globalScope .col-lg-11{width:91.6666666667%}.globalScope .col-lg-12{width:100%}.globalScope .col-lg-pull-0{right:auto}.globalScope .col-lg-pull-1{right:8.3333333333%}.globalScope .col-lg-pull-2{right:16.6666666667%}.globalScope .col-lg-pull-3{right:25%}.globalScope .col-lg-pull-4{right:33.3333333333%}.globalScope .col-lg-pull-5{right:41.6666666667%}.globalScope .col-lg-pull-6{right:50%}.globalScope .col-lg-pull-7{right:58.3333333333%}.globalScope .col-lg-pull-8{right:66.6666666667%}.globalScope .col-lg-pull-9{right:75%}.globalScope .col-lg-pull-10{right:83.3333333333%}.globalScope .col-lg-pull-11{right:91.6666666667%}.globalScope .col-lg-pull-12{right:100%}.globalScope .col-lg-push-0{left:auto}.globalScope .col-lg-push-1{left:8.3333333333%}.globalScope .col-lg-push-2{left:16.6666666667%}.globalScope .col-lg-push-3{left:25%}.globalScope .col-lg-push-4{left:33.3333333333%}.globalScope .col-lg-push-5{left:41.6666666667%}.globalScope .col-lg-push-6{left:50%}.globalScope .col-lg-push-7{left:58.3333333333%}.globalScope .col-lg-push-8{left:66.6666666667%}.globalScope .col-lg-push-9{left:75%}.globalScope .col-lg-push-10{left:83.3333333333%}.globalScope .col-lg-push-11{left:91.6666666667%}.globalScope .col-lg-push-12{left:100%}.globalScope .col-lg-offset-0{margin-left:0%}.globalScope .col-lg-offset-1{margin-left:8.3333333333%}.globalScope .col-lg-offset-2{margin-left:16.6666666667%}.globalScope .col-lg-offset-3{margin-left:25%}.globalScope .col-lg-offset-4{margin-left:33.3333333333%}.globalScope .col-lg-offset-5{margin-left:41.6666666667%}.globalScope .col-lg-offset-6{margin-left:50%}.globalScope .col-lg-offset-7{margin-left:58.3333333333%}.globalScope .col-lg-offset-8{margin-left:66.6666666667%}.globalScope .col-lg-offset-9{margin-left:75%}.globalScope .col-lg-offset-10{margin-left:83.3333333333%}.globalScope .col-lg-offset-11{margin-left:91.6666666667%}.globalScope .col-lg-offset-12{margin-left:100%}}.globalScope table{background-color:rgba(0,0,0,0)}.globalScope caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}.globalScope th{text-align:left}.globalScope .table,.globalScope .ux-table{width:100%;max-width:100%;margin-bottom:17px}.globalScope .table>thead>tr>th,.globalScope .ux-table>thead>tr>th,.globalScope .table>thead>tr>td,.globalScope .ux-table>thead>tr>td,.globalScope .table>tbody>tr>th,.globalScope .ux-table>tbody>tr>th,.globalScope .table>tbody>tr>td,.globalScope .ux-table>tbody>tr>td,.globalScope .table>tfoot>tr>th,.globalScope .ux-table>tfoot>tr>th,.globalScope .table>tfoot>tr>td,.globalScope .ux-table>tfoot>tr>td{padding:8px;line-height:1.428571429;vertical-align:top;border-top:1px solid #e6e9ed}.globalScope .table>thead>tr>th,.globalScope .ux-table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #e6e9ed}.globalScope .table>caption+thead>tr:first-child>th,.globalScope .ux-table>caption+thead>tr:first-child>th,.globalScope .table>caption+thead>tr:first-child>td,.globalScope .ux-table>caption+thead>tr:first-child>td,.globalScope .table>colgroup+thead>tr:first-child>th,.globalScope .ux-table>colgroup+thead>tr:first-child>th,.globalScope .table>colgroup+thead>tr:first-child>td,.globalScope .ux-table>colgroup+thead>tr:first-child>td,.globalScope .table>thead:first-child>tr:first-child>th,.globalScope .ux-table>thead:first-child>tr:first-child>th,.globalScope .table>thead:first-child>tr:first-child>td,.globalScope .ux-table>thead:first-child>tr:first-child>td{border-top:0}.globalScope .table>tbody+tbody,.globalScope .ux-table>tbody+tbody{border-top:2px solid #e6e9ed}.globalScope .table .table,.globalScope .ux-table .table,.globalScope .table .ux-table,.globalScope .ux-table .ux-table{background-color:#fff}.globalScope .table-bordered{border:1px solid #e6e9ed}.globalScope .table-bordered>thead>tr>th,.globalScope .table-bordered>thead>tr>td,.globalScope .table-bordered>tbody>tr>th,.globalScope .table-bordered>tbody>tr>td,.globalScope .table-bordered>tfoot>tr>th,.globalScope .table-bordered>tfoot>tr>td{border:1px solid #e6e9ed}.globalScope .table-bordered>thead>tr>th,.globalScope .table-bordered>thead>tr>td{border-bottom-width:2px}.globalScope .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.globalScope .table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width: 767px){.globalScope .table-responsive{width:100%;margin-bottom:12.75px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #e6e9ed}.globalScope .table-responsive>.table,.globalScope .table-responsive>.ux-table{margin-bottom:0}.globalScope .table-responsive>.table>thead>tr>th,.globalScope .table-responsive>.ux-table>thead>tr>th,.globalScope .table-responsive>.table>thead>tr>td,.globalScope .table-responsive>.ux-table>thead>tr>td,.globalScope .table-responsive>.table>tbody>tr>th,.globalScope .table-responsive>.ux-table>tbody>tr>th,.globalScope .table-responsive>.table>tbody>tr>td,.globalScope .table-responsive>.ux-table>tbody>tr>td,.globalScope .table-responsive>.table>tfoot>tr>th,.globalScope .table-responsive>.ux-table>tfoot>tr>th,.globalScope .table-responsive>.table>tfoot>tr>td,.globalScope .table-responsive>.ux-table>tfoot>tr>td{white-space:nowrap}.globalScope .table-responsive>.table-bordered{border:0}.globalScope .table-responsive>.table-bordered>thead>tr>th:first-child,.globalScope .table-responsive>.table-bordered>thead>tr>td:first-child,.globalScope .table-responsive>.table-bordered>tbody>tr>th:first-child,.globalScope .table-responsive>.table-bordered>tbody>tr>td:first-child,.globalScope .table-responsive>.table-bordered>tfoot>tr>th:first-child,.globalScope .table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.globalScope .table-responsive>.table-bordered>thead>tr>th:last-child,.globalScope .table-responsive>.table-bordered>thead>tr>td:last-child,.globalScope .table-responsive>.table-bordered>tbody>tr>th:last-child,.globalScope .table-responsive>.table-bordered>tbody>tr>td:last-child,.globalScope .table-responsive>.table-bordered>tfoot>tr>th:last-child,.globalScope .table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.globalScope .table-responsive>.table-bordered>tbody>tr:last-child>th,.globalScope .table-responsive>.table-bordered>tbody>tr:last-child>td,.globalScope .table-responsive>.table-bordered>tfoot>tr:last-child>th,.globalScope .table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}.globalScope fieldset{padding:0;margin:0;border:0;min-width:0}.globalScope legend{display:block;width:100%;padding:0;margin-bottom:17px;font-size:18px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}.globalScope label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}.globalScope input[type=search]{box-sizing:border-box}.globalScope input[type=radio],.globalScope input[type=checkbox]{margin:4px 0 0;margin-top:1px \9 ;line-height:normal}.globalScope input[type=file]{display:block}.globalScope input[type=range]{display:block;width:100%}.globalScope select[multiple],.globalScope select[size]{height:auto}.globalScope input[type=file]:focus,.globalScope input[type=radio]:focus,.globalScope input[type=checkbox]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.globalScope output{display:block;padding-top:7px;font-size:12px;line-height:1.428571429;color:#555}.globalScope .form-control,.globalScope .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control select{display:block;width:100%;height:31px;padding:6px 12px;font-size:12px;line-height:1.428571429;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:2px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.globalScope .form-control:focus,.globalScope .box-content>ul>li .box-control input:focus,.globalScope .box-content>ul>li .box-control select:focus{border-color:#66afe9;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.globalScope .form-control::-moz-placeholder,.globalScope .box-content>ul>li .box-control input::-moz-placeholder,.globalScope .box-content>ul>li .box-control select::-moz-placeholder{color:#999;opacity:1}.globalScope .form-control:-ms-input-placeholder,.globalScope .box-content>ul>li .box-control input:-ms-input-placeholder,.globalScope .box-content>ul>li .box-control select:-ms-input-placeholder{color:#999}.globalScope .form-control::-webkit-input-placeholder,.globalScope .box-content>ul>li .box-control input::-webkit-input-placeholder,.globalScope .box-content>ul>li .box-control select::-webkit-input-placeholder{color:#999}.globalScope .form-control::-ms-expand,.globalScope .box-content>ul>li .box-control input::-ms-expand,.globalScope .box-content>ul>li .box-control select::-ms-expand{border:0;background-color:rgba(0,0,0,0)}.globalScope .form-control[disabled],.globalScope .box-content>ul>li .box-control input[disabled],.globalScope .box-content>ul>li .box-control select[disabled],.globalScope .form-control[readonly],.globalScope .box-content>ul>li .box-control input[readonly],.globalScope .box-content>ul>li .box-control select[readonly],fieldset[disabled] .globalScope .form-control,fieldset[disabled] .globalScope .box-content>ul>li .box-control input,fieldset[disabled] .globalScope .box-content>ul>li .box-control select{background-color:#eee;opacity:1}.globalScope .form-control[disabled],.globalScope .box-content>ul>li .box-control input[disabled],.globalScope .box-content>ul>li .box-control select[disabled],fieldset[disabled] .globalScope .form-control,fieldset[disabled] .globalScope .box-content>ul>li .box-control input,fieldset[disabled] .globalScope .box-content>ul>li .box-control select{cursor:not-allowed}.globalScope textarea.form-control{height:auto}.globalScope input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio: 0){.globalScope input[type=date].form-control,.globalScope .box-content>ul>li .box-control input[type=date],.globalScope input[type=time].form-control,.globalScope .box-content>ul>li .box-control input[type=time],.globalScope input[type=datetime-local].form-control,.globalScope .box-content>ul>li .box-control input[type=datetime-local],.globalScope input[type=month].form-control,.globalScope .box-content>ul>li .box-control input[type=month]{line-height:31px}.globalScope input[type=date].input-sm,.globalScope .input-group-sm>input[type=date].form-control,.globalScope .box-content>ul>li .box-control .input-group-sm>input[type=date],.globalScope .input-group-sm>input[type=date].input-group-addon,.globalScope .input-group-sm>.input-group-btn>input[type=date].btn,.globalScope input[type=time].input-sm,.globalScope .input-group-sm>input[type=time].form-control,.globalScope .box-content>ul>li .box-control .input-group-sm>input[type=time],.globalScope .input-group-sm>input[type=time].input-group-addon,.globalScope .input-group-sm>.input-group-btn>input[type=time].btn,.globalScope input[type=datetime-local].input-sm,.globalScope .input-group-sm>input[type=datetime-local].form-control,.globalScope .box-content>ul>li .box-control .input-group-sm>input[type=datetime-local],.globalScope .input-group-sm>input[type=datetime-local].input-group-addon,.globalScope .input-group-sm>.input-group-btn>input[type=datetime-local].btn,.globalScope input[type=month].input-sm,.globalScope .input-group-sm>input[type=month].form-control,.globalScope .box-content>ul>li .box-control .input-group-sm>input[type=month],.globalScope .input-group-sm>input[type=month].input-group-addon,.globalScope .input-group-sm>.input-group-btn>input[type=month].btn{line-height:28px}.globalScope input[type=date] .input-group-sm input[type=date],.globalScope input[type=date] .input-group-sm input[type=time],.globalScope input[type=date] .input-group-sm input[type=datetime-local],.globalScope input[type=date] .input-group-sm input[type=month],.globalScope input[type=time] .input-group-sm input[type=date],.globalScope input[type=time] .input-group-sm input[type=time],.globalScope input[type=time] .input-group-sm input[type=datetime-local],.globalScope input[type=time] .input-group-sm input[type=month],.globalScope input[type=datetime-local] .input-group-sm input[type=date],.globalScope input[type=datetime-local] .input-group-sm input[type=time],.globalScope input[type=datetime-local] .input-group-sm input[type=datetime-local],.globalScope input[type=datetime-local] .input-group-sm input[type=month],.globalScope input[type=month] .input-group-sm input[type=date],.globalScope input[type=month] .input-group-sm input[type=time],.globalScope input[type=month] .input-group-sm input[type=datetime-local],.globalScope input[type=month] .input-group-sm input[type=month]{line-height:28px}.globalScope input[type=date].input-lg,.globalScope .input-group-lg>input[type=date].form-control,.globalScope .box-content>ul>li .box-control .input-group-lg>input[type=date],.globalScope .input-group-lg>input[type=date].input-group-addon,.globalScope .input-group-lg>.input-group-btn>input[type=date].btn,.globalScope input[type=time].input-lg,.globalScope .input-group-lg>input[type=time].form-control,.globalScope .box-content>ul>li .box-control .input-group-lg>input[type=time],.globalScope .input-group-lg>input[type=time].input-group-addon,.globalScope .input-group-lg>.input-group-btn>input[type=time].btn,.globalScope input[type=datetime-local].input-lg,.globalScope .input-group-lg>input[type=datetime-local].form-control,.globalScope .box-content>ul>li .box-control .input-group-lg>input[type=datetime-local],.globalScope .input-group-lg>input[type=datetime-local].input-group-addon,.globalScope .input-group-lg>.input-group-btn>input[type=datetime-local].btn,.globalScope input[type=month].input-lg,.globalScope .input-group-lg>input[type=month].form-control,.globalScope .box-content>ul>li .box-control .input-group-lg>input[type=month],.globalScope .input-group-lg>input[type=month].input-group-addon,.globalScope .input-group-lg>.input-group-btn>input[type=month].btn{line-height:42px}.globalScope input[type=date] .input-group-lg input[type=date],.globalScope input[type=date] .input-group-lg input[type=time],.globalScope input[type=date] .input-group-lg input[type=datetime-local],.globalScope input[type=date] .input-group-lg input[type=month],.globalScope input[type=time] .input-group-lg input[type=date],.globalScope input[type=time] .input-group-lg input[type=time],.globalScope input[type=time] .input-group-lg input[type=datetime-local],.globalScope input[type=time] .input-group-lg input[type=month],.globalScope input[type=datetime-local] .input-group-lg input[type=date],.globalScope input[type=datetime-local] .input-group-lg input[type=time],.globalScope input[type=datetime-local] .input-group-lg input[type=datetime-local],.globalScope input[type=datetime-local] .input-group-lg input[type=month],.globalScope input[type=month] .input-group-lg input[type=date],.globalScope input[type=month] .input-group-lg input[type=time],.globalScope input[type=month] .input-group-lg input[type=datetime-local],.globalScope input[type=month] .input-group-lg input[type=month]{line-height:42px}}.globalScope .form-group{margin-bottom:20px}.globalScope .radio,.globalScope .checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.globalScope .radio label,.globalScope .checkbox label{min-height:17px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.globalScope .radio input[type=radio],.globalScope .radio-inline input[type=radio],.globalScope .checkbox input[type=checkbox],.globalScope .checkbox-inline input[type=checkbox]{position:absolute;margin-left:-20px;margin-top:4px \9 }.globalScope .radio+.radio,.globalScope .checkbox+.checkbox{margin-top:-5px}.globalScope .radio-inline,.globalScope .checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.globalScope .radio-inline+.radio-inline,.globalScope .checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}.globalScope input[type=radio][disabled],.globalScope input[type=radio].disabled,fieldset[disabled] .globalScope input[type=radio],.globalScope input[type=checkbox][disabled],.globalScope input[type=checkbox].disabled,fieldset[disabled] .globalScope input[type=checkbox]{cursor:not-allowed}.globalScope .radio-inline.disabled,fieldset[disabled] .globalScope .radio-inline,.globalScope .checkbox-inline.disabled,fieldset[disabled] .globalScope .checkbox-inline{cursor:not-allowed}.globalScope .radio.disabled label,fieldset[disabled] .globalScope .radio label,.globalScope .checkbox.disabled label,fieldset[disabled] .globalScope .checkbox label{cursor:not-allowed}.globalScope .form-horizontal .radio,.globalScope .form-horizontal .checkbox,.globalScope .form-horizontal .radio-inline,.globalScope .form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.globalScope .form-horizontal .radio,.globalScope .form-horizontal .checkbox{min-height:24px}.globalScope .form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.globalScope .form-horizontal .form-group:before,.globalScope .form-horizontal .form-group:after{content:" ";display:table}.globalScope .form-horizontal .form-group:after{clear:both}@media(min-width: 768px){.globalScope .form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.globalScope .btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid rgba(0,0,0,0);white-space:nowrap;padding:6px 12px;font-size:12px;line-height:1.428571429;border-radius:2px;-webkit-user-select:none;user-select:none}.globalScope .btn:focus,.globalScope .btn.focus,.globalScope .btn:active:focus,.globalScope .btn:active.focus,.globalScope .btn.active:focus,.globalScope .btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.globalScope .btn:hover,.globalScope .btn:focus,.globalScope .btn.focus{color:#333;text-decoration:none}.globalScope .btn:active,.globalScope .btn.active{outline:0;background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.globalScope .btn.disabled,.globalScope .btn[disabled],fieldset[disabled] .globalScope .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);box-shadow:none}.globalScope a.btn.disabled,fieldset[disabled] .globalScope a.btn{pointer-events:none}.globalScope .btn-default{color:#333;background-color:#fff;border-color:#ccc}.globalScope .btn-default:focus,.globalScope .btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.globalScope .btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.globalScope .btn-default:active,.globalScope .btn-default.active,.open>.globalScope .btn-default.dropdown-toggle{color:#333;background-color:#e6e6e6;border-color:#adadad}.globalScope .btn-default:active:hover,.globalScope .btn-default:active:focus,.globalScope .btn-default:active.focus,.globalScope .btn-default.active:hover,.globalScope .btn-default.active:focus,.globalScope .btn-default.active.focus,.open>.globalScope .btn-default.dropdown-toggle:hover,.open>.globalScope .btn-default.dropdown-toggle:focus,.open>.globalScope .btn-default.dropdown-toggle.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.globalScope .btn-default:active,.globalScope .btn-default.active,.open>.globalScope .btn-default.dropdown-toggle{background-image:none}.globalScope .btn-default.disabled:hover,.globalScope .btn-default.disabled:focus,.globalScope .btn-default.disabled.focus,.globalScope .btn-default[disabled]:hover,.globalScope .btn-default[disabled]:focus,.globalScope .btn-default[disabled].focus,fieldset[disabled] .globalScope .btn-default:hover,fieldset[disabled] .globalScope .btn-default:focus,fieldset[disabled] .globalScope .btn-default.focus{background-color:#fff;border-color:#ccc}.globalScope .btn-default .badge{color:#fff;background-color:#333}.globalScope .btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.globalScope .btn-primary:focus,.globalScope .btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}.globalScope .btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.globalScope .btn-primary:active,.globalScope .btn-primary.active,.open>.globalScope .btn-primary.dropdown-toggle{color:#fff;background-color:#286090;border-color:#204d74}.globalScope .btn-primary:active:hover,.globalScope .btn-primary:active:focus,.globalScope .btn-primary:active.focus,.globalScope .btn-primary.active:hover,.globalScope .btn-primary.active:focus,.globalScope .btn-primary.active.focus,.open>.globalScope .btn-primary.dropdown-toggle:hover,.open>.globalScope .btn-primary.dropdown-toggle:focus,.open>.globalScope .btn-primary.dropdown-toggle.focus{color:#fff;background-color:#204d74;border-color:#122b40}.globalScope .btn-primary:active,.globalScope .btn-primary.active,.open>.globalScope .btn-primary.dropdown-toggle{background-image:none}.globalScope .btn-primary.disabled:hover,.globalScope .btn-primary.disabled:focus,.globalScope .btn-primary.disabled.focus,.globalScope .btn-primary[disabled]:hover,.globalScope .btn-primary[disabled]:focus,.globalScope .btn-primary[disabled].focus,fieldset[disabled] .globalScope .btn-primary:hover,fieldset[disabled] .globalScope .btn-primary:focus,fieldset[disabled] .globalScope .btn-primary.focus{background-color:#337ab7;border-color:#2e6da4}.globalScope .btn-primary .badge{color:#337ab7;background-color:#fff}.globalScope .btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.globalScope .btn-success:focus,.globalScope .btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.globalScope .btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.globalScope .btn-success:active,.globalScope .btn-success.active,.open>.globalScope .btn-success.dropdown-toggle{color:#fff;background-color:#449d44;border-color:#398439}.globalScope .btn-success:active:hover,.globalScope .btn-success:active:focus,.globalScope .btn-success:active.focus,.globalScope .btn-success.active:hover,.globalScope .btn-success.active:focus,.globalScope .btn-success.active.focus,.open>.globalScope .btn-success.dropdown-toggle:hover,.open>.globalScope .btn-success.dropdown-toggle:focus,.open>.globalScope .btn-success.dropdown-toggle.focus{color:#fff;background-color:#398439;border-color:#255625}.globalScope .btn-success:active,.globalScope .btn-success.active,.open>.globalScope .btn-success.dropdown-toggle{background-image:none}.globalScope .btn-success.disabled:hover,.globalScope .btn-success.disabled:focus,.globalScope .btn-success.disabled.focus,.globalScope .btn-success[disabled]:hover,.globalScope .btn-success[disabled]:focus,.globalScope .btn-success[disabled].focus,fieldset[disabled] .globalScope .btn-success:hover,fieldset[disabled] .globalScope .btn-success:focus,fieldset[disabled] .globalScope .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.globalScope .btn-success .badge{color:#5cb85c;background-color:#fff}.globalScope .btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.globalScope .btn-info:focus,.globalScope .btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.globalScope .btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.globalScope .btn-info:active,.globalScope .btn-info.active,.open>.globalScope .btn-info.dropdown-toggle{color:#fff;background-color:#31b0d5;border-color:#269abc}.globalScope .btn-info:active:hover,.globalScope .btn-info:active:focus,.globalScope .btn-info:active.focus,.globalScope .btn-info.active:hover,.globalScope .btn-info.active:focus,.globalScope .btn-info.active.focus,.open>.globalScope .btn-info.dropdown-toggle:hover,.open>.globalScope .btn-info.dropdown-toggle:focus,.open>.globalScope .btn-info.dropdown-toggle.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.globalScope .btn-info:active,.globalScope .btn-info.active,.open>.globalScope .btn-info.dropdown-toggle{background-image:none}.globalScope .btn-info.disabled:hover,.globalScope .btn-info.disabled:focus,.globalScope .btn-info.disabled.focus,.globalScope .btn-info[disabled]:hover,.globalScope .btn-info[disabled]:focus,.globalScope .btn-info[disabled].focus,fieldset[disabled] .globalScope .btn-info:hover,fieldset[disabled] .globalScope .btn-info:focus,fieldset[disabled] .globalScope .btn-info.focus{background-color:#5bc0de;border-color:#46b8da}.globalScope .btn-info .badge{color:#5bc0de;background-color:#fff}.globalScope .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.globalScope .btn-warning:focus,.globalScope .btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.globalScope .btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.globalScope .btn-warning:active,.globalScope .btn-warning.active,.open>.globalScope .btn-warning.dropdown-toggle{color:#fff;background-color:#ec971f;border-color:#d58512}.globalScope .btn-warning:active:hover,.globalScope .btn-warning:active:focus,.globalScope .btn-warning:active.focus,.globalScope .btn-warning.active:hover,.globalScope .btn-warning.active:focus,.globalScope .btn-warning.active.focus,.open>.globalScope .btn-warning.dropdown-toggle:hover,.open>.globalScope .btn-warning.dropdown-toggle:focus,.open>.globalScope .btn-warning.dropdown-toggle.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.globalScope .btn-warning:active,.globalScope .btn-warning.active,.open>.globalScope .btn-warning.dropdown-toggle{background-image:none}.globalScope .btn-warning.disabled:hover,.globalScope .btn-warning.disabled:focus,.globalScope .btn-warning.disabled.focus,.globalScope .btn-warning[disabled]:hover,.globalScope .btn-warning[disabled]:focus,.globalScope .btn-warning[disabled].focus,fieldset[disabled] .globalScope .btn-warning:hover,fieldset[disabled] .globalScope .btn-warning:focus,fieldset[disabled] .globalScope .btn-warning.focus{background-color:#f0ad4e;border-color:#eea236}.globalScope .btn-warning .badge{color:#f0ad4e;background-color:#fff}.globalScope .btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.globalScope .btn-danger:focus,.globalScope .btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.globalScope .btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.globalScope .btn-danger:active,.globalScope .btn-danger.active,.open>.globalScope .btn-danger.dropdown-toggle{color:#fff;background-color:#c9302c;border-color:#ac2925}.globalScope .btn-danger:active:hover,.globalScope .btn-danger:active:focus,.globalScope .btn-danger:active.focus,.globalScope .btn-danger.active:hover,.globalScope .btn-danger.active:focus,.globalScope .btn-danger.active.focus,.open>.globalScope .btn-danger.dropdown-toggle:hover,.open>.globalScope .btn-danger.dropdown-toggle:focus,.open>.globalScope .btn-danger.dropdown-toggle.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.globalScope .btn-danger:active,.globalScope .btn-danger.active,.open>.globalScope .btn-danger.dropdown-toggle{background-image:none}.globalScope .btn-danger.disabled:hover,.globalScope .btn-danger.disabled:focus,.globalScope .btn-danger.disabled.focus,.globalScope .btn-danger[disabled]:hover,.globalScope .btn-danger[disabled]:focus,.globalScope .btn-danger[disabled].focus,fieldset[disabled] .globalScope .btn-danger:hover,fieldset[disabled] .globalScope .btn-danger:focus,fieldset[disabled] .globalScope .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.globalScope .btn-danger .badge{color:#d9534f;background-color:#fff}.globalScope .btn-link{color:#337ab7;font-weight:normal;border-radius:0}.globalScope .btn-link,.globalScope .btn-link:active,.globalScope .btn-link.active,.globalScope .btn-link[disabled],fieldset[disabled] .globalScope .btn-link{background-color:rgba(0,0,0,0);box-shadow:none}.globalScope .btn-link,.globalScope .btn-link:hover,.globalScope .btn-link:focus,.globalScope .btn-link:active{border-color:rgba(0,0,0,0)}.globalScope .btn-link:hover,.globalScope .btn-link:focus{color:#23527c;text-decoration:underline;background-color:rgba(0,0,0,0)}.globalScope .btn-link[disabled]:hover,.globalScope .btn-link[disabled]:focus,fieldset[disabled] .globalScope .btn-link:hover,fieldset[disabled] .globalScope .btn-link:focus{color:#777;text-decoration:none}.globalScope .btn-lg,.globalScope .btn-group-lg>.btn{padding:10px 16px;font-size:15px;line-height:1.3333333;border-radius:6px}.globalScope .btn-sm,.globalScope .btn-group-sm>.btn{padding:5px 10px;font-size:11px;line-height:1.5;border-radius:3px}.globalScope .btn-xs,.globalScope .btn-group-xs>.btn{padding:1px 5px;font-size:11px;line-height:1.5;border-radius:3px}.globalScope .btn-block{display:block;width:100%}.globalScope .btn-block+.btn-block{margin-top:5px}.globalScope input[type=submit].btn-block,.globalScope input[type=reset].btn-block,.globalScope input[type=button].btn-block{width:100%}.globalScope .fade{opacity:0;transition:opacity .15s linear}.globalScope .fade.in{opacity:1}.globalScope .dropdown{position:relative}.globalScope .dropdown-toggle:focus{outline:0}.globalScope .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:12px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:2px;box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.globalScope .dropdown-menu.pull-right{right:0;left:auto}.globalScope .dropdown-menu .divider{height:1px;margin:7.5px 0;overflow:hidden;background-color:#e5e5e5}.globalScope .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#333;white-space:nowrap}.globalScope .dropdown-menu>li>a:hover,.globalScope .dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.globalScope .dropdown-menu>.active>a,.globalScope .dropdown-menu>.active>a:hover,.globalScope .dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.globalScope .dropdown-menu>.disabled>a,.globalScope .dropdown-menu>.disabled>a:hover,.globalScope .dropdown-menu>.disabled>a:focus{color:#777}.globalScope .dropdown-menu>.disabled>a:hover,.globalScope .dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:rgba(0,0,0,0);background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.globalScope .open>.dropdown-menu{display:block}.globalScope .open>a{outline:0}.globalScope .dropdown-menu-right{left:auto;right:0}.globalScope .dropdown-menu-left{left:0;right:auto}.globalScope .dropdown-header{display:block;padding:3px 20px;font-size:11px;line-height:1.428571429;color:#777;white-space:nowrap}.globalScope .dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.globalScope .pull-right>.dropdown-menu{right:0;left:auto}.globalScope .navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media(min-width: 768px){.globalScope .navbar-right .dropdown-menu{right:0;left:auto}.globalScope .navbar-right .dropdown-menu-left{left:0;right:auto}}.globalScope .btn-group{position:relative;display:inline-block;vertical-align:middle}.globalScope .btn-group>.btn{position:relative;float:left}.globalScope .btn-group>.btn:hover,.globalScope .btn-group>.btn:focus,.globalScope .btn-group>.btn:active,.globalScope .btn-group>.btn.active{z-index:2}.globalScope .btn-group .btn+.btn,.globalScope .btn-group .btn+.btn-group,.globalScope .btn-group .btn-group+.btn,.globalScope .btn-group .btn-group+.btn-group{margin-left:-1px}.globalScope .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.globalScope .btn-group>.btn:first-child{margin-left:0}.globalScope .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.globalScope .btn-group>.btn:last-child:not(:first-child),.globalScope .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.globalScope .btn-group>.btn-group{float:left}.globalScope .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.globalScope .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.globalScope .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.globalScope .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.globalScope .btn-group .dropdown-toggle:active,.globalScope .btn-group.open .dropdown-toggle{outline:0}.globalScope .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.globalScope .btn-group>.btn-lg+.dropdown-toggle,.globalScope .btn-group-lg.btn-group>.btn+.dropdown-toggle{padding-left:12px;padding-right:12px}.globalScope .btn-group.open .dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.globalScope .btn-group.open .dropdown-toggle.btn-link{box-shadow:none}.globalScope [data-toggle=buttons]>.btn input[type=radio],.globalScope [data-toggle=buttons]>.btn input[type=checkbox],.globalScope [data-toggle=buttons]>.btn-group>.btn input[type=radio],.globalScope [data-toggle=buttons]>.btn-group>.btn input[type=checkbox]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.globalScope .input-group{position:relative;display:table;border-collapse:separate}.globalScope .input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.globalScope .input-group .form-control,.globalScope .input-group .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .input-group input,.globalScope .input-group .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .input-group select{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.globalScope .input-group .form-control:focus,.globalScope .input-group .box-content>ul>li .box-control input:focus,.globalScope .box-content>ul>li .box-control .input-group input:focus,.globalScope .input-group .box-content>ul>li .box-control select:focus,.globalScope .box-content>ul>li .box-control .input-group select:focus{z-index:3}.globalScope .input-group .form-control,.globalScope .input-group .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .input-group input,.globalScope .input-group .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .input-group select{display:table-cell}.globalScope .input-group .form-control:not(:first-child):not(:last-child),.globalScope .input-group .box-content>ul>li .box-control input:not(:first-child):not(:last-child),.globalScope .box-content>ul>li .box-control .input-group input:not(:first-child):not(:last-child),.globalScope .input-group .box-content>ul>li .box-control select:not(:first-child):not(:last-child),.globalScope .box-content>ul>li .box-control .input-group select:not(:first-child):not(:last-child){border-radius:0}.globalScope .input-group .form-control:first-child,.globalScope .input-group .box-content>ul>li .box-control input:first-child,.globalScope .box-content>ul>li .box-control .input-group input:first-child,.globalScope .input-group .box-content>ul>li .box-control select:first-child,.globalScope .box-content>ul>li .box-control .input-group select:first-child,.globalScope .input-group-addon:first-child,.globalScope .input-group-btn:first-child>.btn,.globalScope .input-group-btn:first-child>.btn-group>.btn,.globalScope .input-group-btn:first-child>.dropdown-toggle,.globalScope .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.globalScope .input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.globalScope .input-group-addon:first-child{border-right:0}.globalScope .input-group .form-control:last-child,.globalScope .input-group .box-content>ul>li .box-control input:last-child,.globalScope .box-content>ul>li .box-control .input-group input:last-child,.globalScope .input-group .box-content>ul>li .box-control select:last-child,.globalScope .box-content>ul>li .box-control .input-group select:last-child,.globalScope .input-group-addon:last-child,.globalScope .input-group-btn:last-child>.btn,.globalScope .input-group-btn:last-child>.btn-group>.btn,.globalScope .input-group-btn:last-child>.dropdown-toggle,.globalScope .input-group-btn:first-child>.btn:not(:first-child),.globalScope .input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.globalScope .input-group-addon:last-child{border-left:0}.globalScope .nav{margin-bottom:0;padding-left:0;list-style:none}.globalScope .nav:before,.globalScope .nav:after{content:" ";display:table}.globalScope .nav:after{clear:both}.globalScope .nav>li{position:relative;display:block}.globalScope .nav>li>a{position:relative;display:block;padding:10px 15px}.globalScope .nav>li>a:hover,.globalScope .nav>li>a:focus{text-decoration:none;background-color:#eee}.globalScope .nav>li.disabled>a{color:#777}.globalScope .nav>li.disabled>a:hover,.globalScope .nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:rgba(0,0,0,0);cursor:not-allowed}.globalScope .nav .open>a,.globalScope .nav .open>a:hover,.globalScope .nav .open>a:focus{background-color:#eee;border-color:#337ab7}.globalScope .nav .nav-divider{height:1px;margin:7.5px 0;overflow:hidden;background-color:#e5e5e5}.globalScope .nav>li>a>img{max-width:none}.globalScope .nav-tabs{border-bottom:1px solid #ddd}.globalScope .nav-tabs>li{float:left;margin-bottom:-1px}.globalScope .nav-tabs>li>a{margin-right:2px;line-height:1.428571429;border:1px solid rgba(0,0,0,0);border-radius:2px 2px 0 0}.globalScope .nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.globalScope .nav-tabs>li.active>a,.globalScope .nav-tabs>li.active>a:hover,.globalScope .nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:rgba(0,0,0,0);cursor:default}.globalScope .tab-content>.tab-pane{display:none}.globalScope .tab-content>.active{display:block}.globalScope .nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.globalScope .breadcrumb{padding:8px 15px;margin-bottom:17px;list-style:none;background-color:#f5f5f5;border-radius:2px}.globalScope .breadcrumb>li{display:inline-block}.globalScope .breadcrumb>li+li:before{content:"/ ";padding:0 5px;color:#ccc}.globalScope .breadcrumb>.active{color:#777}.globalScope .pagination{display:inline-block;padding-left:0;margin:17px 0;border-radius:2px}.globalScope .pagination>li{display:inline}.globalScope .pagination>li>a,.globalScope .pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.428571429;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.globalScope .pagination>li:first-child>a,.globalScope .pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:2px;border-top-left-radius:2px}.globalScope .pagination>li:last-child>a,.globalScope .pagination>li:last-child>span{border-bottom-right-radius:2px;border-top-right-radius:2px}.globalScope .pagination>li>a:hover,.globalScope .pagination>li>a:focus,.globalScope .pagination>li>span:hover,.globalScope .pagination>li>span:focus{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.globalScope .pagination>.active>a,.globalScope .pagination>.active>a:hover,.globalScope .pagination>.active>a:focus,.globalScope .pagination>.active>span,.globalScope .pagination>.active>span:hover,.globalScope .pagination>.active>span:focus{z-index:3;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.globalScope .pagination>.disabled>span,.globalScope .pagination>.disabled>span:hover,.globalScope .pagination>.disabled>span:focus,.globalScope .pagination>.disabled>a,.globalScope .pagination>.disabled>a:hover,.globalScope .pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.globalScope .label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.globalScope .label:empty{display:none}.globalScope .btn .label{position:relative;top:-1px}.globalScope a.label:hover,.globalScope a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.globalScope .badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:11px;font-weight:bold;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.globalScope .badge:empty{display:none}.btn .globalScope{position:relative;top:-1px}.btn-xs .globalScope,.btn-group-xs>.btn .globalScope{top:0;padding:1px 5px}.globalScope .list-group-item.active>.badge,.globalScope .nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.globalScope .list-group-item>.badge{float:right}.globalScope .list-group-item>.badge+.badge{margin-right:5px}.globalScope .nav-pills>li>a>.badge{margin-left:3px}.globalScope a.badge:hover,.globalScope a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.globalScope .alert{padding:15px;margin-bottom:17px;border:1px solid rgba(0,0,0,0);border-radius:2px}.globalScope .alert h4{margin-top:0;color:inherit}.globalScope .alert .alert-link{font-weight:bold}.globalScope .alert>p,.globalScope .alert>ul{margin-bottom:0}.globalScope .alert>p+p{margin-top:5px}.globalScope .alert-dismissible{padding-right:35px}.globalScope .alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.globalScope .alert-success{background-color:#5cb85c;border-color:#d6e9c6;color:#3c763d}.globalScope .alert-success hr{border-top-color:#c9e2b3}.globalScope .alert-success .alert-link{color:#2b542c}.globalScope .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.globalScope .alert-info hr{border-top-color:#a6e1ec}.globalScope .alert-info .alert-link{color:#245269}.globalScope .alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.globalScope .alert-warning hr{border-top-color:#f7e1b5}.globalScope .alert-warning .alert-link{color:#66512c}.globalScope .alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.globalScope .alert-danger hr{border-top-color:#e4b9c0}.globalScope .alert-danger .alert-link{color:#843534}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.globalScope .progress{overflow:hidden;height:17px;margin-bottom:17px;background-color:#f5f5f5;border-radius:2px;box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.globalScope .progress-bar{float:left;width:0%;height:100%;font-size:11px;line-height:17px;color:#fff;text-align:center;background-color:#337ab7;box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);transition:width .6s ease}.globalScope .progress-striped .progress-bar,.globalScope .progress-bar-striped{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.globalScope .progress.active .progress-bar,.globalScope .progress-bar.active{animation:progress-bar-stripes 2s linear infinite}.globalScope .progress-bar-success{background-color:#5cb85c}.progress-striped .globalScope .progress-bar-success{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)}.globalScope .progress-bar-info{background-color:#5bc0de}.progress-striped .globalScope .progress-bar-info{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)}.globalScope .progress-bar-warning{background-color:#f0ad4e}.progress-striped .globalScope .progress-bar-warning{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)}.globalScope .progress-bar-danger{background-color:#d9534f}.progress-striped .globalScope .progress-bar-danger{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)}.globalScope .panel{margin-bottom:17px;background-color:#fff;border:1px solid rgba(0,0,0,0);border-radius:2px;box-shadow:0 1px 1px rgba(0,0,0,.05)}.globalScope .panel-body{padding:15px}.globalScope .panel-body:before,.globalScope .panel-body:after{content:" ";display:table}.globalScope .panel-body:after{clear:both}.globalScope .panel-heading{padding:10px 15px;border-bottom:1px solid rgba(0,0,0,0);border-top-right-radius:1px;border-top-left-radius:1px}.globalScope .panel-heading>.dropdown .dropdown-toggle{color:inherit}.globalScope .panel-title{margin-top:0;margin-bottom:0;font-size:14px;color:inherit}.globalScope .panel-title>a,.globalScope .panel-title>small,.globalScope .panel-title>.small,.globalScope .panel-title>small>a,.globalScope .panel-title>.small>a{color:inherit}.globalScope .panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.globalScope .panel>.list-group,.globalScope .panel>.panel-collapse>.list-group{margin-bottom:0}.globalScope .panel>.list-group .list-group-item,.globalScope .panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.globalScope .panel>.list-group:first-child .list-group-item:first-child,.globalScope .panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:1px;border-top-left-radius:1px}.globalScope .panel>.list-group:last-child .list-group-item:last-child,.globalScope .panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.globalScope .panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.globalScope .panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.globalScope .list-group+.panel-footer{border-top-width:0}.globalScope .panel>.table,.globalScope .panel>.ux-table,.globalScope .panel>.table-responsive>.table,.globalScope .panel>.table-responsive>.ux-table,.globalScope .panel>.panel-collapse>.table,.globalScope .panel>.panel-collapse>.ux-table{margin-bottom:0}.globalScope .panel>.table caption,.globalScope .panel>.ux-table caption,.globalScope .panel>.table-responsive>.table caption,.globalScope .panel>.table-responsive>.ux-table caption,.globalScope .panel>.panel-collapse>.table caption,.globalScope .panel>.panel-collapse>.ux-table caption{padding-left:15px;padding-right:15px}.globalScope .panel>.table:first-child,.globalScope .panel>.ux-table:first-child,.globalScope .panel>.table-responsive:first-child>.table:first-child,.globalScope .panel>.table-responsive:first-child>.ux-table:first-child{border-top-right-radius:1px;border-top-left-radius:1px}.globalScope .panel>.table:first-child>thead:first-child>tr:first-child,.globalScope .panel>.ux-table:first-child>thead:first-child>tr:first-child,.globalScope .panel>.table:first-child>tbody:first-child>tr:first-child,.globalScope .panel>.ux-table:first-child>tbody:first-child>tr:first-child,.globalScope .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.globalScope .panel>.table-responsive:first-child>.ux-table:first-child>thead:first-child>tr:first-child,.globalScope .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.globalScope .panel>.table-responsive:first-child>.ux-table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:1px;border-top-right-radius:1px}.globalScope .panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.globalScope .panel>.ux-table:first-child>thead:first-child>tr:first-child td:first-child,.globalScope .panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.globalScope .panel>.ux-table:first-child>thead:first-child>tr:first-child th:first-child,.globalScope .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.globalScope .panel>.ux-table:first-child>tbody:first-child>tr:first-child td:first-child,.globalScope .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.globalScope .panel>.ux-table:first-child>tbody:first-child>tr:first-child th:first-child,.globalScope .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.globalScope .panel>.table-responsive:first-child>.ux-table:first-child>thead:first-child>tr:first-child td:first-child,.globalScope .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.globalScope .panel>.table-responsive:first-child>.ux-table:first-child>thead:first-child>tr:first-child th:first-child,.globalScope .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.globalScope .panel>.table-responsive:first-child>.ux-table:first-child>tbody:first-child>tr:first-child td:first-child,.globalScope .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.globalScope .panel>.table-responsive:first-child>.ux-table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:1px}.globalScope .panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.globalScope .panel>.ux-table:first-child>thead:first-child>tr:first-child td:last-child,.globalScope .panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.globalScope .panel>.ux-table:first-child>thead:first-child>tr:first-child th:last-child,.globalScope .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.globalScope .panel>.ux-table:first-child>tbody:first-child>tr:first-child td:last-child,.globalScope .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.globalScope .panel>.ux-table:first-child>tbody:first-child>tr:first-child th:last-child,.globalScope .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.globalScope .panel>.table-responsive:first-child>.ux-table:first-child>thead:first-child>tr:first-child td:last-child,.globalScope .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.globalScope .panel>.table-responsive:first-child>.ux-table:first-child>thead:first-child>tr:first-child th:last-child,.globalScope .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.globalScope .panel>.table-responsive:first-child>.ux-table:first-child>tbody:first-child>tr:first-child td:last-child,.globalScope .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.globalScope .panel>.table-responsive:first-child>.ux-table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:1px}.globalScope .panel>.table:last-child,.globalScope .panel>.ux-table:last-child,.globalScope .panel>.table-responsive:last-child>.table:last-child,.globalScope .panel>.table-responsive:last-child>.ux-table:last-child{border-bottom-right-radius:1px;border-bottom-left-radius:1px}.globalScope .panel>.table:last-child>tbody:last-child>tr:last-child,.globalScope .panel>.ux-table:last-child>tbody:last-child>tr:last-child,.globalScope .panel>.table:last-child>tfoot:last-child>tr:last-child,.globalScope .panel>.ux-table:last-child>tfoot:last-child>tr:last-child,.globalScope .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.globalScope .panel>.table-responsive:last-child>.ux-table:last-child>tbody:last-child>tr:last-child,.globalScope .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.globalScope .panel>.table-responsive:last-child>.ux-table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:1px;border-bottom-right-radius:1px}.globalScope .panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.globalScope .panel>.ux-table:last-child>tbody:last-child>tr:last-child td:first-child,.globalScope .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.globalScope .panel>.ux-table:last-child>tbody:last-child>tr:last-child th:first-child,.globalScope .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.globalScope .panel>.ux-table:last-child>tfoot:last-child>tr:last-child td:first-child,.globalScope .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.globalScope .panel>.ux-table:last-child>tfoot:last-child>tr:last-child th:first-child,.globalScope .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.globalScope .panel>.table-responsive:last-child>.ux-table:last-child>tbody:last-child>tr:last-child td:first-child,.globalScope .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.globalScope .panel>.table-responsive:last-child>.ux-table:last-child>tbody:last-child>tr:last-child th:first-child,.globalScope .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.globalScope .panel>.table-responsive:last-child>.ux-table:last-child>tfoot:last-child>tr:last-child td:first-child,.globalScope .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.globalScope .panel>.table-responsive:last-child>.ux-table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:1px}.globalScope .panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.globalScope .panel>.ux-table:last-child>tbody:last-child>tr:last-child td:last-child,.globalScope .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.globalScope .panel>.ux-table:last-child>tbody:last-child>tr:last-child th:last-child,.globalScope .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.globalScope .panel>.ux-table:last-child>tfoot:last-child>tr:last-child td:last-child,.globalScope .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.globalScope .panel>.ux-table:last-child>tfoot:last-child>tr:last-child th:last-child,.globalScope .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.globalScope .panel>.table-responsive:last-child>.ux-table:last-child>tbody:last-child>tr:last-child td:last-child,.globalScope .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.globalScope .panel>.table-responsive:last-child>.ux-table:last-child>tbody:last-child>tr:last-child th:last-child,.globalScope .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.globalScope .panel>.table-responsive:last-child>.ux-table:last-child>tfoot:last-child>tr:last-child td:last-child,.globalScope .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.globalScope .panel>.table-responsive:last-child>.ux-table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:1px}.globalScope .panel>.panel-body+.table,.globalScope .panel>.panel-body+.ux-table,.globalScope .panel>.panel-body+.table-responsive,.globalScope .panel>.table+.panel-body,.globalScope .panel>.ux-table+.panel-body,.globalScope .panel>.table-responsive+.panel-body{border-top:1px solid #e6e9ed}.globalScope .panel>.table>tbody:first-child>tr:first-child th,.globalScope .panel>.ux-table>tbody:first-child>tr:first-child th,.globalScope .panel>.table>tbody:first-child>tr:first-child td,.globalScope .panel>.ux-table>tbody:first-child>tr:first-child td{border-top:0}.globalScope .panel>.table-bordered,.globalScope .panel>.table-responsive>.table-bordered{border:0}.globalScope .panel>.table-bordered>thead>tr>th:first-child,.globalScope .panel>.table-bordered>thead>tr>td:first-child,.globalScope .panel>.table-bordered>tbody>tr>th:first-child,.globalScope .panel>.table-bordered>tbody>tr>td:first-child,.globalScope .panel>.table-bordered>tfoot>tr>th:first-child,.globalScope .panel>.table-bordered>tfoot>tr>td:first-child,.globalScope .panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.globalScope .panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.globalScope .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.globalScope .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.globalScope .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.globalScope .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.globalScope .panel>.table-bordered>thead>tr>th:last-child,.globalScope .panel>.table-bordered>thead>tr>td:last-child,.globalScope .panel>.table-bordered>tbody>tr>th:last-child,.globalScope .panel>.table-bordered>tbody>tr>td:last-child,.globalScope .panel>.table-bordered>tfoot>tr>th:last-child,.globalScope .panel>.table-bordered>tfoot>tr>td:last-child,.globalScope .panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.globalScope .panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.globalScope .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.globalScope .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.globalScope .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.globalScope .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.globalScope .panel>.table-bordered>thead>tr:first-child>td,.globalScope .panel>.table-bordered>thead>tr:first-child>th,.globalScope .panel>.table-bordered>tbody>tr:first-child>td,.globalScope .panel>.table-bordered>tbody>tr:first-child>th,.globalScope .panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.globalScope .panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.globalScope .panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.globalScope .panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.globalScope .panel>.table-bordered>tbody>tr:last-child>td,.globalScope .panel>.table-bordered>tbody>tr:last-child>th,.globalScope .panel>.table-bordered>tfoot>tr:last-child>td,.globalScope .panel>.table-bordered>tfoot>tr:last-child>th,.globalScope .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.globalScope .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.globalScope .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.globalScope .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.globalScope .panel>.table-responsive{border:0;margin-bottom:0}.globalScope .panel-group{margin-bottom:17px}.globalScope .panel-group .panel{margin-bottom:0;border-radius:2px}.globalScope .panel-group .panel+.panel{margin-top:5px}.globalScope .panel-group .panel-heading{border-bottom:0}.globalScope .panel-group .panel-heading+.panel-collapse>.panel-body,.globalScope .panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.globalScope .panel-group .panel-footer{border-top:0}.globalScope .panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.globalScope .panel-default{border-color:#ddd}.globalScope .panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.globalScope .panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.globalScope .panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.globalScope .panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.globalScope .panel-primary{border-color:#337ab7}.globalScope .panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.globalScope .panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.globalScope .panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.globalScope .panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.globalScope .panel-success{border-color:#d6e9c6}.globalScope .panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.globalScope .panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.globalScope .panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.globalScope .panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.globalScope .panel-info{border-color:#bce8f1}.globalScope .panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.globalScope .panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.globalScope .panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.globalScope .panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.globalScope .panel-warning{border-color:#faebcc}.globalScope .panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.globalScope .panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.globalScope .panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.globalScope .panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.globalScope .panel-danger{border-color:#ebccd1}.globalScope .panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.globalScope .panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.globalScope .panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.globalScope .panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.globalScope .embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.globalScope .embed-responsive .embed-responsive-item,.globalScope .embed-responsive iframe,.globalScope .embed-responsive embed,.globalScope .embed-responsive object,.globalScope .embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.globalScope .embed-responsive-16by9{padding-bottom:56.25%}.globalScope .embed-responsive-4by3{padding-bottom:75%}.globalScope .close{float:right;font-size:18px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.globalScope .close:hover,.globalScope .close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}.globalScope button.close{padding:0;cursor:pointer;background:rgba(0,0,0,0);border:0;-webkit-appearance:none}.globalScope .modal-open{overflow:hidden}.globalScope .modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.globalScope .modal.fade .modal-dialog{transform:translate(0, -25%);transition:transform .3s ease-out}.globalScope .modal.in .modal-dialog{transform:translate(0, 0)}.globalScope .modal-open .modal{overflow-x:hidden;overflow-y:auto}.globalScope .modal-dialog{position:relative;width:auto;margin:10px}.globalScope .modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.globalScope .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.globalScope .modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.globalScope .modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.globalScope .modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.globalScope .modal-header:before,.globalScope .modal-header:after{content:" ";display:table}.globalScope .modal-header:after{clear:both}.globalScope .modal-header .close{margin-top:-2px}.globalScope .modal-title{margin:0;line-height:1.428571429}.globalScope .modal-body{position:relative;padding:15px}.globalScope .modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.globalScope .modal-footer:before,.globalScope .modal-footer:after{content:" ";display:table}.globalScope .modal-footer:after{clear:both}.globalScope .modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.globalScope .modal-footer .btn-group .btn+.btn{margin-left:-1px}.globalScope .modal-footer .btn-block+.btn-block{margin-left:0}.globalScope .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width: 768px){.globalScope .modal-dialog{width:600px;margin:30px auto}.globalScope .modal-content{box-shadow:0 5px 15px rgba(0,0,0,.5)}.globalScope .modal-sm{width:300px}}@media(min-width: 992px){.globalScope .modal-lg{width:900px}}.globalScope .tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.428571429;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:11px;opacity:0;filter:alpha(opacity=0)}.globalScope .tooltip.in{opacity:.9;filter:alpha(opacity=90)}.globalScope .tooltip.top{margin-top:-3px;padding:5px 0}.globalScope .tooltip.right{margin-left:3px;padding:0 5px}.globalScope .tooltip.bottom{margin-top:3px;padding:5px 0}.globalScope .tooltip.left{margin-left:-3px;padding:0 5px}.globalScope .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:2px}.globalScope .tooltip-arrow{position:absolute;width:0;height:0;border-color:rgba(0,0,0,0);border-style:solid}.globalScope .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.globalScope .tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.globalScope .tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.globalScope .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.globalScope .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.globalScope .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.globalScope .tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.globalScope .tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.globalScope .clearfix:before,.globalScope .sh-modal__footer--clearfix:before,.globalScope .form-footer:before,.globalScope .clearfix:after,.globalScope .sh-modal__footer--clearfix:after,.globalScope .form-footer:after{content:" ";display:table}.globalScope .clearfix:after,.globalScope .sh-modal__footer--clearfix:after,.globalScope .form-footer:after{clear:both}.globalScope .center-block{display:block;margin-left:auto;margin-right:auto}.globalScope .pull-right{float:right !important}.globalScope .pull-left{float:left !important}.globalScope .hide{display:none !important}.globalScope .show{display:block !important}.globalScope .invisible{visibility:hidden}.globalScope .text-hide{font:0/0 a;color:rgba(0,0,0,0);text-shadow:none;background-color:rgba(0,0,0,0);border:0}.globalScope .hidden{display:none !important}.globalScope .affix{position:fixed}.globalScope .visible-xs{display:none !important}.globalScope .visible-sm{display:none !important}.globalScope .visible-md{display:none !important}.globalScope .visible-lg{display:none !important}.globalScope .visible-xs-block,.globalScope .visible-xs-inline,.globalScope .visible-xs-inline-block,.globalScope .visible-sm-block,.globalScope .visible-sm-inline,.globalScope .visible-sm-inline-block,.globalScope .visible-md-block,.globalScope .visible-md-inline,.globalScope .visible-md-inline-block,.globalScope .visible-lg-block,.globalScope .visible-lg-inline,.globalScope .visible-lg-inline-block{display:none !important}@media(max-width: 767px){.globalScope .visible-xs{display:block !important}.globalScope table.visible-xs{display:table !important}.globalScope tr.visible-xs{display:table-row !important}.globalScope th.visible-xs,.globalScope td.visible-xs{display:table-cell !important}.globalScope .visible-xs-block{display:block !important}.globalScope .visible-xs-inline{display:inline !important}.globalScope .visible-xs-inline-block{display:inline-block !important}}@media(min-width: 768px)and (max-width: 991px){.globalScope .visible-sm{display:block !important}.globalScope table.visible-sm{display:table !important}.globalScope tr.visible-sm{display:table-row !important}.globalScope th.visible-sm,.globalScope td.visible-sm{display:table-cell !important}.globalScope .visible-sm-block{display:block !important}.globalScope .visible-sm-inline{display:inline !important}.globalScope .visible-sm-inline-block{display:inline-block !important}}@media(min-width: 992px)and (max-width: 1199px){.globalScope .visible-md{display:block !important}.globalScope table.visible-md{display:table !important}.globalScope tr.visible-md{display:table-row !important}.globalScope th.visible-md,.globalScope td.visible-md{display:table-cell !important}.globalScope .visible-md-block{display:block !important}.globalScope .visible-md-inline{display:inline !important}.globalScope .visible-md-inline-block{display:inline-block !important}}@media(min-width: 1200px){.globalScope .visible-lg{display:block !important}.globalScope table.visible-lg{display:table !important}.globalScope tr.visible-lg{display:table-row !important}.globalScope th.visible-lg,.globalScope td.visible-lg{display:table-cell !important}.globalScope .visible-lg-block{display:block !important}.globalScope .visible-lg-inline{display:inline !important}.globalScope .visible-lg-inline-block{display:inline-block !important}}@media(max-width: 767px){.globalScope .hidden-xs{display:none !important}}@media(min-width: 768px)and (max-width: 991px){.globalScope .hidden-sm{display:none !important}}@media(min-width: 992px)and (max-width: 1199px){.globalScope .hidden-md{display:none !important}}@media(min-width: 1200px){.globalScope .hidden-lg{display:none !important}}.globalScope .visible-print{display:none !important}@media print{.globalScope .visible-print{display:block !important}.globalScope table.visible-print{display:table !important}.globalScope tr.visible-print{display:table-row !important}.globalScope th.visible-print,.globalScope td.visible-print{display:table-cell !important}}.globalScope .visible-print-block{display:none !important}@media print{.globalScope .visible-print-block{display:block !important}}.globalScope .visible-print-inline{display:none !important}@media print{.globalScope .visible-print-inline{display:inline !important}}.globalScope .visible-print-inline-block{display:none !important}@media print{.globalScope .visible-print-inline-block{display:inline-block !important}.globalScope .hidden-print{display:none !important}}.globalScope{font-size:14px}@media only screen and (max-width:63.94em){.globalScope{font-size:14px}}.globalScope ::selection{color:#f5f5f5;background:#71b8aa}.globalScope{font-family:"Open Sans",sans-serif;font-weight:400;font-size:12px;color:#4c555b;background:#f5f5f5;line-height:1.5}.globalScope h1,.globalScope h2,.globalScope h3,.globalScope h4,.globalScope h5,.globalScope h6{font-family:"Open Sans",sans-serif;color:#4c555b;font-weight:400;line-height:1.4;margin:.2rem 0 .5rem}.globalScope h1 a,.globalScope h2 a,.globalScope h3 a,.globalScope h4 a,.globalScope h5 a,.globalScope h6 a{color:#4c555b}.globalScope h1 a:hover,.globalScope h2 a:hover,.globalScope h3 a:hover,.globalScope h4 a:hover,.globalScope h5 a:hover,.globalScope h6 a:hover{color:#60afa0}.globalScope h1{font-size:2.44444rem}.globalScope h2{font-size:2.05556rem}.globalScope h3{font-size:1.5rem}.globalScope h4{font-size:1.27778rem}.globalScope h5{font-size:1.1rem}.globalScope h6{font-size:1rem}.globalScope p{margin-top:0;margin-bottom:1.5rem}.globalScope img:not(.s-max-w-none){max-width:100%}.globalScope a:not([class*=s-text-]):not(.MuiButton-root):not(.v1-button){text-decoration:none;color:#60afa0;transition:all .3s ease 0s}.globalScope a:not([class*=s-text-]):not(.MuiButton-root):not(.v1-button):hover,.globalScope a:not([class*=s-text-]):not(.MuiButton-root):not(.v1-button):focus{color:#1f2a32;outline:none;text-decoration:none}.globalScope img{border:0}.globalScope input{font-family:"Open Sans",sans-serif}.globalScope textarea{font-family:"Open Sans",sans-serif;line-height:1.7;padding:5px 10px}.globalScope address{font-style:normal}.globalScope em{font-style:normal}.globalScope blockquote{border-left:5px solid #e8e8e8;padding:10px 20px;margin:.71429rem 0 1.42857rem}.globalScope blockquote p{margin-bottom:0;font-size:1.3rem}.globalScope ul,.globalScope ol,.globalScope dl{line-height:1.6;list-style-position:outside;margin-bottom:.85714rem;padding:0}.globalScope ul{margin-left:1.1rem}.globalScope ol{margin-left:1.4rem}.globalScope a{cursor:pointer;transition:all .5s ease}.globalScope button:not(.s-opacity-100):disabled{pointer-events:none !important;opacity:.3;transition:none}.globalScope select.form-control,.globalScope .box-content>ul>li .box-control select{margin-bottom:15px;position:relative}.globalScope input:focus,.globalScope input:active{outline:none !important}.globalScope .col-red{color:#ef8661 !important}.globalScope .col-red-dark{color:#ff6565 !important}.globalScope .col-light-blue{color:#29abe2 !important}.globalScope .col-blue{color:#0071bc !important}.globalScope .col-black{color:#1f2a32 !important}.globalScope .col-green{color:#46a147 !important}.globalScope .col-yellow{color:#e4bc56 !important}.globalScope .col-turquoise{color:#00a99d !important}.globalScope .col-gray{color:#4c555b !important}.globalScope .col-darkgray{color:#172026 !important}.globalScope .col-parpal{color:#8866a9 !important}.globalScope .col-dark-grey{color:#4a5867 !important}.globalScope .col-purple{color:#aa64be !important}.globalScope .pointer{cursor:pointer}.globalScope .hide-scroll{overflow:hidden}.globalScope .is-hidden{display:none !important}.globalScope .w100per{width:100%;display:inline-block;vertical-align:top}.globalScope .w50per{width:50%;float:left;display:inline-block}.globalScope .icon i{transition:all .3s ease-in .05s}.globalScope .icon.loading{height:auto;width:80px}.globalScope .icon.loading i{opacity:0}.globalScope .ui-spin{animation:ui-pulse 2s infinite linear}.globalScope .ui-pulse{animation:ui-pulse 1s infinite steps(8)}@keyframes ui-pulse{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.globalScope .rma-box{padding:15px}.globalScope .form-control,.globalScope .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control select{background:rgba(0,0,0,0);border:1px solid #94999d;height:35px;padding:5px 15px}.globalScope .form-control:focus,.globalScope .box-content>ul>li .box-control input:focus,.globalScope .box-content>ul>li .box-control select:focus{box-shadow:none;border:2px solid #60afa0}.globalScope .input-style.input-error-box .form-control,.globalScope .input-style.input-error-box .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .input-style.input-error-box input,.globalScope .input-style.input-error-box .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .input-style.input-error-box select,.globalScope .form-control.error,.globalScope .box-content>ul>li .box-control input.error,.globalScope .box-content>ul>li .box-control select.error{border:2px solid #ff7f5b}.globalScope .input-style.input-error-box .form-control:focus,.globalScope .input-style.input-error-box .box-content>ul>li .box-control input:focus,.globalScope .box-content>ul>li .box-control .input-style.input-error-box input:focus,.globalScope .input-style.input-error-box .box-content>ul>li .box-control select:focus,.globalScope .box-content>ul>li .box-control .input-style.input-error-box select:focus,.globalScope .form-control.error:focus,.globalScope .box-content>ul>li .box-control input.error:focus,.globalScope .box-content>ul>li .box-control select.error:focus{border-color:#ff7f5b}.globalScope .input-style{position:relative;margin-bottom:15px}.globalScope .input-style.react-typeahead-wrapper{z-index:8}.globalScope .input-style .form-control,.globalScope .input-style .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .input-style input,.globalScope .input-style .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .input-style select{position:relative;z-index:5}.globalScope .input-style .form-control:focus+.input-label span,.globalScope .input-style .box-content>ul>li .box-control input:focus+.input-label span,.globalScope .box-content>ul>li .box-control .input-style input:focus+.input-label span,.globalScope .input-style .box-content>ul>li .box-control select:focus+.input-label span,.globalScope .box-content>ul>li .box-control .input-style select:focus+.input-label span{z-index:6;transform:translate3d(0px, -21px, 0px) scale3d(0.755, 0.755, 1)}.globalScope .input-style .form-control:read-only+.input-label span,.globalScope .input-style .box-content>ul>li .box-control input:read-only+.input-label span,.globalScope .box-content>ul>li .box-control .input-style input:read-only+.input-label span,.globalScope .input-style .box-content>ul>li .box-control select:read-only+.input-label span,.globalScope .box-content>ul>li .box-control .input-style select:read-only+.input-label span{background:#eee;z-index:5}.globalScope .input-style .input-label{bottom:0;left:0;padding:10px 5px;position:absolute;top:0;width:100%}.globalScope .input-style .input-label span{display:inline-block;padding:0 10px;position:relative;z-index:2;color:#73879c;background:#f5f5f5;transition:transform .3s ease 0s,color .3s ease 0s}.globalScope .input-style .input-label.input-filled span{z-index:6;transform:translate3d(0px, -21px, 0px) scale3d(0.755, 0.755, 1)}.globalScope .input-style .btn-roundend{width:100%;background:rgba(0,0,0,0);height:auto}.globalScope .input-style .btn-roundend span{padding:8px 20px;font-size:14px;color:#94999d}.globalScope .input-style .btn-roundend sub{float:right;min-height:33px;line-height:33px;width:45px}.globalScope .input-style .btn-roundend sub:before{left:-10px}.globalScope .input-style.with-label{width:calc(100% - 30px);display:inline-block;vertical-align:top;float:left}.globalScope .input-style.with-label+label{display:inline-block;vertical-align:top;margin:0;padding:5px 0;width:30px;text-align:center;font-weight:normal;line-height:23px;font-size:11px}.globalScope .input-style .form-label{font-weight:normal;width:100%;display:inline-block;vertical-align:top;margin:0;cursor:pointer}.globalScope .input-style .form-label input{margin-right:15px}@media screen and (max-width: 767px){.globalScope .input-style{margin-bottom:15px}}.globalScope .input-style.input-error-box .form-control:focus+.input-label .input-error,.globalScope .input-style.input-error-box .box-content>ul>li .box-control input:focus+.input-label .input-error,.globalScope .box-content>ul>li .box-control .input-style.input-error-box input:focus+.input-label .input-error,.globalScope .input-style.input-error-box .box-content>ul>li .box-control select:focus+.input-label .input-error,.globalScope .box-content>ul>li .box-control .input-style.input-error-box select:focus+.input-label .input-error{transform:none}.globalScope .input-style.input-error-box .input-label span{z-index:6;transform:translate3d(0px, -21px, 0px) scale3d(0.755, 0.755, 1)}.globalScope .input-style.input-error-box .input-error{color:#ff7f5b;transform:none;position:static;font-size:11px;line-height:1.1}.globalScope .ui-input-error{color:#ff7f5b;transform:none;position:static;font-size:11px;line-height:1.1}.globalScope .ui-input-error--group-inputs{position:relative;top:-15px}.globalScope .ux-form-group--group-inputs{margin-bottom:15px}.globalScope .dropdown .dropdown-menu{width:100%;background:#f4fbf4}.globalScope .dropdown .dropdown-menu>li>a:hover{background:#60afa0;color:#fff}.globalScope .dropdown.open .dropdown-menu.top-up{margin-top:-28px}.globalScope .link-btn{display:inline-block;vertical-align:top;color:#94999d;font-size:1.071em;text-decoration:underline;padding:6px 0}.globalScope .link-btn:hover{color:#60afa0}.globalScope .btn-loading sub i,.globalScope .btn-loading sub .ico{display:inline-block;animation:ui-pulse 2s infinite linear}.globalScope .alert{border:0;font-size:15px;font-family:"Open Sans",sans-serif;color:#fff}.globalScope .alert .close{color:#fff;opacity:1;font-size:12px;top:3px}.globalScope .alert-info{background:#59b1ea}.globalScope .alert-warning{background:#e4bc56}.globalScope .alert-danger{background:#f37b53}.globalScope .main-content{width:100%;display:inline-block;vertical-align:top;position:relative}@media only screen and (min-width: 768px){.globalScope .main-content>.main-content-left{padding-left:0}}.globalScope .GlobalSidebar{overflow-y:auto;transition:all .5s ease 0s}.globalScope .sidebar-area{width:100%;display:inline-block;vertical-align:top}.globalScope .sidebar-area .sidebar-area-row{width:100%;display:inline-block;vertical-align:top;padding:0 0 10px;text-align:left}.globalScope .sidebar-area .sidebar-area-row.sidebar-area-row-head{padding:0}.globalScope .sidebar-area .sidebar-area-row .sidebar-area-head{background:#f2f2f2;border-bottom:1px solid #b3b3b3;padding:10px}.globalScope .sidebar-area .sidebar-area-row .sidebar-area-head h3{display:inline-block;vertical-align:top;font-weight:bold;color:#4c555b;margin:0;font-size:1em}.globalScope .sidebar-area .sidebar-area-row .sidebar-area-head span{font-size:.929em;display:inline-block;vertical-align:middle;margin-right:5px}.globalScope .sidebar-area .sidebar-area-row .sidebar-area-head span>i{border-right:1px solid #94999d;padding-right:15px;color:#60afa0}.globalScope .sidebar-area .sidebar-area-row .sidebar-area-head span b{font-size:1.143em;color:#60afa0;margin-left:15px;display:inline-block;vertical-align:middle}.globalScope .sidebar-area .sidebar-area-row .sidebar-area-head .drpdwn-btn{color:#4c555b;font-size:6px;display:inline-block;vertical-align:middle}.globalScope .sidebar-area .sidebar-area-row .sidebar-area-content{background:#fff;padding:10px 30px 10px 15px;width:100%;display:inline-block;vertical-align:top}.globalScope .sidebar-area .sidebar-area-row .icon-box{width:10%;float:left;display:inline-block;text-align:center}.globalScope .sidebar-area .sidebar-area-row .icon-box i{font-size:34px;color:#60afa0}@media screen and (max-width: 1620px){.globalScope .sidebar-area .sidebar-area-row .icon-box{width:16%}}.globalScope .sidebar-area .sidebar-area-row .content-box{width:90%;padding-left:10px;display:inline-block;float:left}@media screen and (max-width: 1620px){.globalScope .sidebar-area .sidebar-area-row .content-box{width:84%}}.globalScope .sidebar-area .sidebar-area-row .edit-btn,.globalScope .sidebar-area .sidebar-area-row .split-btn{float:right}.globalScope .sidebar-area .sidebar-area-row.timeline-section{padding-top:20px;padding-bottom:20px}.globalScope .sidebar-area .sidebar-area-row.timeline-section .box i{font-size:24px}.globalScope .sidebar-area .sidebar-area-row .edit-btn{position:absolute;right:25px}.globalScope .sidebar-area .sidebar-area-row .sidebar-area-head{border-bottom:1px solid #e6e9ed}.globalScope .sidebar-area .sidebar-area-row.sidebar-area-row-head.basic-section.non-active:nth-child(odd) .sidebar-area-head{background:#fff}.globalScope .sidebar-area .sidebar-area-row.sidebar-area-row-head.basic-section.non-active:nth-child(even) .sidebar-area-head{background:#fafbfb}.globalScope .edit-btn{color:#60afa0;display:inline-block;vertical-align:top;font-size:11px;color:#397066}.globalScope .edit-btn svg{margin-right:6px;vertical-align:middle;display:inline-block;font-size:16px}.globalScope .dimension-section label{width:100%;display:inline-block;vertical-align:top;margin-bottom:0;color:#94999d}.globalScope .dimension-section label b{color:#60afa0;font-size:1.143em;margin-left:5px}.globalScope .dimension-section.batches-section label{width:auto;padding:15px 0;margin-right:15px}.globalScope .dimension-section.batches-section .btn-green{margin:5px 0}.globalScope .dimension-section.batches-section .btn-green sub{width:35px}@media screen and (max-width: 1590px){.globalScope .dimension-section.batches-section .btn-green{font-size:.8em;height:36px}.globalScope .dimension-section.batches-section .btn-green sub{line-height:18px;min-height:33px;padding:8px 0;width:30px}.globalScope .dimension-section.batches-section .btn-green sub i{font-size:8px}.globalScope .dimension-section.batches-section label{font-size:12px}}.globalScope .page-action{background:#60afa0;position:fixed;bottom:0;display:inline-block;width:100%;padding:4px 0;z-index:100}.globalScope .page-action .previous-link{float:left}.globalScope .page-action .next-link{float:right;text-align:right}.globalScope .page-action>a{color:#fff;position:relative;z-index:10}.globalScope .page-action>a i{width:30px;text-align:center;vertical-align:middle;display:inline-block}.globalScope .page-action>a span{width:50px;display:inline-block;vertical-align:middle}.globalScope .page-action>a:hover{color:#397066}@media screen and (min-width: 800px){.globalScope .page-action{display:none}}@media screen and (max-width: 768px){.globalScope .page-action{font-size:.786em}}.globalScope .action-order{position:absolute;bottom:0;width:100%;left:0;text-align:center}.globalScope .action-order .action-btn{background:#60afa0;color:#fff;text-transform:uppercase;font-size:1.071em;padding:15px 50px;border:1px solid #4a9285;display:inline-block}.globalScope .action-order .action-btn:hover{background:#4a9285}@media screen and (max-width: 768px){.globalScope .action-order .action-btn{padding:11px 30px}}.globalScope .action-order .action-order-wrap{background:rgba(31,42,50,.9);width:100%;display:inline-block;position:relative;z-index:10;display:none}.globalScope .action-order .action-order-wrap ul{list-style:none;margin:30px 0;padding:0;width:100%;display:inline-block;vertical-align:top}.globalScope .action-order .action-order-wrap ul li{display:inline-block;vertical-align:top;margin:0 15px}.globalScope .action-order .action-order-wrap ul li a{font-size:1.429em;color:#fff}.globalScope .action-order .action-order-wrap ul li a i{width:100%;display:inline-block;vertical-align:top;font-size:22px}.globalScope .action-order .action-order-wrap ul li a:hover{color:#60afa0}@media screen and (max-width: 768px){.globalScope .action-order .action-order-wrap ul li{margin:0}.globalScope .action-order .action-order-wrap ul li a{font-size:1.071em}.globalScope .action-order .action-order-wrap ul li a i{font-size:18px}}.globalScope .action-order .action-order-wrap .btn-roundend{width:200px;margin-bottom:40px}.globalScope .action-order .action-order-wrap .btn-roundend sub{float:right}.globalScope .basic-section.active .sidebar-area-head{background-color:#82c0b4;border-color:#60afa0;margin-top:-1px}.globalScope .basic-section.active .sidebar-area-content{background-color:#a4d1c9}.globalScope .basic-section .content-box{width:100%;float:left;display:inline-block;vertical-align:top;margin-top:5px;margin-bottom:5px;padding-left:0 !important}.globalScope .basic-section .content-box ul{list-style:none;margin:0;padding:0;display:inline-block;vertical-align:top;width:100%}.globalScope .basic-section .content-box ul li{font-size:.929em;vertical-align:top}.globalScope .basic-section .content-box ul li span{margin-left:10px}.globalScope .basic-section .content-box .batch-Ship-box{width:100%;float:left;display:inline-block;vertical-align:top;margin-top:15px}.globalScope .basic-section .content-box .batch-Ship-box .btn-green,.globalScope .basic-section .content-box .batch-Ship-box .btn-orange{font-size:1.071em;border-radius:0px}.globalScope .basic-section .content-box .batch-Ship-box .btn-green sub,.globalScope .basic-section .content-box .batch-Ship-box .btn-orange sub{width:35px;line-height:20px;min-height:38px;padding:8px 0}.globalScope .basic-section .content-box .batch-Ship-box .btn-green sub i,.globalScope .basic-section .content-box .batch-Ship-box .btn-orange sub i{font-size:10px}.globalScope .basic-section .content-box .batch-Ship-box .btn-green sub:after,.globalScope .basic-section .content-box .batch-Ship-box .btn-orange sub:after{border-bottom:55px solid rgba(0,0,0,0)}.globalScope .basic-section .content-box .batch-Ship-box label{display:inline-block;vertical-align:top;margin-bottom:0;color:#94999d;text-align:right}.globalScope .basic-section .content-box .batch-Ship-box label b{color:#60afa0;font-size:1.143em;display:block}@media screen and (max-width: 1590px){.globalScope .basic-section .content-box .batch-Ship-box .btn-green,.globalScope .basic-section .content-box .batch-Ship-box .btn-orange{font-size:.8em;height:36px}.globalScope .basic-section .content-box .batch-Ship-box .btn-green sub,.globalScope .basic-section .content-box .batch-Ship-box .btn-orange sub{line-height:18px;min-height:33px;padding:8px 0;width:30px}.globalScope .basic-section .content-box .batch-Ship-box .btn-green sub i,.globalScope .basic-section .content-box .batch-Ship-box .btn-orange sub i{font-size:8px}.globalScope .basic-section .content-box .batch-Ship-box label{font-size:12px}}.globalScope .basic-section .content-box .unassigned-orders-section label{margin-bottom:0;font-weight:700;color:#4c555b}.globalScope .basic-section.active .sidebar-area-content{position:relative}.globalScope .basic-section.active .sidebar-area-head{background-color:#d8eae9;border-color:#c1dcd7}.globalScope .basic-section.active .sidebar-area-content{background-color:#e6f1f0}.globalScope .content-wrap{max-width:1310px;width:100%;padding:0 15px;margin:0 auto}.globalScope .step-section{width:100%;display:inline-block;vertical-align:top;margin-bottom:50px}.globalScope .step-section .city-store-zip{margin:0 -5px}.globalScope .step-section .city-store-zip .col-xs-4,.globalScope .step-section .city-store-zip .col-xs-5,.globalScope .step-section .city-store-zip .col-xs-3{padding:0 5px}.globalScope .step-section .city-store-zip .col-xs-5 .input-style .dropdown .btn-roundend span{padding:6px 15px}.globalScope .step-section .input-style.phone i,.globalScope .step-section .input-style.mail i{font-size:30px;color:#94999d}.globalScope .tab-content{display:none}.globalScope .order-info-fill .btn-roundend{width:100%;background:rgba(0,0,0,0);margin-bottom:30px;height:auto}.globalScope .order-info-fill .btn-roundend span{color:#94999d}.globalScope .order-info-fill .btn-roundend sub{float:right}.globalScope .order-info-fill .btn-roundend sub:before{left:-10px}.globalScope .order-info-fill .generate-btn .sub{width:100px;font-weight:normal;font-size:12px;display:inline !important}.globalScope .order-info-fill .btn-green{float:right}.globalScope .order-info-fill .input-style .sh-btn{border:0 none;position:absolute;right:0;top:1px;z-index:6;height:33px;line-height:27px;border-left:1px solid #94999d;border-radius:0;padding:0 10px;text-transform:uppercase;color:#94999d}.globalScope .order-info-fill .input-style .sh-btn:hover{background-color:#94999d;color:#fff}.globalScope .item-detail-table.responsive-table{background:rgba(0,0,0,0)}.globalScope .item-detail-table.responsive-table table{border:1px solid #94999d}.globalScope .item-detail-table.responsive-table table tbody{background:#fff}.globalScope .item-detail-table.responsive-table table>thead>tr>th,.globalScope .item-detail-table.responsive-table table>thead>tr>td,.globalScope .item-detail-table.responsive-table table>tbody>tr>th,.globalScope .item-detail-table.responsive-table table>tbody>tr>td{border:1px solid #94999d;text-align:center;vertical-align:middle;padding:8px}.globalScope .item-detail-table.responsive-table table>thead>tr>th img,.globalScope .item-detail-table.responsive-table table>thead>tr>td img,.globalScope .item-detail-table.responsive-table table>tbody>tr>th img,.globalScope .item-detail-table.responsive-table table>tbody>tr>td img{border:1px solid #94999d;border-radius:2px;margin-right:10px}.globalScope .item-detail-table.responsive-table table>thead>tr>th select,.globalScope .item-detail-table.responsive-table table>thead>tr>td select,.globalScope .item-detail-table.responsive-table table>tbody>tr>th select,.globalScope .item-detail-table.responsive-table table>tbody>tr>td select{width:100%;border:1px solid #94999d;border-width:0 0 1px;background:rgba(0,0,0,0);text-align:center}.globalScope .item-detail-table.responsive-table table>thead>tr>th i,.globalScope .item-detail-table.responsive-table table>thead>tr>td i,.globalScope .item-detail-table.responsive-table table>tbody>tr>th i,.globalScope .item-detail-table.responsive-table table>tbody>tr>td i{color:#e4bc56}.globalScope .item-detail-table.responsive-table table>thead>tr>th.error-box,.globalScope .item-detail-table.responsive-table table>thead>tr>td.error-box,.globalScope .item-detail-table.responsive-table table>tbody>tr>th.error-box,.globalScope .item-detail-table.responsive-table table>tbody>tr>td.error-box{background-color:#ef8661;color:#fff}.globalScope .item-detail-table.responsive-table table tfoot tr td{text-align:right;padding-right:35px;font-size:1.071em;font-weight:bold;color:#1f2a32;border-color:#94999d}.globalScope .item-detail-table.responsive-table table tfoot tr td .price-box{color:#60afa0;font-size:1.429em;display:inline-block;vertical-align:sub;margin-left:10px}@media screen and (max-width: 767px){.globalScope .item-detail-table.responsive-table table tfoot tr td{padding-right:0}}.globalScope .item-detail-table.responsive-table td.text-left,.globalScope .item-detail-table.responsive-table th.text-left{text-align:left}.globalScope .box-content.error-box ul li.box-foot .box-control .foot-box i,.globalScope .box-content.error-box ul li.box-foot .box-control .foot-box span{color:#ef8661}.globalScope .inut-style-btn-group{position:relative;padding-right:340px}.globalScope .inut-style-btn-group .input-style .form-control,.globalScope .inut-style-btn-group .input-style .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .inut-style-btn-group .input-style input,.globalScope .inut-style-btn-group .input-style .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .inut-style-btn-group .input-style select{height:40px}.globalScope .inut-style-btn-group .btn-group{margin:0 -8px 28px;position:absolute;top:0;right:0}.globalScope .inut-style-btn-group .btn-group a.btn-roundend{border-radius:0px;margin:0 8px}.globalScope .inut-style-btn-group .btn-group a.btn-roundend sub i{font-size:13px;color:#fff}@media screen and (max-width: 1590px){.globalScope .inut-style-btn-group .btn-group a.btn-roundend{height:auto}}@media screen and (max-width: 767px){.globalScope .inut-style-btn-group .btn-group{position:static}.globalScope .inut-style-btn-group .btn-group a.btn-roundend span{padding:7px 22px 8px}.globalScope .inut-style-btn-group{padding-right:0}}.globalScope .item-detail-table.receiving-item-detail-table.responsive-table{border-width:0px}.globalScope .item-detail-table.receiving-item-detail-table.responsive-table .table,.globalScope .item-detail-table.receiving-item-detail-table.responsive-table .ux-table{border-width:1px 0 0px}.globalScope .item-detail-table.receiving-item-detail-table.responsive-table .table thead tr td,.globalScope .item-detail-table.receiving-item-detail-table.responsive-table .ux-table thead tr td,.globalScope .item-detail-table.receiving-item-detail-table.responsive-table .table thead tr th,.globalScope .item-detail-table.receiving-item-detail-table.responsive-table .ux-table thead tr th{border-width:1px 1px 2px;background-color:#f5f5f5}.globalScope .item-detail-table.receiving-item-detail-table.responsive-table .table tbody tr td input,.globalScope .item-detail-table.receiving-item-detail-table.responsive-table .ux-table tbody tr td input{border:0px;border-bottom:1px solid #94999d;text-align:center;background-color:rgba(0,0,0,0)}.globalScope .receiving-item-detail-footer{margin-top:30px;float:left;width:100%;text-align:right}.globalScope .login-wp{height:100%}.globalScope .login-wp h6{color:#fff}.globalScope .login-wp .login-box{width:100%;display:inline-block;vertical-align:top;position:relative;padding:10.1% 0}.globalScope .login-wp .login-box .wrap{max-width:300px;width:100%;margin:0 auto}.globalScope .login-wp .login-box .wrap .login-logo{text-align:center;width:100%;float:left;margin-bottom:20px}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row{float:left;width:100%}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style{margin:10px 0;float:left;width:100%}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .form-control,.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .login-wp .login-box .wrap .inut-style-btn-group-row .input-style input,.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .login-wp .login-box .wrap .inut-style-btn-group-row .input-style select{background-color:none;border:1px solid #fff;color:#fff;border-radius:4px;height:45px;font-size:14px;padding:5px 20px;z-index:1;font-family:"Open Sans",sans-serif}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .form-control::-webkit-input-placeholder,.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .box-content>ul>li .box-control input::-webkit-input-placeholder,.globalScope .box-content>ul>li .box-control .login-wp .login-box .wrap .inut-style-btn-group-row .input-style input::-webkit-input-placeholder,.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .box-content>ul>li .box-control select::-webkit-input-placeholder,.globalScope .box-content>ul>li .box-control .login-wp .login-box .wrap .inut-style-btn-group-row .input-style select::-webkit-input-placeholder{color:#d9d9d9;font-style:italic;font-weight:500}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .form-control::-moz-placeholder,.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .box-content>ul>li .box-control input::-moz-placeholder,.globalScope .box-content>ul>li .box-control .login-wp .login-box .wrap .inut-style-btn-group-row .input-style input::-moz-placeholder,.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .box-content>ul>li .box-control select::-moz-placeholder,.globalScope .box-content>ul>li .box-control .login-wp .login-box .wrap .inut-style-btn-group-row .input-style select::-moz-placeholder{color:#d9d9d9;font-style:italic;font-weight:500}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .form-control::-ms-input-placeholder,.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .box-content>ul>li .box-control input::-ms-input-placeholder,.globalScope .box-content>ul>li .box-control .login-wp .login-box .wrap .inut-style-btn-group-row .input-style input::-ms-input-placeholder,.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .box-content>ul>li .box-control select::-ms-input-placeholder,.globalScope .box-content>ul>li .box-control .login-wp .login-box .wrap .inut-style-btn-group-row .input-style select::-ms-input-placeholder{color:#d9d9d9;font-style:italic;font-weight:500}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style p{font-size:15px;color:#31693c;margin-top:8px;margin-bottom:0;font-family:"Open Sans",sans-serif}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style p a{color:#31693c;transition:all .5s ease}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style p a:hover{color:#fff}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .login-btn{width:100%;float:left;margin-top:50px;text-align:center}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .login-btn .bordered-btn{width:100%;padding:15px;border:2px solid #fff;font-family:"Open Sans",sans-serif;font-size:15px;letter-spacing:3px;text-transform:uppercase;background:rgba(0,0,0,0);color:#fff;display:inline-block;vertical-align:top;transition:all .5s ease}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .login-btn .bordered-btn:hover{color:#60afa0;background-color:#fff}@media screen and (max-width: 479px){.globalScope .login-wp .login-box .wrap{max-width:300px}}.globalScope .login-wp .login-box:before{background-image:url(/build/files/6c80522551dc86e9.png);content:"";background-position:top center;background-repeat:no-repeat;position:absolute;bottom:0;left:0;right:0;height:85px}.globalScope .login-wp .login-footer{text-align:center;background-color:#202932;padding:10px 15px;display:inline-block;vertical-align:top;width:100%}.globalScope .login-wp .login-footer h6{color:#b7bbbd;font-size:14px;margin:0}.globalScope .login-wp .login-footer h6:hover{color:#fff}.globalScope .login-wp .login-footer p{font-size:12px;color:#4c555b;margin:0;font-family:"Open Sans",sans-serif}.globalScope .order-import-page .step-nav{padding:30px 0}.globalScope .order-import-page .step-nav .content-wrap{margin:0 auto}.globalScope .order-import-page .step-nav .content-wrap ul{list-style:none;margin:0 auto;letter-spacing:-4px;text-align:center;position:relative;z-index:1;width:100%;transition:all .5s ease 0s}.globalScope .order-import-page .step-nav .content-wrap ul li{text-align:center;position:relative;display:inline-block;vertical-align:top;letter-spacing:normal;width:25%;transition:all .5s ease 0s}.globalScope .order-import-page .step-nav .content-wrap ul li a{font-size:12px;line-height:15px;font-weight:300;color:#73879c}.globalScope .order-import-page .step-nav .content-wrap ul li a .step-box{float:left;width:100%}.globalScope .order-import-page .step-nav .content-wrap ul li a .step-box .step-n{width:35px;height:35px;line-height:30px;text-align:center;border:2px solid #73879c;background:#fff;margin:0 auto 5px;display:block;border-radius:100%;font-size:15px;font-weight:bold}.globalScope .order-import-page .step-nav .content-wrap ul li a span{display:block;width:100%}@media screen and (max-width: 991px){.globalScope .order-import-page .step-nav .content-wrap ul li a{font-size:12px}}@media screen and (max-width: 767px){.globalScope .order-import-page .step-nav .content-wrap ul li a{font-size:10px}.globalScope .order-import-page .step-nav .content-wrap ul li a .step-box .step-n{width:30px;height:30px;line-height:25px}}.globalScope .order-import-page .step-nav .content-wrap ul li.active a{color:#60afa0}.globalScope .order-import-page .step-nav .content-wrap ul li.active a .step-box .step-n{color:#60afa0;background:#fff;border:2px solid #60afa0}.globalScope .order-import-page .step-nav .content-wrap ul:before,.globalScope .order-import-page .step-nav .content-wrap ul:after{content:"";height:2px;position:absolute;left:12.5%;right:12.5%;top:15px;z-index:-1;transition:all .5s ease 0s;display:block}.globalScope .order-import-page .step-nav .content-wrap ul:before{width:auto;background-color:#73879c}.globalScope .order-import-page .step-nav .content-wrap ul.active:after{background:#60afa0}.globalScope .order-import-page .step-nav .content-wrap ul.active.one:after{width:0}.globalScope .order-import-page .step-nav .content-wrap ul.active.two:after{width:25%}.globalScope .order-import-page .step-nav .content-wrap ul.active.three:after{width:50%}.globalScope .order-import-page .step-nav .content-wrap ul.active.four:after{width:75%}.globalScope .order-import-page .content-wrap{margin:70px auto}@media screen and (max-width: 767px){.globalScope .order-import-page .content-wrap{margin:35px auto}}.globalScope .order-import-page .content-wrap .back-next{float:left;width:100%;margin-top:30px;text-align:right}.globalScope .order-import-page .content-wrap .back-next .btn-roundend{font-size:1.071em}.globalScope .order-import-page .content-wrap .back-next .btn-roundend sub{display:flex;align-items:center}.globalScope .order-import-page .content-wrap .back-next .btn-roundend sub i{font-size:14px}.globalScope .order-import-page .content-wrap .back-next .btn-roundend.btn-grey{font-size:1.071em;background-color:rgba(0,0,0,0)}.globalScope .order-import-page .content-wrap .back-next .btn-roundend.btn-grey sub{min-height:38px;line-height:36px}.globalScope .order-import-page .content-wrap .back-next .btn-roundend.btn-grey sub:after{border-bottom:52px solid rgba(0,0,0,0)}.globalScope .order-import-page .content-wrap .back-next .cancel{color:#94999d;display:block;font-size:15px;font-weight:400;margin-top:8px}.globalScope .order-import-page .content-wrap .back-next__prev,.globalScope .order-import-page .content-wrap .back-next__next{display:inline-flex;align-items:center}.globalScope .order-import-page .content-wrap .back-next__prev .ico{margin-right:5px}.globalScope .order-import-page .content-wrap .back-next__next .ico{margin-left:5px}.globalScope .batch-detail-page .batch-detail-box .status-created{text-align:center}.globalScope .batch-detail-page .batch-detail-box .status-created span{display:block;color:#94999d;font-size:13px;padding-top:5px}.globalScope .batch-detail-page .batch-detail-box .status-created h4{font-size:20px;color:#4c555b;margin:0;font-weight:600}.globalScope .batch-detail-page .batch-detail-box .status-created .created{font-size:90px;color:#60afa0;display:block}.globalScope .batch-detail-page .batch-detail-box .deadlines-title{margin-bottom:10px}.globalScope .batch-detail-page .batch-detail-box .deadlines-title label{width:100%;font-size:13px;text-align:left}.globalScope .batch-detail-page .batch-detail-box .deadlines-box{border:1px solid #94999d;padding:12px 0;background-color:#fff}.globalScope .batch-detail-page .batch-detail-box .deadlines-box ul{list-style:none;padding:0;margin:0}.globalScope .batch-detail-page .batch-detail-box .deadlines-box ul li{display:inline-block;vertical-align:top;width:100%;color:#4c555b;padding:2px 20px}.globalScope .batch-detail-page .batch-detail-box .deadlines-box ul li.deadlines-title{margin-top:0;margin-bottom:0}.globalScope .batch-detail-page .batch-detail-box .deadlines-box ul li.deadlines-title label{width:100%;font-size:13px;text-align:left}.globalScope .batch-detail-page .batch-detail-box .deadlines-box ul li .box-control{float:left;width:65%;display:inline-block;vertical-align:top}.globalScope .batch-detail-page .batch-detail-box .deadlines-box ul li .box-control span{font-size:13px}.globalScope .batch-detail-page .batch-detail-box .deadlines-box ul li label{float:right;font-size:15px;margin:0;width:35%;text-align:right}.globalScope .batch-detail-page .batch-detail-box .what-box-list .what-box{background-color:#c9eadf;margin-bottom:30px;padding:20px 30px 20px 20px;position:relative;text-align:center}.globalScope .batch-detail-page .batch-detail-box .what-box-list .what-box p{font-style:italic;font-size:13px;color:#4c555b;margin:0}.globalScope .batch-detail-page .batch-detail-box .what-box-list .what-box i{position:absolute;right:10px;top:10px;color:#fff;font-size:12px;cursor:pointer}.globalScope .batch-detail-page .batch-detail-box .step-section.what-box-wp{margin-bottom:30px}.globalScope .batch-detail-page .batch-detail-box .step-section.what-box-wp .copy-from-last{position:relative}.globalScope .batch-detail-page .batch-detail-box .step-section.what-box-wp .copy-from-last>a{font-size:15px;color:#94999d;text-decoration:underline;margin-bottom:20px;display:block}@media screen and (min-width: 768px){.globalScope .batch-detail-page .batch-detail-box .step-section.what-box-wp .copy-from-last{padding-right:180px}.globalScope .batch-detail-page .batch-detail-box .step-section.what-box-wp .copy-from-last>a{position:absolute;right:0;top:10px;margin-bottom:0}}.globalScope .batch-detail-page .batch-detail-box .order-widget{border-top:0px;margin-bottom:0px}.globalScope .batch-detail-page .batch-detail-box .order-widget .w100per{margin-bottom:20px}.globalScope .batch-detail-page .batch-detail-box .order-widget .w100per .btn-green{width:170px}.globalScope .batch-detail-page .batch-detail-box .order-widget .w100per .btn-green span{display:block;overflow:hidden;float:none;text-align:center}.globalScope .batch-detail-page .batch-detail-box .staging-area{margin-top:30px}.globalScope .batch-detail-page .batch-detail-box .staging-area .input-style{margin-bottom:0}@media screen and (max-width: 767px){.globalScope .batch-detail-page .batch-detail-box .staging-area .input-style:first-child{margin-bottom:15px}}@media screen and (max-width: 1200px){.globalScope .batch-detail-page .batch-detail-box .pad-right0{padding-right:15px}.globalScope .batch-detail-page .batch-detail-box .pad-left0{padding-left:15px}}.globalScope .batch-detail-page .batch-detail-box .table tbody tr td:last-child div,.globalScope .batch-detail-page .batch-detail-box .ux-table tbody tr td:last-child div{height:15px}.globalScope .batch-detail-page .batch-detail-box .table tbody tr td label,.globalScope .batch-detail-page .batch-detail-box .ux-table tbody tr td label{margin:2px 0}.globalScope .billing-address-page{padding-top:40px;padding-bottom:50px}.globalScope .billing-address-page .billing-address-title h3{font-size:25px;font-weight:bold;text-transform:uppercase;color:#60afa0;text-align:center;display:block;border-bottom:2px solid #94999d;padding-bottom:10px;margin-bottom:30px;font-family:"Open Sans",sans-serif}.globalScope .billing-address-page .billing-address-form .input-style.input-error-box .input-label .input-error{color:#ff7f5b;transform:translate3d(-65px, -21px, 0px) scale3d(0.755, 0.755, 1)}.globalScope .billing-paynow-page .content-wrap .billing-paynow-input-row{display:inline-block;vertical-align:top;width:100%}.globalScope .billing-paynow-page .content-wrap .billing-paynow-input-row .check-box{float:left;padding:8px}.globalScope .billing-paynow-page .content-wrap .summary-btn{margin-top:35px;display:inline-block;width:100%;vertical-align:top}.globalScope .billing-paynow-page .content-wrap .summary-btn .btn-green{border-radius:0;width:100%;text-align:center;background-color:#60afa0}.globalScope .billing-paynow-page .content-wrap .summary-btn .btn-green sub i{font-size:40px;left:5px;position:absolute;top:9px}.globalScope .billing-paynow-page .content-wrap .summary-btn .btn-green span{float:none}.globalScope .billing-paynow-page .content-wrap .summary-btn .btn-green.btn-grey{background-color:rgba(0,0,0,0) !important;border-color:#94999d}.globalScope .billing-paynow-page .content-wrap .summary-btn .btn-green.btn-grey sub{background-color:#94999d}.globalScope .billing-paynow-page .content-wrap .summary-btn .btn-green.btn-grey sub:after{border-left-color:#94999d}.globalScope .billing-paynow-page .content-wrap .summary-btn .btn-green.btn-grey sub i{color:#fff}.globalScope .billing-paynow-page .content-wrap .summary-btn .btn-green.btn-grey span{color:#94999d;background-color:rgba(0,0,0,0)}.globalScope .billing-paynow-page .content-wrap .summary-btn .btn-green.blue-col{background:#59b1ea}.globalScope .billing-paynow-page .content-wrap .summary-btn .btn-green.btn-disabled{opacity:.3;pointer-events:none}.globalScope .dashboard-page .content-wrap{padding:0;max-width:100%}@media only screen and (min-width: 768px){.globalScope .dashboard-page .content-wrap{padding:30px}}.globalScope .dashboard-page .content-wrap.content-wrap--style01{background:#e8e8e8}.globalScope .dashboard-page .dashboard-inner-wp.dashboard-bg{background-color:#f5f5f5}@media screen and (max-width: 767px){.globalScope .dashboard-page{padding:0 0 30px}}.globalScope .ui-progress-bar{display:flex;margin-bottom:5px;position:relative}.globalScope .ui-progress-bar:hover{z-index:3}.globalScope .ui-progress-bar--style1{background-color:#4792b2}.globalScope .ui-progress-bar--style2{background-color:#43aea4}.globalScope .ui-progress-bar--style3{background-color:#5fb882}.globalScope .ui-progress-bar__icon{display:flex;align-items:center;background:rgba(0,0,0,.3);text-align:center;justify-content:center;color:rgba(255,255,255,.5);width:40px;font-size:20px}@media only screen and (min-width: 1200px){.globalScope .ui-progress-bar__icon{width:80px;font-size:40px}}.globalScope .ui-progress-bar__text{color:#fff;width:auto;flex:auto;padding:5px 15px}@media only screen and (min-width: 1200px){.globalScope .ui-progress-bar__text{padding:15px 30px}}.globalScope .ui-progress-bar__name{display:flex;align-items:center;font-weight:400;margin-bottom:5px;text-transform:uppercase;font-size:13px}@media only screen and (min-width: 1200px){.globalScope .ui-progress-bar__name{font-size:15px}}.globalScope .ui-progress-bar__price{font-weight:300;font-size:13px;line-height:1}@media only screen and (min-width: 1200px){.globalScope .ui-progress-bar__price{font-size:30px}}@media screen and (min-width: 1056px)and (max-width: 1440px){.globalScope .btn-green span,.globalScope .btn-green:hover span{padding-top:9px;font-size:13px;padding-bottom:9px}}@media screen and (min-width: 767px){.globalScope .pad-right0{padding-right:0}.globalScope .pad-left0{padding-left:0}}.globalScope .icon,.globalScope .ico{display:inline-block;width:1em;height:1em;stroke-width:0;stroke:currentColor;fill:currentColor}.globalScope .ico-left,.globalScope .icon-left{margin-right:6px !important}.globalScope .ico-right,.globalScope .icon-right{margin-left:6px !important}.globalScope .ico-0x{font-size:7px}.globalScope .ico-1x{font-size:16px}.globalScope .ico-2x{font-size:20px}.globalScope .ico-2-5x{font-size:25px}.globalScope .ico-3x{font-size:35px}.globalScope .icons .ico{font-size:100px;margin:20px}.globalScope .icon-sorting-wrap{position:absolute;right:0;top:50%;transform:translateY(-50%)}.globalScope .icon-sorting{color:#a0adbc;animation:scale .2s cubic-bezier(0.6, 0.2, 0.1, 1) both;margin-left:5px;font-size:12px}.globalScope .ux-icon-state-hover:hover,.globalScope .ux-icon-state-hover.active{color:#60afa0}.globalScope .ux-icon-state-hover:hover:before,.globalScope .ux-icon-state-hover.active:before{border-bottom-color:#60afa0}.globalScope .ico-tooltipInfo{margin-left:20px;font-size:15px;position:relative;top:2px}.globalScope .IcoPickingPriority{font-size:initial;width:29px}.globalScope .IcoSearchWithInputRight{background:rgba(0,0,0,0);color:#73879c;width:34px;height:34px;display:inline-flex;align-items:center;justify-content:center;vertical-align:top;border:0;font-size:16px;padding:0;border-left:1px solid;position:absolute;right:0;top:0;text-align:center;line-height:35px}.globalScope .IcoHero{margin-top:40px;margin-bottom:20px;font-size:40px}.globalScope .IcoHelp{display:inline-block;position:relative;top:2px}.globalScope .IcoRight{margin-left:5px}.globalScope .IconUpload,.globalScope .sh-dropzoneWrap--default{background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjM2IiBoZWlnaHQ9IjMyIiB2aWV3Qm94PSIwIDAgMzYgMzIiPjx0aXRsZT51cGxvYWQ8L3RpdGxlPjxwYXRoIGZpbGw9IiNhYWI3YzUiIGQ9Ik0xMy41NDIgMjIuNDEzYzEuMTUyIDAuNzk0IDIuNTYgMi4xMTIgNC4wNDUgMi4xNSAxLjI3OS0wLjE3NyAyLjM4My0wLjgxOCAzLjE1NS0xLjc0NmwwLjAwNi0wLjAwOGMxLjg2Mi0xLjU0NiAzLjkzMi0zLjAwNSA2LjExNC00LjI5NWwwLjIyMi0wLjEyMWMxLjU3NC0wLjk4NiAwLjEyOC0zLjQ4Mi0xLjQ1OS0yLjU2cy0zLjI5IDEuODk0LTQuOCAzLjAzNGMtMC41ODkgMC40NDgtMS4yOCAxLjI4LTEuOTIgMS44NDMgMC4wNzYtMS4yMzUgMC4xMi0yLjY3NyAwLjEyLTQuMTMgMC0xLjkyLTAuMDc2LTMuODIzLTAuMjI2LTUuNzA1bDAuMDE2IDAuMjQ4Yy0wLjM4NC0zLjEyMy0xLjE2NS02LjE5NS0wLjcxNy05LjM3IDAuMjU2LTEuODE4LTIuNTYtMi41Ni0yLjc5LTAuNzY4LTAuMTEgMC45MTQtMC4xNzIgMS45NzItMC4xNzIgMy4wNDQgMCAxLjc0MyAwLjE2NSAzLjQ0OCAwLjQ4IDUuMDk5bC0wLjAyNy0wLjE2OWMwLjMyMyAyLjU4IDAuNTA4IDUuNTY2IDAuNTA4IDguNTk1IDAgMS4xNDYtMC4wMjYgMi4yODYtMC4wNzkgMy40MTlsMC4wMDYtMC4xNjFjLTIuMzg5LTEuNDc3LTQuNDU4LTMuMTMtNi4zMDctNS4wMDJsLTAuMDAzLTAuMDAzYy0wLjI0Ny0wLjIwMy0wLjU2Ny0wLjMyNi0wLjkxNS0wLjMyNi0wLjc5OSAwLTEuNDQ2IDAuNjQ4LTEuNDQ2IDEuNDQ2IDAgMC4zNDggMC4xMjMgMC42NjggMC4zMjggMC45MThsLTAuMDAyLTAuMDAzYzEuNzQ4IDEuNjM0IDMuNjYzIDMuMTM5IDUuNzAyIDQuNDcxbDAuMTYxIDAuMDk5eiI+PC9wYXRoPjxwYXRoIGZpbGw9IiNhYWI3YzUiIGQ9Ik0zNC41NiAyOS4wMThjLTEwLjU5OC0xLjk4NC0yMi4zNzQgMC4yNjktMzMuMTUyIDAtMC43OTkgMC0xLjQ0NiAwLjY0OC0xLjQ0NiAxLjQ0NnMwLjY0OCAxLjQ0NiAxLjQ0NiAxLjQ0NnYwYzUuNTE3IDAuMTAyIDExLjAwOC0wLjEwMiAxNi41MjUtMC4yNDMgNS4xMi0wLjEyOCAxMC43OS0wLjg3IDE1Ljg1OSAwLjA3NyAxLjgwNSAwLjQxIDIuNTg2LTIuMzgxIDAuNzY4LTIuNzI2eiI+PC9wYXRoPjwvc3ZnPg==)}.globalScope label{font-weight:400;color:#73879c}.globalScope small{font-size:11px}.globalScope select{border:1px solid #73879c}.globalScope table td a{font-weight:700}.globalScope input[type=checkbox]{margin-right:5px}.globalScope .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.globalScope .text-truncate-block{display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis}.globalScope .text-truncate-wrap{width:100%}.globalScope .pl10{padding-left:10px !important}.globalScope .p20{padding:20px !important}.globalScope .pt3{padding-top:3px !important}.globalScope .ml15{margin-left:15px !important}.globalScope .ml5{margin-left:5px !important}.globalScope .mt0{margin-top:0px !important}.globalScope .mb0{margin-bottom:0px !important}.globalScope .mb5{margin-bottom:5px !important}.globalScope .mb10{margin-bottom:10px !important}.globalScope .mb15{margin-bottom:15px !important}.globalScope .mb20{margin-bottom:20px !important}.globalScope .mb30{margin-bottom:30px !important}.globalScope .mb40{margin-bottom:40px !important}.globalScope .mt3{margin-top:3px !important}.globalScope .mt15{margin-top:15px !important}.globalScope .mt20{margin-top:20px !important}.globalScope .mr5{margin-right:5px !important}.globalScope .mr10{margin-right:10px !important}@media only screen and (max-width: 767px){.globalScope .space-sm-1{margin-top:20px}.globalScope .mb-space-sm-1{margin-bottom:10px}}@media only screen and (max-width: 991px){.globalScope .space-md-1{margin-top:20px}}@media only screen and (max-width: 1199px){.globalScope .space-lg-1{margin-top:20px}}.globalScope .f16{font-size:16px}.globalScope .f-normal{font-weight:normal}.globalScope .display-inlineBlock,.globalScope .display-inlineblock{display:inline-block}.globalScope .relative{position:relative}.globalScope .bb0{border-bottom:0 !important}.globalScope .b0{border:0 !important}.globalScope .tutorial-checklist .form__checkboxOutside.active:before{position:absolute;left:0;right:0;top:0;bottom:0;width:100%;height:100%}.globalScope .ui-loading{display:flex;justify-content:center;align-items:center;text-align:center;padding-top:10%;padding-bottom:40px}.globalScope .ui-loading img{width:200px}.globalScope .ux-color-green{color:#60afa0}.globalScope .ux-color-grey{color:#94999d}.globalScope .ux-color-orange{color:#f05a28}.globalScope .text-warning{color:#f05a28}.globalScope .sh-brand-info{color:#59b1ea}.globalScope .sh-brand-info2{color:#0071bc}.globalScope .sh-brand-primary{color:#60afa0}.globalScope .sh-brand-success,.globalScope .col-green{color:#46a147}.globalScope .sh-brand-warning{color:#e4bc56}.globalScope .sh-brand-danger,.globalScope .status-blocked-1 a,.globalScope .col-red{color:#f05a28 !important}.globalScope .sh-brand-base{color:#1f2a32}.globalScope .sh-brand-heading{color:#73879c}.globalScope .sh-brand-muted{color:#9d9d9d}.globalScope .sh-brand-bg-info{background-color:#59b1ea}.globalScope .sh-brand-bg-primary{background-color:#60afa0}.globalScope .sh-brand-bg-success{background-color:#46a147;color:#fff}.globalScope .sh-brand-bg-warning{background-color:#e4bc56;color:#fff}.globalScope .sh-brand-bg-danger{background-color:#f78b6a;color:#fff}.globalScope .sh-brand-bg-base{background-color:#1f2a32}.globalScope .sh-brand-bg-heading{background-color:#73879c}.globalScope .sh-brand-bg-muted{background-color:#9d9d9d}.globalScope .gradient,.globalScope .ux-progress--primary .ux-progress__bar,.globalScope .GlobalHeader,.globalScope .progress-bar--primary,.globalScope .sh-btn-add:hover:before,.globalScope .sh-btn--primary-invert:hover,.globalScope .sh-btn--primary{background:linear-gradient(135deg, #4792b3 0%, #40b69e 65%, #3ad98a 100%)}.globalScope .ux-container{max-width:1310px;margin:0 auto;padding:0 15px}.globalScope .ux-title{font-size:18px;font-weight:700;color:#60afa0}.globalScope .ux-h3{font-size:16px;font-weight:bold;margin-bottom:10px;margin-top:0}.globalScope .mt-xs{margin-top:5px}.globalScope .mt-lg{margin-top:40px}.globalScope .mb-md{margin-bottom:30px}.globalScope .mb0{margin-bottom:0 !important}.globalScope .img-left{margin-right:20px}.globalScope .sh-design{color:#000}.globalScope .sh-design p{margin-bottom:10px}.globalScope .sh-hr--dashed{border:0;border-bottom:1px dashed #73879c;display:block;width:100%}.globalScope .sh-hr--dashed-light{border-bottom-color:#abb7c4}.globalScope .fw600{font-weight:600}.globalScope .p--default{font-size:12px}.globalScope .container{width:100%;max-width:1200px;padding-left:15px;padding-right:15px}@media only screen and (min-width: 1200px){.globalScope .container{padding:0}}.globalScope .container--full{max-width:100%;padding:0 10px}.globalScope .container--space{padding-top:30px;padding-bottom:30px}.globalScope .container--md{max-width:1024px}.globalScope .row--mb{margin-bottom:30px}.globalScope .row--space-sm [class*=col-sm-]+[class*=col-sm-]{margin-top:25px}@media only screen and (min-width: 768px){.globalScope .row--space-sm [class*=col-sm-]+[class*=col-sm-]{margin-top:0}}.globalScope .row--flex{display:flex;flex-wrap:wrap;margin-bottom:0}.globalScope .row--flex:before,.globalScope .row--flex:after{display:none}@media only screen and (min-width: 768px){.globalScope .row--flex{margin-bottom:-30px}}.globalScope .row--flex>[class*=col-]{margin-bottom:15px}@media only screen and (min-width: 768px){.globalScope .row--flex>[class*=col-]{margin-bottom:30px}}.globalScope .row--flex>[class*=col-]>.boxBlock{height:100%;margin-bottom:0}.globalScope .row--flex .TableResponsive{height:100%}@media only screen and (min-width: 768px){.globalScope .row--flex .TableResponsive{min-height:auto}}.globalScope .row---gutterSmall{margin-left:-5px;margin-right:-5px}.globalScope .row---gutterSmall>[class*=col-]{padding:0 5px}.globalScope .row---gutterSmall .input-style.with-label{width:100%}.globalScope .row---gutterSmall .input-style.with-label+label{width:10px;position:absolute}@media only screen and (max-width: 767px){.globalScope .row---gutterSmallForm--sm{margin-left:-7px;margin-right:-7px}.globalScope .row---gutterSmallForm--sm>[class*=col-]{padding:0 7px}.globalScope .row---gutterSmallForm--sm .input-style.with-label{width:100%}.globalScope .row---gutterSmallForm--sm .input-style.with-label+label{width:14px;position:absolute}}.globalScope .grid{height:100%;font-size:0;margin:0 -5px}.globalScope .ux-grid--all{margin:0 -7.5px}.globalScope .ux-grid--all [class*=col-]{padding:7.5px}.globalScope .grid--cellGutterMedium{margin:0 -7.5px}.globalScope .grid--cellGutterMedium>.cell{padding:0 7.5px}.globalScope .grid--cellGutterSmall{margin:0 -5px}.globalScope .grid--cellGutterSmall>.cell{padding:0 5px}.globalScope .grid--cellGutter1,.globalScope .row--colGutter1{margin:0 -10px}.globalScope .grid--cellGutter1>.cell,.globalScope .grid--cellGutter1>[class*=col-],.globalScope .row--colGutter1>.cell,.globalScope .row--colGutter1>[class*=col-]{padding:0 10px}.globalScope .grid--all{margin:-7.5px}@media only screen and (min-width: 1200px){.globalScope .grid--all{margin:-15px}}.globalScope .grid--all>.cell{padding:7.5px}@media only screen and (min-width: 1200px){.globalScope .grid--all>.cell{padding:15px}}.globalScope .grid--show{margin-bottom:15px}.globalScope .grid--v-top>.cell{vertical-align:top}.globalScope .cell,.globalScope .grid__cell{position:relative;display:inline-block;box-sizing:border-box;width:100%;height:100%;padding:0 5px;vertical-align:top;white-space:normal;font-size:12px}.globalScope .cell--bottom{vertical-align:bottom}.globalScope .cell--top{vertical-align:top}.globalScope .cell.is-animating{background-color:#fffdec}.globalScope .col-md-borderRight{border-right:1px solid #ebeef0}.globalScope .cell-1{width:8.3333333333%}.globalScope .cell-2{width:16.6666666667%}.globalScope .cell-3{width:25%}.globalScope .cell-4{width:33.3333333333%}.globalScope .cell-5{width:41.6666666667%}.globalScope .cell-6{width:50%}.globalScope .cell-7{width:58.3333333333%}.globalScope .cell-8{width:66.6666666667%}.globalScope .cell-9{width:75%}.globalScope .cell-10{width:83.3333333333%}.globalScope .cell-11{width:91.6666666667%}.globalScope .cell-12{width:100%}@media only screen and (min-width: 480px){.globalScope .cell-xs-1{width:8.3333333333%}.globalScope .cell-xs-2{width:16.6666666667%}.globalScope .cell-xs-3{width:25%}.globalScope .cell-xs-4{width:33.3333333333%}.globalScope .cell-xs-5{width:41.6666666667%}.globalScope .cell-xs-6{width:50%}.globalScope .cell-xs-7{width:58.3333333333%}.globalScope .cell-xs-8{width:66.6666666667%}.globalScope .cell-xs-9{width:75%}.globalScope .cell-xs-10{width:83.3333333333%}.globalScope .cell-xs-11{width:91.6666666667%}.globalScope .cell-xs-12{width:100%}}@media only screen and (min-width: 768px){.globalScope .cell-sm-1{width:8.3333333333%}.globalScope .cell-sm-2{width:16.6666666667%}.globalScope .cell-sm-3{width:25%}.globalScope .cell-sm-4{width:33.3333333333%}.globalScope .cell-sm-5{width:41.6666666667%}.globalScope .cell-sm-6{width:50%}.globalScope .cell-sm-7{width:58.3333333333%}.globalScope .cell-sm-8{width:66.6666666667%}.globalScope .cell-sm-9{width:75%}.globalScope .cell-sm-10{width:83.3333333333%}.globalScope .cell-sm-11{width:91.6666666667%}.globalScope .cell-sm-12{width:100%}}@media only screen and (min-width: 992px){.globalScope .text-md-right{text-align:right}.globalScope .cell-md-1{width:8.3333333333%}.globalScope .cell-md-2{width:16.6666666667%}.globalScope .cell-md-3{width:25%}.globalScope .cell-md-4{width:33.3333333333%}.globalScope .cell-md-5{width:41.6666666667%}.globalScope .cell-md-6{width:50%}.globalScope .cell-md-7{width:58.3333333333%}.globalScope .cell-md-8{width:66.6666666667%}.globalScope .cell-md-9{width:75%}.globalScope .cell-md-10{width:83.3333333333%}.globalScope .cell-md-11{width:91.6666666667%}.globalScope .cell-md-12{width:100%}}@media only screen and (min-width: 1200px){.globalScope .text-lg-right{text-align:right}.globalScope .cell-lg-1{width:8.3333333333%}.globalScope .cell-lg-2{width:16.6666666667%}.globalScope .cell-lg-3{width:25%}.globalScope .cell-lg-4{width:33.3333333333%}.globalScope .cell-lg-5{width:41.6666666667%}.globalScope .cell-lg-6{width:50%}.globalScope .cell-lg-7{width:58.3333333333%}.globalScope .cell-lg-8{width:66.6666666667%}.globalScope .cell-lg-9{width:75%}.globalScope .cell-lg-10{width:83.3333333333%}.globalScope .cell-lg-11{width:91.6666666667%}.globalScope .cell-lg-12{width:100%}}@media only screen and (min-width: 1440px){.globalScope .cell-xl-1{width:8.3333333333%}.globalScope .cell-xl-2{width:16.6666666667%}.globalScope .cell-xl-3{width:25%}.globalScope .cell-xl-4{width:33.3333333333%}.globalScope .cell-xl-5{width:41.6666666667%}.globalScope .cell-xl-6{width:50%}.globalScope .cell-xl-7{width:58.3333333333%}.globalScope .cell-xl-8{width:66.6666666667%}.globalScope .cell-xl-9{width:75%}.globalScope .cell-xl-10{width:83.3333333333%}.globalScope .cell-xl-11{width:91.6666666667%}.globalScope .cell-xl-12{width:100%}}.globalScope .cell-md-offset-3{margin-left:25%}.globalScope .cell--detail,.globalScope .cell--important{border-width:4px}.globalScope .ux-flex,.globalScope .Table__Td__Div--labelWithInputInOneLine{display:flex;align-items:center}.globalScope .ux-flex--justifyContent-end{justify-content:flex-end}.globalScope .ux-flex--justifyContent-center{justify-content:center}.globalScope .ux-flex__cell{width:100%;align-items:center}.globalScope .MainContent__Left .content-wrap{padding:0}.globalScope .visible-xs-flex{display:none !important}@media(max-width: 767px){.globalScope .visible-xs-flex{display:flex !important}}@media only screen and (min-width: 1440px){.globalScope .col-xl-3{width:25%}.globalScope .col-xl-9{width:75%}}.globalScope .pagination-area{width:100%;display:inline-block;vertical-align:top;padding:5px 10px}.globalScope .pagination-area .page-drpdwn{float:left;display:inline-block;font-size:11px}.globalScope .pagination-area .page-drpdwn select{width:50px;text-align:center}.globalScope .pagination-area .pagination{float:right}.globalScope .pagination{display:inline-block;margin:0}.globalScope .pagination>li{display:inline-block;float:left}.globalScope .pagination>li>a{padding:0;width:20px;height:20px;line-height:20px;text-align:center;font-size:11px;color:#73879c;border-color:#73879c}.globalScope .pagination>li>a i{margin:0 5px;display:inline-block;vertical-align:middle;font-size:9px}.globalScope .pagination>li>a:hover,.globalScope .pagination>li>a:focus{background:rgba(0,0,0,0);color:#60afa0}.globalScope .pagination>li.active>a{background:none !important;color:#60afa0;font-weight:700}.globalScope .pagination>li.active>a:hover,.globalScope .pagination>li.active>a:focus{color:#60afa0;background:none}.globalScope .pagination>li.previous-page>a:hover,.globalScope .pagination>li.next-page>a:hover{color:#60afa0}.globalScope .pagination>.active>a,.globalScope .pagination>.active>a:hover,.globalScope .pagination>.active>a:focus,.globalScope .pagination>.active>span,.globalScope .pagination>.active>span:hover,.globalScope .pagination>.active>span:focus{border-color:#73879c}.globalScope .ux-table{background-color:#fff;font-size:12px}.globalScope .ux-table__b{font-weight:700}.globalScope .sh-table-responsive{min-height:.01%;overflow-x:auto}.globalScope .sh-table{width:100%;max-width:100%;margin-bottom:20px}.globalScope .sh-table--primary .icon{font-size:15px;vertical-align:middle}.globalScope .sh-table--primary thead{background:#fff}.globalScope .sh-table--primary thead th{border-bottom:1px solid #9d9d9d;color:#73879c}.globalScope .sh-table--primary td,.globalScope .sh-table--primary th{padding:2px 7px;border:1px solid #ebeef0}.globalScope .sh-table--primary th{font-weight:700;font-size:12px;padding:8px 7px}.globalScope .sh-table--primary td{font-weight:normal;font-size:11px;white-space:nowrap}.globalScope .sh-table--primary tbody tr:nth-child(even){background:#fbfbfb}.globalScope .sh-table--primary tbody tr:hover{background:#f3f3f3}.globalScope .sh-table--primary tbody tr:last-child td{border-bottom:1px solid #9d9d9d}.globalScope .sh-table--primary tbody tr.selected{background:rgba(96,175,160,.25)}.globalScope .tableWithTabs{position:relative;font-size:12px}.globalScope .tableWithTabs__header-wrap{overflow-x:auto;min-height:.01%;margin-bottom:-1px}.globalScope .tableWithTabs__header{background:#e8e8e8}.globalScope .tableWithTabs__item{padding:10px 8px;position:relative;padding-left:40px;color:#73879c;display:table-cell;vertical-align:middle;background:#e8e8e8;overflow:hidden;border:0}.globalScope .tableWithTabs__item.active,.globalScope .tableWithTabs__item:hover{color:#60afa0}.globalScope .tableWithTabs__item.active:after,.globalScope .tableWithTabs__item:hover:after{content:"";position:absolute;border-bottom:6px solid #fff;border-left:10px solid rgba(0,0,0,0);border-right:10px solid rgba(0,0,0,0);border-top:none;background:none;bottom:0;top:auto;width:0;height:0;left:50%;transform:translateX(-50%);display:block}@media only screen and (min-width: 768px){.globalScope .tableWithTabs__item.active:after,.globalScope .tableWithTabs__item:hover:after{bottom:-1px}}.globalScope .tableWithTabs__item:before{content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);height:30px;width:1px;background:#cfd6df}.globalScope .tableWithTabs__item:first-child:before{display:none}.globalScope .tableWithTabs__icon{transform:translateY(-50%);top:50%;position:absolute;left:10px;font-size:20px}.globalScope .tableWithTabs__largeHead{font-weight:bold;font-size:12px}.globalScope .tableWithTabs__largeHead th{text-align:center}.globalScope .tableWithTabs__largeHead .icon{font-size:40px}.globalScope .tableWithTabs__block{width:120px;display:inline-flex;align-items:center;gap:8px}.globalScope .sh-form-control__boxWithIcon{position:relative}.globalScope .sh-form-control__boxWithIcon .sh-form-control{padding-left:65px}.globalScope .sh-form-control__boxWithIcon .sh-form-control::-webkit-inner-spin-button,.globalScope .sh-form-control__boxWithIcon .sh-form-control::-webkit-outer-spin-button{-webkit-appearance:none !important;margin:0 !important;-moz-appearance:textfield !important}.globalScope .sh-form-control__boxWithIcon.active .sh-form-control__icon,.globalScope .sh-form-control__boxWithIcon.active .sh-form-control{border-color:#60afa0;color:#60afa0}.globalScope .sh-form-control__boxWithIcon.active .sh-form-control::-webkit-input-placeholder{color:#60afa0}.globalScope .sh-form-control__boxWithIcon.active .sh-form-control:-moz-placeholder{color:#60afa0}.globalScope .sh-form-control__boxWithIcon.active .sh-form-control::-moz-placeholder{color:#60afa0}.globalScope .sh-form-control__boxWithIcon.active .sh-form-control:-ms-input-placeholder{color:#60afa0}.globalScope .sh-form-control__boxWithIcon--small{padding-left:29px}.globalScope .sh-form-control__boxWithIcon--small .sh-form-control__icon{width:28px;text-align:center;position:absolute;left:0px;top:0;bottom:0;line-height:32px;color:#73879c;border-right:0;z-index:1;background:#fff}.globalScope .sh-form-control__boxWithIcon--small .sh-form-control{padding-left:6px}.globalScope .td__mapSku{padding-right:60px !important}.globalScope .responsive-table{border:1px solid #e6e9ed;overflow-y:hidden;overflow-x:auto;background:#fff}.globalScope .responsive-table .table,.globalScope .responsive-table .ux-table{margin-bottom:0;border:0}.globalScope .responsive-table .table>thead,.globalScope .responsive-table .ux-table>thead{background:#fff}.globalScope .responsive-table .table>thead>tr>th,.globalScope .responsive-table .ux-table>thead>tr>th{text-align:left;white-space:normal;vertical-align:middle;font-weight:600;border-bottom:1px solid #e6e9ed;color:#73879c;padding:10px 8px;position:relative}.globalScope .responsive-table .table>thead>tr>th a,.globalScope .responsive-table .ux-table>thead>tr>th a{color:#73879c}.globalScope .responsive-table .table>thead>tr>th:after,.globalScope .responsive-table .ux-table>thead>tr>th:after{content:"";display:block;margin:auto;width:1px;height:65%;background-color:#e6e9ed;position:absolute;right:0;top:50%;transform:translateY(-50%)}.globalScope .responsive-table .table>thead>tr>th:last-child:after,.globalScope .responsive-table .ux-table>thead>tr>th:last-child:after{display:none}.globalScope .responsive-table .table>thead>tr>th:first-child,.globalScope .responsive-table .ux-table>thead>tr>th:first-child,.globalScope .responsive-table .table>thead>tr>td:first-child,.globalScope .responsive-table .ux-table>thead>tr>td:first-child{border-left:0}.globalScope .responsive-table .table>thead>tr>th:last-child,.globalScope .responsive-table .ux-table>thead>tr>th:last-child,.globalScope .responsive-table .table>thead>tr>td:last-child,.globalScope .responsive-table .ux-table>thead>tr>td:last-child{border-right:0}.globalScope .responsive-table .table>thead>tr>th.applied,.globalScope .responsive-table .ux-table>thead>tr>th.applied,.globalScope .responsive-table .table>thead>tr>td.applied,.globalScope .responsive-table .ux-table>thead>tr>td.applied{color:#60afa0;font-weight:bold}.globalScope .responsive-table .table>thead>tr>th.applied i,.globalScope .responsive-table .ux-table>thead>tr>th.applied i,.globalScope .responsive-table .table>thead>tr>td.applied i,.globalScope .responsive-table .ux-table>thead>tr>td.applied i{color:#60afa0}.globalScope .responsive-table .table>thead>tr>th i,.globalScope .responsive-table .ux-table>thead>tr>th i,.globalScope .responsive-table .table>thead>tr>td i,.globalScope .responsive-table .ux-table>thead>tr>td i{color:#4c555b;margin-left:5px}.globalScope .responsive-table .table>tbody>tr:nth-child(even),.globalScope .responsive-table .ux-table>tbody>tr:nth-child(even){background-color:rgba(0,0,0,0)}.globalScope .responsive-table .table>tbody>tr:hover,.globalScope .responsive-table .ux-table>tbody>tr:hover{background:#e7f3f1}.globalScope .responsive-table .table>tbody>tr.selected,.globalScope .responsive-table .ux-table>tbody>tr.selected,.globalScope .responsive-table .table>tbody>tr:focus,.globalScope .responsive-table .ux-table>tbody>tr:focus{background:rgba(96,175,160,.28)}.globalScope .responsive-table .table>tbody>tr>td,.globalScope .responsive-table .ux-table>tbody>tr>td{border-color:#e6e9ed;vertical-align:middle;line-height:13.2px;padding:0 8px;height:36px}.globalScope .responsive-table .table>tbody>tr>td .ico-left,.globalScope .responsive-table .ux-table>tbody>tr>td .ico-left{margin-right:2px !important}.globalScope .responsive-table .table>tbody>tr>td>p:last-child,.globalScope .responsive-table .ux-table>tbody>tr>td>p:last-child{margin-bottom:0}.globalScope .responsive-table .table>thead>tr>td,.globalScope .responsive-table .ux-table>thead>tr>td,.globalScope .responsive-table .table>thead>tr>th,.globalScope .responsive-table .ux-table>thead>tr>th,.globalScope .responsive-table .table>tbody>tr>td,.globalScope .responsive-table .ux-table>tbody>tr>td,.globalScope .responsive-table .table>tbody>tr>th,.globalScope .responsive-table .ux-table>tbody>tr>th{font-size:11px}.globalScope .responsive-table .table>thead>tr>td:first-child,.globalScope .responsive-table .ux-table>thead>tr>td:first-child,.globalScope .responsive-table .table>thead>tr>th:first-child,.globalScope .responsive-table .ux-table>thead>tr>th:first-child,.globalScope .responsive-table .table>tbody>tr>td:first-child,.globalScope .responsive-table .ux-table>tbody>tr>td:first-child,.globalScope .responsive-table .table>tbody>tr>th:first-child,.globalScope .responsive-table .ux-table>tbody>tr>th:first-child{border-left:0}.globalScope .responsive-table .table>thead>tr>td:last-child,.globalScope .responsive-table .ux-table>thead>tr>td:last-child,.globalScope .responsive-table .table>thead>tr>th:last-child,.globalScope .responsive-table .ux-table>thead>tr>th:last-child,.globalScope .responsive-table .table>tbody>tr>td:last-child,.globalScope .responsive-table .ux-table>tbody>tr>td:last-child,.globalScope .responsive-table .table>tbody>tr>th:last-child,.globalScope .responsive-table .ux-table>tbody>tr>th:last-child{border-right:0}.globalScope .responsive-table .table>thead>tr>td.text-left,.globalScope .responsive-table .ux-table>thead>tr>td.text-left,.globalScope .responsive-table .table>thead>tr>th.text-left,.globalScope .responsive-table .ux-table>thead>tr>th.text-left,.globalScope .responsive-table .table>tbody>tr>td.text-left,.globalScope .responsive-table .ux-table>tbody>tr>td.text-left,.globalScope .responsive-table .table>tbody>tr>th.text-left,.globalScope .responsive-table .ux-table>tbody>tr>th.text-left{text-align:left}.globalScope .responsive-table .table>thead>tr>td.text-right,.globalScope .responsive-table .ux-table>thead>tr>td.text-right,.globalScope .responsive-table .table>thead>tr>th.text-right,.globalScope .responsive-table .ux-table>thead>tr>th.text-right,.globalScope .responsive-table .table>tbody>tr>td.text-right,.globalScope .responsive-table .ux-table>tbody>tr>td.text-right,.globalScope .responsive-table .table>tbody>tr>th.text-right,.globalScope .responsive-table .ux-table>tbody>tr>th.text-right{text-align:right}.globalScope .responsive-table .table>thead>tr>td.text-center,.globalScope .responsive-table .ux-table>thead>tr>td.text-center,.globalScope .responsive-table .table>thead>tr>th.text-center,.globalScope .responsive-table .ux-table>thead>tr>th.text-center,.globalScope .responsive-table .table>tbody>tr>td.text-center,.globalScope .responsive-table .ux-table>tbody>tr>td.text-center,.globalScope .responsive-table .table>tbody>tr>th.text-center,.globalScope .responsive-table .ux-table>tbody>tr>th.text-center{text-align:center}.globalScope .responsive-table .table>thead>tr>td.text-center input[type=text],.globalScope .responsive-table .ux-table>thead>tr>td.text-center input[type=text],.globalScope .responsive-table .table>thead>tr>td.text-center input[type=number],.globalScope .responsive-table .ux-table>thead>tr>td.text-center input[type=number],.globalScope .responsive-table .table>thead>tr>th.text-center input[type=text],.globalScope .responsive-table .ux-table>thead>tr>th.text-center input[type=text],.globalScope .responsive-table .table>thead>tr>th.text-center input[type=number],.globalScope .responsive-table .ux-table>thead>tr>th.text-center input[type=number],.globalScope .responsive-table .table>tbody>tr>td.text-center input[type=text],.globalScope .responsive-table .ux-table>tbody>tr>td.text-center input[type=text],.globalScope .responsive-table .table>tbody>tr>td.text-center input[type=number],.globalScope .responsive-table .ux-table>tbody>tr>td.text-center input[type=number],.globalScope .responsive-table .table>tbody>tr>th.text-center input[type=text],.globalScope .responsive-table .ux-table>tbody>tr>th.text-center input[type=text],.globalScope .responsive-table .table>tbody>tr>th.text-center input[type=number],.globalScope .responsive-table .ux-table>tbody>tr>th.text-center input[type=number]{text-align:center}.globalScope .responsive-table .table>tbody>tr>td,.globalScope .responsive-table .ux-table>tbody>tr>td{text-align:left;white-space:nowrap}.globalScope .responsive-table td i,.globalScope .responsive-table th i{margin-right:0}.globalScope .responsive-table td i+*,.globalScope .responsive-table th i+*{margin-left:8px}.globalScope .responsive-table--vertical-top .table>tbody>tr>td,.globalScope .responsive-table--vertical-top .ux-table>tbody>tr>td{vertical-align:top;padding:8px}.globalScope .responsive-table--vertical-top .table>tbody>tr:first-child>td,.globalScope .responsive-table--vertical-top .ux-table>tbody>tr:first-child>td{padding:10px 8px}.globalScope .table.text-left td,.globalScope .text-left.ux-table td{text-align:left}.globalScope .table.text-left td.text-center,.globalScope .text-left.ux-table td.text-center{text-align:center}.globalScope .td--mini{width:1%;white-space:nowrap}.globalScope .td__div__flagsBlock{max-width:130px;overflow:hidden;white-space:nowrap;min-height:15px;text-overflow:ellipsis;padding-left:20px;position:relative;display:block}.globalScope .td__div__flagsBlock .flag{position:absolute;left:0;border-radius:100%}.globalScope .table__td--imgWithTitle .tooltip-box{position:relative;display:inline-block;vertical-align:middle;padding-right:10px}.globalScope .table__td--imgWithTitle .tooltip-box .tooltip-box-default{position:absolute;width:auto;bottom:20px;left:-12px;display:none;opacity:0;transition:all .5s ease 0s}.globalScope .table__td--imgWithTitle .tooltip-box .tooltip-box-default span{display:block;background-color:#283a43;border-color:#283a43;font-size:12px;color:#fff;border-radius:3px;padding:10px 12px}.globalScope .table__td--imgWithTitle .tooltip-box .tooltip-box-default span:after{content:"";width:0;height:0;position:absolute;bottom:-10px;left:15px;border-left:10px solid rgba(0,0,0,0);border-right:10px solid rgba(0,0,0,0);border-top:10px solid #1f2a32}.globalScope .table__td--imgWithTitle .tooltip-box:hover .tooltip-box-default{opacity:1;display:block}.globalScope .table__td--imgWithTitle__item-box{display:inline-block;margin-right:10px;overflow:hidden}.globalScope .table__td--imgWithTitle__item-box img{text-overflow:ellipsis;overflow:hidden}.globalScope .table__td--imgWithTitle__brand-list{display:inline-block}.globalScope .table__ux-dropDownListArrowTrigger{position:absolute;margin-left:-1px;background:none;border:0;padding:6px 2px;right:0;top:50%;transform:translateY(-50%)}.globalScope .table__ux-dropDownListArrowTriggerIcon{font-size:7px;color:#60afa0;transform:rotate(180deg)}.globalScope .tableInTable{text-align:left;display:table}.globalScope .tableInTable__tr{display:table-row}.globalScope .tableInTable__tr--head{font-weight:bold}.globalScope .tableInTable__col{display:table-cell;padding:4px 5px}.globalScope .tableInTable__col:first-child{padding-left:0}.globalScope .tableInTable__col:last-child{padding-right:0}.globalScope .tableInTable__col__requiredQTY{width:100px}.globalScope .tableInTable__col__availableQTY{width:100px}.globalScope .td--smallNumber{width:70px;margin-left:auto}.globalScope .tdOrder--items{max-width:90px}.globalScope .tdOrder--orderNumber{width:110px;white-space:normal}.globalScope .tdOrder--trackingNumber{max-width:90px;overflow:hidden;text-overflow:ellipsis}.globalScope .tdOrder--sku{max-width:120px}.globalScope .tdOrder--price{min-width:54px;max-width:120px;text-align:right}.globalScope form label+.input-style{margin-top:16px}.globalScope .form-control,.globalScope .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control select{border:1px solid #a0adbc}.globalScope textarea.form-control{resize:none}.globalScope .form-control--inline{display:inline-block;width:auto;padding-top:8px;margin-left:10px}.globalScope .ux-form__inputWithIcon{position:relative}.globalScope .ux-form__inputWithIcon-input{padding-right:40px}.globalScope .input-style .input-label{text-align:left}.globalScope .input-style--choice{margin-bottom:0}.globalScope .input-style--choice+.input-style--choice{margin-bottom:0}.globalScope .input-style--choice:last-of-type{margin-bottom:15px}.globalScope .form-control--textarea{height:60px !important;line-height:initial}.globalScope .ux-label--block{display:block}.globalScope .form-footer{margin:20px 0}.globalScope .form-group--checkbox-block .sh-checkbox{display:block}.globalScope .form-group--checkbox-block .sh-checkbox+.sh-checkbox{margin-top:13px}.globalScope .form-group-checkbox-row{min-height:35px}.globalScope .form-group-checkbox-row .input-style{margin-bottom:0}.globalScope .ux-form--style2 .form-control,.globalScope .ux-form--style2 .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .ux-form--style2 input,.globalScope .ux-form--style2 .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .ux-form--style2 select,.globalScope .ux-form--style2 .ux-select{height:38px}.globalScope .input-style .react-typeahead-container.form-control,.globalScope .input-style .box-content>ul>li .box-control input.react-typeahead-container,.globalScope .box-content>ul>li .box-control .input-style input.react-typeahead-container,.globalScope .input-style .box-content>ul>li .box-control select.react-typeahead-container,.globalScope .box-content>ul>li .box-control .input-style select.react-typeahead-container{padding:0;border:0;position:relative;z-index:900 !important}.globalScope .input-style .react-typeahead-container.form-control .react-typeahead-input,.globalScope .input-style .box-content>ul>li .box-control input.react-typeahead-container .react-typeahead-input,.globalScope .box-content>ul>li .box-control .input-style input.react-typeahead-container .react-typeahead-input,.globalScope .input-style .box-content>ul>li .box-control select.react-typeahead-container .react-typeahead-input,.globalScope .box-content>ul>li .box-control .input-style select.react-typeahead-container .react-typeahead-input{height:40px;font-size:13px;border:1px solid #94999d;padding:6px 15px;background:rgba(0,0,0,0);width:100%;border-radius:4px}.globalScope .input-style .react-typeahead-container.form-control .react-typeahead-options,.globalScope .input-style .box-content>ul>li .box-control input.react-typeahead-container .react-typeahead-options,.globalScope .box-content>ul>li .box-control .input-style input.react-typeahead-container .react-typeahead-options,.globalScope .input-style .box-content>ul>li .box-control select.react-typeahead-container .react-typeahead-options,.globalScope .box-content>ul>li .box-control .input-style select.react-typeahead-container .react-typeahead-options{margin:-1px 0 0 0;padding:0;list-style:none;border:1px solid #94999d;display:none;max-height:250px;overflow:auto;text-align:left;border-radius:0 0 4px 4px}.globalScope .input-style .react-typeahead-container.form-control .react-typeahead-options li div,.globalScope .input-style .box-content>ul>li .box-control input.react-typeahead-container .react-typeahead-options li div,.globalScope .box-content>ul>li .box-control .input-style input.react-typeahead-container .react-typeahead-options li div,.globalScope .input-style .box-content>ul>li .box-control select.react-typeahead-container .react-typeahead-options li div,.globalScope .box-content>ul>li .box-control .input-style select.react-typeahead-container .react-typeahead-options li div{padding:7px 10px;font-size:12px;cursor:pointer;border-bottom:1px solid #94999d;background:#f5f5f5;overflow:hidden}.globalScope .input-style .react-typeahead-container.form-control .react-typeahead-options li div.active,.globalScope .input-style .box-content>ul>li .box-control input.react-typeahead-container .react-typeahead-options li div.active,.globalScope .box-content>ul>li .box-control .input-style input.react-typeahead-container .react-typeahead-options li div.active,.globalScope .input-style .box-content>ul>li .box-control select.react-typeahead-container .react-typeahead-options li div.active,.globalScope .box-content>ul>li .box-control .input-style select.react-typeahead-container .react-typeahead-options li div.active{background:#60afa0;color:#fff}.globalScope .input-style .react-typeahead-container.form-control .react-typeahead-options li:last-child div,.globalScope .input-style .box-content>ul>li .box-control input.react-typeahead-container .react-typeahead-options li:last-child div,.globalScope .box-content>ul>li .box-control .input-style input.react-typeahead-container .react-typeahead-options li:last-child div,.globalScope .input-style .box-content>ul>li .box-control select.react-typeahead-container .react-typeahead-options li:last-child div,.globalScope .box-content>ul>li .box-control .input-style select.react-typeahead-container .react-typeahead-options li:last-child div{border-bottom:0}.globalScope .input-style-with-button{position:relative;display:flex}.globalScope .input-style-with-button .form-control,.globalScope .input-style-with-button .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .input-style-with-button input,.globalScope .input-style-with-button .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .input-style-with-button select{padding-right:130px}.globalScope .input-style-with-button .input-style-with-button__input{width:100%;flex:100%}.globalScope .input-style-with-button button{position:relative;z-index:6;height:35px;line-height:1;margin-left:-2px;border:1px solid #73879c;border-radius:0 2px 2px 0;padding:0 11px;text-transform:uppercase;color:#73879c;background:#fff}.globalScope .input-style-with-button button:hover{background:#60afa0;border-color:#60afa0;color:#fff}.globalScope .ux-select{width:100%;padding:0 5px;height:30px;color:#94999d;border:1px solid #94999d;background-color:rgba(0,0,0,0);border-radius:2px;position:relative}.globalScope .ux-select:focus{outline:0;color:#555;border:2px solid #60afa0}.globalScope .ux-select.error{border:1px solid #ff6565;color:#ff6565}.globalScope .ux-select--small,.globalScope .ux-select--small-group select{height:35px}.globalScope .sh-checkbox{position:relative;padding-left:24px;border:0;background:rgba(0,0,0,0);outline:none}.globalScope .sh-checkbox:before{content:"";display:inline-block;width:16px;height:16px;margin-right:10px;position:absolute;left:0;top:1px;bottom:1px;border:1px solid #4c555b;background:#fff;border-radius:3px;transition:all .15s}.globalScope .sh-checkbox:hover:before{border-color:#cfcfcf}.globalScope .sh-checkbox:active:before,.globalScope .sh-checkbox:focus:before{box-shadow:0 0 10px #dcdcdc;border-color:#c3c3c3}.globalScope .sh-checkbox.active{font-weight:700}.globalScope .sh-checkbox.active:before{background:#5fae9f;border:2px solid #fff;box-shadow:0 0 0px 1px #4c555a}.globalScope .sh-checkbox.disabled{text-decoration:line-through;color:#94999d}.globalScope .sh-checkbox+.form-group-checkbox-row{margin-top:13px}.globalScope .sh-radio{position:relative;padding-left:18px;border:0;background:rgba(0,0,0,0);outline:none}.globalScope .sh-radio input{display:none}.globalScope .sh-radio .sh-radio__text:before{content:"";display:inline-block;width:12px;height:12px;margin-right:10px;position:absolute;left:0;top:3px;bottom:1px;border:1px solid #4c555b;background:#fff;border-radius:50%;transition:all .15s}.globalScope .sh-radio:hover .sh-radio__text:before{border-color:#cfcfcf}.globalScope .sh-radio:active .sh-radio__text:before,.globalScope .sh-radio:focus .sh-radio__text:before{box-shadow:0 0 10px #dcdcdc;border-color:#c3c3c3}.globalScope .sh-radio input:checked+.sh-radio__text{font-weight:700}.globalScope .sh-radio input:checked+.sh-radio__text:before{background:#5fae9f;border:2px solid #fff;box-shadow:0 0 0px 1px #4c555a}.globalScope .sh-radio.disabled{text-decoration:line-through;color:#94999d}.globalScope .sh-radio+.form-group-checkbox-row{margin-top:13px}.globalScope .checkbox:hover label:before,.globalScope .radio:hover label:before{border-color:#cfcfcf}.globalScope .checkbox:active label:before,.globalScope .checkbox:focus label:before,.globalScope .radio:active label:before,.globalScope .radio:focus label:before{box-shadow:0 0 10px #dcdcdc;border-color:#c3c3c3}.globalScope .checkbox label,.globalScope .radio label{position:relative;padding-left:24px}.globalScope .checkbox label:before,.globalScope .radio label:before{content:"";display:inline-block;width:18px;height:18px;margin-right:10px;position:absolute;left:0;top:3px;bottom:1px;border:1px solid #4c555b;background:#fff;border-radius:3px;transition:all .15s}.globalScope .checkbox input[type=radio]:checked+label,.globalScope .checkbox input[type=checkbox]:checked+label,.globalScope .radio input[type=radio]:checked+label,.globalScope .radio input[type=checkbox]:checked+label{font-weight:700}.globalScope .radio--block-top{text-align:center}.globalScope .radio--block-top label{padding-left:0;margin:0;padding:1.5rem}.globalScope .radio--block-top label:before{position:static;display:block;margin:0 auto;margin-bottom:6px}.globalScope .radio label:before{border-radius:50%;width:18px;height:18px}.globalScope .checkbox label{margin-bottom:10px}.globalScope input[type=radio]:checked+label:before{content:"•";font-size:40px;text-align:center;line-height:13px;color:#60afa0}.globalScope input[type=checkbox]:checked+label:after{content:"";display:inline-block;width:14px;height:14px;position:absolute;left:2px;top:5px;border-radius:0;background:#60afa0}.globalScope .sh-switch{position:relative;display:block;display:flex;align-items:center;height:25px;margin-bottom:0}.globalScope .sh-switch--standAloneCenterWithLabel{justify-content:center;margin-bottom:5px}.globalScope .sh-switch--inline{display:inline-block}.globalScope .sh-switch input{display:none}.globalScope .sh-switch__slider{position:relative;cursor:pointer;left:0;right:0;background-color:#fff;border:1px solid #ccc;transition:.4s;height:13px;width:50px;display:inline-block;margin-right:10px}.globalScope .sh-switch__slider:before{position:absolute;content:"";height:25px;width:25px;left:-1px;background-color:#fff;border:1px solid #ccc;transition:.4s;top:50%;transform:translateY(-50%)}.globalScope input:checked+.sh-switch__slider,.globalScope input[value=true]+.sh-switch__slider{background-color:#60afa0}.globalScope input:focus+.sh-switch__slider{box-shadow:0 0 1px #60afa0}.globalScope input:checked+.sh-switch__slider:before,.globalScope input[value=true]+.sh-switch__slider:before{transform:translateX(25px) translateY(-50%)}.globalScope .sh-switch__slider.round{border-radius:34px}.globalScope .sh-switch__slider.round:before{border-radius:50%}.globalScope .sh-switch-group--block .sh-switch{margin-bottom:5px}.globalScope .ux-checkbox{font-weight:normal}.globalScope .ux-checkbox--element{font-weight:normal;margin:0}.globalScope .ux-checkboxes--default .checkbox{margin:0}.globalScope .ux-checkboxes--default .checkbox label{margin:2px 0}.globalScope .ux-checkboxes__ux-checkbox--withTooltip{display:flex}.globalScope .ux-checkboxes__ux-checkbox--withTooltip svg{margin-left:8px;line-height:1;font-size:16px;color:rgba(115,135,156,.4)}.globalScope .ux-checkboxes__ux-checkbox--withTooltip svg:hover{cursor:pointer;color:#172026}.globalScope .radio input[type=radio],.globalScope .checkbox input[type=checkbox],.globalScope .ux-radioBox__radio{display:none}.globalScope .checkbox,.globalScope .radio,.globalScope .ux-radioBox{color:#73879c;outline:none;position:relative;padding-left:24px}.globalScope .checkbox b,.globalScope .radio b,.globalScope .ux-radioBox b{font-weight:normal}.globalScope .checkbox:hover .ux-label-checkAndRadio:before,.globalScope .checkbox:hover .ux-radioBox__textBlock:before,.globalScope .checkbox:hover label:before,.globalScope .radio:hover .ux-label-checkAndRadio:before,.globalScope .radio:hover .ux-radioBox__textBlock:before,.globalScope .radio:hover label:before,.globalScope .ux-radioBox:hover .ux-label-checkAndRadio:before,.globalScope .ux-radioBox:hover .ux-radioBox__textBlock:before,.globalScope .ux-radioBox:hover label:before{border-color:#6a6a6a}.globalScope .checkbox:active .ux-label-checkAndRadio:before,.globalScope .checkbox:active .ux-radioBox__textBlock:before,.globalScope .checkbox:active label:before,.globalScope .checkbox:focus .ux-label-checkAndRadio:before,.globalScope .checkbox:focus .ux-radioBox__textBlock:before,.globalScope .checkbox:focus label:before,.globalScope .radio:active .ux-label-checkAndRadio:before,.globalScope .radio:active .ux-radioBox__textBlock:before,.globalScope .radio:active label:before,.globalScope .radio:focus .ux-label-checkAndRadio:before,.globalScope .radio:focus .ux-radioBox__textBlock:before,.globalScope .radio:focus label:before,.globalScope .ux-radioBox:active .ux-label-checkAndRadio:before,.globalScope .ux-radioBox:active .ux-radioBox__textBlock:before,.globalScope .ux-radioBox:active label:before,.globalScope .ux-radioBox:focus .ux-label-checkAndRadio:before,.globalScope .ux-radioBox:focus .ux-radioBox__textBlock:before,.globalScope .ux-radioBox:focus label:before{box-shadow:0 0 10px #777;border-color:#5e5e5e}.globalScope .checkbox .ux-label-checkAndRadio:before,.globalScope .checkbox label:before,.globalScope .checkbox .ux-radioBox__textBlock:before,.globalScope .radio .ux-label-checkAndRadio:before,.globalScope .radio label:before,.globalScope .radio .ux-radioBox__textBlock:before,.globalScope .ux-radioBox .ux-label-checkAndRadio:before,.globalScope .ux-radioBox label:before,.globalScope .ux-radioBox .ux-radioBox__textBlock:before{content:"";display:inline-block;width:12px;height:12px;margin-right:10px;position:absolute;left:0;top:3px;bottom:1px;border:1px solid #e5e5e5;background:#fff;border-radius:0;transition:all .15s}.globalScope .radio .ux-label-checkAndRadio:before,.globalScope .ux-radioBox .ux-label-checkAndRadio:before{border-radius:50%}.globalScope .ux-radioBoxes--blockRadios .ux-radioBox{display:block}.globalScope div.checkbox{padding-left:0}.globalScope .radio--block-top{text-align:center}.globalScope .radio--block-top label{margin:0;padding:1.5rem}.globalScope .radio--block-top label:before{position:static;display:block;margin:0 auto;margin-bottom:6px}.globalScope .radio:before,.globalScope .ux-radioBox .ux-radioBox__textBlock:before{border-radius:50%;width:16px;height:16px}.globalScope .checkbox{margin-bottom:10px}.globalScope .checkbox--hidden input[type=checkbox]:checked+label{text-decoration:none;padding-left:0}.globalScope .checkbox--hidden input[type=checkbox]:checked+label::before,.globalScope .checkbox--hidden input[type=checkbox]:checked+label::after{display:none}.globalScope .radio input[type=radio]:checked+.ux-label-checkAndRadio:before,.globalScope .ux-radioBox .ux-radioBox__radio--active+.ux-radioBox__textBlock:before{content:"";line-height:13px;background:#5fae9f;border:2px solid #fff;box-shadow:0 0 0px 1px #4c555a}.globalScope .ux-radioBox .ux-radioBox__radio--active+.ux-radioBox__textBlock b{font-weight:bold}.globalScope .checkbox input[type=checkbox]:checked+.ux-label-checkAndRadio:before,.globalScope .checkbox input[type=checkbox]:checked+label{content:""}.globalScope .checkbox input[type=checkbox]:checked+.ux-label-checkAndRadio:after,.globalScope .checkbox input[type=checkbox]:checked+label:after{content:"";display:inline-block;width:8px;height:8px;position:absolute;left:2px;top:5px;border-radius:0;background:#5fae9f}.globalScope .w-gallery--edit .checkbox input[type=checkbox]:checked+.ux-label-checkAndRadio:after,.globalScope .w-gallery--edit .checkbox input[type=checkbox]:checked+label:after{right:19px;top:17px;left:auto}.globalScope .checkbox input[type=checkbox]:disabled+.ux-label-checkAndRadio,.globalScope .radio input[type=radio]:disabled+.ux-label-checkAndRadio,.globalScope .checkbox:hover input:disabled+.ux-label-checkAndRadio{opacity:.5}.globalScope .checkbox input[type=checkbox]:disabled+.ux-label-checkAndRadio:before,.globalScope .radio input[type=radio]:disabled+.ux-label-checkAndRadio:before,.globalScope .checkbox:hover input:disabled+.ux-label-checkAndRadio:before{border-color:#e5e5e5}.globalScope .checkbox:focus .ux-label-checkAndRadio:before,.globalScope .checkbox:active .ux-label-checkAndRadio:before{box-shadow:none}.globalScope .checkbox--default{display:inline-block;margin:0}.globalScope .checkbox--default label{position:relative;padding-left:18px;margin-bottom:0}.globalScope .checkbox--default .ux-label-checkAndRadio:before{margin-right:0}.globalScope .checkbox--info input[type=checkbox]:checked+label:after{background:#0071bc}.globalScope .form-control-wrap{position:relative}.globalScope .form-control__unit{position:absolute;left:100%;top:50%;width:20px;text-align:center;margin-top:-10px}.globalScope .form-group__unit{margin-right:10px !important}.globalScope .form__controlWithCheckbox{position:relative;padding-left:15px}.globalScope .form__controlWithCheckbox-checkbox{position:absolute;left:0;top:4px}.globalScope .form__label{display:block;text-align:left;margin-bottom:12px}.globalScope .form__label-item{padding:0 10px}.globalScope .sh-form-control__boxWithIcon{position:relative}.globalScope .sh-form-control__boxWithIcon .sh-form-control{padding-left:65px}.globalScope .sh-form-control__boxWithIcon.active .sh-form-control__icon,.globalScope .sh-form-control__boxWithIcon.active .sh-form-control{border-color:#60afa0;color:#60afa0}.globalScope .sh-form-control__boxWithIcon.active .sh-form-control::-webkit-input-placeholder{color:#60afa0}.globalScope .sh-form-control__boxWithIcon.active .sh-form-control:-moz-placeholder{color:#60afa0}.globalScope .sh-form-control__boxWithIcon.active .sh-form-control::-moz-placeholder{color:#60afa0}.globalScope .sh-form-control__boxWithIcon.active .sh-form-control:-ms-input-placeholder{color:#60afa0}.globalScope .sh-form-control__boxWithIcon--small{padding-left:29px}.globalScope .sh-form-control__boxWithIcon--small .sh-form-control__icon{width:28px;text-align:center;position:absolute;left:0px;top:0;bottom:0;line-height:32px;color:#73879c;border-right:0;z-index:1;background:#fff}.globalScope .sh-form-control__boxWithIcon--small .sh-form-control{padding-left:6px}.globalScope .sh-form-control{border:1px solid #73879c;border-radius:4px;line-height:30px;height:30px;width:100%;background:#fff;display:block;margin-bottom:10px;font-size:12px;padding:0 15px}.globalScope .sh-form-control:focus{border-color:#60afa0}.globalScope .sh-form-control__icon{width:50px;text-align:center;position:absolute;left:0;top:0;bottom:0;border-right:1px solid #73879c;color:#73879c;font-size:20px;line-height:36px}.globalScope .sh-form-smallTitle{font-size:12px;font-weight:bold;color:#73879c;display:block;margin-bottom:6px}.globalScope .sh-form-box{border-bottom:1px dashed #73879c;margin-bottom:20px;padding-bottom:10px;font-size:12px}@media only screen and (min-width: 992px){.globalScope .sh-form-box__leftCol{border-right:1px dashed #73879c}}.globalScope .sh-modal__title{font-weight:bold;font-size:15px;padding-bottom:8px;border-bottom:1px solid #73879c;margin-bottom:20px;text-align:center;color:#73879c}.globalScope .sh-modal__title--shipping-mapping{font-weight:bold;font-size:15px;padding-bottom:0;border-bottom:none;margin-bottom:0;text-align:left;color:#73879c}.globalScope .sh-modal__title2{font-size:12px;font-weight:bold;text-align:center;padding-bottom:6px;margin-bottom:20px;color:#73879c;border-bottom:1px dashed #a0adbc}.globalScope .sh-modal__btns{display:flex;align-items:center;justify-content:center;gap:8px}.globalScope .sh-modal__btn{height:40px;line-height:40px;width:180px;margin:5px;font-size:12px}@media only screen and (min-width: 992px){.globalScope .sh-modal__btn{margin:10px}}.globalScope .sh-form-control__plusMinus{position:absolute;right:0;top:0;bottom:0;width:20px;border-left:1px solid #73879c}.globalScope .sh-form-control__plus,.globalScope .sh-form-control__minus{display:block;height:50%;padding:0;text-align:center;line-height:1;width:100%;background:none;border:0;font-weight:bold;color:#73879c}.globalScope .sh-form-control__plus{border-bottom:1px solid #73879c}.globalScope .sh-form-control__infoBox{margin-bottom:12px;border:1px solid #73879c;margin-top:-12px;border-radius:0 0 4px 4px;text-align:left;padding:10px 17px}.globalScope .sh-form-control__infoBox p:last-child{margin-bottom:0}.globalScope .sh-dropzoneWrap{background-color:#e6e9ed;border-width:1px;border-style:dashed;border-color:#73879c;box-shadow:0 0 0 5px #e6e9ed;min-height:90px;padding-bottom:20px;display:block;margin:20px 7px}.globalScope .sh-dropzoneWrap--default{margin-top:5px;background-repeat:no-repeat;background-position:center 18px;color:#73879c;min-height:auto;padding:65px 0 20px}.globalScope .sh-dropzoneWrap--default input[type=file]{visibility:hidden;position:absolute;left:0;right:0;width:100%;height:100%;top:0}@media only screen and (max-width: 544px){.globalScope .dropzoneWrap--style01{float:left;display:block;width:100%}}.globalScope .sh-form-control--blackGroup .form-control,.globalScope .sh-form-control--blackGroup .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .sh-form-control--blackGroup input,.globalScope .sh-form-control--blackGroup .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .sh-form-control--blackGroup select,.globalScope html .login-wp--tutorial .login-box .wrap .sh-form-control--blackGroup .form-control{color:#5b6e81;background:rgba(0,0,0,0);border:1px solid #73879c}.globalScope .sh-form-control--blackGroup .form-control::placeholder,.globalScope .sh-form-control--blackGroup .box-content>ul>li .box-control input::placeholder,.globalScope .box-content>ul>li .box-control .sh-form-control--blackGroup input::placeholder,.globalScope .sh-form-control--blackGroup .box-content>ul>li .box-control select::placeholder,.globalScope .box-content>ul>li .box-control .sh-form-control--blackGroup select::placeholder,.globalScope html .login-wp--tutorial .login-box .wrap .sh-form-control--blackGroup .form-control::placeholder{color:#73879c !important}.globalScope .sh-form-control--blackGroup .form-control:focus,.globalScope .sh-form-control--blackGroup .box-content>ul>li .box-control input:focus,.globalScope .box-content>ul>li .box-control .sh-form-control--blackGroup input:focus,.globalScope .sh-form-control--blackGroup .box-content>ul>li .box-control select:focus,.globalScope .box-content>ul>li .box-control .sh-form-control--blackGroup select:focus,.globalScope html .login-wp--tutorial .login-box .wrap .sh-form-control--blackGroup .form-control:focus{border-color:#1f2a32}.globalScope .sh-form-control--blackGroup .input-style .sh-form-control,.globalScope .sh-form-control--blackGroup .input-style .form-control,.globalScope .sh-form-control--blackGroup .input-style .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .sh-form-control--blackGroup .input-style input,.globalScope .sh-form-control--blackGroup .input-style .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .sh-form-control--blackGroup .input-style select,.globalScope html .login-wp--tutorial .login-box .wrap .sh-form-control--blackGroup .input-style .sh-form-control,.globalScope html .login-wp--tutorial .login-box .wrap .sh-form-control--blackGroup .input-style .form-control{color:#5b6e81;background:rgba(0,0,0,0);border:1px solid #73879c}.globalScope .sh-form-control--blackGroup .input-style .sh-form-control:focus,.globalScope .sh-form-control--blackGroup .input-style .form-control:focus,.globalScope .sh-form-control--blackGroup .input-style .box-content>ul>li .box-control input:focus,.globalScope .box-content>ul>li .box-control .sh-form-control--blackGroup .input-style input:focus,.globalScope .sh-form-control--blackGroup .input-style .box-content>ul>li .box-control select:focus,.globalScope .box-content>ul>li .box-control .sh-form-control--blackGroup .input-style select:focus,.globalScope html .login-wp--tutorial .login-box .wrap .sh-form-control--blackGroup .input-style .sh-form-control:focus,.globalScope html .login-wp--tutorial .login-box .wrap .sh-form-control--blackGroup .input-style .form-control:focus{border-color:#1f2a32}.globalScope .sh-form-control--blackGroup .input-style .input-label span,.globalScope html .login-wp--tutorial .login-box .wrap .sh-form-control--blackGroup .input-style .input-label span{color:#73879c;background:rgba(0,0,0,0)}.globalScope .sh-form-control--blackGroup .input-style .input-label.input-filled span,.globalScope .sh-form-control--blackGroup .input-style .form-control:focus+.input-label span,.globalScope .sh-form-control--blackGroup .input-style .box-content>ul>li .box-control input:focus+.input-label span,.globalScope .box-content>ul>li .box-control .sh-form-control--blackGroup .input-style input:focus+.input-label span,.globalScope .sh-form-control--blackGroup .input-style .box-content>ul>li .box-control select:focus+.input-label span,.globalScope .box-content>ul>li .box-control .sh-form-control--blackGroup .input-style select:focus+.input-label span,.globalScope html .login-wp--tutorial .login-box .wrap .sh-form-control--blackGroup .input-style .input-label.input-filled span,.globalScope html .login-wp--tutorial .login-box .wrap .sh-form-control--blackGroup .input-style .form-control:focus+.input-label span{background:#1f2a32;color:#fff}.globalScope .sh-form-control--blackGroup .sh-btn,.globalScope html .login-wp--tutorial .login-box .wrap .inut-style-btn-group-row .login-btn .bordered-btn{border:1px solid #5fae9f;text-transform:uppercase;color:#5fae9f}.globalScope .sh-form-control--blackGroup .sh-btn:hover,.globalScope html .login-wp--tutorial .login-box .wrap .inut-style-btn-group-row .login-btn .bordered-btn:hover{border:1px solid #5fae9f;background:#5fae9f;color:#fff}.globalScope .sh-form-control--blackGroup .sh-btn:disabled,.globalScope .sh-form-control--blackGroup .sh-btn.disabled,.globalScope html .login-wp--tutorial .login-box .wrap .inut-style-btn-group-row .login-btn .bordered-btn:disabled,.globalScope html .login-wp--tutorial .login-box .wrap .inut-style-btn-group-row .login-btn .bordered-btn.disabled{pointer-events:none !important;opacity:.3;transition:none}.globalScope .sh-form-control--absoluteButton .input-style+.sh-btn{float:left}.globalScope .sh-form-control--absoluteButton .form-footer{float:right;margin-top:0}.globalScope .form__checkboxButton{border:1px solid #73879c;border-radius:4px}.globalScope .form__checkboxButton.active{border-color:#5fae9f;color:#5fae9f}.globalScope .form__checkboxButton.active .form__checkboxButton-button{color:#5fae9f}.globalScope .form__checkboxButton+.globalScope .form__checkboxButton{margin-top:15px}.globalScope .form__checkboxButton-button{color:#73879c;font-size:13px;width:100%;border:0;background:none;height:40px;display:flex;align-items:center;outline:none}.globalScope .form__checkboxButton-icon{margin-left:15px;margin-right:35px;font-size:30px}.globalScope .form__checkboxButton-hiddenBox-section{padding:20px}.globalScope .form__checkboxOutside{position:relative;display:flex;align-items:center;border:1px solid #000;color:#000;border-radius:4px;font-size:13px;padding:5px 15px}.globalScope .form__checkboxOutside+.globalScope .form__checkboxOutside{margin-top:15px}.globalScope .form__checkboxOutside.active{border-color:rgba(255,255,255,.4);color:rgba(255,255,255,.4)}.globalScope .form__checkboxOutside.active .form__checkboxOutside-iconCheckWrap{background:#fff;border-color:#fff}.globalScope .form__checkboxOutside.active .form__checkboxOutside-iconCheck{color:#000}.globalScope .form__checkboxOutside.active .form__checkboxOutside-right{color:#fff}.globalScope .form__checkboxOutside-left{display:flex;float:left}.globalScope .form__checkboxOutside-center{flex:auto;text-align:left}.globalScope .form__checkboxOutside-right{float:right;text-decoration:underline;border:0;background:none;white-space:nowrap;margin-left:20px}.globalScope .form__checkboxOutside-icon{font-size:20px;margin-right:35px}.globalScope .form__checkboxOutside-iconCheckWrap{width:20px;height:20px;line-height:20px;text-align:center;position:absolute;right:100%;margin-right:10px;background:rgba(0,0,0,0);border-radius:50%;border:1px solid #000}.globalScope .form__checkboxOutside-iconCheck{font-size:10px;color:rgba(0,0,0,0)}.globalScope .sh-btn-group--inline{margin-right:-7px;margin-bottom:-4px}.globalScope .sh-btn-group--inline .sh-btn{margin-right:7px;margin-bottom:4px;font-size:11px;font-weight:400}.globalScope .TableResponsive .sh-btn-group--inline .sh-btn--link{padding:0 !important}.globalScope .sh-btn{text-align:center;height:38px;line-height:38px;display:inline-block;border-radius:2px;font-size:12px;transition:.2s background-color,color;padding:0 10px}.globalScope .sh-btn:hover{text-decoration:none}@media only screen and (min-width: 1440px){.globalScope .sh-btn{padding:0 30px}}.globalScope .TableResponsive td .sh-btn:not(.sh-btn--table){height:21px;line-height:20px;padding:0 10px;font-size:11px}.globalScope .sh-btn--small{height:30px;line-height:28px}.globalScope .sh-btn--primary{box-sizing:border-box;background-position:0 0,0 100%;background-repeat:no-repeat;color:#fff;border:1px solid #5fae9f}.globalScope .sh-btn--primary:hover{background:rgba(0,0,0,0);color:#60afa0;border-color:#5fae9f}.globalScope .sh-btn--primary:focus{color:#fff}.globalScope .sh-btn--primary:focus:hover{color:#5fae9f}.globalScope .sh-btn--primary-invert{background:rgba(0,0,0,0);color:#60afa0;border:1px solid #5cb0a1}.globalScope .sh-btn--primary-invert:hover{color:#fff;border:1px solid #5cb0a1}.globalScope .sh-btn--danger,.globalScope .sh-btn--cancel,.globalScope .sh-btn--delete{background:rgba(0,0,0,0);color:#ff6565;border:1px solid #ff6565}.globalScope .sh-btn--danger:hover,.globalScope .sh-btn--cancel:hover,.globalScope .sh-btn--delete:hover{background:#ff6565 !important;color:#fff;border:1px solid #ff6565}.globalScope .sh-btn--danger .sh-btn__text,.globalScope .sh-btn--cancel .sh-btn__text,.globalScope .sh-btn--delete .sh-btn__text{border-right:1px solid #ff6565}.globalScope .sh-btn--bg-danger{background:#ff6565 !important;color:#fff;border:1px solid #ff6565}.globalScope .sh-btn--bg-danger:hover{background:#fff !important;color:#ff6565 !important;border:1px solid #fff}.globalScope .sh-btn--disabled{cursor:default;background:#dfe1e5;border:1px solid #dfe1e5;color:#fff !important}.globalScope .sh-btn--action-disabled{pointer-events:none;opacity:.6}.globalScope .sh-btn--default{background:#fff;border:1px solid #73879c;color:#73879c}.globalScope .sh-btn--default:hover{background:#73879c;color:#fff;border:1px solid #73879c}.globalScope .sh-btn--light{color:#fff;border:1px solid}.globalScope .sh-btn--dropdown{position:relative;padding:0;display:flex;align-items:center;border-radius:2px;border:1px solid #73879c;background:rgba(0,0,0,0)}.globalScope .sh-btn--dropdown:hover{background:#73879c;color:#fff}.globalScope .sh-btn--dropdown.sh-btn--cancel,.globalScope .sh-btn--dropdown.sh-btn--delete{border:1px solid #ff6565}.globalScope .sh-btn--dropdown:not(.sh-btn--dropdownToggle):hover .sh-btn__icon svg,.globalScope .sh-btn--dropdown:not(.sh-btn--dropdownToggle):hover .sh-btn__icon .ico{transform:rotate(180deg)}.globalScope .sh-btn--dropdownToggle--is-active{background:#73879c;color:#fff}.globalScope .sh-btn--dropdownToggle--is-active .sh-btn__icon svg,.globalScope .sh-btn--dropdownToggle--is-active .sh-btn__icon .ico{transform:rotate(180deg)}.globalScope .sh-btn__text{border-right:1px solid #73879c;padding:0 15px;height:29px}.globalScope .sh-btn--no-icon .sh-btn__text{border-right-width:0}.globalScope .sh-btn__icon{font-size:13px;width:30px;display:inline-block;bottom:auto}.globalScope .sh-btn__icon svg,.globalScope .sh-btn__icon .ico{transition:all .4s;transform:rotate(0)}.globalScope .sh-btn--link{border:0;background:none;padding:0;color:#73879c}.globalScope .sh-btn--linkDefault{font-weight:400;color:#5fae9f;text-decoration:underline;padding:0;line-height:initial;height:auto}.globalScope .sh-btn--block{display:block;padding-left:10px;padding-right:10px}.globalScope button.sh-btn--block{width:100%}.globalScope .sh-btn--modal{min-width:200px;height:40px;line-height:40px}.globalScope .sh-btn--outline{border:1px solid #fff;color:#fff}.globalScope .sh-btn--outline.active,.globalScope .sh-btn--outline:hover{background:#fff;color:#000}.globalScope .sh-btn-group--inline{margin-right:-7px;margin-bottom:-4px}.globalScope .sh-btn-group--inline .sh-btn{margin-right:7px;margin-bottom:4px;font-size:11px;font-weight:400}.responsive-table .globalScope .sh-btn-group--inline .sh-btn--link{padding:0 !important}.globalScope .sh-btn--icon{background:rgba(0,0,0,0);border:0;padding:0;height:auto;line-height:1;font-size:15px}.globalScope .sh-btn--icon-2{background:rgba(0,0,0,0);border:0;padding:0;height:auto;line-height:1;font-size:15px}.globalScope .sh-btn-add{background:rgba(0,0,0,0);border:0;color:#5fae9f}.globalScope .sh-btn-add:before{background:#fff;color:#5fae9f;border:1px solid #5fae9f;content:"+";display:block;border-radius:50%;width:50px;height:50px;line-height:46px;text-align:center;font-size:25px;font-weight:400;margin:0 auto;margin-bottom:5px}.globalScope .sh-btn-add:hover:before{color:#fff}.globalScope .sh-btn-group--picking-priority{text-align:center}.globalScope .sh-btn-group--picking-priority .sh-btn{background:rgba(0,0,0,0);text-align:center;padding:8px 10px;border:1px solid;margin:5px;width:170px;height:auto;line-height:1}.globalScope .sh-btn-group--picking-priority .sh-btn:hover{background:rgba(4,4,4,.1);color:#000 !important}.globalScope .sh-btn-group--picking-priority .sh-btn svg{display:block;margin:0 auto}.globalScope .ux-popover{z-index:8;position:relative;display:inline-block}.globalScope .ux-popover:hover{z-index:9}.globalScope .ux-popover__in{z-index:10000;position:absolute;visibility:hidden;padding:10px 12px;background-color:#283a43;color:#fff;border-radius:2px;font-size:12px;text-align:center;line-height:1.4;white-space:initial;opacity:0;transition-property:visibility,opacity,transform;transition-duration:.25s}.globalScope .ux-popover__in.animate{transform:translateY(20px) translateX(-20px);transition-timing-function:cubic-bezier(0.77, -0.55, 0.265, 1.55)}.globalScope .ux-popover__in.top{bottom:100%;top:auto;margin-bottom:10px}.globalScope .ux-popover__in.bottom{top:100%;margin-top:10px}.globalScope .ux-popover:not(.ux-popover--default):hover .ux-popover__in{visibility:visible;opacity:1}.globalScope .ux-popover__trigger:hover~.ux-popover__in{visibility:visible;opacity:1}.globalScope .ux-popover__in--left,.globalScope .ux-popover__in--right{top:100%;margin-top:1rem}.globalScope .ux-popover__in--left{left:0}.globalScope .ux-popover__in--left:before{content:"";position:absolute;top:100%;border-left:4px solid rgba(0,0,0,0);border-right:4px solid rgba(0,0,0,0);border-top:4px solid #283a43;left:10px}.globalScope .ux-popover__in--default{background-color:#283a43}.globalScope .ux-popover__in--default:before{border-top-color:#1f2a32}.globalScope .ux-layoutWithSidebar{position:relative;padding:10px}@media only screen and (min-width: 960px){.globalScope .ux-layoutWithSidebar.is-open .ux-layoutWithSidebar__sidebar+.ux-layoutWithSidebar__main{padding-left:284px}}.globalScope .ux-layoutWithSidebar.is-open .ux-layoutWithSidebar__aDescription{display:block}.globalScope .ux-layoutWithSidebar.is-open .ux-layoutWithSidebar__loader{margin-top:2px}.globalScope .ux-layoutWithSidebar__loader{width:100%;display:flex;justify-content:center;margin-top:4px}.globalScope .ux-layoutWithSidebar__sidebar{z-index:100;background:#fff;width:147px;text-align:center;border-left:0;border-right:0;box-shadow:3px 5px 13px -2px #ccc;scrollbar-width:thin}.globalScope .ux-layoutWithSidebar__sidebar::-webkit-scrollbar{width:6px;background-color:#f0f0f0}.globalScope .ux-layoutWithSidebar__sidebar::-webkit-scrollbar-thumb{background:#cdcdcd}.globalScope .ux-layoutWithSidebar__nav{margin:0;list-style:none}.globalScope .ux-layoutWithSidebar__li{display:block;line-height:1;font-size:11px;position:relative}.globalScope .ux-layoutWithSidebar__li:first-child{border-top:1px solid #ebeef0}.globalScope .ux-layoutWithSidebar__li--is-active:before{content:"";position:absolute;right:0;top:0;bottom:0;width:5px;background:#60afa0}.globalScope .ux-layoutWithSidebar__li--is-active .ux-layoutWithSidebar__a{color:#60afa0}.globalScope .ux-layoutWithSidebar__a{width:100%;display:block;color:#666;padding:8px;position:relative;line-height:13px}.globalScope .ux-layoutWithSidebar__a:before{content:"";position:absolute;bottom:0;left:10px;right:10px;border-bottom:1px solid #ebeef0}.globalScope .ux-layoutWithSidebar__aIconWrap{margin-bottom:2px}.globalScope .ux-layoutWithSidebar__aIconWrap .ico{width:100%;height:14px}.globalScope .ux-layoutWithSidebar__aDescription{display:none}.globalScope .ux-layoutWithSidebar__badge{margin-top:3px;transition:all .3s}.ux-layoutWithSidebar:not(.is-open) .globalScope .ux-layoutWithSidebar__badge:not(.ux-layoutWithSidebar__badge--tooltip){transition:all .3s;width:6px;height:6px;padding:0;background:orange;overflow:hidden;position:absolute;right:10px;top:2px;text-indent:-999px}.globalScope .ux-layoutWithSidebar__badge--tooltip{margin-left:5px}.globalScope .ux-layoutWithSidebar__nav--block{min-height:100% !important}.globalScope .ux-layoutWithSidebar__nav--block .ux-layoutWithSidebar__li{width:auto;float:left;text-align:center;height:auto}.globalScope .ux-layoutWithSidebar__nav--block .ux-layoutWithSidebar__aDescription{display:block}.globalScope .ux-layoutWithSidebar__nav--block .ux-layoutWithSidebar__a{padding:10px 10px 13px}.globalScope .ux-box--sm{margin:0 auto;max-width:480px}.globalScope .ux-box--md{margin:0 auto;max-width:960px}.globalScope .ux-boxFlat{background:#fff;border:1px solid #ebeef0;padding:10px}.globalScope .ux-boxFlat__title{font-weight:bold;font-size:15px;border-bottom:1px solid #9d9d9d;padding-bottom:8px;margin-bottom:15px;line-height:1;color:#73879c}.globalScope .picturesPreview{display:none;position:fixed;z-index:1010;padding:10px 12px;background-color:#283a43;color:#fff;border-radius:2px;font-size:12px;text-align:center;line-height:1.4;white-space:initial;animation:showDropdown .2s cubic-bezier(0.6, 0.2, 0.1, 1) both}.globalScope .tileBox__menuBar a{font-size:13px;color:#94999d;display:inline-block;vertical-align:top;text-decoration:underline;padding:0 7px}.globalScope .tileBox__menuBar a.no-link-titel,.globalScope .tileBox__menuBar a.is-active{text-decoration:none;font-weight:700;color:#60afa0}.globalScope .tileBox__menuBar.right{float:right}.globalScope .progress-bar--primary{border:0;border-radius:8px}.globalScope .box-content{width:100% !important;display:inline-block;vertical-align:top;border-left:0px solid #f1f1f1;border-right:0px solid #f1f1f1;margin-bottom:0px}.globalScope .box-content>ul{list-style:none;margin:0;padding:0;width:100%;display:inline-block;vertical-align:top}.globalScope .box-content>ul>li{width:100%;float:left;padding:2px 17px;background:#fff;border-bottom:0px solid #f1f1f1;border-bottom:1px solid #e6e9ed}.globalScope .box-content>ul>li label,.globalScope .box-content>ul>li .span-label{width:35%;display:inline-block;vertical-align:top;float:left;font-size:12px;font-weight:normal;margin:0;padding:3px 0px;color:#73879c}.globalScope .box-content>ul>li .box-control{display:flex;width:65%;float:left;font-weight:bold}.globalScope .box-content>ul>li .box-control .wrapped-box{word-break:break-word}.globalScope .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control select{height:25px;line-height:25px;padding:2px 5px;border:1px solid rgba(0,0,0,0);pointer-events:none;border-radius:2px;background-color:rgba(0,0,0,0)}.globalScope .box-content>ul>li .box-control input.active,.globalScope .box-content>ul>li .box-control select.active{border-color:#b7bbbd;pointer-events:inherit}.globalScope .box-content>ul>li .box-control.change-box span{display:inline-block;vertical-align:top;width:auto;font-size:11px}.globalScope .box-content>ul>li .box-control.change-box span.change-box-text{margin-right:5px}.globalScope .box-content>ul>li .box-control.change-box button{float:right;margin-top:2px}.globalScope .box-content>ul>li .box-control.change-box .mapping{font-size:12px;font-weight:400;font-family:"Open Sans",sans-serif;float:right;width:auto;text-decoration:underline}.globalScope .box-content>ul>li .box-control.change-box .mapping:hover{color:#60afa0}.globalScope .box-content>ul>li .box-control.change-box i{display:inline-block;vertical-align:top;width:auto;padding:4px 7px;font-size:13px;color:#e4bc56}.globalScope .box-content>ul>li .box-control.change-box img{float:left;width:auto;margin-right:5px}.globalScope .box-content>ul>li .box-control.envelope span{display:inline-block;vertical-align:top;width:auto}.globalScope .box-content>ul>li .box-control.envelope i{display:inline-block;vertical-align:top;width:auto;color:#60afa0;font-size:12px;padding:0 0 0 5px}.globalScope .box-content>ul>li .box-control.tracking-no span,.globalScope .box-content>ul>li .box-control.tracking-no a{display:inline-block;vertical-align:top;width:auto;color:#59b1ea;font-family:"Open Sans",sans-serif;font-weight:400}.globalScope .box-content>ul>li .box-control.tracking-no .label-created{float:right}.globalScope .box-content>ul>li .box-control.tracking-no .label-created i{display:inline-block;vertical-align:top;width:auto;padding:2px 12px 2px 0;font-size:13px;color:#e4bc56}.globalScope .box-content>ul>li .box-control-wrap{flex-wrap:wrap}.globalScope .box-content>ul>li .box-control-wrap .foot-icon-box{margin-bottom:5px}.globalScope .box-content>ul>li.error-box{border:2px solid #ef8661}.globalScope .box-content>ul>li.error-box label,.globalScope .box-content>ul>li.error-box .box-control{color:#ef8661}.globalScope .box-content>ul>li.error-box .box-control i{color:#ef8661}@media screen and (max-width: 767px){.globalScope .box-content>ul>li label{width:40%}.globalScope .box-content>ul>li .box-control{width:60%}}.globalScope .box-content>ul .box-foot{border-top:1px solid #73879c;border-bottom:0;background-color:#fff}.globalScope .box-content>ul .box-foot label{font-weight:bold}.globalScope .box-content>ul .box-foot .box-control .foot-box i{color:#60afa0;font-size:18px;display:inline-block;vertical-align:middle;width:auto;margin-right:8px}@media screen and (max-width: 767px){.globalScope .box-content>ul .box-foot .box-control .foot-box i{font-size:15px;margin-right:5px}}.globalScope .box-content>ul .box-foot .box-control .foot-box span{display:inline-block;vertical-align:middle;font-weight:bold;width:auto}.globalScope .box-content>ul .box-foot.address-status{padding:15px 20px}.globalScope .box-content>ul .box-foot.address-status label{padding:3px 0;font-weight:normal;font-size:12px}.globalScope .box-content>ul .box-foot.box-foot--buttons{text-align:center;padding:10px 0 0}.globalScope .box-content>ul .box-foot:nth-child(even){background-color:#fff}.globalScope .box-content .customs-declarations-dropdown{width:100%;background-color:rgba(0,0,0,0);padding:12px 20px;display:inline-block;vertical-align:top;border-bottom:1px solid #94999d}.globalScope .box-content .customs-declarations-dropdown .input-style{margin-bottom:0;float:left;padding-right:25px}.globalScope .box-content .customs-declarations-dropdown .input-style label{display:inline-block;vertical-align:middle;margin-right:10px;font-size:15px;font-weight:400;color:#94999d}.globalScope .box-content .customs-declarations-dropdown .input-style .dropdown{display:inline-block;vertical-align:middle;width:225px}.globalScope .box-content .customs-declarations-dropdown .input-style .dropdown .btn-roundend sub:before{left:-9px}@media screen and (max-width: 991px){.globalScope .box-content .customs-declarations-dropdown .input-style{width:50%}.globalScope .box-content .customs-declarations-dropdown .input-style .dropdown{display:block;width:100%}}@media screen and (max-width: 767px){.globalScope .box-content .customs-declarations-dropdown .input-style{width:100%;padding:0;margin:5px 0}}.globalScope .box-content .product-information-input{width:100%;padding:20px 0;text-align:center;background:#fff;border-bottom:1px solid #94999d}.globalScope .box-content .product-information-input>.input-style{max-width:350px;margin:0 auto}.globalScope .box-content .product-information-input input{width:80%;height:40px;font-size:15px;border:1px solid #b7bbbd;font-family:"Open Sans",sans-serif;color:#94999d;font-weight:400;padding:5px 20px;border-radius:3px}.globalScope .box-content.notes-box ul{overflow:auto;height:100px;border-bottom:1px solid #94999d}.globalScope .box-content.notes-box ul li{border:0;background:#fff}.globalScope .box-content .timeline-history{padding:10px 15px 10px 10px}.globalScope .box-content.border-none{border:0}.globalScope .box-content--right .box-control{text-align:right}.globalScope .order-prices-box{display:flex;justify-content:flex-end;width:65%;font-weight:bold;text-align:right}.globalScope .billing{text-align:center;color:#73879c}.globalScope .billing__title{font-size:14px;margin-bottom:15px;margin-top:20px;text-align:left;font-weight:bold;color:#1f2a32;border-bottom:1px solid #ebeef0;padding-bottom:8px}.globalScope .billing__current{font-size:12px;font-weight:bold;margin-bottom:0}.globalScope .billing__price{font-size:25px;font-weight:bold;padding-bottom:3px}.globalScope .billing__button{display:block;height:50px;line-height:47px;width:100%;padding:0}.globalScope .billing__button+.globalScope .billing__button{margin-top:10px}.globalScope .billing__priceBox{border:1px dashed #9d9d9d;border-width:1px 0;padding-top:12px;padding-bottom:12px;margin-bottom:20px;line-height:1.2}.globalScope .billing__priceBoxes-wrap{display:flex;justify-content:center;margin-block:30px}.globalScope .billing__priceBoxes{margin:auto;width:100%}.globalScope .billing__priceBoxes .billing__priceBox{padding:0;margin:0;border-width:0}.globalScope .billing__priceBoxes .billing__priceBox .billing__price{padding-bottom:0}.globalScope .billing__priceBoxes .billing__priceBox+.billing__priceBox{border-top-width:1px;padding-top:10px;margin-top:10px}.globalScope .billing__date{color:#abb7c4;font-size:12px}.globalScope .billing__iconWrap{line-height:1;margin-bottom:10px}.globalScope .billing__icon{font-size:24px}.globalScope .billing__table{display:block;margin-bottom:10px}.globalScope .billing__table table{margin:0 auto}.globalScope .billing__table table td,.globalScope .billing__table table th{text-align:left;font-size:12px;padding:1px 10px}.globalScope .billingSummary{padding:20px 0}.globalScope .billingSummary__header{font-size:15px;font-weight:bold;border-bottom:1px dashed #73879c;padding-bottom:10px;margin-bottom:6px;line-height:1;color:#73879c}.globalScope .billingSummary__table{width:100%}.globalScope .billingSummary__table td,.globalScope .billingSummary__table th{padding:2px 0;font-weight:400;font-size:13px}.globalScope .billingSummary__table td:first-child,.globalScope .billingSummary__table th:first-child{padding-right:10px;color:#73879c}.globalScope .billingSummary__table td.billingSummary__highlighted{color:#60afa0}.globalScope .billingSummary__table tr:nth-last-child(2) td{padding-bottom:8px}.globalScope .billingSummary__total td{font-weight:bold;border-top:1px dashed #73879c;font-size:15px;padding-top:5px}.globalScope .billingGraph{padding:20px;text-align:center}.globalScope .billing--dashboard .billing__iconWrap{margin-top:0px;margin-bottom:-10px}.globalScope .billing--dashboard .billing__priceBox{margin:10px 0 15px 0;padding-top:8px;padding-bottom:3px}.globalScope .billing--dashboard .billing__current{margin-bottom:0}.globalScope .billing--dashboard .billing__price{padding-bottom:3px}.globalScope .billing--dashboard .billing__button{height:35px;line-height:35px}.globalScope .GlobalHeader{display:block;position:relative}@media only screen and (min-width: 1170px){.globalScope .GlobalHeader{height:60px}}.globalScope .GlobalHeader .inline-list{float:left;margin:4px 0 0 20px}.globalScope .GlobalHeader .inline-list>li{color:#4c555b;padding-left:0;border-left:0;margin-left:10px}.globalScope .GlobalHeader .inline-list>li>a{color:#fff}.globalScope .GlobalHeader .inline-list>li>a:hover{color:#60afa0}@media screen and (max-width: 1420px){.globalScope .GlobalHeader .inline-list{margin-left:10px}}.globalScope .GlobalHeader .nav-toggle{float:right;margin:9px 15px 0 0;padding:8px 0}.globalScope .GlobalHeader .nav-toggle span{background:#fff}@media screen and (min-width: 1170px){.globalScope .GlobalHeader .nav-toggle{display:none}}@media screen and (max-width: 767px){.globalScope .GlobalHeader .nav-toggle{position:absolute;right:15px;top:2px;margin:0px}}.globalScope .GlobalHeader.userSwitched{background:none #73879c}.globalScope .GlobalHeader.betaTesting{background:none #29abe2}.globalScope .GlobalHeader__Logo{margin:0;display:inline-block;vertical-align:top;line-height:0;position:relative}.globalScope .GlobalHeader__Logo a{padding:12px 15px;display:inline-block;vertical-align:top}.globalScope .GlobalHeader__Logo a img{vertical-align:middle;width:30px;margin-top:1px}@media screen and (min-width: 768px){.globalScope .GlobalHeader__Logo a img{width:125px;height:36px}}@media screen and (max-width: 767px){.globalScope .GlobalHeader__Logo{position:absolute;left:0;top:0}.globalScope .GlobalHeader__Logo a{padding-top:7px;padding-bottom:7px}}.globalScope .GlobalHeader__Logo .GlobalHeader__Logo__flag{position:absolute;bottom:4px;right:-22px}@media screen and (min-width: 768px){.globalScope .GlobalHeader__Logo .GlobalHeader__Logo__flag{bottom:8px;right:15px}}.globalScope .GlobalHeader__Logo.GlobalHeader__Logo__SwitchedUser{border-color:#000}.globalScope .inline-list{list-style:none;margin:0;padding:0}.globalScope .inline-list>li{display:inline-block;margin-left:15px;padding-left:15px;vertical-align:top;float:left;border-left:1px solid}.globalScope .inline-list>li>a{display:inline-block;vertical-align:top}.globalScope .inline-list>li:first-child{border:0;padding:0;margin:0}.globalScope .nav-toggle{width:30px;display:inline-block;vertical-align:top}.globalScope .nav-toggle span{background:#60afa0;width:100%;display:inline-block;vertical-align:top;float:left;height:4px;margin:2px 0;border-radius:2px;position:relative;transition:all .5s ease 0s}.globalScope .nav-toggle.active span:first-child{transform:rotate(45deg);top:9px}.globalScope .nav-toggle.active span:nth-child(2){background:rgba(0,0,0,0)}.globalScope .nav-toggle.active span:last-child{transform:rotate(-48deg);top:-11px}.globalScope .header-action{background:#e8e8e8;display:inline-block;width:100%;vertical-align:top;margin-bottom:10px;position:relative;z-index:0}.globalScope .header-action.header-action--withBottomBorder{border-bottom:1px solid #cdd4db;margin-bottom:0}.globalScope .header-action .page-title{display:inline-block;vertical-align:top;padding:11px 15px 9px 15px;border-right:1px solid #cdd4db;float:left;display:flex;justify-content:center;flex-direction:column;min-height:50px}.globalScope .header-action .page-title h2{margin:0;font-size:17px;text-transform:uppercase;color:#73879c;font-weight:bold;line-height:1}.globalScope .header-action .page-title--withBackLink{padding-left:45px}.globalScope .header-action .breadcrumb{margin-top:0;line-height:1}.globalScope .header-action .breadcrumb li+li:before{color:#000;padding:0 1px;font-size:10.5644px}.globalScope .header-action .breadcrumb li a{color:#73879c;font-size:10.5644px;padding:3px 0}.globalScope .header-action .breadcrumb li a:hover{color:#4a9285}@media screen and (max-width: 767px){.globalScope .header-action .breadcrumb li a{font-size:10px}}.globalScope .header-action .sh-btn{line-height:28px;height:30px}@media screen and (min-width: 1300px){.globalScope .header-action{min-height:45px}}@media only screen and (max-width: 767px){.globalScope .Page--Dashboard .header-action{display:none}}.globalScope .breadcrumb{background:rgba(0,0,0,0);padding:0;border-radius:0;border:0;margin:0}.globalScope .breadcrumb li+li:before{color:#1f2a32}.globalScope .breadcrumb li a{color:#1f2a32}.globalScope .breadcrumb li a:hover{color:#60afa0}.globalScope .back-link{position:absolute;left:0;top:0;height:100%;background:#4c555b;color:#fff;font-size:0;width:30px;text-align:center;display:flex;align-items:center;justify-content:center}.globalScope .header-action-nav{list-style:none;margin:0;float:left;padding:0;display:inline-block;vertical-align:top}.globalScope .header-action-nav>li{display:inline-block;vertical-align:top;float:left;position:relative}.globalScope .header-action-nav>li>a{color:#73879c;font-size:12px;padding:15px 30px;display:inline-block;vertical-align:top;position:relative;overflow:hidden}.globalScope .header-action-nav>li>a i{margin-left:5px;font-weight:bold;font-size:1.2em}.globalScope .header-action-nav>li>a .badge{position:absolute;top:2px;right:10px}.globalScope .header-action-nav>li>a:before{content:"";width:0;height:0;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-bottom:5px solid #f5f5f5;position:absolute;left:0;right:0;bottom:-15px;margin:0 auto;display:inline-block;opacity:0;transition:all .5s ease 0s}.globalScope .header-action-nav>li>a.previous-nav .ico-down,.globalScope .header-action-nav>li>a.next-nav .ico-down{vertical-align:middle;font-size:6px;display:inline-block;position:relative;top:-1px}.globalScope .header-action-nav>li>a.previous-nav .ico-down{transform:rotate(90deg)}.globalScope .header-action-nav>li>a.next-nav .ico-down{transform:rotate(-90deg)}.globalScope .header-action-nav>li.active>a{color:#5fae9f}.globalScope .header-action-nav>li.active>a:before{opacity:1;bottom:0}.globalScope .header-action-nav>li.disabled>a{color:#abb7c4;cursor:not-allowed}.globalScope .header-action-nav>li.disabled>a:before{opacity:1;bottom:0}.globalScope .header-action-nav>li:hover>a{color:#5fae9f}.globalScope .header-action-nav>li:hover .header-action-subnav{opacity:1;visibility:visible;display:block}.globalScope .header-action-nav>li:after{content:"";height:80%;width:1px;background:#cdd4db;display:inline-block;position:absolute;right:0;top:10%}.globalScope .header-action-nav .header-action-subnav{list-style:none;font-size:12px;margin:0;padding:0;background:#60afa0;position:absolute;z-index:10;left:0;min-width:200px;display:none;opacity:0;border-radius:0px 0px 8px 8px;box-shadow:3px 7px 21px -1px rgba(0,0,0,.22);top:50px;transition:all .1s ease 0s}.globalScope .header-action-nav .header-action-subnav li a{color:#fff;display:inline-block;vertical-align:top;padding:10px 15px;width:100%;border-top:1px solid #56aa9a}.globalScope .header-action-nav .header-action-subnav li:hover a{background-color:#56aa9a}.globalScope .badge{background:#de5151;font-size:10px;line-height:.8;font-weight:300}.globalScope .header-action-right{width:100%}.globalScope .header-action-right__item{margin:0 5px}.globalScope .header-action-right__item .sh-btn{display:block;white-space:nowrap}@media only screen and (min-width: 540px){.globalScope .header-action-right__item .sh-btn{display:inline-block}}@media(max-width: 960px){.globalScope .header-action-right__item{display:none}.globalScope .header-action-right__item .sh-btn{display:none}}.globalScope .header-action-right__item.header-action-right__item--search{display:inherit}.globalScope .header-action-right__item.header-action-right__item--visible{display:inherit}.globalScope .header-action-right__item.header-action-right__item--visible .sh-btn{display:block;margin:10px 0}.globalScope .header-action-right__item--search{width:100%}.globalScope .header-action-nav-wrap{display:inline-block;vertical-align:top;float:left}@media screen and (max-width: 1320px){.globalScope .header-action-nav-wrap{white-space:nowrap;overflow:auto}.globalScope .header-action-nav-wrap .header-action-nav{display:block !important}.globalScope .header-action-nav-wrap .header-action-nav.scrollnav{display:none !important}.globalScope .header-action-nav-wrap .header-action-nav>li{float:none;white-space:nowrap}}@media screen and (max-width: 767px){.globalScope .header-action-nav-wrap{width:90%;float:right}}@media screen and (max-width: 500px){.globalScope .header-action-nav-wrap{width:100%;float:none;margin:0 15px;display:block}}.globalScope .search-box{display:inline-block;vertical-align:top;float:left;border:1px solid #73879c;border-radius:2px;white-space:nowrap;width:100%;padding:5px 35px 3px 10px;position:relative}.globalScope .search-box .search-field{background:rgba(0,0,0,0);border:0;box-shadow:none;font-weight:300;margin-right:7px;text-align:right;width:100%}.globalScope .search-box .search-field::-webkit-input-placeholder{color:#73879c;font-style:italic;font-weight:500}.globalScope .search-box .search-field::-moz-placeholder{color:#73879c;font-style:italic;font-weight:500}.globalScope .search-box .search-field::-ms-input-placeholder{color:#73879c;font-style:italic;font-weight:500}.globalScope .search-box .search-btn{background:rgba(0,0,0,0);color:#73879c;width:30px;height:29px;display:inline-block;vertical-align:top;border:0;font-size:16px;padding:0;border-left:1px solid;position:absolute;right:0;top:0;border-radius:0}@media only screen and (min-width: 768px){.globalScope .search-box{width:auto}}.globalScope .GlobalHeader__Title{color:#fff;width:70%;margin:0 auto;text-align:center;font-size:1.429em;padding:10px 0;font-family:"Open Sans",sans-serif;font-weight:400;height:45px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.globalScope .GlobalHeader__Title i,.globalScope .GlobalHeader__Title svg{margin-right:10px;vertical-align:middle;display:inline-block}@media only screen and (min-width: 768px){.globalScope .GlobalHeader__Title{display:none}}.globalScope .ux-badge{display:inline-block;background:#fff;color:#e4bc56;border:1px solid;font-weight:bold;border-radius:11px;padding:0 5px;height:17px;line-height:15px;text-align:center}.globalScope .ux-badge:empty{display:none}.globalScope .ux-badge--lg{display:inline-block;border:2px solid;border-radius:20px;height:40px;line-height:35px;margin:0 auto;min-width:60px;font-size:15px;font-weight:bold}.globalScope .ux-badge--primary{color:#5fae9f}.globalScope .ux-badge--info{color:#0071bc}.globalScope .ux-badge--warning{color:#e4bc56}.globalScope .ux-badge--danger{color:#ff6565}.globalScope .ux-badge--filter{color:#4a5867;background:#fff1cc;border:1px solid #fff1cc}.globalScope .ux-badge--filter--empty{color:#abb7c4;background:#f5f5f5;border:1px solid #f5f5f5}.globalScope .boxBlock{background:#fff;padding:10px;border:1px solid #edeff2;margin-bottom:15px}.globalScope .boxBlock .input-style .input-label span{background:#fff}.globalScope .boxBlock.boxBlockFullHeight{height:100%}.globalScope .overViewWrapperSpecialStyle .boxBlock{margin-bottom:10px;max-height:170px;min-height:170px}@media only screen and (max-width: 1200px){.globalScope .overViewWrapperSpecialStyle .boxBlock{min-height:unset}}.globalScope .boxBlocks--default{text-align:center;vertical-align:top}.globalScope .boxBlocks--default .cell{text-align:left;vertical-align:top;display:inline-block}.globalScope .boxBlock--alone{margin-bottom:0}.globalScope .boxBlock--classic{padding:20px;padding-top:15px}@media only screen and (min-width: 992px){.globalScope .boxBlock--aloneSpace{padding:50px}}.globalScope .boxBlock--inventoryTopBox .right-input-box{margin-right:0;padding:8px 0 10px}@media only screen and (min-width: 992px){.globalScope .boxBlock--inventoryTopBox{min-height:161px}}@media only screen and (max-width: 540px){.globalScope .boxBlock--inventoryTopBox .boxBlock__title2{font-size:12px;margin:0}}@media only screen and (min-width: 1450px){.globalScope .boxBlock--inventoryTopBox--Text .colLeft,.globalScope .boxBlock--inventoryTopBox--Text .colRight{width:50%}}.globalScope .boxBlock__title{color:#73879c;font-size:15px;font-weight:bold;border-bottom:1px solid #dfe1e5;padding-bottom:11px;margin-bottom:14px;text-transform:capitalize;position:relative;text-align:left}.globalScope .boxBlock__title small{font-weight:400}.globalScope .boxBlock__title .ico{font-size:18px;color:#5fae9f}.globalScope .boxBlock__title.error-box{border-bottom-color:#ff6565;color:#ff6565}.globalScope .boxBlock__title--center{text-align:center}.globalScope .boxBlock__title2{color:#73879c;font-size:15px;font-weight:bold;margin-bottom:8px;position:relative;display:flex;align-items:center}.globalScope .boxBlock__title-flex{display:flex;justify-content:space-between;align-items:center}.globalScope .boxBlock__title3{color:#73879c;padding-left:15px}.globalScope .boxBlock__title4{color:#73879c;font-size:14px;font-weight:bold;border-bottom:1px solid;margin-bottom:5px}.globalScope .boxBlock__col--withBorder{position:relative;margin-bottom:20px}.globalScope .boxBlock__col--withBorder:before{content:"";height:100%;width:1px;background:#e6e9ed;position:absolute;right:4px;top:0}.globalScope .boxBlock__col--withBorder:last-child:before{display:none}.globalScope .boxBlock__title-right{position:absolute;right:0}.globalScope .boxBlock__hr{border-top:1px dashed #a0adbc;background:none}.globalScope .boxBlock__contentOverflow{max-height:150px;overflow-y:auto}.globalScope .boxBlock__contentOverflow-item-additionalDocuments{display:flex;flex-wrap:wrap}.globalScope .boxBlock__contentOverflow-item-additionalDocument{flex-basis:33%;max-width:33%;padding:10px;position:relative}.globalScope .boxBlock__contentOverflow-item-additionalDocument-close{position:absolute;right:0;top:0;border-radius:50%;height:20px;width:20px;text-align:center;display:block;text-indent:-1px;line-height:1}.globalScope .boxBlock__contentOverflow-item-additionalDocument-close:hover{background:#60afa0;color:#fff}.globalScope .boxBlock__contentOverflow-item-additionalDocuments__uploadButton{margin:20px 0}.globalScope .boxBlock__title--withArrow{position:relative;display:flex;justify-content:space-between}.globalScope .boxBlock__arrow .ai-count{font-size:11px}.globalScope .BoxBlockCol{display:flex;margin-bottom:10px}.globalScope .BoxBlockCol .boxBlock{width:100%;margin-bottom:0}.globalScope .boxBlock--dashboard{margin-bottom:15px}@media only screen and (min-width: 768px){.globalScope .boxBlock--dashboard{margin-bottom:30px}}.globalScope .ui-fulfillment-status{list-style:none;margin:0;width:100%;display:inline-block;vertical-align:top}.globalScope .ui-fulfillment-status li{float:left;width:100%;position:relative;padding:2px 0}.globalScope .ui-fulfillment-status .title{float:left;width:100%}@media only screen and (min-width: 768px){.globalScope .ui-fulfillment-status .title{width:35%}}.globalScope .ui-fulfillment-status .title i{width:20px;display:inline-block;font-size:15px;margin:-4px 0}.globalScope .ui-fulfillment-status .blue-bg .title i{color:#0771ba}.globalScope .ui-fulfillment-status .green-bg .title i{color:#46a147}.globalScope .ui-fulfillment-status .red-bg .title i{color:#f05a28}.globalScope .ui-fulfillment-status .yellow-bg .title i{color:#e4bc56}.globalScope .ui-fulfillment-status .light-blue-bg .title i{color:#29abe2}.globalScope .ux-dropDown-trigger:hover>.ux-dropDown{display:block}.globalScope .ux-dropDown{z-index:940;transition:all .2s;display:none;position:absolute;width:310px;box-shadow:0 10px 10px 0 rgba(0,0,0,.1);background:#fff;padding:20px;min-height:60px;color:initial;font-size:12px}@media only screen and (max-height: 650px){.globalScope .ux-dropDown{overflow-y:auto;max-height:300px}}.globalScope .ux-dropDownWrap--space{position:absolute;padding-top:10px;display:none;right:0;z-index:940}.globalScope .ux-dropDownWrap--space .ux-dropDown{position:relative;display:block}.globalScope .ux-dropDownWrap--is-opened{display:block}.globalScope .ux-dropDown-trigger:hover .ux-dropDownWrap--space{display:block}.globalScope .ux-dropDown--center,.globalScope .ux-dropDownWrap--center{transform:translateX(-50%);left:50%;right:auto}.globalScope .ux-dropDown--center:before,.globalScope .ux-dropDownWrap--center:before{content:"";position:absolute;bottom:100%;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-bottom:5px solid #fff;left:50%;margin-left:-5px}.globalScope .ux-dropDownWrap--center:before{top:5px}.globalScope .ux-dropDown--left{left:0}.globalScope .ux-dropDown--left:before{content:"";position:absolute;bottom:100%;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-bottom:5px solid #fff;left:30px}.globalScope .ux-dropDown--right{right:0}.globalScope .ux-dropDown--right:before{content:"";position:absolute;bottom:100%;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-bottom:5px solid #fff;right:30px}.globalScope .topRightMenu__item--settings .ux-dropDown--right:before{right:100px}.globalScope .topRightMenu__item--support .ux-dropDown--right:before{right:59px}.globalScope .topRightMenu__item--requestToGoLive{position:absolute;top:5px;margin:auto;right:100%;width:auto;margin-right:10px;display:none;white-space:nowrap}.globalScope .topRightMenu__item--requestToGoLive .sh-btn{padding:0 4px;text-align:center}@media only screen and (min-width: 1170px){.globalScope .topRightMenu__item--requestToGoLive{display:block}}@media only screen and (min-width: 1470px){.globalScope .topRightMenu__item--requestToGoLive{white-space:nowrap;width:180px}.globalScope .topRightMenu__item--requestToGoLive .sh-btn{padding:0;text-align:center}}.globalScope .ux-dropDown__ul{margin:0}.globalScope .ux-dropDown__ul--otherActions .ux-toolbar__inner{padding:0;display:block}.globalScope .ux-dropDown__ul--otherActions .ux-toolbar__tool{width:100%}.globalScope .ux-dropDown__ul--otherActions .sh-btn__text{width:calc(100% - 30px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:left;display:block}.globalScope .ux-dropDown__ul--otherFilters .dropdown-toggle{width:100%;text-align:left}.globalScope .ux-dropDown__ul--otherFilters .dropdown-toggle:after{display:none}.globalScope .ux-dropDown__ul--otherFilters .dropdown-box{display:none !important}.globalScope .ux-dropDown__li{display:block;margin:0;padding:0;border-bottom:1px solid #ebeef0}.globalScope .ux-dropDown__li:hover,.globalScope .ux-dropDown__li.active{border-bottom-color:#60afa0}.globalScope .ux-dropDown__li:hover .ux-dropDown__li__a,.globalScope .ux-dropDown__li.active .ux-dropDown__li__a{color:#60afa0;padding-left:15px}.globalScope .ux-dropDown__li--title{font-size:16px;font-weight:bold;padding-bottom:10px;line-height:1.2;text-align:center;text-transform:uppercase;color:#73879c;border-bottom:1px dashed}.globalScope .ux-dropDown__li__a{display:block;padding:10px 0;color:#666;transition:all .2s;display:flex;align-items:center}.globalScope .ux-dropDown__li__a .ico{font-size:14px;vertical-align:middle;margin-right:10px}.globalScope button.MainMenu__li__a,.globalScope button.ux-dropDown__li__a{background:rgba(0,0,0,0);border:0;width:100%}.globalScope button.MainMenu__li__a:focus,.globalScope button.ux-dropDown__li__a:focus{outline:0}.globalScope .MainMenu{display:none}.globalScope .MainMenu__title{color:#fff !important;padding:5px 20px !important;text-transform:uppercase;font-weight:bold;padding-bottom:0 !important;margin-bottom:5px}.globalScope .MainMenu__ul{margin:0;list-style:none;display:flex;align-items:center}.globalScope .MainMenu__ul--mobile .MainMenu__li--billing-admin .MainMenu__li__a__iconWrap{text-align:center;margin-right:9px}.globalScope .MainMenu__li:hover .ux-dropDown{display:block}@media(max-width: 600px){.globalScope .MainMenu__li{margin-bottom:0 !important;text-align:left !important}}@media only screen and (max-width: 1540px){.globalScope .MainMenu__li--tutorial .sh-btn{font-size:11px;padding:0 5px}}@media only screen and (min-width: 1541px){.globalScope .MainMenu__li--tutorial{margin:0 15px}}.globalScope .MainMenu__li--tutorial+.MainMenu__li .MainMenu__li__a:before{display:none}.globalScope .MainMenu__li--has-dropDown:hover{z-index:941}.globalScope .MainMenu__li--has-dropDown .MainMenu__dropDownArrow{display:block}.globalScope .GlobalHeader__RightMenu .MainMenu__li--loader{display:flex;align-items:center;height:30px}.globalScope .GlobalHeader__RightMenu .MainMenu__li--billing-admin .MainMenu__li__a__text{display:none}.globalScope .GlobalHeader__RightMenu .MainMenu__li--billing-admin .MainMenu__li__a{padding:0 !important}.globalScope .GlobalHeader__RightMenu .MainMenu__li--billing-admin .MainMenu__li__a svg{margin-bottom:0}.globalScope .MainMenu__mobileWrap .MainMenu__li--billing-admin .ux-popover__in{display:none !important}.globalScope .MainMenu__li__a{display:inline-block;vertical-align:top;padding:11px 9px;font-size:11px;position:relative;color:#fff}@media(max-width: 600px){.globalScope .MainMenu__li__a{text-align:left !important}}@media only screen and (min-width: 1450px){.globalScope .MainMenu__li__a{font-size:12px;padding:11px 16px 12px}}.globalScope .MainMenu__li__a:before{content:"";display:block;width:1px;height:60%;top:50%;transform:translateY(-50%);left:0;position:absolute;background:rgba(255,255,255,.2)}.globalScope .MainMenu__li__a.current{color:#4c555b}.globalScope .MainMenu__li__a.current .MainMenu__dropDownArrow{stroke:#fff;transform:translate3d(-50%, 10px, 0) rotate(180deg)}.globalScope .MainMenu__li__a:hover{color:rgba(255,255,255,.7)}.globalScope .MainMenu__li__a.active{color:#000}.globalScope .MainMenu__li__a.active:hover{color:#000}.globalScope .MainMenu__li__a.active+* .MainMenu__dropDownArrow{color:#000}.globalScope .MainMenu__li__a i,.globalScope .MainMenu__li__a svg{font-size:16px;display:block;vertical-align:bottom;margin:0 auto 2px;text-align:center}.globalScope .MainMenu__li__a .switchTutorial{margin-right:15px}.globalScope .MainMenu__li__a .switchTutorial__label{margin-top:4px;color:rgba(255,255,255,.7)}.globalScope .MainMenu__li__a__iconWrap{width:30px;font-size:14px;text-align:left;display:block;vertical-align:bottom}.globalScope .MainMenu__dropDownArrow{display:none;position:absolute;left:50%;transform:translate3d(-50%, 0, 0);bottom:3px;font-size:10px;color:#fff}.globalScope .MainMenu__li.MainMenu__li--has-dropDown{position:relative}@media(max-width: 1169px){.globalScope .MainMenu__mobileWrap .MainMenu__li--billing{padding:0 20px;margin:5px 0 15px;margin-bottom:10px !important}.globalScope .MainMenu__mobileWrap .MainMenu{background:rgba(23,32,38,.5)}.globalScope .MainMenu__ul{display:block;padding:20px 0}.globalScope .MainMenu__mobileWrap{top:60px;left:0;right:0;bottom:0;overflow-y:auto;background:linear-gradient(135deg, #4792b3 0%, #40b69e 65%, #3ad98a 100%);position:fixed;z-index:1003}.globalScope .MainMenu__mobileWrap:before{content:"";left:0;right:0;height:100%;position:fixed;background:rgba(0,0,0,.5)}.globalScope .MainMenu__mobileWrap .ux-dropDown--right:before{display:none}.globalScope .MainMenu__mobileWrap .MainMenu__li--has-dropDown .ux-dropDown,.globalScope .MainMenu__mobileWrap .inline-list .ux-dropDown{display:none;position:static !important;transform:none !important;width:100% !important;background:rgba(0,0,0,.5);box-shadow:none !important}.globalScope .MainMenu__mobileWrap .ux-dropDown__li--title{display:none !important}.globalScope .MainMenu__mobileWrap .MainMenu__ul li{width:100%;float:none;margin-bottom:0;text-align:left}.globalScope .MainMenu__mobileWrap .MainMenu__ul li .ux-dropDown__li__a{color:rgba(255,255,255,.6);border:0}.globalScope .MainMenu__mobileWrap .MainMenu__ul li .ux-dropDown__li__a svg{fill:rgba(255,255,255,.6) !important}.globalScope .MainMenu__mobileWrapInner{position:relative;z-index:1}.globalScope .nav-toggle.active span:last-child{transform:rotate(-48deg);top:-7px !important}.globalScope .MainMenu__li__a{padding:10px 20px !important;display:flex !important;align-items:center;color:rgba(255,255,255,.7) !important;font-size:13px}.globalScope .MainMenu__li__a:hover{color:rgba(255,255,255,.9) !important}.globalScope .MainMenu__li__a.active,.globalScope .MainMenu__li__a+* .MainMenu__dropDownArrow{color:#fff !important}.globalScope .MainMenu__li__a>i,.globalScope .MainMenu__li__a>svg{display:inline-block;width:auto !important;margin:0 !important;margin-right:10px !important}.globalScope button.MainMenu__li__a i,.globalScope button.MainMenu__li__a svg,.globalScope a.MainMenu__li__a i,.globalScope a.MainMenu__li__a svg{width:30px !important}.globalScope .MainMenu__dropDownArrow{left:auto !important;right:5px;top:50%;border:1px solid #fff;border-radius:4px;transform:translate3d(-50%, -50%, 0);padding:0 7px;width:30px;height:30px;display:inline-block}.globalScope .MainMenu__li__a:before{display:none !important}.globalScope .ux-dropDown--center:before{display:none}.globalScope .MainMenu__li__a.current+* .MainMenu__dropDownArrow{transform:translate3d(-50%, -50%, 0) rotate(180deg)}}@media(min-width: 1170px){.globalScope .MainMenu{display:inline-block}.globalScope .MainMenu__mobileWrap{top:53px !important;display:none !important}.globalScope .MainMenu__li .ux-dropDown{display:none !important}.globalScope .MainMenu__li:hover .ux-dropDown{display:block !important}}.globalScope .ux-layoutCol{display:flex;padding:20px 10px;padding-top:10px;flex-wrap:wrap;width:100%;max-width:100%}@media only screen and (min-width: 1400px){.globalScope .ux-layoutCol{flex-wrap:nowrap}}.globalScope .ux-layoutCol__withSidebar,.globalScope .ux-layoutCol__sidebar{padding:0 10px;max-width:100%}.globalScope .ux-layoutCol__withSidebar{flex:auto;max-width:100%}@media only screen and (min-width: 1400px){.globalScope .ux-layoutCol__withSidebar{max-width:calc(100% - 405px)}.globalScope .ux-layoutCol__sidebar{width:405px;flex-basis:405px;max-width:405px;flex:0 0 405px}}.globalScope .ux-progress{box-shadow:none;height:10px;margin:0;position:relative;background-color:#ebeef0;z-index:1;border-radius:6px}.globalScope .ux-progress__bar{float:left;width:0%;height:100%;font-size:11px;line-height:17px;color:#fff;text-align:center;background-color:#337ab7;transition:width .6s ease;box-shadow:none}.globalScope .ux-progress--primary .ux-progress__bar{border:0;border-radius:8px}.globalScope .ux-dropDownList{background:#fff;z-index:2;padding:15px;padding-left:10px;border:1px solid #5fae9f;position:absolute;border-radius:0 0 2px 2px;box-shadow:5px 5px 10px -1px rgba(0,0,0,.1);text-align:left;width:250px}.globalScope .ux-dropDownList:before{content:"";position:absolute;bottom:100%;margin-left:-3px;border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-bottom:6px solid #73879c;left:20px}.globalScope .ux-dropDownList__item{padding:3px 0}.globalScope .ux-tag-group{margin:-5px}.globalScope .ux-tag-group .ux-tag{margin:5px}.globalScope .ux-tag{display:inline-block;color:#fff;border-radius:2px;padding:2px 6px}.globalScope .ux-tag--warning{background:#e4bc56}.globalScope .ux-tag--danger{background:#ff6565}.globalScope .ux-tag--success{background:#46a147}.globalScope .ux-tag--info{background:#0071bc}.globalScope .modal-popup{padding:0 !important;overflow-y:auto}.globalScope .modal-popup.modal-lg{width:auto}.globalScope .modal-popup.modal-lg .modal-dialog{max-width:1200px}.globalScope .modal-popup.modal-md .modal-dialog{max-width:1000px}.globalScope .modal-popup.modal-sm{width:auto}.globalScope .modal-popup.modal-sm .modal-dialog{max-width:850px}.globalScope .modal-popup.modal-xs .modal-dialog{max-width:650px}.globalScope .modal-popup .modal-dialog{width:100%;margin:100px auto}.globalScope .modal-popup .modal-dialog .modal-content{box-shadow:none;border:0px;border-radius:2px;box-shadow:3px 7px 21px -1px rgba(0,0,0,.22)}.globalScope .modal-popup .modal-dialog .modal-content .modal-header{text-align:center;padding:3px;border-bottom:1px solid #73879c}.globalScope .modal-popup .modal-dialog .modal-content .modal-header .close{width:20px;height:20px;text-shadow:none;opacity:1;line-height:20px;font-size:20px;background-color:#1f2a32;color:#fff;border-radius:100%;position:absolute;right:0;top:-25px;text-align:center}.globalScope .modal-popup .modal-dialog .modal-content .modal-header h4{font-size:20px;font-weight:600;text-transform:uppercase;color:#60afa0;line-height:2}.globalScope .modal-popup .modal-dialog .modal-content .modal-header h4 i{margin-right:15px;font-size:20px}@media screen and (max-width: 767px){.globalScope .modal-popup .modal-dialog .modal-content .modal-header h4{font-size:16px}.globalScope .modal-popup .modal-dialog .modal-content .modal-header h4 i{font-size:10px;margin-right:15px}}.globalScope .modal-popup .modal-dialog .modal-content .modal-body{padding:15px 15px;font-size:13px}.globalScope .modal-popup .modal-dialog .modal-content .modal-body.successfully-box{padding:50px 0}.globalScope .modal-popup .modal-dialog .modal-content .modal-body.successfully-box .btn-roundend{border-radius:0px;font-size:1.071em;margin:0 15px}.globalScope .modal-popup .modal-dialog .modal-content .modal-body.successfully-box .btn-roundend sub i{font-size:14px}@media screen and (max-width: 1590px){.globalScope .modal-popup .modal-dialog .modal-content .modal-body.successfully-box .btn-roundend{height:auto}}@media screen and (max-width: 767px){.globalScope .modal-popup .modal-dialog .modal-content .modal-body.successfully-box .btn-roundend{margin:5px}}.globalScope .modal-popup .modal-dialog .modal-content .modal-body.successfully-box .btn-grey{background-color:rgba(0,0,0,0)}.globalScope .modal-popup .modal-dialog .modal-content .modal-body.successfully-box .btn-grey sub{min-height:38px;line-height:36px}.globalScope .modal-popup .modal-dialog .modal-content .modal-body.successfully-box .btn-grey sub:after{border-bottom:52px solid rgba(0,0,0,0)}.globalScope .modal-popup .modal-dialog .modal-content .modal-body .btn-green{margin:15px}.globalScope .modal-popup .modal-dialog .modal-content .modal-footer{background-color:#f5f5f5;border-radius:0 0 6px 6px}.globalScope .modal-popup .modal-dialog .modal-content .modal-footer .modal-close{display:inline-block;vertical-align:middle;margin-right:15px}@media screen and (max-width: 767px){.globalScope .modal-popup .modal-dialog{margin:30px auto}}.globalScope .modal-backdrop{background-color:#1f2a32}.globalScope .modal-backdrop.in{opacity:.85}.globalScope .ux-modal__header{text-align:center;color:#73879c;border-bottom:1px solid #73879c;margin:15px;padding:15px}.globalScope button.ux-modal__close{width:25px;height:25px;text-shadow:none;opacity:1;line-height:20px;font-size:20px;background-color:#fff;color:#1f2a32;border-radius:100%;position:absolute;right:0;top:-30px;text-align:center;text-indent:1px;will-change:opacity;transition:opacity .3s}.globalScope button.ux-modal__close:focus{outline:none;opacity:.7}.globalScope .ux-modal__headerTitle{font-size:15px;color:#73879c;font-weight:bold}.globalScope .ux-modal__title{font-size:15px;text-align:center;color:#73879c;padding-bottom:15px;border-bottom:1px solid #73879c;margin-bottom:10px;font-weight:bold}.globalScope .ux-modal__footer{border-top:1px dashed #73879c;margin-top:20px;padding-top:20px;text-align:center}.globalScope .ux-smartHeaderWrap{padding:0 15px;padding-left:0}@media only screen and (max-width: 767px){.globalScope .ux-smartHeaderWrap{padding-left:15px}}.globalScope .ux-smartHeaderWrap.with-paddingLeft{padding-left:40px}@media only screen and (min-width: 960px){.globalScope .ux-smartHeaderWrap.with-paddingLeft{padding-left:0}}.globalScope .ux-smartHeader{display:flex;flex-wrap:wrap;min-height:50px;margin:0 -7px;padding:7px 0}@media only screen and (min-width: 768px){.globalScope .ux-smartHeader{flex-wrap:nowrap;padding:0}}.globalScope .ux-smartHeader.ux-smartHeader--onlyTitle{min-height:0}.globalScope .ux-smartHeader__title{display:flex;max-width:250px;overflow:hidden;flex:1 0 auto}.globalScope .ux-smartHeader__title .breadcrumb{overflow:hidden;white-space:nowrap}@media only screen and (max-width: 541px){.globalScope .ux-smartHeader__title{display:none}}.globalScope .ux-smartHeader__actions{display:flex;padding:0 7px;flex-wrap:wrap;white-space:nowrap;width:100%;max-width:100%;align-items:center;flex:50%}@media only screen and (min-width: 768px){.globalScope .ux-smartHeader__actions{flex:0 1 auto}}@media(max-width: 1100px){.globalScope .ux-smartHeader__actions>.ux-toolbar,.globalScope .ux-smartHeader__actions>.ux-toolbarWrapSpecial>.ux-toolbar{display:none}.globalScope .ux-smartHeader__actions>.ux-toolbarWrapSpecial.orderDetailCancelled>.ux-toolbar{display:block}}.globalScope .ux-smartHeader__right{display:flex;justify-content:flex-end;padding:0 7px;align-items:center;flex:50%}@media only screen and (min-width: 768px){.globalScope .ux-smartHeader__right{flex:0 0 auto}}.globalScope .ux-smartHeader__right .header-action-right{display:flex;margin:0 -5px;float:none;flex:100%}@media only screen and (min-width: 768px){.globalScope .ux-smartHeader__actionsDropDownWrap{margin-left:5px}}@media only screen and (max-width: 767px){.globalScope .ux-smartHeader__actionsDropDownWrap{flex:100%}.globalScope .ux-smartHeader__actionsDropDownWrap .sh-btn--dropdown{width:100%}.globalScope .ux-smartHeader__actionsDropDownWrap .sh-btn__text{display:flex;flex:auto;display:block;text-align:left}.globalScope .ux-smartHeader__actionsDropDownWrap .ux-dropDown{padding:10px;min-height:initial}.globalScope .ux-smartHeader__actionsDropDownWrap .ux-toolbar+.ux-toolbar{margin-top:5px}.globalScope .ux-smartHeader__actionsDropDownWrap .ux-toolbar__tool{margin:0}.globalScope .ux-smartHeader__actionsDropDownWrap .ux-toolbar__tool+.ux-toolbar__tool{margin-top:5px}}@media(max-width: 1100px){.globalScope .ux-smartHeader__actionsDropDownWrap .visible-xs-flex{display:flex !important}}.globalScope .ux-smartHeader__actionsDropDownWrap .ux-dropDown--center,.globalScope .ux-smartHeader__actionsDropDownWrap .ux-dropDownWrap--center{transform:none;left:0;right:auto}.globalScope .ux-smartHeader__actionsDropDownWrap .ux-dropDown--center:before,.globalScope .ux-smartHeader__actionsDropDownWrap .ux-dropDownWrap--center:before{left:20px}@media only screen and (max-width: 320px){.globalScope .ux-smartHeader__actionsDropDownWrap .ux-dropDown{width:100%}.globalScope .ux-smartHeader__actionsDropDownWrap .ux-dropDown--center,.globalScope .ux-smartHeader__actionsDropDownWrap .ux-dropDownWrap--center{right:0}}.globalScope .ux-smartHeader__actionsDropDownWrap--moreToolbars{display:none}@media(max-width: 1100px){.globalScope .ux-smartHeader__actionsDropDownWrap--moreToolbars{display:block}}.globalScope .ux-smartHeader__actionsNav{width:100%;display:flex;overflow:auto}@media only screen and (max-width: 1065px)and (min-width: 960px){.globalScope .ux-smartHeader__actionsNav{display:flex;justify-content:center}}@media screen and (max-width: 1320px){.globalScope .ux-smartHeader__actionsNav .header-action-nav-wrap{overflow:initial}}@media only screen and (max-width: 1065px)and (min-width: 960px){.globalScope .ux-smartHeader__actionsNav .header-action-nav-wrap{overflow-y:auto;max-width:330px}}@media only screen and (max-width: 1440px){.globalScope .ux-smartHeader__actionsNav .ux-badge{padding:0 3px;height:auto;line-height:1.2;font-size:90%}}.globalScope .ux-smartHeader__actionsNav .header-action-nav>li>a{padding:2px 4px}@media only screen and (min-width: 1280px){.globalScope .ux-smartHeader__actionsNav .header-action-nav>li>a{padding:2px 8px}}@media only screen and (max-width: 1440px){.globalScope .ux-smartHeader__actionsNav .header-action-nav>li>a:before{display:none}}@media only screen and (min-width: 1440px){.globalScope .ux-smartHeader__actionsNav .header-action-nav>li>a{padding:15px}}.globalScope .TableResponsive{overflow:auto;-webkit-overflow-scrolling:touch;min-height:200px;border-left:1px solid #e6e9ed;border-right:1px solid #e6e9ed;position:relative}.globalScope .TableResponsive.dashboard-table__table:after,.globalScope .TableResponsive.dashboard-table__table-bigger:after,.globalScope .TableResponsive.TableResponsive--InventoryTop3Products:after{content:"";position:absolute;left:0;right:0;bottom:0;height:1px;background:#e6e9ed}.globalScope .Table__Thead tr th:first-child,.globalScope .Table__Tbody tr td:first-child{border-left-color:rgba(0,0,0,0) !important}.globalScope .Table__Thead tr th:last-child,.globalScope .Table__Tbody tr td:last-child{border-right-color:rgba(0,0,0,0) !important}.globalScope .TableResponsive--NoMinHeightNoLoadingEffect{min-height:.01%}.globalScope .TableResponsive--InventoryTop3Products td:nth-child(2){width:80px}.globalScope .TableResponsive--InventoryTop3Products td:nth-child(3){width:40px}.globalScope .Table__Th,.globalScope .Table__Td,.globalScope .Table td,.globalScope .Table th{border:1px solid #e6e9ed}.globalScope .Table .Table__Thead th{border-bottom:1px solid;position:relative}.globalScope .Table .Table__Thead th:after{content:"";position:absolute;bottom:-1px;right:-1px;background:#73879c;width:1px;height:1px}.globalScope .Table{max-width:100%;width:100%;font-size:11px}.globalScope .Table img.picturesPreview-trigger{max-width:20px !important;max-height:20px !important;margin-top:-2px;margin-bottom:-2px}.globalScope .Table>thead,.globalScope .Table__Thead{font-weight:700;background:#fff}.globalScope .Table>tbody,.globalScope .Table__Tbody{font-weight:400}.globalScope .Table>tbody tr,.globalScope .Table__Tbody tr{background:#fff}.globalScope .Table>tbody tr:nth-child(odd),.globalScope .Table__Tbody tr:nth-child(odd){background:#fafbfb}.globalScope .Table>tbody tr:hover,.globalScope .Table__Tbody tr:hover{background:#f4f9f8}.globalScope .Table>tbody tr.selected,.globalScope .Table__Tbody tr.selected{background:#e7f1f0}.globalScope .Table__Th,.globalScope .Table__Td,.globalScope .Table td,.globalScope .Table th{padding:3px 6px;height:31px}.globalScope .Table__Th>p:last-child,.globalScope .Table__Td>p:last-child,.globalScope .Table td>p:last-child,.globalScope .Table th>p:last-child{margin-bottom:0}.globalScope .Table__Th,.globalScope .Table__Th-SortingLink{color:#73879c}.globalScope .Table__Th{position:relative}.globalScope .Table__Th-SortingLink{position:relative;display:block;padding:0 20px 0 0}.globalScope .Table__Th-SortingLink .icon-sorting{color:#dfe1e5;animation:scale .2s cubic-bezier(0.6, 0.2, 0.1, 1) both;margin-left:5px;font-size:12px}.globalScope .Table__Th-SortingLink .icon-sorting.desc .arrowUp,.globalScope .Table__Th-SortingLink .icon-sorting.asc .arrowDown{color:#73879c}.globalScope .Table__Th-SortingLink.Table__Th-WithHelpTooltip{padding:0 40px 0 0}.globalScope .Table__Th-Label{display:flex}.globalScope .Table__Th-Label>div{margin-left:8px}.globalScope .Table__Th-WithHelpTooltip{padding-right:20px;display:block}.globalScope .Table__Td{white-space:nowrap}.globalScope .Table__Td--mini{width:1%}.globalScope .Table__Td--select select.form-control,.globalScope .Table__Td--select .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .Table__Td--select select{margin-bottom:0;height:21px}.globalScope .Table__Td__Div--labelWithInputInOneLine label{margin-right:10px;margin-top:3px}.globalScope .Table__Td__Div--labelWithInputInOneLine .input-style{margin-top:4px}.globalScope .Table__Tr--parent:hover+.Table__Tr--children{background:#e7f1f0}.globalScope .Table__Tr--children{border-bottom:2px solid}.globalScope .Table__Tr--children:last-child{border-bottom:0}.globalScope .TableResponsive--withTfootPriceList{margin-bottom:20px;border-bottom:1px dashed #a0adbc}.globalScope .TableResponsive--withTfootPriceList tfoot.Table__Tfoot.tfoot.tfoot--totalPrice .Table__Td{border:0}.globalScope .TablePagination{background:#fff;border:1px solid #e6e9ed;border-top-color:#73879c;color:#73879c}.globalScope .TablePagination .pagination{margin-right:54px}@media only screen and (max-width: 767px){.globalScope .TablePagination .page-drpdw__select{display:none}}.globalScope .Table--OnlyWithHead{font-size:12px;margin-bottom:10px}.globalScope .Table--OnlyWithHead .Table__Th,.globalScope .Table--OnlyWithHead .Table__Td,.globalScope .Table--OnlyWithHead td,.globalScope .Table--OnlyWithHead th{padding:10px 15px}.globalScope .Table--childrenLeftSpaceWithDiffCol tr.children td{background:#e6e9ed}.globalScope .Table--childrenLeftSpaceWithDiffCol tr.children td:first-child{padding-left:25px !important}.globalScope .Table--childrenLeftSpaceWithDiffCol tr td:first-child{text-align:left}.globalScope a.Table__LinkSort{color:#73879c;position:relative;display:block;white-space:nowrap;min-width:75px}.globalScope a.Table__LinkSort svg{position:absolute;right:10px;top:50%;transform:translateY(-50%);margin-left:5px}.globalScope a.Table__LinkSort:focus{color:#60afa0}.globalScope .TableFooterButtons{margin-top:10px}.globalScope td.Table__Td--LoadingRows{text-align:center;padding:20px 0 40px;background:#fff}.globalScope td.Table__Td--LoadingRows:hover{background:#fff}.globalScope td.Table__Td--NoRows{text-align:center;padding:122px 0;background:#fff}.globalScope td.Table__Td--NoRows:hover{background:#fff}.globalScope .Table__NoData-WithImageAndText{display:flex;align-items:center;padding:0 15px}.globalScope .Table__NoData-WithImageAndText>*{padding-right:15px}.globalScope i.Table__Icon,.globalScope .Table__Td i[class*=ico-],.globalScope .responsive-table .table td i[class*=ico-],.globalScope .responsive-table .ux-table td i[class*=ico-]{font-size:20px;vertical-align:middle;margin:-2px 0 0;margin-right:4px;display:inline-block;line-height:1}.globalScope .responsive-table .table td i[class*=ico-],.globalScope .responsive-table .ux-table td i[class*=ico-]{margin-top:0;margin-bottom:0}.globalScope .Table--Td-WrapText .Table__Td{white-space:initial}.globalScope .TableFilters__OtherFiltersDropDown{top:100%}.globalScope .TableFilters{background:#fff;border:1px solid #e6e9ed;color:#73879c;display:flex;justify-content:space-between;align-items:center;position:relative;z-index:1}@media(max-width: 790px){.globalScope .TableFilters{flex-direction:column;justify-content:flex-start;align-items:flex-start}.globalScope .TableFilters>div{margin-bottom:8px}}.globalScope .TableFilters .TableFilters__TableOldButtons{display:flex}@media(max-width: 1400px){.globalScope .TableFilters>.TableFilters__Filter:not(.TableFilters__Filter--Others):not(.TableFilters__Filter--Clear){position:absolute;left:0}.globalScope .TableFilters>.TableFilters__Filter:not(.TableFilters__Filter--Others):not(.TableFilters__Filter--Clear) .dropdown-toggle{visibility:hidden}.globalScope .TableFilters>.TableFilters__Filter:not(.TableFilters__Filter--Others):not(.TableFilters__Filter--Clear):nth-child(1),.globalScope .TableFilters>.TableFilters__Filter:not(.TableFilters__Filter--Others):not(.TableFilters__Filter--Clear):nth-child(2),.globalScope .TableFilters>.TableFilters__Filter:not(.TableFilters__Filter--Others):not(.TableFilters__Filter--Clear):nth-child(3){position:relative;z-index:1;left:auto}.globalScope .TableFilters>.TableFilters__Filter:not(.TableFilters__Filter--Others):not(.TableFilters__Filter--Clear):nth-child(1) .dropdown-toggle,.globalScope .TableFilters>.TableFilters__Filter:not(.TableFilters__Filter--Others):not(.TableFilters__Filter--Clear):nth-child(2) .dropdown-toggle,.globalScope .TableFilters>.TableFilters__Filter:not(.TableFilters__Filter--Others):not(.TableFilters__Filter--Clear):nth-child(3) .dropdown-toggle{visibility:visible}}.globalScope .TableFilters__Filter .dropdown-toggle,.globalScope .TableFilters__Filter .TableFilters__FilterItem{white-space:nowrap;background:rgba(0,0,0,0);padding:10px 12px;border:0;font-size:12px;display:inline-block;position:relative;color:#4c555b;transition:all .35s ease 0s}.globalScope .TableFilters__Filter .dropdown-toggle svg,.globalScope .TableFilters__Filter .TableFilters__FilterItem svg{margin-left:7px;font-weight:bold;vertical-align:middle}.globalScope .TableFilters__Filter .dropdown-toggle:after,.globalScope .TableFilters__Filter .TableFilters__FilterItem:after{content:"";width:1px;height:60%;background:#b3b3b3;position:absolute;right:0;top:0;bottom:0;margin:auto 0}.globalScope .TableFilters__Filter .dropdown-toggle:hover,.globalScope .TableFilters__Filter .TableFilters__FilterItem:hover{color:#60afa0}.globalScope .TableFilters__Filter .dropdown-box{margin:0;border:0;background:rgba(0,0,0,0);padding:1px 0 0 0;position:absolute;z-index:930;top:100%;left:0;list-style:none;display:none;min-width:282px;box-shadow:3px 7px 21px -1px rgba(0,0,0,.1);border-radius:4px}@media only screen and (min-width: 600px){.globalScope .TableFilters__Filter .dropdown-box{min-width:300px}}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown{width:100%;display:inline-block;position:relative;background:#fff;border:1px solid #60afa0;border-radius:0 0 2px 2px}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown.arrow-up:before{content:"";width:0;height:0;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);border-bottom:7px solid #60afa0;position:absolute;left:20px;right:auto;top:-7px;margin:0 auto}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .account-filter{width:500px;display:inline-block;padding:10px;vertical-align:top;border-bottom:1px solid #b3b3b3}@media only screen and (max-width: 768px){.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .account-filter{width:100%}}@media only screen and (max-width: 991px){.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .account-filter .row.row--colGutter1 .ux-form__inputWithIconWrap{margin-bottom:7px}}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .account-filter .row.row--colGutter1 .col-md-6.col-md-borderRight .filter-account:empty{display:none}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .account-filter .row.row--colGutter1 .col-md-6.col-md-borderRight:last-child:empty{display:none}@media only screen and (max-width: 991px){.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .account-filter .row.row--colGutter1 .col-md-6.col-md-borderRight:last-child{border-top:2px solid #a0adbc;padding-top:10px;margin-top:10px}}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .account-filter .dropdown{width:100%;display:inline-block;vertical-align:top;margin-bottom:10px}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .account-filter .dropdown .btn-roundend{width:100%}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .account-filter .dropdown .btn-roundend sub{float:right;min-height:34px}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .account-filter .dropdown .form-control,.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .account-filter .dropdown .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .TableFilters__Filter .dropdown-box .sub-dropdown .account-filter .dropdown input,.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .account-filter .dropdown .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .TableFilters__Filter .dropdown-box .sub-dropdown .account-filter .dropdown select{background:#fff;border-color:#60afa0;font-size:12px}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .account-filter.account-filter--halfSize{width:300px}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .account-filter__wrapSearch .ux-form__inputWithIconWrap{width:100%}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .item-filter{width:100%;display:inline-block;padding:15px;vertical-align:top;border-bottom:1px solid #b3b3b3}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .item-filter .dropdown{width:100%;display:inline-block;vertical-align:top;margin-bottom:10px}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .item-filter .dropdown .btn-roundend{width:100%}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .item-filter .dropdown .btn-roundend sub{float:right;min-height:34px}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .item-filter .dropdown .form-control,.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .item-filter .dropdown .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .TableFilters__Filter .dropdown-box .sub-dropdown .item-filter .dropdown input,.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .item-filter .dropdown .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .TableFilters__Filter .dropdown-box .sub-dropdown .item-filter .dropdown select{background:#fff;border-color:#60afa0;font-size:12px}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .btn-box{width:100%;display:inline-block;vertical-align:top}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .btn-filter,.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .btn-reset{border:0;width:100%;display:inline-block;vertical-align:top;text-align:center;height:35px;line-height:35px;padding:0 10px}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .btn-filter i,.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .btn-reset i{margin-right:10px}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .btn-filter{background:#60afa0;color:#fff}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .btn-filter:hover{background:#4a9285}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .btn-reset{background:rgba(0,0,0,0);color:#b3b3b3}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .btn-reset:hover{color:#4c555b}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .calender-dropdown{list-style:none;margin:0;padding:0;display:block}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .calender-dropdown>li{border-bottom:1px solid #e6e9ed;display:block}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .calender-dropdown>li>a{width:100%;display:inline-block;vertical-align:top;padding:3px 20px;color:#4c555b}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .calender-dropdown>li .dropdown{padding:10px 20px;width:100%;display:inline-block;vertical-align:top}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .calender-dropdown>li .dropdown a{width:100%;display:inline-block}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .calender-dropdown>li .dropdown a sub{float:right;min-height:34px}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .calender-dropdown>li .dropdown a sub i{font-size:14px}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .calender-dropdown>li:first-child a{border-radius:4px 4px 0 0}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .calender-dropdown>li:nth-child(odd) a{background:#fbfbfb}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .calender-dropdown>li:hover a{background:#e8f3f1}.globalScope .TableFilters__Filter .item-dropdown{left:-50%;width:600px}.globalScope .TableFilters__Filter .item-dropdown .sub-dropdown{width:49%;float:left}.globalScope .TableFilters__Filter .item-dropdown .sub-dropdown:last-child{float:right}.globalScope .TableFilters__Filter .filter-dropdown{list-style:none;width:100%;display:inline-block;vertical-align:top;margin:0;padding:0;max-height:250px;overflow:auto;border-bottom:1px solid #dcdcdc}.globalScope .TableFilters__Filter .filter-dropdown li{display:block;border-bottom:1px solid #e6e9ed}.globalScope .TableFilters__Filter .filter-dropdown li label{margin:0;padding:3px 10px;cursor:pointer;display:block;font-weight:normal}.globalScope .TableFilters__Filter .filter-dropdown li label input{margin-right:10px;margin-top:0}.globalScope .TableFilters__Filter .filter-dropdown li:first-child label{border-radius:4px 4px 0 0}.globalScope .TableFilters__Filter .filter-dropdown li:nth-child(odd){background:#fbfbfb}.globalScope .TableFilters__Filter .filter-dropdown li:hover{background:#60afa0;color:#fff}.globalScope .TableFilters__Filter .filter-dropdown li:hover label{color:#fff}.globalScope .TableFilters__Filter .filter-dropdown li:last-child{border-bottom:0}.globalScope .TableFilters__Filter .filter-account{list-style:none;width:100%;display:inline-block;vertical-align:top;padding:0;line-height:35px;max-height:250px;overflow:auto;border:1px solid #dfe1e5;margin:0}.globalScope .TableFilters__Filter .filter-account li{display:block;vertical-align:top;line-height:1}.globalScope .TableFilters__Filter .filter-account li a{padding:11px 10px;display:block}.globalScope .TableFilters__Filter .filter-account li label{margin:0;padding:10px;cursor:pointer;width:100%;display:inline-block;vertical-align:top;font-weight:normal}.globalScope .TableFilters__Filter .filter-account li label input{margin-right:10px;margin-top:0}.globalScope .TableFilters__Filter .filter-account li:first-child label{border-radius:4px 4px 0 0}.globalScope .TableFilters__Filter .filter-account li:hover label{background:#60afa0;color:#fff}.globalScope .TableFilters__Filter .filter-account li:last-child{border-bottom:0}.globalScope .TableFilters__Filter.open .dropdown-box{display:block}.globalScope .TableFilters__Filter.first .dropdown-box{left:2px}.globalScope .TableFilters__Filter.first .dropdown-box li .sub-dropdown.arrow-up:before{left:20px;right:auto}.globalScope .TableFilters__Filter.applied>.dropdown-toggle{color:#60afa0;background:rgba(96,175,160,.15);font-weight:bold}.globalScope .TableFilters__Filter.applied>.dropdown-toggle:after{background:rgba(96,175,160,.15)}.globalScope .TableFilters__Filter .sub-dropdown.arrow-up .item-filter .dropdown:last-child{margin-bottom:0}.globalScope .TableFilters__Filter select.form-control,.globalScope .TableFilters__Filter .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .TableFilters__Filter select{-webkit-appearance:none;border-radius:2px;background:no-repeat 97% 50% url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIxIiBoZWlnaHQ9IjMyIiB2aWV3Qm94PSIwIDAgMjEgMzIiPjx0aXRsZT5hbmdsZS1kb3duPC90aXRsZT48cGF0aCBkPSJNMTkuNDQ4IDEzLjEyNHEwIDAuMjMyLTAuMTc5IDAuNDEybC04LjMzNyA4LjMzN3EtMC4xNzkgMC4xNzktMC40MTIgMC4xNzl0LTAuNDEyLTAuMTc5bC04LjMzNy04LjMzN3EtMC4xNzktMC4xNzktMC4xNzktMC40MTJ0MC4xNzktMC40MTJsMC44OTUtMC44OTVxMC4xNzktMC4xNzkgMC40MTItMC4xNzl0MC40MTIgMC4xNzlsNy4wMzIgNy4wMzIgNy4wMzItNy4wMzJxMC4xNzktMC4xNzkgMC40MTItMC4xNzl0MC40MTIgMC4xNzlsMC44OTUgMC44OTVxMC4xNzkgMC4xNzkgMC4xNzkgMC40MTJ6Ij48L3BhdGg+PC9zdmc+) !important;background-size:20px 20px !important;margin-bottom:0 !important}.globalScope .TableFilters__Filter .sp-options__list>[class*=col-]{padding:0 10px}.globalScope .TableFilters__Filter .sp-options__list li a{padding-right:30px;background-repeat:no-repeat;background-position:97% 50%;background-size:20px 20px;color:#4a5867;font-size:11px;line-height:1.32;transition:none}.globalScope .TableFilters__Filter .sp-options__list li a:hover{color:#fff !important;background-color:#60afa0}.globalScope .TableFilters__Filter .sp-options__list--not-selected li a{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1OC42NTUxMSA1OC42NTUxMSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1ZmFlOWY7fS5jbHMtMntmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wbHVzPC90aXRsZT48ZyBpZD0iVnJzdHZhXzIiIGRhdGEtbmFtZT0iVnJzdHZhIDIiPjxnIGlkPSJWcnN0dmFfMS0yIiBkYXRhLW5hbWU9IlZyc3R2YSAxIj48ZyBpZD0iU3ltYm9sXzIyM18yIiBkYXRhLW5hbWU9IlN5bWJvbCAyMjMgMiI+PGNpcmNsZSBpZD0iRWxsaXBzZV8yMDQiIGRhdGEtbmFtZT0iRWxsaXBzZSAyMDQiIGNsYXNzPSJjbHMtMSIgY3g9IjI5LjMyNzU2IiBjeT0iMjkuMzI3NTYiIHI9IjI5LjMyNzU2Ii8+PGcgaWQ9Ikdyb3VwXzc1MjciIGRhdGEtbmFtZT0iR3JvdXAgNzUyNyI+PHBhdGggaWQ9IlBhdGhfMjYyNyIgZGF0YS1uYW1lPSJQYXRoIDI2MjciIGNsYXNzPSJjbHMtMiIgZD0iTTQxLjU0ODkxLDI2Ljg4NDU3SDMxLjc3NDA2VjE3LjEwNjc2YTIuNDQ0NDcsMi40NDQ0NywwLDAsMC00Ljg4ODkzLDB2OS43Nzc4MUgxNy4xMTAyOGEyLjQ0NDQ1LDIuNDQ0NDUsMCwwLDAsMCw0Ljg4ODloOS43NzQ4NXY5Ljc3NDg4YTIuNDQ0NDcsMi40NDQ0NywwLDAsMCw0Ljg4ODkzLDBWMzEuNzcwNTRoOS43NzQ4NWEyLjQ0NDQ1LDIuNDQ0NDUsMCwwLDAsMC00Ljg4ODlaIi8+PC9nPjwvZz48L2c+PC9nPjwvc3ZnPg==)}.globalScope .TableFilters__Filter .sp-options__list--not-selected li:hover a{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1OC42NTUxMSA1OC42NTUxMSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNmZmY7fS5jbHMtMntmaWxsOiM1ZmFlOWY7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5wbHVzLWhvdmVyPC90aXRsZT48ZyBpZD0iVnJzdHZhXzIiIGRhdGEtbmFtZT0iVnJzdHZhIDIiPjxnIGlkPSJWcnN0dmFfMS0yIiBkYXRhLW5hbWU9IlZyc3R2YSAxIj48ZyBpZD0iU3ltYm9sXzIyNF8xIiBkYXRhLW5hbWU9IlN5bWJvbCAyMjQgMSI+PGNpcmNsZSBpZD0iRWxsaXBzZV8yMTAiIGRhdGEtbmFtZT0iRWxsaXBzZSAyMTAiIGNsYXNzPSJjbHMtMSIgY3g9IjI5LjMyNzU2IiBjeT0iMjkuMzI3NTYiIHI9IjI5LjMyNzU2Ii8+PGcgaWQ9Ikdyb3VwXzc1MjgiIGRhdGEtbmFtZT0iR3JvdXAgNzUyOCI+PHBhdGggaWQ9IlBhdGhfMjYyNy0yIiBkYXRhLW5hbWU9IlBhdGggMjYyNy0yIiBjbGFzcz0iY2xzLTIiIGQ9Ik00MS41NDg5MSwyNi44ODQ1N0gzMS43NzQwNlYxNy4xMDY3NmEyLjQ0NDQ3LDIuNDQ0NDcsMCwwLDAtNC44ODg5MywwdjkuNzc3ODFIMTcuMTEwMjhhMi40NDQ0NSwyLjQ0NDQ1LDAsMCwwLDAsNC44ODg5aDkuNzc0ODV2OS43NzQ4OGEyLjQ0NDQ3LDIuNDQ0NDcsMCwwLDAsNC44ODg5MywwVjMxLjc3MDU0aDkuNzc0ODVhMi40NDQ0NSwyLjQ0NDQ1LDAsMCwwLDAtNC44ODg5WiIvPjwvZz48L2c+PC9nPjwvZz48L3N2Zz4=)}.globalScope .TableFilters__Filter .sp-options__list--selected li a{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1OC42NTUxMSA1OC42NTUxMSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNmZjY1NjU7fS5jbHMtMntmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5taW51czwvdGl0bGU+PGcgaWQ9IlZyc3R2YV8yIiBkYXRhLW5hbWU9IlZyc3R2YSAyIj48ZyBpZD0iVnJzdHZhXzEtMiIgZGF0YS1uYW1lPSJWcnN0dmEgMSI+PGcgaWQ9IlN5bWJvbF8yMjVfMSIgZGF0YS1uYW1lPSJTeW1ib2wgMjI1IDEiPjxjaXJjbGUgaWQ9IkVsbGlwc2VfMjA1IiBkYXRhLW5hbWU9IkVsbGlwc2UgMjA1IiBjbGFzcz0iY2xzLTEiIGN4PSIyOS4zMjc1NiIgY3k9IjI5LjMyNzU2IiByPSIyOS4zMjc1NiIvPjxwYXRoIGlkPSJQYXRoXzYwNDQiIGRhdGEtbmFtZT0iUGF0aCA2MDQ0IiBjbGFzcz0iY2xzLTIiIGQ9Ik0xMi4wNDY4OSwyNi45MDc0N0EyLjM2Mzc4LDIuMzYzNzgsMCwwLDAsOS42MjY4LDI5LjIxMzZxLS4wMDEzOC4wNTcsMCwuMTE0YTIuMzYwODcsMi4zNjA4NywwLDAsMCwyLjMwMDEyLDIuNDIwMDlxLjA2LjAwMTUyLjEyLDBINDYuNjA4MzZhMi4zNjM4MSwyLjM2MzgxLDAsMCwwLDIuNDIwMDktMi4zMDYxNHEuMDAxMzgtLjA1NywwLS4xMTRhMi4zNjA4NiwyLjM2MDg2LDAsMCwwLTIuMzAwMTItMi40MjAwOXEtLjA2LS4wMDE1My0uMTIsMFoiLz48L2c+PC9nPjwvZz48L3N2Zz4=)}.globalScope .TableFilters__Filter .calender-dropdown__li-input--last{border-bottom:0 !important}.globalScope .TableFilters__Filter .calender-dropdown__li-input{padding:0 10px;margin-top:15px}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .calender-dropdown.sp-dropdown__calender-dropdown{margin:0 -10px}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .calender-dropdown>li{border:0;display:block}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .calender-dropdown>li .dropdown{padding:0}.globalScope .TableFilters__Filter .sp-dropdown__item,.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .calender-dropdown>li.sp-dropdown__item{border:0}.globalScope .TableFilters__Filter .sp-dropdown__item a,.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .calender-dropdown>li.sp-dropdown__item a{background:#fff;padding:8px 15px;border-radius:initial}.globalScope .TableFilters__Filter .sp-dropdown__item a:hover,.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .calender-dropdown>li.sp-dropdown__item a:hover{color:#fff;background:#60afa0}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .item-filter{padding:0;border-bottom:0}@media only screen and (max-height: 580px){.globalScope .TableFilters__Filter .filter-dropdown{max-height:150px;overflow-y:auto}}.globalScope .TableFilters__Filter--Others{display:block}.globalScope .TableFilters__Filter--Clear{display:flex}.globalScope .TableFilters__Filter--Clear .btn-clfilter__item{display:flex;align-items:center;padding-left:10px}.globalScope .TableFilters .ux-dropDown__ul--otherFilters .dropdown .dropdown-toggle{float:none;display:block;width:100%;text-align:left}.globalScope .TableFilters .ux-dropDown__ul--otherFilters .dropdown .dropdown-toggle:after{display:none}.globalScope .TableFilters .ux-dropDown__ul--otherFilters .dropdown .dropdown-toggle svg{float:right;margin-top:5px}.globalScope span.Table__Th__span--firstCol div.checkbox label{top:3px}.globalScope .TableFilters .ux-dropDown__ul--otherFilters .dropdown .dropdown-toggle svg{float:right;margin-top:5px}.globalScope span.Table__Th__span--firstCol div.checkbox label{top:3px}.globalScope .Table__Th__span--firstCol{display:flex;align-items:center}.globalScope div.Table__ActionHolder{display:flex;align-items:center;justify-content:flex-end}.globalScope div.Table__ActionHolder button{margin-left:10px}.globalScope .ux-toolbar__inner{display:flex}.globalScope .ux-toolbar__tool{margin:5px}@media only screen and (max-width: 767px){.globalScope .ux-toolbarWrapSpecial{flex:100%}}.globalScope .login-wp{background:#4e91b0;background:linear-gradient(45deg, #4e91b0 0%, #6bd391 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#4e91b0", endColorstr="#6bd391", GradientType=1);height:100%}.globalScope .login-wp h1,.globalScope .login-wp h2,.globalScope .login-wp h6,.globalScope .login-wp p{color:#e6e9ed;font-size:13px}.globalScope .login-wp .login-box{width:100%;display:table;vertical-align:top;position:relative;padding:10.1% 0}.globalScope .login-wp .login-box .wrap{max-width:300px;width:100%;margin:0 auto}.globalScope .login-wp .login-box .wrap .login-logo{text-align:center;width:100%;float:left;margin-bottom:20px;position:relative}.globalScope .login-wp .login-box .wrap .login-logo .login-log-flag{position:absolute;right:75px;bottom:-8px;font-size:14px;line-height:18px}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row{float:left;width:100%}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style{margin:10px 0;float:left;width:100%}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .form-control,.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .login-wp .login-box .wrap .inut-style-btn-group-row .input-style input,.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .login-wp .login-box .wrap .inut-style-btn-group-row .input-style select{background-color:none;border:1px solid #fff;color:#fff;border-radius:4px;height:45px;font-size:14px;padding:5px 20px;z-index:1;font-family:"Open Sans",sans-serif}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .form-control::-webkit-input-placeholder,.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .box-content>ul>li .box-control input::-webkit-input-placeholder,.globalScope .box-content>ul>li .box-control .login-wp .login-box .wrap .inut-style-btn-group-row .input-style input::-webkit-input-placeholder,.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .box-content>ul>li .box-control select::-webkit-input-placeholder,.globalScope .box-content>ul>li .box-control .login-wp .login-box .wrap .inut-style-btn-group-row .input-style select::-webkit-input-placeholder{color:#d9d9d9;font-style:italic;font-weight:500}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .form-control::-moz-placeholder,.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .box-content>ul>li .box-control input::-moz-placeholder,.globalScope .box-content>ul>li .box-control .login-wp .login-box .wrap .inut-style-btn-group-row .input-style input::-moz-placeholder,.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .box-content>ul>li .box-control select::-moz-placeholder,.globalScope .box-content>ul>li .box-control .login-wp .login-box .wrap .inut-style-btn-group-row .input-style select::-moz-placeholder{color:#d9d9d9;font-style:italic;font-weight:500}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .form-control::-ms-input-placeholder,.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .box-content>ul>li .box-control input::-ms-input-placeholder,.globalScope .box-content>ul>li .box-control .login-wp .login-box .wrap .inut-style-btn-group-row .input-style input::-ms-input-placeholder,.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style .box-content>ul>li .box-control select::-ms-input-placeholder,.globalScope .box-content>ul>li .box-control .login-wp .login-box .wrap .inut-style-btn-group-row .input-style select::-ms-input-placeholder{color:#d9d9d9;font-style:italic;font-weight:500}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style p{font-size:15px;color:#31693c;margin-top:8px;margin-bottom:0;font-family:"Open Sans",sans-serif}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style p a{color:#31693c;transition:all .5s ease}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .input-style p a:hover{color:#fff}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .login-btn{width:100%;float:left;margin-top:50px;text-align:center}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .login-btn .bordered-btn{width:100%;padding:15px;border:2px solid #fff;font-family:"Open Sans",sans-serif;font-size:15px;letter-spacing:3px;text-transform:uppercase;background:rgba(0,0,0,0);color:#fff;display:inline-block;vertical-align:top;transition:all .5s ease}.globalScope .login-wp .login-box .wrap .inut-style-btn-group-row .login-btn .bordered-btn:hover{color:#60afa0;background-color:#fff}@media screen and (max-width: 479px){.globalScope .login-wp .login-box .wrap{max-width:300px}}.globalScope .login-wp .login-box:before{background-image:url(/build/files/6c80522551dc86e9.png);content:"";background-position:top center;background-repeat:no-repeat;position:absolute;bottom:0;left:0;right:0;height:85px}.globalScope .login-wp .login-footer{text-align:center;background-color:#202932;padding:10px 15px;display:inline-block;vertical-align:top;width:100%}.globalScope .login-wp .login-footer h6{color:#b7bbbd;font-size:14px;margin:0}.globalScope .login-wp .login-footer h6:hover{color:#fff}.globalScope .login-wp .login-footer p{font-size:10px;color:#4c555b;margin:0;font-family:"Open Sans",sans-serif}@media only screen and (min-width: 768px){.globalScope .login-wp .login-footer p{font-size:12px}}.globalScope .login__box{max-width:400px;margin-left:auto;margin-right:auto}.globalScope .login__box .login-logo{margin-bottom:10px}.globalScope .login__topImage{margin-bottom:20px}.globalScope .login__title-h2{color:#fff;font-size:20px;font-weight:300}.globalScope .login__title-sub a{color:#000}.globalScope .login__title-sub a:hover{text-decoration:underline}.globalScope .login-wp--default .login-box,.globalScope .login-wp .login-box{height:calc(100vh - 57px)}.globalScope .login-wp--default .login-box{display:table;max-width:400px;margin-left:auto;margin-right:auto;padding:0}.globalScope .login-wp--default .login-box .login__box{display:table-cell;vertical-align:middle;padding:40px 0 80px}.globalScope .login-wp--checklistComplete .login-box{height:calc(100vh - 117px) !important}.globalScope .login-wp--checklistComplete+.AppBottomSpace{display:none}.globalScope .dashboard-topBarStatus+.login-wp--checklistComplete .login-box{height:calc(100vh - 117px - 127px) !important}.globalScope .ScrollShadow ::-webkit-scrollbar{width:6px}.globalScope .ScrollShadow ::-webkit-scrollbar-track{will-change:background-color;-webkit-transition:background-color .3s ease-in-out;transition:background-color .3s ease-in-out;background-color:rgba(0,0,0,0)}.globalScope .ScrollShadow ::-webkit-scrollbar-thumb{will-change:background-color;-webkit-transition:background-color .3s ease-in-out;transition:background-color .3s ease-in-out;background-color:rgba(0,0,0,0);border-radius:7.5px}.globalScope .ScrollShadow ::-webkit-scrollbar-thumb:hover{background:#516172}.globalScope .ScrollShadow ::-webkit-scrollbar-track{background-color:#ebeef0}.globalScope .ScrollShadow ::-webkit-scrollbar-thumb{background-color:#73879c}.globalScope .ScrollShadow:after,.globalScope .ScrollShadow:before{content:"";width:100%;height:0;position:absolute;z-index:10;transition:250ms;left:0;right:0}.globalScope .ScrollShadow:before{background-image:linear-gradient(rgba(0, 0, 0, 0.15), transparent);top:0}.globalScope .ScrollShadow:after{background-image:linear-gradient(transparent, rgba(0, 0, 0, 0.15));bottom:0}.globalScope .ScrollShadow.both:after,.globalScope .ScrollShadow.both:before,.globalScope .ScrollShadow.top:after,.globalScope .ScrollShadow.bottom:before{height:10px}.globalScope .ScrollShadow__Inner{overflow-y:auto}.globalScope .ScrollShadow__Inner:before{content:"";position:absolute;opacity:0;pointer-events:none;width:100%;height:10px;left:0;right:0}.globalScope .ScrollShadow__Inner.scroll-none{box-shadow:none}.globalScope .ScrollShadow__Inner.scroll-top{box-shadow:0 22px 18px -18px inset}.globalScope .ScrollShadow__Inner.scroll-both{box-shadow:0 -22px 18px -18px inset}.globalScope .ScrollShadow__Inner.scroll-bottom{box-shadow:0 -22px 18px -18px inset}.globalScope .ScrollShadow--default{position:relative}.globalScope .ScrollShadow--default .ScrollShadow__Inner{max-height:250px}.globalScope .align-self-flex-end{align-self:flex-end}.globalScope .ui-row{box-sizing:border-box;display:flex;flex:0 1 auto;flex-direction:row;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.globalScope .ui-row.reverse{flex-direction:row-reverse}.globalScope .ui-col{padding-right:5px;padding-left:5px}.globalScope .align-items-center{align-items:center}.globalScope .col.reverse{flex-direction:column-reverse}.globalScope .ui-col-xs,.globalScope .ui-col-xs-1,.globalScope .ui-col-xs-2,.globalScope .ui-col-xs-3,.globalScope .ui-col-xs-4,.globalScope .ui-col-xs-5,.globalScope .ui-col-xs-6,.globalScope .ui-col-xs-7,.globalScope .ui-col-xs-8,.globalScope .ui-col-xs-9,.globalScope .ui-col-xs-10,.globalScope .ui-col-xs-11,.globalScope .ui-col-xs-12{box-sizing:border-box;flex:0 0 auto;padding-right:5px;padding-left:5px}.globalScope .ui-col-xs{flex-grow:1;flex-basis:0;max-width:100%}.globalScope .ui-col-xs-1{flex-basis:8.333%;max-width:8.333%}.globalScope .ui-col-xs-2{flex-basis:16.667%;max-width:16.667%}.globalScope .ui-col-xs-3{flex-basis:25%;max-width:25%}.globalScope .ui-col-xs-4{flex-basis:33.333%;max-width:33.333%}.globalScope .ui-col-xs-5{flex-basis:41.667%;max-width:41.667%}.globalScope .ui-col-xs-6{flex-basis:50%;max-width:50%}.globalScope .ui-col-xs-7{flex-basis:58.333%;max-width:58.333%}.globalScope .ui-col-xs-8{flex-basis:66.667%;max-width:66.667%}.globalScope .ui-col-xs-9{flex-basis:75%;max-width:75%}.globalScope .ui-col-xs-10{flex-basis:83.333%;max-width:83.333%}.globalScope .ui-col-xs-11{flex-basis:91.667%;max-width:91.667%}.globalScope .ui-col-xs-12{flex-basis:100%;max-width:100%}.globalScope .ui-col-xs-offset-1{margin-left:8.333%}.globalScope .ui-col-xs-offset-2{margin-left:16.667%}.globalScope .ui-col-xs-offset-3{margin-left:25%}.globalScope .ui-col-xs-offset-4{margin-left:33.333%}.globalScope .ui-col-xs-offset-5{margin-left:41.667%}.globalScope .ui-col-xs-offset-6{margin-left:50%}.globalScope .ui-col-xs-offset-7{margin-left:58.333%}.globalScope .ui-col-xs-offset-8{margin-left:66.667%}.globalScope .ui-col-xs-offset-9{margin-left:75%}.globalScope .ui-col-xs-offset-10{margin-left:83.333%}.globalScope .ui-col-xs-offset-11{margin-left:91.667%}.globalScope .start-xs{justify-content:flex-start;text-align:start}.globalScope .center-xs{justify-content:center}.globalScope .end-xs{justify-content:flex-end;text-align:end}.globalScope .top-xs{align-items:flex-start}.globalScope .middle-xs{align-items:center}.globalScope .bottom-xs{align-items:flex-end}.globalScope .around-xs{justify-content:space-around}.globalScope .between-xs{justify-content:space-between}.globalScope .first-xs{order:-1}.globalScope .last-xs{order:1}@media only screen and (min-width: 48em){.globalScope .ui-col-sm,.globalScope .ui-col-sm-1,.globalScope .ui-col-sm-2,.globalScope .ui-col-sm-3,.globalScope .ui-col-sm-4,.globalScope .ui-col-sm-5,.globalScope .ui-col-sm-6,.globalScope .ui-col-sm-7,.globalScope .ui-col-sm-8,.globalScope .ui-col-sm-9,.globalScope .ui-col-sm-10,.globalScope .ui-col-sm-11,.globalScope .ui-col-sm-12{box-sizing:border-box;flex:0 0 auto;padding-right:5px;padding-left:5px}.globalScope .ui-col-sm{flex-grow:1;flex-basis:0;max-width:100%}.globalScope .ui-col-sm-1{flex-basis:8.333%;max-width:8.333%}.globalScope .ui-col-sm-2{flex-basis:16.667%;max-width:16.667%}.globalScope .ui-col-sm-3{flex-basis:25%;max-width:25%}.globalScope .ui-col-sm-4{flex-basis:33.333%;max-width:33.333%}.globalScope .ui-col-sm-5{flex-basis:41.667%;max-width:41.667%}.globalScope .ui-col-sm-6{flex-basis:50%;max-width:50%}.globalScope .ui-col-sm-7{flex-basis:58.333%;max-width:58.333%}.globalScope .ui-col-sm-8{flex-basis:66.667%;max-width:66.667%}.globalScope .ui-col-sm-9{flex-basis:75%;max-width:75%}.globalScope .ui-col-sm-10{flex-basis:83.333%;max-width:83.333%}.globalScope .ui-col-sm-11{flex-basis:91.667%;max-width:91.667%}.globalScope .ui-col-sm-12{flex-basis:100%;max-width:100%}.globalScope .ui-col-sm-offset-1{margin-left:8.333%}.globalScope .ui-col-sm-offset-2{margin-left:16.667%}.globalScope .ui-col-sm-offset-3{margin-left:25%}.globalScope .ui-col-sm-offset-4{margin-left:33.333%}.globalScope .ui-col-sm-offset-5{margin-left:41.667%}.globalScope .ui-col-sm-offset-6{margin-left:50%}.globalScope .ui-col-sm-offset-7{margin-left:58.333%}.globalScope .ui-col-sm-offset-8{margin-left:66.667%}.globalScope .ui-col-sm-offset-9{margin-left:75%}.globalScope .ui-col-sm-offset-10{margin-left:83.333%}.globalScope .ui-col-sm-offset-11{margin-left:91.667%}.globalScope .start-sm{justify-content:flex-start;text-align:start}.globalScope .center-sm{justify-content:center;text-align:center}.globalScope .end-sm{justify-content:flex-end;text-align:end}.globalScope .top-sm{align-items:flex-start}.globalScope .middle-sm{align-items:center}.globalScope .bottom-sm{align-items:flex-end}.globalScope .around-sm{justify-content:space-around}.globalScope .between-sm{justify-content:space-between}.globalScope .first-sm{order:-1}.globalScope .last-sm{order:1}}@media only screen and (min-width: 62em){.globalScope .ui-col-md,.globalScope .ui-col-md-1,.globalScope .ui-col-md-2,.globalScope .ui-col-md-3,.globalScope .ui-col-md-4,.globalScope .ui-col-md-5,.globalScope .ui-col-md-6,.globalScope .ui-col-md-7,.globalScope .ui-col-md-8,.globalScope .ui-col-md-9,.globalScope .ui-col-md-10,.globalScope .ui-col-md-11,.globalScope .ui-col-md-12{box-sizing:border-box;flex:0 0 auto;padding-right:5px;padding-left:5px}.globalScope .ui-col-md{flex-grow:1;flex-basis:0;max-width:100%}.globalScope .ui-col-md-1{flex-basis:8.333%;max-width:8.333%}.globalScope .ui-col-md-2{flex-basis:16.667%;max-width:16.667%}.globalScope .ui-col-md-3{flex-basis:25%;max-width:25%}.globalScope .ui-col-md-4{flex-basis:33.333%;max-width:33.333%}.globalScope .ui-col-md-5{flex-basis:41.667%;max-width:41.667%}.globalScope .ui-col-md-6{flex-basis:50%;max-width:50%}.globalScope .ui-col-md-7{flex-basis:58.333%;max-width:58.333%}.globalScope .ui-col-md-8{flex-basis:66.667%;max-width:66.667%}.globalScope .ui-col-md-9{flex-basis:75%;max-width:75%}.globalScope .ui-col-md-10{flex-basis:83.333%;max-width:83.333%}.globalScope .ui-col-md-11{flex-basis:91.667%;max-width:91.667%}.globalScope .ui-col-md-12{flex-basis:100%;max-width:100%}.globalScope .ui-col-md-offset-1{margin-left:8.333%}.globalScope .ui-col-md-offset-2{margin-left:16.667%}.globalScope .ui-col-md-offset-3{margin-left:25%}.globalScope .ui-col-md-offset-4{margin-left:33.333%}.globalScope .ui-col-md-offset-5{margin-left:41.667%}.globalScope .ui-col-md-offset-6{margin-left:50%}.globalScope .ui-col-md-offset-7{margin-left:58.333%}.globalScope .ui-col-md-offset-8{margin-left:66.667%}.globalScope .ui-col-md-offset-9{margin-left:75%}.globalScope .ui-col-md-offset-10{margin-left:83.333%}.globalScope .ui-col-md-offset-11{margin-left:91.667%}.globalScope .start-md{justify-content:flex-start;text-align:start}.globalScope .center-md{justify-content:center;text-align:center}.globalScope .end-md{justify-content:flex-end;text-align:end}.globalScope .top-md{align-items:flex-start}.globalScope .middle-md{align-items:center}.globalScope .bottom-md{align-items:flex-end}.globalScope .around-md{justify-content:space-around}.globalScope .between-md{justify-content:space-between}.globalScope .first-md{order:-1}.globalScope .last-md{order:1}}@media only screen and (min-width: 75em){.globalScope .ui-col-lg,.globalScope .ui-col-lg-1,.globalScope .ui-col-lg-2,.globalScope .ui-col-lg-3,.globalScope .ui-col-lg-4,.globalScope .ui-col-lg-5,.globalScope .ui-col-lg-6,.globalScope .ui-col-lg-7,.globalScope .ui-col-lg-8,.globalScope .ui-col-lg-9,.globalScope .ui-col-lg-10,.globalScope .ui-col-lg-11,.globalScope .ui-col-lg-12{box-sizing:border-box;flex:0 0 auto;padding-right:5px;padding-left:5px}.globalScope .ui-col-lg{flex-grow:1;flex-basis:0;max-width:100%}.globalScope .ui-col-lg-1{flex-basis:8.333%;max-width:8.333%}.globalScope .ui-col-lg-2{flex-basis:16.667%;max-width:16.667%}.globalScope .ui-col-lg-3{flex-basis:25%;max-width:25%}.globalScope .ui-col-lg-4{flex-basis:33.333%;max-width:33.333%}.globalScope .ui-col-lg-5{flex-basis:41.667%;max-width:41.667%}.globalScope .ui-col-lg-6{flex-basis:50%;max-width:50%}.globalScope .ui-col-lg-7{flex-basis:58.333%;max-width:58.333%}.globalScope .ui-col-lg-8{flex-basis:66.667%;max-width:66.667%}.globalScope .ui-col-lg-9{flex-basis:75%;max-width:75%}.globalScope .ui-col-lg-10{flex-basis:83.333%;max-width:83.333%}.globalScope .ui-col-lg-11{flex-basis:91.667%;max-width:91.667%}.globalScope .ui-col-lg-12{flex-basis:100%;max-width:100%}.globalScope .ui-col-lg-offset-1{margin-left:8.333%}.globalScope .ui-col-lg-offset-2{margin-left:16.667%}.globalScope .ui-col-lg-offset-3{margin-left:25%}.globalScope .ui-col-lg-offset-4{margin-left:33.333%}.globalScope .ui-col-lg-offset-5{margin-left:41.667%}.globalScope .ui-col-lg-offset-6{margin-left:50%}.globalScope .ui-col-lg-offset-7{margin-left:58.333%}.globalScope .ui-col-lg-offset-8{margin-left:66.667%}.globalScope .ui-col-lg-offset-9{margin-left:75%}.globalScope .ui-col-lg-offset-10{margin-left:83.333%}.globalScope .ui-col-lg-offset-11{margin-left:91.667%}.globalScope .start-lg{justify-content:flex-start;text-align:start}.globalScope .center-lg{justify-content:center;text-align:center}.globalScope .end-lg{justify-content:flex-end;text-align:end}.globalScope .top-lg{align-items:flex-start}.globalScope .middle-lg{align-items:center}.globalScope .bottom-lg{align-items:flex-end}.globalScope .around-lg{justify-content:space-around}.globalScope .between-lg{justify-content:space-between}.globalScope .first-lg{order:-1}.globalScope .last-lg{order:1}}.globalScope .sidebar-area .sidebar-area-row .sidebar-area-head h3{max-width:167px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.globalScope .p30{padding:30px}.globalScope .pb50{padding-bottom:50px}.globalScope .btn--md{padding:9px 12px 8px}.globalScope .table--select-sm select{min-width:76px;font-size:10px;padding:0 4px;margin-bottom:0}.globalScope .ux-link--default{color:#4a5867;background-image:linear-gradient(to top, transparent, transparent 2px, #4a5867 2px, #4a5867 3px, transparent 3px)}.globalScope .ux-link--heading{color:#73879c;background-image:linear-gradient(to top, transparent, transparent 2px, #73879C 2px, #73879C 3px, transparent 3px)}.globalScope .ux-title{font-size:20px;margin:40px 0 30px;padding-bottom:20px;text-transform:uppercase}.globalScope .img-circle--green{border-radius:50%;border:2px solid #60afa0;width:70px;height:70px}.globalScope .input-style.input-error-box .input-label .input-error{margin-left:5px}.globalScope .AppBottomSpace{height:50px}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown{padding:15px 10px}.globalScope .TableFilters__Filter .filter-dropdown{border:1px solid #dfe1e5}.globalScope .TableFilters__Filter .filter-dropdown li{padding:0;border-bottom:0}.globalScope .TableFilters__Filter .filter-dropdown li:hover{color:#4c555b;background:#fff}.globalScope .TableFilters__Filter .filter-dropdown li:hover label{background:#5fae9f;color:#fff}.globalScope .TableFilters__Filter .filter-dropdown li:nth-child(odd){background:rgba(0,0,0,0)}.globalScope .TableFilters__Filter .filter-dropdown li label{padding:7px 10px;padding-left:36px;position:relative;margin-bottom:0;color:#4a5867}.globalScope .TableFilters__Filter .filter-dropdown li label input[type=checkbox]{display:none}.globalScope .TableFilters__Filter .filter-dropdown li label input[type=checkbox]+*{position:absolute;width:100%;height:100%;z-index:0;left:0;top:0}.globalScope .TableFilters__Filter .filter-dropdown li label input[type=checkbox]:checked+*{background:rgba(90,176,160,.3)}.globalScope .TableFilters__Filter .filter-dropdown li label input[type=checkbox]:checked+*:after{content:"";width:11px;height:11px;border-radius:50%;position:absolute;margin-top:1px;left:13px;top:9px;background:#5fae9f}.globalScope .TableFilters__Filter .filter-dropdown li label input[type=checkbox]+*:before{content:"";width:15px;height:15px;border:1px solid gray;border-radius:50%;position:absolute;margin-top:1px;background:#fff;left:11px;top:7px}.globalScope .TableFilters__Filter .filter-dropdown li label:hover input[type=checkbox]+*:before{content:""}.globalScope .TableFilters__Filter .filter-dropdown li label:hover input[type=checkbox]:checked+*:before{border:1px solid gray}.globalScope .TableFilters__Filter .filter-dropdown li label:active input[type=checkbox]+*:before{box-shadow:0 0 7px rgba(95,174,159,.7),inset 0 0 7px rgba(95,174,159,.7)}.globalScope .sub-dropdown-footer{display:flex;align-items:center;justify-content:center;margin-top:15px;padding-top:15px;border-top:1px dashed #b9c3ce}.globalScope .sub-dropdown-footer>*+*{margin-left:10px}.globalScope .sub-dropdown-footer .ui-btn-default,.globalScope .sub-dropdown-footer .ui-btn-primary{width:130px;height:30px;text-align:center;line-height:30px;border-radius:3px}.globalScope .sub-dropdown-footer .ui-btn-primary{background:#5fae9f;color:#fff}.globalScope .sub-dropdown-footer .ui-btn-primary:hover{background:#49bea7}.globalScope .sub-dropdown-footer .ui-btn-default{border:1px solid #73879c;color:#4a5867}.globalScope .sub-dropdown-footer .ui-btn-default:hover{color:#fff;background:#73879c}.globalScope .TableFilters__Filter .TableFilters__Filter .dropdown-toggle:hover,.globalScope .TableFilters__Filter .TableFilters__FilterItem:hover{color:#fff;background:#5fae9f}.globalScope .TableFilters__Filter .dropdown-box.ux-dropDown__ul--otherFilters .sub-dropdown{padding:0}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown{border:1px solid #dfe1e5;box-shadow:1px 2px 5px 0 #dfe1e5}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown.arrow-up:before{border-bottom-color:#dfe1e5}.globalScope .TableFilters__Filter .dropdown-box .sub-dropdown .account-filter{border-bottom:0;padding:0}.globalScope .TableFilters__Filter .filter-dropdown{border:1px solid #dfe1e5;margin:0;box-sizing:border-box;display:block;width:auto}.globalScope .TableFilters__Filter .filter-dropdown li:first-child label{border-radius:0}.globalScope .order-step{margin-bottom:30px}.globalScope .order-step__header{border-bottom:2px solid #94999d;position:relative;text-transform:uppercase;font-size:15px;padding-left:90px;padding-bottom:20px;margin-bottom:20px}.globalScope .order-step__header i{font-size:70px;position:absolute;left:0;top:0;line-height:1}.globalScope .right-input-box{float:right;margin-right:20px;max-width:445px;padding:10px 10px 0;width:100%}.globalScope .right-input-box .form-control,.globalScope .right-input-box .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .right-input-box input,.globalScope .right-input-box .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .right-input-box select{padding-left:8px;padding-right:8px}.globalScope .right-input-box .period{width:40%;float:left;padding:0 8px}.globalScope .right-input-box .from{width:30%;float:left;padding:0 8px}.globalScope .right-input-box .to{width:30%;float:left;padding:0 8px}.globalScope .right-input-box .form-control,.globalScope .right-input-box .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .right-input-box input,.globalScope .right-input-box .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .right-input-box select{height:30px}.globalScope .right-input-box .input-style{margin:0}.globalScope .right-input-box .input-style .form-control,.globalScope .right-input-box .input-style .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .right-input-box .input-style input,.globalScope .right-input-box .input-style .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .right-input-box .input-style select{border-color:#73879c}.globalScope .right-input-box .input-style .input-label span{background:rgba(0,0,0,0);color:#73879c}.globalScope .right-input-box .input-style .input-label span:before{content:"";position:absolute;left:0;right:0;bottom:0;height:14px;background:#e8e8e8;z-index:-1}.globalScope .right-input-box--light .input-style .input-label span{background:#fff}.globalScope .right-input-box--light .input-style .input-label span:before{background:#fff}.globalScope .dashboard-topBarStatus{color:#fff;font-size:12px;padding:0 15px;background:#f78b6a}.globalScope .dashboard-topBarStatus .price{font-weight:bold;font-size:20px}.globalScope .dashboard-topBarStatus .price,.globalScope .dashboard-topBarStatus .date,.globalScope .dashboard-topBarStatus .sh-btn{margin-left:20px}.globalScope .dashboard-topBarStatus .sh-btn{border:1px solid #fff;color:#fff;display:block}@media only screen and (min-width: 768px){.globalScope .dashboard-topBarStatus .sh-btn{display:inline-block}}.globalScope .dashboard-topBarStatus .sh-btn:hover{color:#f78b6a;background:#fff}.globalScope .dashboard-topBarStatus__in{display:flex;align-items:center;justify-content:center;height:40px}.globalScope .dashboard-topBarStatus__text{max-height:35px;overflow:hidden;display:block;flex:auto}.globalScope .dashboard-table{display:flex;flex-wrap:wrap}@media only screen and (min-width: 540px){.globalScope .dashboard-table{flex-wrap:nowrap}}.globalScope .dashboard-table__text{text-align:center;align-self:center;margin-bottom:5px}@media only screen and (min-width: 540px){.globalScope .dashboard-table__text{padding:10px;width:155px;flex:0 0 155px}}@media only screen and (max-width: 539px){.globalScope .dashboard-table__text{display:flex;align-items:center;width:100%}.globalScope .dashboard-table__text>*{margin-right:5px}}.globalScope .dashboard-table__table{flex:auto;height:213px !important}.globalScope .dashboard-table__table-bigger{height:374px !important}.globalScope .dashboard-table__ico{font-size:25px;margin-bottom:-2px}@media only screen and (min-width: 540px){.globalScope .dashboard-table__ico{font-size:35px}}.globalScope .dashboard-table__total{display:block;font-size:25px;font-weight:bold}@media only screen and (min-width: 540px){.globalScope .dashboard-table__total{font-size:25px}}.globalScope .dashboard-table__title{font-size:14px;font-weight:bold;color:#73879c;margin-bottom:0;margin-top:0}@media only screen and (min-width: 540px){.globalScope .dashboard-table__title{margin-top:5px}}.globalScope .dashboard-revenue__item{display:flex;align-items:center;margin-bottom:8px}.globalScope .dashboard-revenue__item--total{border-top:1px dashed #9d9d9d;border-bottom:1px dashed #9d9d9d;font-weight:bold;margin:5px 0 15px;padding-top:5px;padding-bottom:5px}.globalScope .dashboard-revenue__title{width:65%;display:flex}.globalScope .dashboard-revenue__title span{margin-right:8px;display:inline-block}.globalScope .dashboard-revenue__label{width:35%;text-align:right;font-weight:700;margin:0}.globalScope .userSettings__profilePicture{width:100px;height:100px;min-width:100px;min-height:100px;border-radius:4px;border:1px solid #73879c;padding:5px;margin:0 auto}.globalScope .userSettings__profilePictureInner{width:100%;height:100%;border-radius:2px;overflow:hidden}.globalScope .userSettings__profilePictureInner img{object-fit:cover;width:100%;height:100%}.globalScope .userSettings__userForm{border:1px dashed #a0adbc;border-width:1px 0;margin:20px 0;padding-top:15px}.globalScope .notifications .notification+.notification{margin-top:10px}.globalScope .login-wp{background:linear-gradient(45deg, #4792b3 0%, #40b69e 65%, #3ad98a 100%)}.globalScope .inventoryTotalProduct{padding:0 8px 8px;position:relative;text-align:center}.globalScope .inventoryTotalProduct:before{content:"";border-right:1px solid #e6e9ed;position:absolute;right:0;top:0;bottom:0}.globalScope .inventoryTotalProduct--last:before{display:none}.globalScope .inventoryTotalProduct__title{margin-bottom:13px;display:flex;align-items:center;justify-content:center}.globalScope .inventoryTotalProduct__title span{margin-right:8px}.globalScope .bank-credit .bank-credit-inner{padding:0 !important;display:inline-block;vertical-align:top;width:100%;margin-top:-1px;background-color:#fff !important}.globalScope .bank-credit .bank-credit-inner .nav-tabs{display:inline-block;float:left;list-style:outside none none;margin:0;padding:0;vertical-align:top;border:0px;width:100%}@media only screen and (min-width: 768px){.globalScope .bank-credit .bank-credit-inner .nav-tabs{padding:0 30px}}.globalScope .bank-credit .bank-credit-inner .nav-tabs>li{display:inline-block;vertical-align:top;float:left;position:relative;margin:0;width:50%;text-align:center;padding:0 5px}.globalScope .bank-credit .bank-credit-inner .nav-tabs>li>a{color:#73879c;border:1px solid #73879c;font-size:12px;padding:4px 4px 8px;display:block;vertical-align:top;position:relative;overflow:hidden;border-radius:2px;margin:0px}.globalScope .bank-credit .bank-credit-inner .nav-tabs>li>a .ico{display:block;font-size:30px;margin:0 auto 2px}.globalScope .bank-credit .bank-credit-inner .nav-tabs>li>a.previous-nav .ico-down,.globalScope .bank-credit .bank-credit-inner .nav-tabs>li>a.next-nav .ico-down{vertical-align:middle;font-size:6px;display:inline-block;position:relative;top:-1px}.globalScope .bank-credit .bank-credit-inner .nav-tabs>li>a.previous-nav .ico-down{transform:rotate(90deg)}.globalScope .bank-credit .bank-credit-inner .nav-tabs>li>a.next-nav .ico-down{transform:rotate(-90deg)}.globalScope .bank-credit .bank-credit-inner .nav-tabs>li.active>a{border-color:#60afa0;color:#60afa0}.globalScope .bank-credit .bank-credit-inner .nav-tabs>li.active>a:before{opacity:1;bottom:0}.globalScope .bank-credit .bank-credit-inner .nav-tabs>li:hover>a{background:#60afa0;color:#fff}.globalScope .bank-credit .bank-credit-inner .nav-tabs>li:hover>a:before{opacity:1;bottom:0}.globalScope .bank-credit .bank-credit-inner .nav-tabs>li:hover .header-action-subnav{opacity:1;visibility:visible;top:100%}.globalScope .bank-credit .bank-credit-inner .tab-content{display:inline-block;width:100%}.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-logo{list-style:none;display:inline-block;vertical-align:top;text-align:center;padding:20px 0 20px;margin:20px 0 0;width:100%;border-top:1px dashed #73879c}.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-logo li{display:inline-block;vertical-align:middle;margin:0 5px}.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-logo li a{color:#dcdcdc}.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-logo li a img{width:42px}@media screen and (max-width: 640px){.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-logo li a img{width:35px}}.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-input__container{width:100%;max-width:365px;margin:0 auto}.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-input__container .input-style{margin-bottom:20px}.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-input__container .input-style .input-label span{background-color:#fff}.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-input--withTopBorder{padding-top:20px;margin-top:20px;border-top:1px dashed #73879c}.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-dbal-input{width:100%;max-width:365px;margin:0 auto}@media screen and (min-width: 480px){.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-dbal-input .input-style{width:50%;float:left;margin-bottom:20px}.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-dbal-input .input-style:first-child .form-control,.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-dbal-input .input-style:first-child .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .bank-credit .bank-credit-inner .tab-content .bank-credit-dbal-input .input-style:first-child input,.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-dbal-input .input-style:first-child .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .bank-credit .bank-credit-inner .tab-content .bank-credit-dbal-input .input-style:first-child select{border-radius:4px 0 0 4px}.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-dbal-input .input-style:last-child .form-control,.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-dbal-input .input-style:last-child .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .bank-credit .bank-credit-inner .tab-content .bank-credit-dbal-input .input-style:last-child input,.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-dbal-input .input-style:last-child .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .bank-credit .bank-credit-inner .tab-content .bank-credit-dbal-input .input-style:last-child select{border-radius:0 4px 4px 0}}.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-footer{padding-top:20px;margin-top:20px;border-top:1px dashed #73879c}.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-footer .bank-credit-footer__container{margin:0 auto;text-align:center}.globalScope .bank-credit .bank-credit-inner .tab-content .bank-credit-footer p{font-size:12px;display:block;text-align:center}.globalScope .login__box-inner--small{max-width:400px;margin:0 auto}.globalScope .login-wp--tutorial{background:#f5f5f5}.globalScope .login-wp--tutorial h1,.globalScope .login-wp--tutorial h2,.globalScope .login-wp--tutorial h6,.globalScope .login-wp--tutorial p{color:#73879c}.globalScope .login-wp--tutorial .login__title-h2{font-weight:bold}.globalScope .login-wp--tutorial .login-box{max-width:100%;padding-left:15px;padding-right:15px}.globalScope .login-wp--tutorial .login-box .login-box:before{display:none}.globalScope .login-wp--tutorial .login-box .login__box{max-width:100%}.globalScope .tutorial-checklist{max-width:600px;margin:0 auto}.globalScope .tutorial-checklist .form-horizontal{display:flex;flex-wrap:wrap;justify-content:space-between}.globalScope .tutorial-checklist .form__checkboxOutside{width:100%;max-width:100%;margin:5px 0;padding:15px;flex-wrap:wrap;text-align:center;border:1px solid #73879c;color:#73879c}@media only screen and (min-width: 768px){.globalScope .tutorial-checklist .form__checkboxOutside{width:calc(50% - 5px);max-width:calc(50% - 5px)}}.globalScope .tutorial-checklist .form__checkboxOutside.active{border-color:#60afa0}.globalScope .tutorial-checklist .form__checkboxOutside.active:before{content:"";z-index:1;background:no-repeat center center url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAANIAAABaCAYAAADNegj3AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAz7SURBVHgB7Z3rdeO8EYbhnPyPt4IwFaw6WG4F6w7CVLBKBeZWYKUCORXYWwG1FdhbAZUKnFTwhjDBTxAEDEBcdLHmOYdHNgUMQApDzAwuvBEMw/wBgNvhYzEcX4ajHo6fNzc3K1++G8EwV86gPFJx6uH4JkYleh2O38PxLP8eFOm/PhmsSMzVoXqdOzH2OvJTKspPMSrQc4jimLAiMR8epTi12CmO/F/2Nu+9zqA4W5EIKxLzIRmUpxY7P2cy1957nUFxNiIzrEjMhyCHn5MCKxJzkZTwc1JgRWIuAi0sLXucyc/ZDMcvkcnPSYEViTlbSvk5g9xKybtVp2TvtR1kvgqGuXRkAx+O5XB0w/E2HC/DsZIKpXqkVLlPSq4L+d1aKRrDXAZSOYajUY1XNuJeKU6TqDi63B5x3AuGOUdUA5e9y4Nq4G+ql1jm6AWU8rwgH2vBMOeAUpx77My1TilOLRJQchvj3BL5eRAMc2xwXD/nTZc5/L1AGWpf/ThqxyQB+3jORuzC0lHjOZrcz+qzciT9qkfwpHKJXTTORNZlivxt1bmp7pVwsxnK+CoYJhfY93NekMnPscgNZWXIeSTSNo6yZW/XI7FXYhgS2P2cNlfjUkr4hjg6Q1ZDpF0Tdag8dfCuSWKYPXDoj+T2c9Z6o/Y0fh9vljKC0lrq18bmZRjXeM4a+cZzpnC3tWGqdMGKg13kr3KU2xP5K099EZOXuUJwHD+ng59ay0v5RR1mmJIYe08XS09eqh6NYK4bFPJzlFw93D2HpSYnuvFb6nRHyHr25KXq0QrmusBx/JzYAMFEp8mtQ9JZ6iN7wcpyzoXPT6IGdXmmw0cHh/PLpgmYufycWv3/hDxIxW6NclyKaQ68mr1gZ6l3R5RdE9dL9WZORfqzYC4S7K/PqcU4oLgR40Doj9j1OYbcadWp5Kcm/07MZyuIgVr5/1D2q1aejqyTNEP/InZrkXTee1lD5m+HLKHOb8R8/iOYywfl/JwF/H7Om0pLhZcR0wto9WgRT225Vy4oU5Ey7WIeIMypwaGf0+O0fk6t8veW795Ay/IGDEA3fh/mDIdgU9HI1xNlVII5f3A47pLFzzHKSFlmsFQypsjWXgADkb2AUb/YAMaLRVZHpK8t6e/nyGfOBNjHczpkWp/jKDMlWLBSMmSPduu4ntm9QEL99AdNZZG19F2LVu8HT1mNYM4HWCJOyDhvLaD8OWt2eow9joxkBfWIiIyWBdZPf9AsAmTVnmsLHf8K6k2ZgqCsn+NtTI58FGs4nvCB8oN6gcj69WImSB/r6sG+0fFBIT9Hyb3D/ry1qCclCjrUKO8nVWIGSDNle7ASHQcczi+bZX4EltE5fuioGcmg1+wsiXxW38iSjlKEkPxU/RoiX418y89XyBTgYRzgyH4OEv0Oi7yGkKcvb7D1giFhbKoX8I7FzKhfBbufc2ukmUMHXsRXBhyOu/SY6YQnlt8SP3wrZgLPXDTsBn2tDS1Afqqf5KvfGnSvd2fI60HTYbzH3APlBMfxc56UbHm8qP8bR75kv8MiM3Y8yWtOIkPAAPH70UnMwVlzRneWCbyMAQr6Odif1hNCD/ts5iS/w1KvFeKpA+T3RP6qcP16Q5Z8eK2RcWBbky0fGo24VlDIz0HYvDVvQ8ChMnVE+lrMBGnTcdoA+Y9E/hA/6w7xBA3+xgC7tXI9e9/hSH4OwnseH+amHkl+h6Wec5Z3v9cHM8whRG5Ckli/5Aehox5FrJWLAIcRJ3I6SaTcJ8v3seFWG7Umd0Gki5oHBlrp5f2KftAgYXFdYP16FPJzcOLZJycFp/Fz3ixpKUfbbAg+0+/ZkJ3bT6KigbN7OYt8KqARMsVHr1/2CbxaOSeNyp4cHPojnbr5yU8pjIo5yaWoLXmpPN+xP85BNWZzq6lHIm0jZoIC0UBDftI+DNj9vpXICI4wy/6swRGfHAjvWVpL3lkNHoFTYlBgPwFE9HLYNcQ7j+yiihoK2M8p4+cElh2qSLb9AmY52giMyCHzhM6Asu9UGnO5h/PaDdnJflIsKGitnD3aD3aPcn7OE8KiTtTT1OTWch3BDQh0Y14YaXsibSVmArqXe/HULWRwVs/Pfk4pYH9y5FxOPcnVaQPyz1Gk2pK/J9JXoeVY5Cb5HY77lELtkS+VJrsJhRNaK2eB+uEaFHpyKFkhA6GVR84cRVo56uHivWFh7CGpus41G59FBEhbs9OKIwD2c5xPjuzRGFVeF9gAfPa9TZFcDc62X0DKyPxEbZEb7XdAM2+N84+Ip9imiWA/p4yfE1j+nAHRO0KOTZGoBjfHTwphRdSNGp+ptXSTeTutznWlaxAO+zmlQGY/B2MjXKgb2KjPIFmYZ5L1cId4bXJauHulxiKjQxyPnmukzMY1wrbZWhr320WxByGObK2cHSjwWncl8x7+QVD5dK09subY/A8OGTbTrIV70ZotrN1iHrLepfd/mzDn8vX6dyhgQuHE1srJQcEnh7qxHebzAHdv4mrsLgVbWGTYzJ0WbuXoHdcWQofxXobu1ONbVhHC3gxpjL9viYHtrNbKxYFCr3U3ynhAGi+2HwNuP6lznbfIsCmSPEcpR2XI8DX46IaLtFnm04Mwe0NG4ajs2YMjPzmQb7mBbQZ25Ujbwe1fNIYMlyJR/sRy5nXWIv7+zQmqsJ9TGuzGXXok+jkzykztiUxsDbh3pF3A3kuYpo5VkdR3Hew8W+pBNfiViAR+s7FD2WUG9yhorVwa8rUur8OxinkNCMYnTi3GV4rIV25MP5h8/cXrINPWsJrhw+dQb8T4GhGJfIL+3ZNe/qiPxms9fql6mciQ94/hMIMMsu73w/FP4UfKri3nv1jObYSbLyKS4Vo3wzXL653u+VbsXr2yMV+bkgLGXqwWu1e9yDYjX5si7+NrzrKuBuyia73nifjmyE/l62EfhKwCymuNPI0jXae+7xzf1+p7W0/SqO+o3sBW/6zriDS5S5RdZrDGka2VDw92ChSKzYH3mSMVUX4FukG+WOrrYgrDOusNe3Su0eS76mIzMx/hphEnBuznJPOnkETqZsqG2opw/mc5VxPpHynzUn33L+FG+j61ll6aG6+OtI00jYbPf1u+qxE2+dMl+9uMtJJo8y4FaH7O8K8M3X8Xo0n+j+HefBoO+Rll8l8jXkVSSiRvdiXmsbWc+0yk/y38SOecssdr4/9fjnRTPZYOedJX8pkwPx3npUKbeZ+Fm1ocARhRWTFe4ycx+jl/GxTmq1KcjWBmQyqSahAxSiSxNdDbmen3UL3MTyKJ+XR3NeA7Td4Py/eynt8FzcZxXubdCzGrp/rWklaWv0GZ4YU9P2c4JYcJKjH2wpPiLKXicLCgMPCHqTv1Y1XqmObI1bC/+KlDoq8AeoKluccB5ScttHTUJFCd2pDv8pNWlnpPwwwdCoSKsb/MoFdlPYH9nNMC/4KvVswEtNPdBsrw1asy0neOdPqkTV8QZKIOvB5boEU2dB7P+aBQpl1NfCcDA62YD2VCLEQAykyi5JiN1eUnfdNkbgTtx7jYWM5thcXfk+ZTqgkFY9WvGMfC2M85Z0C/mqMWEWCGWeaR04fWDe7expzJ4Auv22RPedbg8RzGBgi/QUQCv1lWB8rpCRm2mdxvgYrRIkP9YgH7OR8PuBtf1LZPAXIloa9GpLDNBu8caVsj3S3sSiofKqsSjRl2P0cqdC2YywduUhWJWt0JXwMCbR72jjzOZRWWtLJh9yhkQuFw+fekpDXYXPt4gOg5RALwR8h6OJ788M+5WxP5XJSe6W7zc9ZgP+c6wAyHPkJ2B78yNVp6qQj38AcDKqJMPa8eKq5ERnC4Kyn7OdcM6KhdKxJAnj0HZtUJo99xzPU57OcwpF8hSfKTlHyfrzSHqPcDJdSd/RwmDGQKVWuyzD2sbxH/QmCdoL28U8Chn1NsbzfmA+Jp6C8hjQjjOhfZ8Gzzz2QD7RBH0NZVMYD9HCYn8A9Qrom8taEkPZFWNtAeYfSqXuznMGfDDfWlaqxSAahGuxXjXK+tSleJcR5bbUn7iZpvhjFS902TI5kW6Mn5a8+5FpqpnkUup/ii6roV47w8OeeO9yFg8oK8LxduxInAvp/Tg/0c5tgg3x50xd5cYKmzzc/pwH4OcyoQtouPj5fSDRjX/Fp35jJIUKaS0TVzPKcHj+cwl4B6wvcBCtRhxsbwgWVPfo65bRT7OcxJuRGRKHNJHn/VTsvI2lZk2ulTKYccyJ2igJUYI3hyA5RsETyGSSVakUqhFHRSnml7XBmW3vASauZcObki4XA8Z9pyi8dzmIvh6IqkzDWpOJ/Vp/xfKs37YCgrDnOJFFckw89ZiJ259v7mhEFxXgXDXDhFFIn9HObayKJImp8zmWuTn7MRmd/VwzDnSJQisZ/DMPsEKRL7OQxDE6pISzEq0bufIzgszTB7/B9Ez6QI8tCmkwAAAABJRU5ErkJggg==) rgba(96,175,160,.9);background-size:70%}.globalScope .tutorial-checklist .form__checkboxOutside>*{width:100%}.globalScope .tutorial-checklist .form__checkboxOutside .form__checkboxOutside-left svg{margin:0 auto;color:#73879c}.globalScope .tutorial-checklist .form__checkboxOutside .form__checkboxOutside-center{text-align:center;font-weight:bold;font-size:15px;margin:7px 0 12px}.globalScope .tutorial-checklist .form__checkboxOutside .form__checkboxOutside-right{margin-left:0}.globalScope .tutorial-checklist .form__checkboxOutside .form__checkboxOutside-icon{font-size:25px}.globalScope .tutorial-checklist .form__checkboxOutside-iconCheckWrap{display:none}@keyframes scale{0%{transform:scale(1)}50%{transform:scale(1.2)}100%{transform:scale(1)}}.globalScope .animated{animation-duration:1s;animation-fill-mode:both}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.globalScope .fadeIn{animation-name:fadeIn;animation-delay:.5s}@keyframes fadeInDown{from{opacity:0;transform:translate3d(0, -100%, 0)}to{opacity:1;transform:none}}.globalScope .fadeInDown{animation-name:fadeInDown}@keyframes fadeInLeft{from{opacity:0;transform:translate3d(-100%, 0, 0)}to{opacity:1;transform:none}}.globalScope .fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInRight{from{opacity:0;transform:translate3d(100%, 0, 0)}to{opacity:1;transform:none}}.globalScope .fadeInRight{animation-name:fadeInRight}@keyframes fadeInUp{from{opacity:0;transform:translate3d(0, 100%, 0)}to{opacity:1;transform:none}}.globalScope .fadeInUp{animation-name:fadeInUp;animation-delay:1s}.globalScope .sidebar-area .sidebar-area-row .sidebar-area-head h3{max-width:150px}@media only screen and (max-width: 1390px)and (min-width: 1280px){.globalScope .sidebar-area .sidebar-area-row .sidebar-area-head h3{max-width:100px}}.globalScope .react-typeahead-hint{visibility:hidden;left:0}.globalScope .login-btn{margin-top:3px !important}.globalScope .forgotten-password{text-align:right}.globalScope .forgotten-password a{text-decoration:underline;color:#e6e9ed}.globalScope .billing-page .summary-box .summary-bottom .summary-balance p .balance-left{width:134px}.globalScope .billing-paynow-page .content-wrap .summary-box .summary-bottom .summary-balance p .balance-left{width:139px}.globalScope .receiving-image-hover{display:none;position:absolute;width:400px;height:auto;margin-left:-430px;margin-top:-420px}.globalScope .receiving-image-hover-area:hover .receiving-image-hover{display:block !important;z-index:1000}.globalScope .gift-message-preview-body img{border:1px solid #000}.globalScope .error-box-td{background-color:#f15a24;color:#fff}.globalScope .error-box .foot-icon-box{color:#f15a24}.globalScope .text-wrap-normal{white-space:normal}.globalScope .cell-valign-middle{vertical-align:middle}.globalScope .ui-form-groups{margin-top:20px}.globalScope .ui-form-group{margin-bottom:20px}.globalScope .ui-form-group:last-child{margin-bottom:0}.globalScope .ui-form-label{margin-bottom:10px;color:#73879c}.globalScope .ui-hr--dash{border:0;border-bottom:1px dashed #73879c;padding:0;margin:0;height:1px;width:100%}.globalScope .TableWithLines{width:100%}.globalScope .TableWithLines tr:first-child td{border-top:0}.globalScope .TableWithLines td{border-top:1px solid #eff0f2;padding:10px 0;color:#73879c}.globalScope .TableWithLines td strong{color:#1f2a32}.globalScope .TableWithLines td:first-child{padding-right:20px;width:134px}@media(max-width: 767px){.globalScope .mobileToggleSubMenuWrap{position:absolute;right:0;top:0;width:85px;bottom:0}}.globalScope .MainMenu__dropDownArrow:before{content:"";position:absolute;left:-20px;right:-20px;width:100%;height:100%}.globalScope .ui-shipping-service{color:#73879c;font-size:13px}.globalScope .ui-shipping-service__input-template-name{text-align:center}.globalScope .ui-shipping-service__input-template-name .form-control,.globalScope .ui-shipping-service__input-template-name .box-content>ul>li .box-control input,.globalScope .box-content>ul>li .box-control .ui-shipping-service__input-template-name input,.globalScope .ui-shipping-service__input-template-name .box-content>ul>li .box-control select,.globalScope .box-content>ul>li .box-control .ui-shipping-service__input-template-name select{display:inline-block;max-width:240px}.globalScope .ui-shipping-service__title-text{text-align:center;margin-top:15px}@media only screen and (min-width: 1000px){.globalScope .ui-shipping-service__title-text{max-width:75%;margin:0 auto}}.globalScope .ui-ship-services__row{display:flex;margin:0 -7.5px;flex-wrap:wrap}@media only screen and (min-width: 1000px){.globalScope .ui-ship-services__row{flex-wrap:nowrap}}.globalScope .ui-ship-services__row--center{justify-content:center}.globalScope .ui-ship-services__col{width:100%;max-width:100%;padding:0 7.5px;overflow:auto}.globalScope .ui-ship-services__col:not(:first-child){border-top:3px solid #ced5da;margin-top:30px}.ui-shipping-service--add-new .globalScope .ui-ship-services__col:not(:first-child){padding-top:30px}@media only screen and (min-width: 1000px){.globalScope .ui-ship-services__col:not(:first-child){border-left:1px solid #ced5da;border-top:0;margin-top:0}.ui-shipping-service--add-new .globalScope .ui-ship-services__col:not(:first-child){padding-top:0}}.globalScope .ui-ship-services__col.disabled{position:relative}.globalScope .ui-ship-services__col.disabled:before{content:"";position:absolute;left:0;right:0;bottom:0;top:0;background:rgba(255,255,255,.7);z-index:2;cursor:not-allowed}@media only screen and (min-width: 1000px){.globalScope .ui-ship-services__col-1-3{width:33.3333333333%;max-width:33.3333333333%}.globalScope .ui-ship-services__col-1-2{width:50%;max-width:50%}}.globalScope .ui-ship-services__title{font-size:15px;line-height:20px;font-weight:bold;text-align:center;padding-top:10px;text-align:left;height:55px}.globalScope .ui-ship-services-available{max-height:400px;display:flex;flex-direction:column;flex-grow:1}.globalScope .ui-ship-service{border:1px solid #ced5da;border-radius:4px;padding:10px;position:relative}.globalScope .ui-ship-service:not(:first-child){margin-top:7.5px}.globalScope .ui-ship-service--is-selectable{cursor:pointer}.globalScope .ui-ship-service--is-selectable:hover{border:1px solid #94a4ae}.globalScope .ui-ship-services-items-wrap{position:relative;overflow:hidden}.globalScope .ui-ship-services-items{height:250px}.globalScope .ui-ship-service--is-deleting{position:relative}.globalScope .ui-ship-service__buttons-deleting{top:0;left:0;right:0;bottom:0;z-index:1;position:absolute;background:rgba(255,255,255,.9);display:flex;justify-content:center;align-items:center;border-radius:4px;padding:10px}.globalScope .ui-ship-service__buttons-deleting-text{margin-bottom:8px}.globalScope .ui-ship-service--is-active{border:1px solid #60afa0;background-color:rgba(96,175,160,.15)}.globalScope header.ui-ship-service__header{display:flex;justify-content:space-between;height:15px;padding-right:60px;margin-bottom:12px}.globalScope .ui-shipping-service__checkbox{margin-right:5px;display:flex;border-right:1px solid #a8b5c1;padding-right:8px}.globalScope .ui-shipping-service__checkbox input{position:absolute;opacity:0;top:0;left:0;right:0;bottom:0}.globalScope .ui-shipping-service__checkbox-input label{margin-bottom:0;cursor:pointer}.globalScope .ui-ship-service__buttons{margin:0 -5px;position:absolute;right:10px;top:12px;display:flex}.globalScope .ui-ship-service__buttons .sh-btn-icon{background:rgba(0,0,0,0);border:0;font-size:15px;padding:0 5px;transition:all .3s;transform:scale(1)}.globalScope .ui-ship-service__buttons .sh-btn-icon:hover{transform:scale(1.2)}.globalScope .ui-ship-service__name{font-weight:bold;word-wrap:break-word;margin-bottom:8px}.globalScope .ui-ship-service__hr{border:0;border-bottom:1px dashed #ced5da;margin:10px 0}.globalScope .ui-ship-services__footer{text-align:center;padding-top:20px}.globalScope .ux-form--style-1 .ux-form-group{display:flex;flex-direction:column;margin-bottom:10px}.globalScope .ux-form--style-1 .ux-form-group--row{flex-direction:row;align-items:center}.globalScope .ux-form--style-1 .ux-multi-checkbox{margin-bottom:5px}.globalScope .ux-form--style-1 .ux-multi-checkbox .ux-form-group{margin-bottom:0}.globalScope .ux-form--style-1 .ux-checkbox{white-space:nowrap}.globalScope .ux-form--style-1 .ux-form-control{display:flex;align-items:center;justify-content:flex-end}.globalScope .ux-form--style-1 .ux-form-control .ux-form-control-icon{width:20px;text-align:right;padding-right:5px}.globalScope .ux-form--style-1 .ux-form-control .ux-form-control-input{width:calc(100% - 20px)}@media(max-width: 1024px){.globalScope#app-root{overflow-x:clip}}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  font-family: "Open Sans", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

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

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
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;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

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

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

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

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

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

progress {
  vertical-align: baseline;
}

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

::-webkit-inner-spin-button,
::-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.
*/

::-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 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
	html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
	body {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}
.s-pointer-events-none {
  pointer-events: none;
}
.s-invisible {
  visibility: hidden;
}
.s-fixed {
  position: fixed;
}
.s-absolute {
  position: absolute;
}
.s-relative {
  position: relative;
}
.s-sticky {
  position: sticky;
}
.s-inset-0 {
  inset: 0px;
}
.s-inset-y-0 {
  top: 0px;
  bottom: 0px;
}
.-s-left-2 {
  left: -0.5rem;
}
.-s-right-2 {
  right: -0.5rem;
}
.s-bottom-0 {
  bottom: 0px;
}
.s-bottom-1 {
  bottom: 0.25rem;
}
.s-bottom-2\.5 {
  bottom: 0.625rem;
}
.s-left-0 {
  left: 0px;
}
.s-left-\[50\%\] {
  left: 50%;
}
.s-right-0 {
  right: 0px;
}
.s-right-\[16px\] {
  right: 16px;
}
.s-right-\[22px\] {
  right: 22px;
}
.s-right-\[5px\] {
  right: 5px;
}
.s-top-0 {
  top: 0px;
}
.s-top-1\/2 {
  top: 50%;
}
.s-top-\[24px\] {
  top: 24px;
}
.s-top-\[50\%\] {
  top: 50%;
}
.s-top-\[5px\] {
  top: 5px;
}
.\!s-z-\[1500\] {
  z-index: 1500 !important;
}
.s-z-10 {
  z-index: 10;
}
.s-z-101 {
  z-index: 101;
}
.s-z-\[1500\] {
  z-index: 1500;
}
.s-z-\[2000\] {
  z-index: 2000;
}
.s-z-\[500\] {
  z-index: 500;
}
.s-z-\[900\] {
  z-index: 900;
}
.s-col-span-12 {
  grid-column: span 12 / span 12;
}
.s-m-0 {
  margin: 0px;
}
.s-m-auto {
  margin: auto;
}
.\!s-my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.-s-mx-2 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.s-mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.s-mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.s-mx-\[-5px\] {
  margin-left: -5px;
  margin-right: -5px;
}
.s-mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.s-my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.s-my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.s-my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.s-my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.s-my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.s-my-7 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}
.s-my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.s-my-\[24px\] {
  margin-top: 24px;
  margin-bottom: 24px;
}
.-s-ml-\[var\(--input-padding-x\)\] {
  margin-left: calc(var(--input-padding-x) * -1);
}
.-s-mr-2 {
  margin-right: -0.5rem;
}
.-s-mr-\[var\(--input-padding-x\)\] {
  margin-right: calc(var(--input-padding-x) * -1);
}
.-s-mt-3 {
  margin-top: -0.75rem;
}
.-s-mt-6 {
  margin-top: -1.5rem;
}
.s-mb-0\.5 {
  margin-bottom: 0.125rem;
}
.s-mb-1 {
  margin-bottom: 0.25rem;
}
.s-mb-2 {
  margin-bottom: 0.5rem;
}
.s-mb-2\.5 {
  margin-bottom: 0.625rem;
}
.s-mb-3 {
  margin-bottom: 0.75rem;
}
.s-mb-4 {
  margin-bottom: 1rem;
}
.s-mb-5 {
  margin-bottom: 1.25rem;
}
.s-mb-6 {
  margin-bottom: 1.5rem;
}
.s-mb-7 {
  margin-bottom: 1.75rem;
}
.s-mb-8 {
  margin-bottom: 2rem;
}
.s-mb-\[15px\] {
  margin-bottom: 15px;
}
.s-mb-\[4px\] {
  margin-bottom: 4px;
}
.s-me-1 {
  margin-inline-end: 0.25rem;
}
.s-me-2\.5 {
  margin-inline-end: 0.625rem;
}
.s-ml-0 {
  margin-left: 0px;
}
.s-ml-1 {
  margin-left: 0.25rem;
}
.s-ml-2 {
  margin-left: 0.5rem;
}
.s-ml-2\.5 {
  margin-left: 0.625rem;
}
.s-ml-4 {
  margin-left: 1rem;
}
.s-ml-6 {
  margin-left: 1.5rem;
}
.s-ml-\[-65px\] {
  margin-left: -65px;
}
.s-ml-auto {
  margin-left: auto;
}
.s-mr-0 {
  margin-right: 0px;
}
.s-mr-2 {
  margin-right: 0.5rem;
}
.s-mr-2\.5 {
  margin-right: 0.625rem;
}
.s-mr-3 {
  margin-right: 0.75rem;
}
.s-mr-4 {
  margin-right: 1rem;
}
.s-mr-6 {
  margin-right: 1.5rem;
}
.s-mr-auto {
  margin-right: auto;
}
.s-ms-1 {
  margin-inline-start: 0.25rem;
}
.s-ms-2 {
  margin-inline-start: 0.5rem;
}
.s-ms-2\.5 {
  margin-inline-start: 0.625rem;
}
.s-mt-1 {
  margin-top: 0.25rem;
}
.s-mt-2\.5 {
  margin-top: 0.625rem;
}
.s-mt-3 {
  margin-top: 0.75rem;
}
.s-mt-4 {
  margin-top: 1rem;
}
.s-mt-5 {
  margin-top: 1.25rem;
}
.s-mt-6 {
  margin-top: 1.5rem;
}
.s-mt-\[4px\] {
  margin-top: 4px;
}
.s-mt-auto {
  margin-top: auto;
}
.s-box-border {
  box-sizing: border-box;
}
.s-block {
  display: block;
}
.s-inline-block {
  display: inline-block;
}
.s-flex {
  display: flex;
}
.s-grid {
  display: grid;
}
.s-hidden {
  display: none;
}
.s-size-10 {
  width: 2.5rem;
  height: 2.5rem;
}
.s-size-14 {
  width: 3.5rem;
  height: 3.5rem;
}
.s-size-2 {
  width: 0.5rem;
  height: 0.5rem;
}
.s-size-2\.5 {
  width: 0.625rem;
  height: 0.625rem;
}
.s-size-3 {
  width: 0.75rem;
  height: 0.75rem;
}
.s-size-3\.5 {
  width: 0.875rem;
  height: 0.875rem;
}
.s-size-4 {
  width: 1rem;
  height: 1rem;
}
.s-size-5 {
  width: 1.25rem;
  height: 1.25rem;
}
.s-size-6 {
  width: 1.5rem;
  height: 1.5rem;
}
.s-size-8 {
  width: 2rem;
  height: 2rem;
}
.s-size-\[1\.875rem\] {
  width: 1.875rem;
  height: 1.875rem;
}
.s-size-\[1em\] {
  width: 1em;
  height: 1em;
}
.s-size-\[20px\] {
  width: 20px;
  height: 20px;
}
.s-size-\[30px\] {
  width: 30px;
  height: 30px;
}
.s-size-\[40px\] {
  width: 40px;
  height: 40px;
}
.s-size-auto {
  width: auto;
  height: auto;
}
.s-size-min {
  width: min-content;
  height: min-content;
}
.s-h-1 {
  height: 0.25rem;
}
.s-h-10 {
  height: 2.5rem;
}
.s-h-14 {
  height: 3.5rem;
}
.s-h-2 {
  height: 0.5rem;
}
.s-h-20 {
  height: 5rem;
}
.s-h-3 {
  height: 0.75rem;
}
.s-h-3\/5 {
  height: 60%;
}
.s-h-4 {
  height: 1rem;
}
.s-h-8 {
  height: 2rem;
}
.s-h-96 {
  height: 24rem;
}
.s-h-\[1024px\] {
  height: 1024px;
}
.s-h-\[12px\] {
  height: 12px;
}
.s-h-\[16px\] {
  height: 16px;
}
.s-h-\[2\.375rem\] {
  height: 2.375rem;
}
.s-h-\[20px\] {
  height: 20px;
}
.s-h-\[22px\] {
  height: 22px;
}
.s-h-\[24px\] {
  height: 24px;
}
.s-h-\[30px\] {
  height: 30px;
}
.s-h-\[38px\] {
  height: 38px;
}
.s-h-\[400px\] {
  height: 400px;
}
.s-h-\[44px\] {
  height: 44px;
}
.s-h-\[60px\] {
  height: 60px;
}
.s-h-\[80\%\] {
  height: 80%;
}
.s-h-\[88px\] {
  height: 88px;
}
.s-h-auto {
  height: auto;
}
.s-h-dvh {
  height: 100dvh;
}
.s-h-full {
  height: 100%;
}
.s-h-min {
  height: min-content;
}
.s-h-px {
  height: 1px;
}
.s-max-h-\[14px\] {
  max-height: 14px;
}
.s-max-h-\[280px\] {
  max-height: 280px;
}
.s-max-h-dvh {
  max-height: 100dvh;
}
.s-max-h-full {
  max-height: 100%;
}
.s-min-h-16 {
  min-height: 4rem;
}
.s-min-h-4 {
  min-height: 1rem;
}
.s-min-h-6 {
  min-height: 1.5rem;
}
.s-min-h-\[14px\] {
  min-height: 14px;
}
.s-min-h-\[4rem\] {
  min-height: 4rem;
}
.s-w-10 {
  width: 2.5rem;
}
.s-w-14 {
  width: 3.5rem;
}
.s-w-3 {
  width: 0.75rem;
}
.s-w-32 {
  width: 8rem;
}
.s-w-4 {
  width: 1rem;
}
.s-w-6 {
  width: 1.5rem;
}
.s-w-8 {
  width: 2rem;
}
.s-w-9 {
  width: 2.25rem;
}
.s-w-\[12px\] {
  width: 12px;
}
.s-w-\[1920px\] {
  width: 1920px;
}
.s-w-\[200px\] {
  width: 200px;
}
.s-w-\[225px\] {
  width: 225px;
}
.s-w-\[24px\] {
  width: 24px;
}
.s-w-\[284px\] {
  width: 284px;
}
.s-w-\[28px\] {
  width: 28px;
}
.s-w-\[320px\] {
  width: 320px;
}
.s-w-\[33px\] {
  width: 33px;
}
.s-w-\[365px\] {
  width: 365px;
}
.s-w-\[400px\] {
  width: 400px;
}
.s-w-\[480px\] {
  width: 480px;
}
.s-w-\[48px\] {
  width: 48px;
}
.s-w-\[640px\] {
  width: 640px;
}
.s-w-\[80\%\] {
  width: 80%;
}
.s-w-\[88px\] {
  width: 88px;
}
.s-w-\[960px\] {
  width: 960px;
}
.s-w-\[var\(--input-width\)\] {
  width: var(--input-width);
}
.s-w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.s-w-full {
  width: 100%;
}
.s-w-px {
  width: 1px;
}
.s-min-w-80 {
  min-width: 20rem;
}
.s-min-w-\[120px\] {
  min-width: 120px;
}
.s-min-w-\[14px\] {
  min-width: 14px;
}
.s-min-w-\[24px\] {
  min-width: 24px;
}
.s-min-w-\[50px\] {
  min-width: 50px;
}
.s-min-w-\[80px\] {
  min-width: 80px;
}
.s-min-w-fit {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.s-max-w-80 {
  max-width: 20rem;
}
.s-max-w-\[14px\] {
  max-width: 14px;
}
.s-max-w-\[200px\] {
  max-width: 200px;
}
.s-max-w-\[365px\] {
  max-width: 365px;
}
.s-max-w-\[70\%\] {
  max-width: 70%;
}
.s-max-w-full {
  max-width: 100%;
}
.s-max-w-none {
  max-width: none;
}
.s-flex-1 {
  flex: 1 1 0%;
}
.s-flex-shrink-0 {
  flex-shrink: 0;
}
.s-shrink-0 {
  flex-shrink: 0;
}
.s-flex-grow {
  flex-grow: 1;
}
.s-flex-grow-0 {
  flex-grow: 0;
}
.s-grow {
  flex-grow: 1;
}
.s-grow-0 {
  flex-grow: 0;
}
.s-basis-1\/2 {
  flex-basis: 50%;
}
.s-basis-auto {
  flex-basis: auto;
}
.s-basis-full {
  flex-basis: 100%;
}
.s-origin-\[1px\] {
  transform-origin: 1px;
}
.s-origin-\[23px\] {
  transform-origin: 23px;
}
.-s-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-s-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-s-translate-y-\[50\%\] {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.s-translate-x-1\/4 {
  --tw-translate-x: 25%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-s-rotate-90 {
  --tw-rotate: -90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes s-pulse {

  50% {
    opacity: .5;
  }
}
.s-animate-pulse {
  animation: s-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes s-spin {

  to {
    transform: rotate(360deg);
  }
}
.s-animate-spin {
  animation: s-spin 1s linear infinite;
}
.s-cursor-auto {
  cursor: auto;
}
.s-cursor-not-allowed {
  cursor: not-allowed;
}
.s-cursor-pointer {
  cursor: pointer;
}
.s-select-none {
  -webkit-user-select: none;
          user-select: none;
}
.s-list-disc {
  list-style-type: disc;
}
.s-appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.s-grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.s-grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.s-grid-cols-\[1fr_1px_1fr_1px_1fr\] {
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
}
.s-flex-row {
  flex-direction: row;
}
.s-flex-col {
  flex-direction: column;
}
.s-flex-wrap {
  flex-wrap: wrap;
}
.s-items-start {
  align-items: flex-start;
}
.s-items-end {
  align-items: flex-end;
}
.s-items-center {
  align-items: center;
}
.s-justify-start {
  justify-content: flex-start;
}
.s-justify-center {
  justify-content: center;
}
.s-justify-between {
  justify-content: space-between;
}
.s-justify-around {
  justify-content: space-around;
}
.s-gap-0\.5 {
  gap: 0.125rem;
}
.s-gap-1 {
  gap: 0.25rem;
}
.s-gap-2 {
  gap: 0.5rem;
}
.s-gap-2\.5 {
  gap: 0.625rem;
}
.s-gap-3 {
  gap: 0.75rem;
}
.s-gap-4 {
  gap: 1rem;
}
.s-gap-6 {
  gap: 1.5rem;
}
.s-gap-\[4px\] {
  gap: 4px;
}
.s-gap-x-4 {
  column-gap: 1rem;
}
.s-space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.s-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.625rem * var(--tw-space-x-reverse));
  margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse)));
}
.s-space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.s-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.125rem * var(--tw-space-y-reverse));
}
.s-self-start {
  align-self: flex-start;
}
.s-self-center {
  align-self: center;
}
.s-overflow-auto {
  overflow: auto;
}
.s-overflow-hidden {
  overflow: hidden;
}
.s-overflow-y-auto {
  overflow-y: auto;
}
.s-overscroll-contain {
  overscroll-behavior: contain;
}
.s-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.s-overflow-ellipsis {
  text-overflow: ellipsis;
}
.s-text-ellipsis {
  text-overflow: ellipsis;
}
.s-whitespace-nowrap {
  white-space: nowrap;
}
.s-whitespace-pre {
  white-space: pre;
}
.s-rounded {
  border-radius: 0.25rem;
}
.s-rounded-\[10px\] {
  border-radius: 10px;
}
.s-rounded-\[15px\] {
  border-radius: 15px;
}
.s-rounded-\[16px\] {
  border-radius: 16px;
}
.s-rounded-\[20px\] {
  border-radius: 20px;
}
.s-rounded-\[2px\] {
  border-radius: 2px;
}
.s-rounded-\[4px\] {
  border-radius: 4px;
}
.s-rounded-\[6px\] {
  border-radius: 6px;
}
.s-rounded-full {
  border-radius: 9999px;
}
.s-rounded-lg {
  border-radius: 0.5rem;
}
.s-rounded-md {
  border-radius: 0.375rem;
}
.s-rounded-none {
  border-radius: 0px;
}
.s-rounded-sm {
  border-radius: 0.125rem;
}
.s-rounded-l-\[\.3125rem\] {
  border-top-left-radius: .3125rem;
  border-bottom-left-radius: .3125rem;
}
.s-rounded-l-lg {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.s-border {
  border-width: 1px;
}
.s-border-0 {
  border-width: 0px;
}
.s-border-2 {
  border-width: 2px;
}
.s-border-\[1px\] {
  border-width: 1px;
}
.s-border-\[3px\] {
  border-width: 3px;
}
.s-border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.s-border-b {
  border-bottom-width: 1px;
}
.s-border-b-0 {
  border-bottom-width: 0px;
}
.s-border-l {
  border-left-width: 1px;
}
.s-border-r {
  border-right-width: 1px;
}
.s-border-t {
  border-top-width: 1px;
}
.s-border-t-2 {
  border-top-width: 2px;
}
.s-border-solid {
  border-style: solid;
}
.s-border-dashed {
  border-style: dashed;
}
.s-border-none {
  border-style: none;
}
.s-border-\[\#151F2B\] {
  --tw-border-opacity: 1;
  border-color: rgb(21 31 43 / var(--tw-border-opacity, 1));
}
.s-border-\[\#5FAE9F\] {
  --tw-border-opacity: 1;
  border-color: rgb(95 174 159 / var(--tw-border-opacity, 1));
}
.s-border-\[\#5cb0a1\] {
  --tw-border-opacity: 1;
  border-color: rgb(92 176 161 / var(--tw-border-opacity, 1));
}
.s-border-\[\#60afa0\] {
  --tw-border-opacity: 1;
  border-color: rgb(96 175 160 / var(--tw-border-opacity, 1));
}
.s-border-\[\#73879c\] {
  --tw-border-opacity: 1;
  border-color: rgb(115 135 156 / var(--tw-border-opacity, 1));
}
.s-border-\[\#ABB7C4\] {
  --tw-border-opacity: 1;
  border-color: rgb(171 183 196 / var(--tw-border-opacity, 1));
}
.s-border-\[\#E6E9ED\] {
  --tw-border-opacity: 1;
  border-color: rgb(230 233 237 / var(--tw-border-opacity, 1));
}
.s-border-\[\#dfe1e5\] {
  --tw-border-opacity: 1;
  border-color: rgb(223 225 229 / var(--tw-border-opacity, 1));
}
.s-border-\[\#edeff2\] {
  --tw-border-opacity: 1;
  border-color: rgb(237 239 242 / var(--tw-border-opacity, 1));
}
.s-border-\[\#ff6565\] {
  --tw-border-opacity: 1;
  border-color: rgb(255 101 101 / var(--tw-border-opacity, 1));
}
.s-border-\[var\(--border-color\)\] {
  border-color: var(--border-color);
}
.s-border-\[var\(--main-color\)\] {
  border-color: var(--main-color);
}
.s-border-gray-light {
  --tw-border-opacity: 1;
  border-color: rgb(223 225 229 / var(--tw-border-opacity, 1));
}
.s-border-gray-main {
  --tw-border-opacity: 1;
  border-color: rgb(171 183 196 / var(--tw-border-opacity, 1));
}
.s-border-green-500 {
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}
.s-border-red-700 {
  --tw-border-opacity: 1;
  border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}
.s-border-red-main {
  --tw-border-opacity: 1;
  border-color: rgb(255 101 101 / var(--tw-border-opacity, 1));
}
.s-border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.s-border-white-dark {
  --tw-border-opacity: 1;
  border-color: rgb(230 233 237 / var(--tw-border-opacity, 1));
}
.s-border-yellow-700 {
  --tw-border-opacity: 1;
  border-color: rgb(161 98 7 / var(--tw-border-opacity, 1));
}
.s-border-b-\[\#ebeef0\] {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(235 238 240 / var(--tw-border-opacity, 1));
}
.s-border-b-gray-dark {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(115 135 156 / var(--tw-border-opacity, 1));
}
.s-border-l-white-dark {
  --tw-border-opacity: 1;
  border-left-color: rgb(230 233 237 / var(--tw-border-opacity, 1));
}
.s-border-t-\[\#61BE61\] {
  --tw-border-opacity: 1;
  border-top-color: rgb(97 190 97 / var(--tw-border-opacity, 1));
}
.s-border-t-\[\#9F833C\] {
  --tw-border-opacity: 1;
  border-top-color: rgb(159 131 60 / var(--tw-border-opacity, 1));
}
.s-border-t-\[\#C73E3B\] {
  --tw-border-opacity: 1;
  border-top-color: rgb(199 62 59 / var(--tw-border-opacity, 1));
}
.s-bg-\[\#151F2B\] {
  --tw-bg-opacity: 1;
  background-color: rgb(21 31 43 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#212F40\] {
  --tw-bg-opacity: 1;
  background-color: rgb(33 47 64 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#212f40D9\] {
  background-color: #212f40D9;
}
.s-bg-\[\#29ABE2\] {
  --tw-bg-opacity: 1;
  background-color: rgb(41 171 226 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#3ad98a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(58 217 138 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#46A1471A\] {
  background-color: #46A1471A;
}
.s-bg-\[\#46A147\] {
  --tw-bg-opacity: 1;
  background-color: rgb(70 161 71 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#46A147\]\/10 {
  background-color: rgb(70 161 71 / 0.1);
}
.s-bg-\[\#4A5867\] {
  --tw-bg-opacity: 1;
  background-color: rgb(74 88 103 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#4c555b\]\/30 {
  background-color: rgb(76 85 91 / 0.3);
}
.s-bg-\[\#5FAE9F4D\] {
  background-color: #5FAE9F4D;
}
.s-bg-\[\#73879c\] {
  --tw-bg-opacity: 1;
  background-color: rgb(115 135 156 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#9747FF\]\/\[\.1\] {
  background-color: rgb(151 71 255 / .1);
}
.s-bg-\[\#ABB7C4\] {
  --tw-bg-opacity: 1;
  background-color: rgb(171 183 196 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#E4BC56\] {
  --tw-bg-opacity: 1;
  background-color: rgb(228 188 86 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#F0C65B\] {
  --tw-bg-opacity: 1;
  background-color: rgb(240 198 91 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#F5F5F5\] {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#FF6565\]\/10 {
  background-color: rgb(255 101 101 / 0.1);
}
.s-bg-\[\#dfe1e5\] {
  --tw-bg-opacity: 1;
  background-color: rgb(223 225 229 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#ef5b33\] {
  --tw-bg-opacity: 1;
  background-color: rgb(239 91 51 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#ff6565\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 101 101 / var(--tw-bg-opacity, 1));
}
.s-bg-\[rgb\(115\,135\,156\,0\.12\)\] {
  background-color: rgb(115,135,156,0.12);
}
.s-bg-\[rgba\(95\,174\,159\,0\.1\)\] {
  background-color: rgba(95,174,159,0.1);
}
.s-bg-\[var\(--bg-color\)\] {
  background-color: var(--bg-color);
}
.s-bg-\[var\(--main-color\)\] {
  background-color: var(--main-color);
}
.s-bg-black-light {
  --tw-bg-opacity: 1;
  background-color: rgb(74 88 103 / var(--tw-bg-opacity, 1));
}
.s-bg-black-main {
  --tw-bg-opacity: 1;
  background-color: rgb(33 47 64 / var(--tw-bg-opacity, 1));
}
.s-bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.s-bg-orange-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
}
.s-bg-red-main {
  --tw-bg-opacity: 1;
  background-color: rgb(255 101 101 / var(--tw-bg-opacity, 1));
}
.s-bg-transparent {
  background-color: transparent;
}
.s-bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.s-bg-white-dark {
  --tw-bg-opacity: 1;
  background-color: rgb(230 233 237 / var(--tw-bg-opacity, 1));
}
.s-bg-\[linear-gradient\(to_bottom\,_\#ABB7C4_50\%\,_rgba\(255\,255\,255\,0\)_0\%\)\] {
  background-image: linear-gradient(to bottom, #ABB7C4 50%, rgba(255,255,255,0) 0%);
}
.s-bg-\[linear-gradient\(to_right\,_\#ABB7C4_50\%\,_rgba\(255\,255\,255\,0\)_0\%\)\] {
  background-image: linear-gradient(to right, #ABB7C4 50%, rgba(255,255,255,0) 0%);
}
.s-bg-gradient-135deg {
  background-image: linear-gradient(135deg, var(--tw-gradient-stops));
}
.s-bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.s-from-\[\#4792b3\] {
  --tw-gradient-from: #4792b3 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(71 146 179 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.s-from-\[var\(--shipmonk-phrases-loading-background\,\#f5f5f5\)\] {
  --tw-gradient-from: var(--shipmonk-phrases-loading-background,#f5f5f5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.s-via-\[\#40b69e\] {
  --tw-gradient-to: rgb(64 182 158 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #40b69e var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.s-via-transparent {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.s-via-50\% {
  --tw-gradient-via-position: 50%;
}
.s-via-65\% {
  --tw-gradient-via-position: 65%;
}
.s-to-\[\#3ad98a\] {
  --tw-gradient-to: #3ad98a var(--tw-gradient-to-position);
}
.s-to-\[var\(--shipmonk-phrases-loading-background\,\#f5f5f5\)\] {
  --tw-gradient-to: var(--shipmonk-phrases-loading-background,#f5f5f5) var(--tw-gradient-to-position);
}
.s-bg-\[0_0\] {
  background-position: 0 0;
}
.s-bg-repeat-x {
  background-repeat: repeat-x;
}
.s-bg-repeat-y {
  background-repeat: repeat-y;
}
.s-fill-black-light {
  fill: #4a5867;
}
.s-fill-gray-dark {
  fill: #73879c;
}
.s-fill-gray-dark\/30 {
  fill: rgb(115 135 156 / 0.3);
}
.s-fill-gray-light {
  fill: #dfe1e5;
}
.s-fill-red-main {
  fill: #ff6565;
}
.s-fill-smGreen-main {
  fill: #5fae9f;
}
.s-fill-white {
  fill: #fff;
}
.s-stroke-current {
  stroke: currentColor;
}
.s-p-0 {
  padding: 0px;
}
.s-p-1 {
  padding: 0.25rem;
}
.s-p-2 {
  padding: 0.5rem;
}
.s-p-2\.5 {
  padding: 0.625rem;
}
.s-p-4 {
  padding: 1rem;
}
.s-p-5 {
  padding: 1.25rem;
}
.s-p-\[10px\] {
  padding: 10px;
}
.s-p-\[13px\] {
  padding: 13px;
}
.s-p-\[16px\] {
  padding: 16px;
}
.s-p-\[9px\] {
  padding: 9px;
}
.s-px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.s-px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.s-px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.s-px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.s-px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.s-px-3\.5 {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}
.s-px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.s-px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.s-px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.s-px-\[10px\] {
  padding-left: 10px;
  padding-right: 10px;
}
.s-px-\[12px\] {
  padding-left: 12px;
  padding-right: 12px;
}
.s-px-\[4px\] {
  padding-left: 4px;
  padding-right: 4px;
}
.s-px-\[5px\] {
  padding-left: 5px;
  padding-right: 5px;
}
.s-px-\[var\(--input-padding-x\)\] {
  padding-left: var(--input-padding-x);
  padding-right: var(--input-padding-x);
}
.s-py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.s-py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.s-py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.s-py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.s-py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.s-py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.s-py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.s-py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.s-py-40 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.s-py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.s-py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.s-py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.s-py-\[1px\] {
  padding-top: 1px;
  padding-bottom: 1px;
}
.s-py-\[3px\] {
  padding-top: 3px;
  padding-bottom: 3px;
}
.s-py-\[6px\] {
  padding-top: 6px;
  padding-bottom: 6px;
}
.\!s-pr-0 {
  padding-right: 0px !important;
}
.s-pb-12 {
  padding-bottom: 3rem;
}
.s-pb-2 {
  padding-bottom: 0.5rem;
}
.s-pb-2\.5 {
  padding-bottom: 0.625rem;
}
.s-pb-6 {
  padding-bottom: 1.5rem;
}
.s-pb-8 {
  padding-bottom: 2rem;
}
.s-pb-\[24px\] {
  padding-bottom: 24px;
}
.s-pe-3 {
  padding-inline-end: 0.75rem;
}
.s-pl-0 {
  padding-left: 0px;
}
.s-pl-5 {
  padding-left: 1.25rem;
}
.s-pl-\[10px\] {
  padding-left: 10px;
}
.s-pl-\[34px\] {
  padding-left: 34px;
}
.s-pr-0 {
  padding-right: 0px;
}
.s-pr-1 {
  padding-right: 0.25rem;
}
.s-pt-4 {
  padding-top: 1rem;
}
.s-pt-5 {
  padding-top: 1.25rem;
}
.s-pt-6 {
  padding-top: 1.5rem;
}
.s-pt-8 {
  padding-top: 2rem;
}
.s-text-left {
  text-align: left;
}
.s-text-center {
  text-align: center;
}
.s-text-start {
  text-align: start;
}
.s-align-middle {
  vertical-align: middle;
}
.s-text-\[\.675rem\]\/loose {
  font-size: .675rem;
  line-height: 2;
}
.s-text-\[\.8125rem\]\/\[1\.375rem\] {
  font-size: .8125rem;
  line-height: 1.375rem;
}
.s-text-\[11px\] {
  font-size: 11px;
}
.s-text-\[11px\]\/\[14px\] {
  font-size: 11px;
  line-height: 14px;
}
.s-text-\[11px\]\/\[16px\] {
  font-size: 11px;
  line-height: 16px;
}
.s-text-\[12px\] {
  font-size: 12px;
}
.s-text-\[13px\] {
  font-size: 13px;
}
.s-text-\[13px\]\/\[22px\] {
  font-size: 13px;
  line-height: 22px;
}
.s-text-\[13px\]\/\[24px\] {
  font-size: 13px;
  line-height: 24px;
}
.s-text-\[16px\] {
  font-size: 16px;
}
.s-text-\[16px\]\/\[24px\] {
  font-size: 16px;
  line-height: 24px;
}
.s-text-\[20px\] {
  font-size: 20px;
}
.s-text-\[24px\] {
  font-size: 24px;
}
.s-text-\[40px\] {
  font-size: 40px;
}
.s-text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.s-text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.s-text-xs\/4 {
  font-size: 0.75rem;
  line-height: 1rem;
}
.s-text-xs\/relaxed {
  font-size: 0.75rem;
  line-height: 1.625;
}
.s-font-bold {
  font-weight: 700;
}
.s-font-medium {
  font-weight: 500;
}
.s-font-normal {
  font-weight: 400;
}
.s-uppercase {
  text-transform: uppercase;
}
.s-italic {
  font-style: italic;
}
.s-leading-5 {
  line-height: 1.25rem;
}
.s-leading-6 {
  line-height: 1.5rem;
}
.s-leading-7 {
  line-height: 1.75rem;
}
.s-leading-9 {
  line-height: 2.25rem;
}
.s-leading-\[14px\] {
  line-height: 14px;
}
.s-leading-\[16px\] {
  line-height: 16px;
}
.s-leading-\[22px\] {
  line-height: 22px;
}
.s-text-\[\#083808\] {
  --tw-text-opacity: 1;
  color: rgb(8 56 8 / var(--tw-text-opacity, 1));
}
.s-text-\[\#1F2A32\] {
  --tw-text-opacity: 1;
  color: rgb(31 42 50 / var(--tw-text-opacity, 1));
}
.s-text-\[\#212F40\] {
  --tw-text-opacity: 1;
  color: rgb(33 47 64 / var(--tw-text-opacity, 1));
}
.s-text-\[\#46A147\] {
  --tw-text-opacity: 1;
  color: rgb(70 161 71 / var(--tw-text-opacity, 1));
}
.s-text-\[\#60afa0\] {
  --tw-text-opacity: 1;
  color: rgb(96 175 160 / var(--tw-text-opacity, 1));
}
.s-text-\[\#61BE61\] {
  --tw-text-opacity: 1;
  color: rgb(97 190 97 / var(--tw-text-opacity, 1));
}
.s-text-\[\#666666\] {
  --tw-text-opacity: 1;
  color: rgb(102 102 102 / var(--tw-text-opacity, 1));
}
.s-text-\[\#73879C61\] {
  color: #73879C61;
}
.s-text-\[\#73879C\] {
  --tw-text-opacity: 1;
  color: rgb(115 135 156 / var(--tw-text-opacity, 1));
}
.s-text-\[\#9747FF\] {
  --tw-text-opacity: 1;
  color: rgb(151 71 255 / var(--tw-text-opacity, 1));
}
.s-text-\[\#9F833C\] {
  --tw-text-opacity: 1;
  color: rgb(159 131 60 / var(--tw-text-opacity, 1));
}
.s-text-\[\#C73E3B\] {
  --tw-text-opacity: 1;
  color: rgb(199 62 59 / var(--tw-text-opacity, 1));
}
.s-text-\[\#DFE1E5\] {
  --tw-text-opacity: 1;
  color: rgb(223 225 229 / var(--tw-text-opacity, 1));
}
.s-text-\[\#F05A28\] {
  --tw-text-opacity: 1;
  color: rgb(240 90 40 / var(--tw-text-opacity, 1));
}
.s-text-\[\#FF6565\] {
  --tw-text-opacity: 1;
  color: rgb(255 101 101 / var(--tw-text-opacity, 1));
}
.s-text-\[color\:var\(--main-color\)\] {
  color: var(--main-color);
}
.s-text-\[var\(--text-color\)\] {
  color: var(--text-color);
}
.s-text-\[white\] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.s-text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.s-text-black-light {
  --tw-text-opacity: 1;
  color: rgb(74 88 103 / var(--tw-text-opacity, 1));
}
.s-text-black-main {
  --tw-text-opacity: 1;
  color: rgb(33 47 64 / var(--tw-text-opacity, 1));
}
.s-text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}
.s-text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.s-text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.s-text-gray-dark {
  --tw-text-opacity: 1;
  color: rgb(115 135 156 / var(--tw-text-opacity, 1));
}
.s-text-gray-light {
  --tw-text-opacity: 1;
  color: rgb(223 225 229 / var(--tw-text-opacity, 1));
}
.s-text-gray-main {
  --tw-text-opacity: 1;
  color: rgb(171 183 196 / var(--tw-text-opacity, 1));
}
.s-text-green-main {
  --tw-text-opacity: 1;
  color: rgb(70 161 71 / var(--tw-text-opacity, 1));
}
.s-text-inherit {
  color: inherit;
}
.s-text-red-main {
  --tw-text-opacity: 1;
  color: rgb(255 101 101 / var(--tw-text-opacity, 1));
}
.s-text-smGreen-main {
  --tw-text-opacity: 1;
  color: rgb(95 174 159 / var(--tw-text-opacity, 1));
}
.s-text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.s-text-white-dark {
  --tw-text-opacity: 1;
  color: rgb(230 233 237 / var(--tw-text-opacity, 1));
}
.s-text-white-main {
  --tw-text-opacity: 1;
  color: rgb(245 245 245 / var(--tw-text-opacity, 1));
}
.s-text-yellow-main {
  --tw-text-opacity: 1;
  color: rgb(228 188 86 / var(--tw-text-opacity, 1));
}
.s-underline {
  text-decoration-line: underline;
}
.s-placeholder-transparent::placeholder {
  color: transparent;
}
.s-opacity-0 {
  opacity: 0;
}
.s-opacity-100 {
  opacity: 1;
}
.s-opacity-20 {
  opacity: 0.2;
}
.s-opacity-30 {
  opacity: 0.3;
}
.s-opacity-50 {
  opacity: 0.5;
}
.s-shadow-\[0_10px_10px_rgba\(0\,0\,0\,0\.1\)\] {
  --tw-shadow: 0 10px 10px rgba(0,0,0,0.1);
  --tw-shadow-colored: 0 10px 10px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.s-shadow-\[0_2px_2px_rgba\(0\,0\,0\,0\.1\)\] {
  --tw-shadow: 0 2px 2px rgba(0,0,0,0.1);
  --tw-shadow-colored: 0 2px 2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.s-shadow-\[0_4px_8px_0_rgba\(0\,0\,0\,\.05\)\] {
  --tw-shadow: 0 4px 8px 0 rgba(0,0,0,.05);
  --tw-shadow-colored: 0 4px 8px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.s-shadow-\[0px_4px_8px_0px_rgba\(0\,0\,0\,0\.05\)\] {
  --tw-shadow: 0px 4px 8px 0px rgba(0,0,0,0.05);
  --tw-shadow-colored: 0px 4px 8px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.s-shadow-\[1px_2px_3px_rgba\(0\,0\,0\,0\.15\)\] {
  --tw-shadow: 1px 2px 3px rgba(0,0,0,0.15);
  --tw-shadow-colored: 1px 2px 3px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.s-shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.s-outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.s-outline {
  outline-style: solid;
}
.s-outline-1 {
  outline-width: 1px;
}
.-s-outline-offset-\[2\.1px\] {
  outline-offset: -2.1px;
}
.s-outline-offset-2 {
  outline-offset: 2px;
}
.s-outline-\[black\] {
  outline-color: black;
}
.s-outline-\[blue\] {
  outline-color: blue;
}
.s-outline-\[green\] {
  outline-color: green;
}
.s-outline-\[transparent\] {
  outline-color: transparent;
}
.s-ring-0 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.s-ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.s-ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.s-ring-inset {
  --tw-ring-inset: inset;
}
.s-ring-\[blue\] {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 0 255 / var(--tw-ring-opacity, 1));
}
.s-ring-\[color\:var\(--main-color\)\] {
  --tw-ring-color: var(--main-color);
}
.s-ring-offset-2 {
  --tw-ring-offset-width: 2px;
}
.s-ring-offset-\[2px\] {
  --tw-ring-offset-width: 2px;
}
.s-transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-transition-\[height\] {
  transition-property: height;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-transition-\[padding-left\] {
  transition-property: padding-left;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-transition-\[top\] {
  transition-property: top;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-duration-100 {
  transition-duration: 100ms;
}
.s-duration-1000 {
  transition-duration: 1000ms;
}
.s-duration-200 {
  transition-duration: 200ms;
}
.s-duration-500 {
  transition-duration: 500ms;
}
.s-ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.s-ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.s-ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.\[--anchor-max-height\:280px\] {
  --anchor-max-height: 280px;
}
.\[--bg-active\:\#0000001F\] {
  --bg-active: #0000001F;
}
.\[--bg-active\:\#29ABE24D\] {
  --bg-active: #29ABE24D;
}
.\[--bg-active\:\#46A1474D\] {
  --bg-active: #46A1474D;
}
.\[--bg-active\:\#5FAE9F26\] {
  --bg-active: #5FAE9F26;
}
.\[--bg-active\:\#5FAE9F4D\] {
  --bg-active: #5FAE9F4D;
}
.\[--bg-active\:\#73879C26\] {
  --bg-active: #73879C26;
}
.\[--bg-active\:\#E4BC564D\] {
  --bg-active: #E4BC564D;
}
.\[--bg-active\:\#FF65654D\] {
  --bg-active: #FF65654D;
}
.\[--bg-active\:\#FFFFFF1F\] {
  --bg-active: #FFFFFF1F;
}
.\[--bg-color\:none\] {
  --bg-color: none;
}
.\[--bg-hover\:\#0000000A\] {
  --bg-hover: #0000000A;
}
.\[--bg-hover\:\#29ABE226\] {
  --bg-hover: #29ABE226;
}
.\[--bg-hover\:\#46A14726\] {
  --bg-hover: #46A14726;
}
.\[--bg-hover\:\#5FAE9F26\] {
  --bg-hover: #5FAE9F26;
}
.\[--bg-hover\:\#5FAE9F4D\] {
  --bg-hover: #5FAE9F4D;
}
.\[--bg-hover\:\#73879C14\] {
  --bg-hover: #73879C14;
}
.\[--bg-hover\:\#E4BC5626\] {
  --bg-hover: #E4BC5626;
}
.\[--bg-hover\:\#FF656526\] {
  --bg-hover: #FF656526;
}
.\[--bg-hover\:\#FFFFFF0A\] {
  --bg-hover: #FFFFFF0A;
}
.\[--border-color\:\#73879C\] {
  --border-color: #73879C;
}
.\[--border-color\:\#FF6565\] {
  --border-color: #FF6565;
}
.\[--color-top-border\:\#46A147\] {
  --color-top-border: #46A147;
}
.\[--color-top-border\:\#E4BC56\] {
  --color-top-border: #E4BC56;
}
.\[--color-top-border\:\#FF6565\] {
  --color-top-border: #FF6565;
}
.\[--input-padding-x\:10px\] {
  --input-padding-x: 10px;
}
.\[--light-color\:\#49bea7\] {
  --light-color: #49bea7;
}
.\[--light-color\:\#61be61\] {
  --light-color: #61be61;
}
.\[--light-color\:\#73879c\] {
  --light-color: #73879c;
}
.\[--light-color\:\#f0c65b\] {
  --light-color: #f0c65b;
}
.\[--light-color\:\#ff7777\] {
  --light-color: #ff7777;
}
.\[--main-color\:\#46a147\] {
  --main-color: #46a147;
}
.\[--main-color\:\#4a5867\] {
  --main-color: #4a5867;
}
.\[--main-color\:\#5fae9f\] {
  --main-color: #5fae9f;
}
.\[--main-color\:\#e4bc56\] {
  --main-color: #e4bc56;
}
.\[--main-color\:\#ff6565\] {
  --main-color: #ff6565;
}
.\[--text-color\:\#29ABE2\] {
  --text-color: #29ABE2;
}
.\[--text-color\:\#46A147\] {
  --text-color: #46A147;
}
.\[--text-color\:\#5FAE9F\] {
  --text-color: #5FAE9F;
}
.\[--text-color\:\#73879C\] {
  --text-color: #73879C;
}
.\[--text-color\:\#ABB7C4\] {
  --text-color: #ABB7C4;
}
.\[--text-color\:\#E4BC56\] {
  --text-color: #E4BC56;
}
.\[--text-color\:\#FF6565\] {
  --text-color: #FF6565;
}
.\[--text-color\:inherit\] {
  --text-color: inherit;
}
.\[--text-hover\:\#0071BC\] {
  --text-hover: #0071BC;
}
.\[--text-hover\:\#212F40\] {
  --text-hover: #212F40;
}
.\[--text-hover\:\#2B812C\] {
  --text-hover: #2B812C;
}
.\[--text-hover\:\#4A5867\] {
  --text-hover: #4A5867;
}
.\[--text-hover\:\#5FAE8F\] {
  --text-hover: #5FAE8F;
}
.\[--text-hover\:\#73879C\] {
  --text-hover: #73879C;
}
.\[--text-hover\:\#9F833C\] {
  --text-hover: #9F833C;
}
.\[--text-hover\:\#C73E3B\] {
  --text-hover: #C73E3B;
}
.\[--text-hover\:inherit\] {
  --text-hover: inherit;
}
.\[-moz-appearance\:_textfield\] {
  -moz-appearance: textfield;
}
.\[background-size\:1px_8px\] {
  background-size: 1px 8px;
}
.\[background-size\:8px_1px\] {
  background-size: 8px 1px;
}
.\[box-shadow\:0px_4px_8px_0px_\#0000000D\] {
  box-shadow: 0px 4px 8px 0px #0000000D;
}
.\[transform\:rotateZ\(-45deg\)\] {
  transform: rotateZ(-45deg);
}
.\[transform\:rotateZ\(45deg\)\] {
  transform: rotateZ(45deg);
}
.before\:s-absolute::before {
  content: var(--tw-content);
  position: absolute;
}
.before\:-s-left-4::before {
  content: var(--tw-content);
  left: -1rem;
}
.before\:-s-left-\[4px\]::before {
  content: var(--tw-content);
  left: -4px;
}
.before\:-s-left-px::before {
  content: var(--tw-content);
  left: -1px;
}
.before\:-s-right-4::before {
  content: var(--tw-content);
  right: -1rem;
}
.before\:-s-right-px::before {
  content: var(--tw-content);
  right: -1px;
}
.before\:-s-top-\[18px\]::before {
  content: var(--tw-content);
  top: -18px;
}
.before\:-s-top-px::before {
  content: var(--tw-content);
  top: -1px;
}
.before\:s-top-0::before {
  content: var(--tw-content);
  top: 0px;
}
.before\:s-h-2::before {
  content: var(--tw-content);
  height: 0.5rem;
}
.before\:s-h-full::before {
  content: var(--tw-content);
  height: 100%;
}
.before\:s-h-px::before {
  content: var(--tw-content);
  height: 1px;
}
.before\:s-w-0\.5::before {
  content: var(--tw-content);
  width: 0.125rem;
}
.before\:s-rounded-full::before {
  content: var(--tw-content);
  border-radius: 9999px;
}
.before\:s-rounded-t::before {
  content: var(--tw-content);
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.before\:s-bg-\[\#1F2A32\]::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(31 42 50 / var(--tw-bg-opacity, 1));
}
.before\:s-bg-\[var\(--color-top-border\)\]::before {
  content: var(--tw-content);
  background-color: var(--color-top-border);
}
.before\:s-bg-\[var\(--shipmonk-sidebar-item-indicator\2c \#fff\)\]::before {
  content: var(--tw-content);
  background-color: var(--shipmonk-sidebar-item-indicator,#fff);
}
.before\:s-text-\[10px\]::before {
  content: var(--tw-content);
  font-size: 10px;
}
.before\:s-text-\[black\]::before {
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.before\:s-text-\[blue\]::before {
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgb(0 0 255 / var(--tw-text-opacity, 1));
}
.before\:s-text-\[green\]::before {
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgb(0 128 0 / var(--tw-text-opacity, 1));
}
.before\:s-content-\[\"\"\]::before {
  --tw-content: "";
  content: var(--tw-content);
}
.before\:s-content-\[\'\'\]::before {
  --tw-content: '';
  content: var(--tw-content);
}
.after\:s-absolute::after {
  content: var(--tw-content);
  position: absolute;
}
.after\:s-relative::after {
  content: var(--tw-content);
  position: relative;
}
.after\:s-bottom-0::after {
  content: var(--tw-content);
  bottom: 0px;
}
.after\:s-right-9::after {
  content: var(--tw-content);
  right: 2.25rem;
}
.after\:s-top-0::after {
  content: var(--tw-content);
  top: 0px;
}
.after\:s-z-20::after {
  content: var(--tw-content);
  z-index: 20;
}
.after\:s-block::after {
  content: var(--tw-content);
  display: block;
}
.after\:s-rounded-\[4px\]::after {
  content: var(--tw-content);
  border-radius: 4px;
}
.after\:s-rounded-sm::after {
  content: var(--tw-content);
  border-radius: 0.125rem;
}
.after\:s-border-l::after {
  content: var(--tw-content);
  border-left-width: 1px;
}
.after\:s-border-\[var\(--border-color\)\]::after {
  content: var(--tw-content);
  border-color: var(--border-color);
}
.after\:\!s-bg-\[\#4A5867\]::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1 !important;
  background-color: rgb(74 88 103 / var(--tw-bg-opacity, 1)) !important;
}
.after\:s-pb-\[100\%\]::after {
  content: var(--tw-content);
  padding-bottom: 100%;
}
.after\:s-content-\[\'\'\]::after {
  --tw-content: '';
  content: var(--tw-content);
}
.first\:s-rounded-l-\[4px\]:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.first\:s-border-l:first-child {
  border-left-width: 1px;
}
.last\:s-rounded-r-\[4px\]:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.focus-within\:s-border-\[var\(--border-color\)\]:focus-within {
  border-color: var(--border-color);
}
.focus-within\:s-outline-\[var\(--border-color\)\]:focus-within {
  outline-color: var(--border-color);
}
.focus-within\:s-ring-2:focus-within {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-within\:\[--border-color\:\#5FAE9F\]:focus-within {
  --border-color: #5FAE9F;
}
.focus-within\:\[box-shadow\:0px_0px_4px_0px_var\(--border-color\)\]:focus-within {
  box-shadow: 0px 0px 4px 0px var(--border-color);
}
.hover\:s-rounded:hover {
  border-radius: 0.25rem;
}
.hover\:s-border:hover {
  border-width: 1px;
}
.hover\:s-border-\[\#5FAE9F\]:hover {
  --tw-border-opacity: 1;
  border-color: rgb(95 174 159 / var(--tw-border-opacity, 1));
}
.hover\:s-border-\[white\]:hover {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.hover\:s-border-b-\[\#60afa0\]:hover {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(96 175 160 / var(--tw-border-opacity, 1));
}
.hover\:s-bg-\[\#1B2736\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(27 39 54 / var(--tw-bg-opacity, 1));
}
.hover\:s-bg-\[\#5FAE9F26\]:hover {
  background-color: #5FAE9F26;
}
.hover\:s-bg-\[\#F0C65B\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(240 198 91 / var(--tw-bg-opacity, 1));
}
.hover\:s-bg-\[rgb\(115\2c 135\2c 156\2c 0\.2\)\]:hover {
  background-color: rgb(115,135,156,0.2);
}
.hover\:s-bg-\[rgb\(31_42_50\/0\.5\)\]:hover {
  background-color: rgb(31 42 50/0.5);
}
.hover\:s-bg-\[rgba\(0\2c _0\2c _0\2c _0\.05\)\]:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.hover\:s-bg-\[var\(--bg-hover\)\]:hover {
  background-color: var(--bg-hover);
}
.hover\:s-bg-\[var\(--light-color\)\]:hover {
  background-color: var(--light-color);
}
.hover\:s-bg-\[white\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.hover\:s-bg-transparent:hover {
  background-color: transparent;
}
.hover\:s-bg-gradient-135deg:hover {
  background-image: linear-gradient(135deg, var(--tw-gradient-stops));
}
.hover\:s-from-\[\#4792b3\]:hover {
  --tw-gradient-from: #4792b3 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(71 146 179 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:s-via-\[\#40b69e\]:hover {
  --tw-gradient-to: rgb(64 182 158 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #40b69e var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.hover\:s-via-65\%:hover {
  --tw-gradient-via-position: 65%;
}
.hover\:s-to-\[\#3ad98a\]:hover {
  --tw-gradient-to: #3ad98a var(--tw-gradient-to-position);
}
.hover\:\!s-text-\[\#ff6565\]:hover {
  --tw-text-opacity: 1 !important;
  color: rgb(255 101 101 / var(--tw-text-opacity, 1)) !important;
}
.hover\:s-text-\[\#212F40\]:hover {
  --tw-text-opacity: 1;
  color: rgb(33 47 64 / var(--tw-text-opacity, 1));
}
.hover\:s-text-\[var\(--text-hover\)\]:hover {
  color: var(--text-hover);
}
.hover\:s-text-black-main:hover {
  --tw-text-opacity: 1;
  color: rgb(33 47 64 / var(--tw-text-opacity, 1));
}
.hover\:s-text-black\/75:hover {
  color: rgb(0 0 0 / 0.75);
}
.hover\:s-text-gray-light:hover {
  --tw-text-opacity: 1;
  color: rgb(223 225 229 / var(--tw-text-opacity, 1));
}
.hover\:s-text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:s-text-white\/75:hover {
  color: rgb(255 255 255 / 0.75);
}
.hover\:s-no-underline:hover {
  text-decoration-line: none;
}
.hover\:\!s-opacity-100:hover {
  opacity: 1 !important;
}
.hover\:s-opacity-100:hover {
  opacity: 1;
}
.hover\:s-opacity-80:hover {
  opacity: 0.8;
}
.hover\:s-outline-\[var\(--border-color\)\]:hover {
  outline-color: var(--border-color);
}
.hover\:s-ring-0:hover {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.hover\:\[--border-color\:\#5FAE9F\]:hover {
  --border-color: #5FAE9F;
}
.hover\:\[--border-color\:\#FF6565\]:hover {
  --border-color: #FF6565;
}
.focus\:s-bg-\[\#5FAE9F26\]:focus {
  background-color: #5FAE9F26;
}
.focus\:s-bg-\[var\(--bg-hover\)\]:focus {
  background-color: var(--bg-hover);
}
.focus\:s-text-\[var\(--text-hover\)\]:focus {
  color: var(--text-hover);
}
.focus\:s-text-white:focus {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.focus\:s-outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:s-ring-\[2px\]:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:s-ring-\[\#2979FF\]:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(41 121 255 / var(--tw-ring-opacity, 1));
}
.focus-visible\:s-opacity-100:focus-visible {
  opacity: 1;
}
.focus-visible\:s-outline-none:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.active\:s-bg-\[rgb\(115\2c 135\2c 156\2c 0\.2\)\]:active {
  background-color: rgb(115,135,156,0.2);
}
.active\:s-bg-\[var\(--bg-hover\)\]:active {
  background-color: var(--bg-hover);
}
.active\:s-bg-\[var\(--light-color\)\]:active {
  background-color: var(--light-color);
}
.active\:s-bg-transparent:active {
  background-color: transparent;
}
.active\:s-text-\[var\(--text-hover\)\]:active {
  color: var(--text-hover);
}
.active\:s-text-white:active {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.active\:s-opacity-100:active {
  opacity: 1;
}
.active\:s-opacity-80:active {
  opacity: 0.8;
}
.active\:s-ring-0:active {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.s-group:focus-within .group-focus-within\:s-placeholder-\[\#9ca3af\]::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}
.s-group\/indicator:hover .group-hover\/indicator\:s-h-4 {
  height: 1rem;
}
.s-group:hover .group-hover\:s-border-smGreen-main {
  --tw-border-opacity: 1;
  border-color: rgb(95 174 159 / var(--tw-border-opacity, 1));
}
.s-group:hover .group-hover\:s-pl-3 {
  padding-left: 0.75rem;
}
.s-group\/end:hover .group-hover\/end\:s-text-inherit {
  color: inherit;
}
.s-group:hover .group-hover\:s-text-\[\#60afa0\] {
  --tw-text-opacity: 1;
  color: rgb(96 175 160 / var(--tw-text-opacity, 1));
}
.s-group:hover .group-hover\:s-text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.s-group\/filter-radio-label:hover .group-hover\/filter-radio-label\:s-opacity-100 {
  opacity: 1;
}
.s-group\/table-row:hover .group-hover\/table-row\:s-opacity-30 {
  opacity: 0.3;
}
.s-peer:hover ~ .peer-hover\:s-text-black\/75 {
  color: rgb(0 0 0 / 0.75);
}
.s-peer:hover ~ .peer-hover\:s-text-white\/75 {
  color: rgb(255 255 255 / 0.75);
}
.s-peer:focus ~ .peer-focus\:-s-left-\[var\(--prefix-left-offset\)\] {
  left: calc(var(--prefix-left-offset) * -1);
}
.s-peer:focus ~ .peer-focus\:s-top-0 {
  top: 0px;
}
.s-peer:focus ~ .peer-focus\:s-rounded-\[16px\] {
  border-radius: 16px;
}
.s-peer:focus ~ .peer-focus\:s-border-smGreen-main {
  --tw-border-opacity: 1;
  border-color: rgb(95 174 159 / var(--tw-border-opacity, 1));
}
.s-peer:focus ~ .peer-focus\:s-bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.s-peer:focus ~ .peer-focus\:s-px-\[4px\] {
  padding-left: 4px;
  padding-right: 4px;
}
.s-peer:focus ~ .peer-focus\:s-text-\[11px\] {
  font-size: 11px;
}
.s-peer:focus ~ .peer-focus\:s-not-italic {
  font-style: normal;
}
.s-peer:focus ~ .peer-focus\:s-leading-\[14px\] {
  line-height: 14px;
}
.s-peer:focus-visible ~ .peer-focus-visible\:s-opacity-100 {
  opacity: 1;
}
.s-peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:-s-left-\[var\(--prefix-left-offset\)\] {
  left: calc(var(--prefix-left-offset) * -1);
}
.s-peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:s-top-0 {
  top: 0px;
}
.s-peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:s-rounded-\[16px\] {
  border-radius: 16px;
}
.s-peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:s-bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.s-peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:s-px-\[4px\] {
  padding-left: 4px;
  padding-right: 4px;
}
.s-peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:s-text-\[11px\] {
  font-size: 11px;
}
.s-peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:s-not-italic {
  font-style: normal;
}
.s-peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:s-leading-\[14px\] {
  line-height: 14px;
}
.has-\[\[data-child\=link\]\:hover\]\:s-bg-\[\#1B2736\]:has([data-child=link]:hover) {
  --tw-bg-opacity: 1;
  background-color: rgb(27 39 54 / var(--tw-bg-opacity, 1));
}
.data-\[focus\]\:s-bg-smGreen-main\/15[data-focus] {
  background-color: rgb(95 174 159 / 0.15);
}
.data-\[selected\]\:s-bg-smGreen-main\/30[data-selected] {
  background-color: rgb(95 174 159 / 0.3);
}
.data-\[state\=active\]\:s-bg-\[var\(--light-color\)\][data-state="active"] {
  background-color: var(--light-color);
}
.data-\[state\=active\]\:s-text-white[data-state="active"] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.data-\[leave\]\:data-\[closed\]\:s-opacity-0[data-closed][data-leave] {
  opacity: 0;
}
.data-\[state\=active\]\:s-opacity-80[data-state="active"] {
  opacity: 0.8;
}
.data-\[state\=active\]\:s-ring-0[data-state="active"] {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.s-group[data-selected] .group-data-\[selected\]\:s-visible {
  visibility: visible;
}
.s-group\/arrow-down[data-state="closed"] .group-data-\[state\=closed\]\/arrow-down\:-s-rotate-90 {
  --tw-rotate: -90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scrollbar\:s-size-2::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
.scrollbar\:s-bg-transparent::-webkit-scrollbar {
  background-color: transparent;
}
.scrollbar-thumb\:s-rounded-full::-webkit-scrollbar-thumb {
  border-radius: 9999px;
}
.scrollbar-thumb\:s-border-2::-webkit-scrollbar-thumb {
  border-width: 2px;
}
.scrollbar-thumb\:s-border-solid::-webkit-scrollbar-thumb {
  border-style: solid;
}
.scrollbar-thumb\:s-border-black-light::-webkit-scrollbar-thumb {
  --tw-border-opacity: 1;
  border-color: rgb(74 88 103 / var(--tw-border-opacity, 1));
}
.scrollbar-thumb\:s-border-red-main::-webkit-scrollbar-thumb {
  --tw-border-opacity: 1;
  border-color: rgb(255 101 101 / var(--tw-border-opacity, 1));
}
.scrollbar-thumb\:s-bg-gray-main::-webkit-scrollbar-thumb {
  --tw-bg-opacity: 1;
  background-color: rgb(171 183 196 / var(--tw-bg-opacity, 1));
}
@media not all and (min-width: 768px) {

  .max-md\:s-mb-2 {
    margin-bottom: 0.5rem;
  }

  .max-md\:s-ml-2\.5 {
    margin-left: 0.625rem;
  }
}
@media not all and (min-width: 640px) {

  .max-sm\:s-left-0 {
    left: 0px;
  }

  .max-sm\:s-right-0 {
    right: 0px;
  }

  .max-sm\:s-w-auto {
    width: auto;
  }

  .max-sm\:s-px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (min-width: 640px) {

  .sm\:s-w-1\/2 {
    width: 50%;
  }
}
@media (min-width: 768px) {

  .md\:s-mr-2\.5 {
    margin-right: 0.625rem;
  }

  .md\:s-h-\[88px\] {
    height: 88px;
  }

  .md\:s-flex-1 {
    flex: 1 1 0%;
  }

  .md\:s-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {

  .lg\:s-w-1\/6 {
    width: 16.666667%;
  }

  .lg\:s-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1150px) {

  .min-\[1150px\]\:s-px-1\.5 {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }
}
@media (min-width: 1250px) {

  .min-\[1250px\]\:s-px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (min-width: 1280px) {

  .xl\:s-col-span-4 {
    grid-column: span 4 / span 4;
  }

  .xl\:s-col-span-8 {
    grid-column: span 8 / span 8;
  }

  .xl\:s-grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (min-width: 1450px) {

  .min-\[1450px\]\:s-px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.\[\&\+\&\]\:s-mt-6+.\[\&\+\&\]\:s-mt-6 {
  margin-top: 1.5rem;
}
.\[\&\:\:-webkit-inner-spin-button\]\:s-m-0::-webkit-inner-spin-button {
  margin: 0px;
}
.\[\&\:\:-webkit-inner-spin-button\]\:s-appearance-none::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
}
.\[\&\:\:-webkit-outer-spin-button\]\:s-m-0::-webkit-outer-spin-button {
  margin: 0px;
}
.\[\&\:\:-webkit-outer-spin-button\]\:s-appearance-none::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
}
.\[\&\:\:placeholder\]\:\[transition\:_color_ease_0\.15s\]::placeholder {
  transition: color ease 0.15s;
}
.\[\&\>div\:last-child\]\:s-mb-0>div:last-child {
  margin-bottom: 0px;
}
.\[\&\>div\]\:s-relative>div {
  position: relative;
}
.\[\&\>div\]\:s-mb-\[9px\]>div {
  margin-bottom: 9px;
}
.\[\&\>div\]\:s-block>div {
  display: block;
}
.\[\&\>div\]\:s-h-0\.5>div {
  height: 0.125rem;
}
.\[\&\>div\]\:s-h-1>div {
  height: 0.25rem;
}
.\[\&\>div\]\:s-w-1>div {
  width: 0.25rem;
}
.\[\&\>div\]\:s-rounded>div {
  border-radius: 0.25rem;
}
.\[\&\>div\]\:s-bg-\[\#212F40\]>div {
  --tw-bg-opacity: 1;
  background-color: rgb(33 47 64 / var(--tw-bg-opacity, 1));
}
.\[\&\>div\]\:s-bg-\[\#29ABE2\]>div {
  --tw-bg-opacity: 1;
  background-color: rgb(41 171 226 / var(--tw-bg-opacity, 1));
}
.\[\&\>div\]\:s-bg-\[\#46A147\]>div {
  --tw-bg-opacity: 1;
  background-color: rgb(70 161 71 / var(--tw-bg-opacity, 1));
}
.\[\&\>div\]\:s-bg-\[\#ABB7C4\]>div {
  --tw-bg-opacity: 1;
  background-color: rgb(171 183 196 / var(--tw-bg-opacity, 1));
}
.\[\&\>div\]\:s-bg-\[\#E4BC56\]>div {
  --tw-bg-opacity: 1;
  background-color: rgb(228 188 86 / var(--tw-bg-opacity, 1));
}
.\[\&\>div\]\:s-bg-white>div {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.\[\&\>div\]\:\[transition\:transform_0\.3s_ease\2c top_0\.3s_ease\2c width_0\.3s_ease\2c right_0\.3s_ease\]>div {
  transition: transform 0.3s ease,top 0.3s ease,width 0.3s ease,right 0.3s ease;
}
.\[\&_\+_\&\]\:s-mt-\[8px\] + .\[\&_\+_\&\]\:s-mt-\[8px\] {
  margin-top: 8px;
}
.\[\&_a\:hover\]\:s-no-underline a:hover {
  text-decoration-line: none;
}
.\[\&_a\]\:s-underline a {
  text-decoration-line: underline;
}

/* open-sans-latin-300-normal */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 300;
  src: url(/build/files/bd7ef8187a07a3c2.woff2) format('woff2'), url(/build/files/a4c4d51b7b22d15d.woff) format('woff');
}

/* open-sans-latin-400-normal */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/build/files/f09ec2eb560436bd.woff2) format('woff2'), url(/build/files/16c33ed06095b94e.woff) format('woff');
}

/* open-sans-latin-500-normal */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(/build/files/2c02f76f1e78f7f6.woff2) format('woff2'), url(/build/files/f0e6f82927f379af.woff) format('woff');
}

/* open-sans-latin-600-normal */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(/build/files/cd1945379eca5490.woff2) format('woff2'), url(/build/files/1e8f1c21ec1b66fe.woff) format('woff');
}

/* open-sans-latin-700-normal */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/build/files/d8af061eaee8281b.woff2) format('woff2'), url(/build/files/efb2d5f322a04d19.woff) format('woff');
}

/* open-sans-latin-800-normal */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 800;
  src: url(/build/files/82b4f8b2249c2eba.woff2) format('woff2'), url(/build/files/47e6ca6ccdb2d499.woff) format('woff');
}
.cssModulesScope .cssModules-AdszsdWesAgYoIbs{-moz-appearance:textfield}.cssModulesScope .cssModules-AdszsdWesAgYoIbs::-webkit-inner-spin-button,.cssModulesScope .cssModules-AdszsdWesAgYoIbs::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}
.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC{position:relative;border:2px solid;min-width:120px;max-width:100%;border-radius:3px;background-color:rgba(0,0,0,0);color:#fff;text-align:center;transition:background-color .3s;-webkit-user-select:none;user-select:none;font-weight:400}.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC:focus,.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC.cssModules-BWe8IQ6amBUtrgKN{outline:none;box-shadow:0 0 5px rgba(0,0,0,.3)}.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC:active,.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC.cssModules-FRsL3b8Rhw3w4Ex5{opacity:.8}.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC:disabled,.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC.cssModules-dEnrmaj9aPQg4QeY,.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC[disabled]{opacity:.25;cursor:default;pointer-events:none}.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC:disabled:hover,.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC.cssModules-dEnrmaj9aPQg4QeY:hover,.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC[disabled]:hover{background:rgba(0,0,0,0);border-color:rgba(0,0,0,0);outline:none;box-shadow:none}.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC:disabled:focus,.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC.cssModules-dEnrmaj9aPQg4QeY:focus,.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC[disabled]:focus{outline:none;box-shadow:none}.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC.cssModules-Sl736EpzkcBkHQ3P:disabled,.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC.cssModules-Sl736EpzkcBkHQ3P.cssModules-dEnrmaj9aPQg4QeY,.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC.cssModules-Sl736EpzkcBkHQ3P[disabled],.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC.cssModules-pSP50cFxzISkBcN1:disabled,.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC.cssModules-pSP50cFxzISkBcN1.cssModules-dEnrmaj9aPQg4QeY,.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC.cssModules-pSP50cFxzISkBcN1[disabled],.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC.cssModules-TbEVz6zPpAdsWdS9:disabled,.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC.cssModules-TbEVz6zPpAdsWdS9.cssModules-dEnrmaj9aPQg4QeY,.cssModulesScope .cssModules-fcCrnuiQSRoWGFtC.cssModules-TbEVz6zPpAdsWdS9[disabled]{opacity:1;cursor:default;pointer-events:none}.cssModulesScope .cssModules-nBMQ0hafBcAagLT8{color:#fff;background-color:#46a147;border-color:#46a147}.cssModulesScope .cssModules-nBMQ0hafBcAagLT8:hover,.cssModulesScope .cssModules-nBMQ0hafBcAagLT8.cssModules-_R3k3gjGXvszftrS,.cssModulesScope .cssModules-nBMQ0hafBcAagLT8:active,.cssModulesScope .cssModules-nBMQ0hafBcAagLT8.cssModules-FRsL3b8Rhw3w4Ex5{background-color:#61be61;border-color:#61be61}.cssModulesScope .cssModules-nBMQ0hafBcAagLT8:focus,.cssModulesScope .cssModules-nBMQ0hafBcAagLT8.cssModules-BWe8IQ6amBUtrgKN{box-shadow:0 0 7px rgba(70,161,71,.7),inset 0 0 7px rgba(70,161,71,.7)}.cssModulesScope .cssModules-nBMQ0hafBcAagLT8 .cssModules-R3qQzkz3hiMUtW_X{border-color:#46a147}.cssModulesScope .cssModules-riIC2vaBjmAre_XV{color:#46a147;border-color:#46a147}.cssModulesScope .cssModules-riIC2vaBjmAre_XV:hover,.cssModulesScope .cssModules-riIC2vaBjmAre_XV.cssModules-_R3k3gjGXvszftrS,.cssModulesScope .cssModules-riIC2vaBjmAre_XV:active,.cssModulesScope .cssModules-riIC2vaBjmAre_XV.cssModules-FRsL3b8Rhw3w4Ex5{color:#fff;background-color:#61be61;border-color:#61be61}.cssModulesScope .cssModules-riIC2vaBjmAre_XV:focus,.cssModulesScope .cssModules-riIC2vaBjmAre_XV.cssModules-BWe8IQ6amBUtrgKN{box-shadow:0 0 7px rgba(70,161,71,.7),inset 0 0 7px rgba(70,161,71,.7)}.cssModulesScope .cssModules-riIC2vaBjmAre_XV .cssModules-R3qQzkz3hiMUtW_X{border-color:#46a147}.cssModulesScope .cssModules-tfzOfMiTLCYJyYB3{color:#fff;background-color:#5fae9f;border-color:#5fae9f}.cssModulesScope .cssModules-tfzOfMiTLCYJyYB3:hover,.cssModulesScope .cssModules-tfzOfMiTLCYJyYB3.cssModules-_R3k3gjGXvszftrS,.cssModulesScope .cssModules-tfzOfMiTLCYJyYB3:active,.cssModulesScope .cssModules-tfzOfMiTLCYJyYB3.cssModules-FRsL3b8Rhw3w4Ex5{background-color:#49bea7;border-color:#49bea7}.cssModulesScope .cssModules-tfzOfMiTLCYJyYB3:focus,.cssModulesScope .cssModules-tfzOfMiTLCYJyYB3.cssModules-BWe8IQ6amBUtrgKN{box-shadow:0 0 7px rgba(95,174,159,.7),inset 0 0 7px rgba(95,174,159,.7)}.cssModulesScope .cssModules-tfzOfMiTLCYJyYB3 .cssModules-R3qQzkz3hiMUtW_X{border-color:#5fae9f}.cssModulesScope .cssModules-qs6Ac3U_XTcAaZYt{color:#5fae9f;border-color:#5fae9f}.cssModulesScope .cssModules-qs6Ac3U_XTcAaZYt:hover,.cssModulesScope .cssModules-qs6Ac3U_XTcAaZYt.cssModules-_R3k3gjGXvszftrS,.cssModulesScope .cssModules-qs6Ac3U_XTcAaZYt:active,.cssModulesScope .cssModules-qs6Ac3U_XTcAaZYt.cssModules-FRsL3b8Rhw3w4Ex5{color:#fff;background-color:#49bea7;border-color:#49bea7}.cssModulesScope .cssModules-qs6Ac3U_XTcAaZYt:focus,.cssModulesScope .cssModules-qs6Ac3U_XTcAaZYt.cssModules-BWe8IQ6amBUtrgKN{box-shadow:0 0 7px rgba(95,174,159,.7),inset 0 0 7px rgba(95,174,159,.7)}.cssModulesScope .cssModules-qs6Ac3U_XTcAaZYt .cssModules-R3qQzkz3hiMUtW_X{border-color:#5fae9f}.cssModulesScope .cssModules-DOR4IY3mh4w0juOw{color:#fff;background-color:#73879c;border-color:#73879c}.cssModulesScope .cssModules-DOR4IY3mh4w0juOw:hover,.cssModulesScope .cssModules-DOR4IY3mh4w0juOw.cssModules-_R3k3gjGXvszftrS,.cssModulesScope .cssModules-DOR4IY3mh4w0juOw:active,.cssModulesScope .cssModules-DOR4IY3mh4w0juOw.cssModules-FRsL3b8Rhw3w4Ex5{background-color:#73879c;border-color:#73879c}.cssModulesScope .cssModules-DOR4IY3mh4w0juOw:focus,.cssModulesScope .cssModules-DOR4IY3mh4w0juOw.cssModules-BWe8IQ6amBUtrgKN{box-shadow:0 0 7px rgba(115,135,156,.7),inset 0 0 7px rgba(115,135,156,.7)}.cssModulesScope .cssModules-DOR4IY3mh4w0juOw .cssModules-R3qQzkz3hiMUtW_X{border-color:#73879c}.cssModulesScope .cssModules-sckP4N3P58g7KGrX{color:#73879c;border-color:#73879c}.cssModulesScope .cssModules-sckP4N3P58g7KGrX:hover,.cssModulesScope .cssModules-sckP4N3P58g7KGrX.cssModules-_R3k3gjGXvszftrS,.cssModulesScope .cssModules-sckP4N3P58g7KGrX:active,.cssModulesScope .cssModules-sckP4N3P58g7KGrX.cssModules-FRsL3b8Rhw3w4Ex5{color:#fff;background-color:#73879c;border-color:#73879c}.cssModulesScope .cssModules-sckP4N3P58g7KGrX:focus,.cssModulesScope .cssModules-sckP4N3P58g7KGrX.cssModules-BWe8IQ6amBUtrgKN{box-shadow:0 0 7px rgba(115,135,156,.7),inset 0 0 7px rgba(115,135,156,.7)}.cssModulesScope .cssModules-sckP4N3P58g7KGrX .cssModules-R3qQzkz3hiMUtW_X{border-color:#73879c}.cssModulesScope .cssModules-AYZXmH8wFcQJotGW{color:#fff;background-color:#e4bc56;border-color:#e4bc56}.cssModulesScope .cssModules-AYZXmH8wFcQJotGW:hover,.cssModulesScope .cssModules-AYZXmH8wFcQJotGW.cssModules-_R3k3gjGXvszftrS,.cssModulesScope .cssModules-AYZXmH8wFcQJotGW:active,.cssModulesScope .cssModules-AYZXmH8wFcQJotGW.cssModules-FRsL3b8Rhw3w4Ex5{background-color:#f0c65b;border-color:#f0c65b}.cssModulesScope .cssModules-AYZXmH8wFcQJotGW:focus,.cssModulesScope .cssModules-AYZXmH8wFcQJotGW.cssModules-BWe8IQ6amBUtrgKN{box-shadow:0 0 7px rgba(228,188,86,.7),inset 0 0 7px rgba(228,188,86,.7)}.cssModulesScope .cssModules-AYZXmH8wFcQJotGW .cssModules-R3qQzkz3hiMUtW_X{border-color:#e4bc56}.cssModulesScope .cssModules-Gn_3e3WoIQkJUJ8F{color:#fff;border-color:#fff}.cssModulesScope .cssModules-Gn_3e3WoIQkJUJ8F:hover,.cssModulesScope .cssModules-Gn_3e3WoIQkJUJ8F.cssModules-_R3k3gjGXvszftrS,.cssModulesScope .cssModules-Gn_3e3WoIQkJUJ8F:active,.cssModulesScope .cssModules-Gn_3e3WoIQkJUJ8F.cssModules-FRsL3b8Rhw3w4Ex5{color:#73879c;background-color:#fff;border-color:#fff}.cssModulesScope .cssModules-Gn_3e3WoIQkJUJ8F:focus,.cssModulesScope .cssModules-Gn_3e3WoIQkJUJ8F.cssModules-BWe8IQ6amBUtrgKN{box-shadow:0 0 7px rgba(255,255,255,.7),inset 0 0 7px rgba(255,255,255,.7)}.cssModulesScope .cssModules-Gn_3e3WoIQkJUJ8F .cssModules-R3qQzkz3hiMUtW_X{border-color:#73879c}.cssModulesScope .cssModules-Cx9ZBKEjang83iwB{color:#fff;background-color:#ff6565;border-color:#ff6565}.cssModulesScope .cssModules-Cx9ZBKEjang83iwB:hover,.cssModulesScope .cssModules-Cx9ZBKEjang83iwB.cssModules-_R3k3gjGXvszftrS,.cssModulesScope .cssModules-Cx9ZBKEjang83iwB:active,.cssModulesScope .cssModules-Cx9ZBKEjang83iwB.cssModules-FRsL3b8Rhw3w4Ex5{background-color:#f77;border-color:#f77}.cssModulesScope .cssModules-Cx9ZBKEjang83iwB:focus,.cssModulesScope .cssModules-Cx9ZBKEjang83iwB.cssModules-BWe8IQ6amBUtrgKN{box-shadow:0 0 7px rgba(255,101,101,.7),inset 0 0 7px rgba(255,101,101,.7)}.cssModulesScope .cssModules-Cx9ZBKEjang83iwB .cssModules-R3qQzkz3hiMUtW_X{border-color:#ff6565}.cssModulesScope .cssModules-gIw5sM8HWoM4cws0{color:#ff6565;border-color:#ff6565}.cssModulesScope .cssModules-gIw5sM8HWoM4cws0:hover,.cssModulesScope .cssModules-gIw5sM8HWoM4cws0.cssModules-_R3k3gjGXvszftrS,.cssModulesScope .cssModules-gIw5sM8HWoM4cws0:active,.cssModulesScope .cssModules-gIw5sM8HWoM4cws0.cssModules-FRsL3b8Rhw3w4Ex5{color:#fff;background-color:#f77;border-color:#f77}.cssModulesScope .cssModules-gIw5sM8HWoM4cws0:focus,.cssModulesScope .cssModules-gIw5sM8HWoM4cws0.cssModules-BWe8IQ6amBUtrgKN{box-shadow:0 0 7px rgba(255,101,101,.7),inset 0 0 7px rgba(255,101,101,.7)}.cssModulesScope .cssModules-gIw5sM8HWoM4cws0 .cssModules-R3qQzkz3hiMUtW_X{border-color:#ff6565}.cssModulesScope .cssModules-QQMeEUW7G2UKcoqF{background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);color:#73879c;text-decoration:underline}.cssModulesScope .cssModules-QQMeEUW7G2UKcoqF:hover{background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);color:#73879c;text-decoration:none}.cssModulesScope .cssModules-QQMeEUW7G2UKcoqF:focus,.cssModulesScope .cssModules-QQMeEUW7G2UKcoqF:active{box-shadow:none}.cssModulesScope .cssModules-C9kVDzfQZkJVVcfq{font-size:13px;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);color:#73879c}.cssModulesScope .cssModules-C9kVDzfQZkJVVcfq:hover{background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);color:#5fae9f}.cssModulesScope .cssModules-C9kVDzfQZkJVVcfq:focus,.cssModulesScope .cssModules-C9kVDzfQZkJVVcfq:active{box-shadow:none}.cssModulesScope .cssModules-TW5JJX8bDDgltGVD{height:55px;font-size:15px;padding-left:40px;padding-right:40px;letter-spacing:3px}.cssModulesScope .cssModules-ddHSdjxDYHg1tWYH{height:40px;line-height:36px;padding:0 40px}.cssModulesScope .cssModules-WWW7DKGBMY8v7106{min-width:80px;height:30px;line-height:28px;border-width:1px;padding:0 20px}.cssModulesScope .cssModules-aZMOYYvPNq4JZIV_{min-width:initial;font-size:11px;height:20px;line-height:18px;border-width:1px;padding:0 15px}.cssModulesScope .cssModules-jU37tBBzEYeuAGNO{min-width:60px;font-size:11px;height:20px;line-height:18px;border-width:1px;padding:0;text-align:center}.cssModulesScope .cssModules-SjSUjdwHDZAHueXL .cssModules-UfZ2khoK8iJ4w8Rt{opacity:1;transition:opacity .3s;max-width:100%;white-space:nowrap;overflow:hidden;width:100%;display:block;text-overflow:ellipsis}.cssModulesScope .cssModules-SjSUjdwHDZAHueXL svg{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%) scale(0.5);pointer-events:none}.cssModulesScope .cssModules-SjSUjdwHDZAHueXL svg path{opacity:0;fill:none}.cssModulesScope .cssModules-SjSUjdwHDZAHueXL .cssModules-T08kppoT8QEiTpTQ path,.cssModulesScope .cssModules-SjSUjdwHDZAHueXL .cssModules-wkn1TiISpEGGDgmr path{stroke:#fff;stroke-linecap:round;stroke-width:4;transition:opacity .1s}.cssModulesScope .cssModules-pSP50cFxzISkBcN1{}.cssModulesScope .cssModules-TbEVz6zPpAdsWdS9{}.cssModulesScope .cssModules-Sl736EpzkcBkHQ3P .cssModules-UfZ2khoK8iJ4w8Rt,.cssModulesScope .cssModules-pSP50cFxzISkBcN1 .cssModules-UfZ2khoK8iJ4w8Rt,.cssModulesScope .cssModules-TbEVz6zPpAdsWdS9 .cssModules-UfZ2khoK8iJ4w8Rt{opacity:0}.cssModulesScope .cssModules-Sl736EpzkcBkHQ3P svg path,.cssModulesScope .cssModules-pSP50cFxzISkBcN1 svg path,.cssModulesScope .cssModules-TbEVz6zPpAdsWdS9 svg path{opacity:1;fill:none}.cssModulesScope .cssModules-Sl736EpzkcBkHQ3P{border-width:0;border-color:rgba(0,0,0,0);color:rgba(0,0,0,0);background:rgba(0,0,0,0)}.cssModulesScope .cssModules-Sl736EpzkcBkHQ3P .cssModules-UfZ2khoK8iJ4w8Rt{transform:scale(0)}.cssModulesScope .cssModules-Sl736EpzkcBkHQ3P .cssModules-R3qQzkz3hiMUtW_X{border-top-color:#e6e9ed}.cssModulesScope .cssModules-R3qQzkz3hiMUtW_X{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;border:2px solid #5fae9f;border-radius:100%;width:40px}.cssModulesScope .cssModules-R3qQzkz3hiMUtW_X{animation:loadingElement .3s linear,spinning 3s linear .4s infinite}.cssModulesScope .cssModules-WWW7DKGBMY8v7106 .cssModules-R3qQzkz3hiMUtW_X{width:30px}.cssModulesScope .cssModules-WWW7DKGBMY8v7106 .cssModules-R3qQzkz3hiMUtW_X{animation:loadingElementSmall .3s ease,spinning 3s linear .4s infinite}.cssModulesScope .cssModules-TW5JJX8bDDgltGVD .cssModules-R3qQzkz3hiMUtW_X{width:55px}.cssModulesScope .cssModules-TW5JJX8bDDgltGVD .cssModules-R3qQzkz3hiMUtW_X{animation:loadingElementSmall .3s ease,spinning 3s linear .4s infinite}.cssModulesScope .cssModules-aZMOYYvPNq4JZIV_ .cssModules-R3qQzkz3hiMUtW_X{width:20px}.cssModulesScope .cssModules-aZMOYYvPNq4JZIV_ .cssModules-R3qQzkz3hiMUtW_X{animation:loadingElementSmall .3s ease,spinning 3s linear .4s infinite}.cssModulesScope .cssModules-jU37tBBzEYeuAGNO .cssModules-R3qQzkz3hiMUtW_X{width:20px}.cssModulesScope .cssModules-jU37tBBzEYeuAGNO .cssModules-R3qQzkz3hiMUtW_X{animation:loadingElementSmall .3s ease,spinning 3s linear .4s infinite}@keyframes loadingElement{0%{border-radius:2px;width:100%}100%{border-radius:20px;width:40px}}@keyframes loadingElementSmall{0%{border-radius:2px;width:100%}100%{border-radius:15px;width:30px}}@keyframes spinning{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
html.cssModules-WtSIcfmAoJgEUYO8 body{overflow:hidden}.cssModulesScope .cssModules-qK1TRCVMXLMA8yW3{z-index:1500;background-color:rgba(0,0,0,.85);position:fixed;top:0;left:0;right:0;bottom:0;overflow:auto;display:flex;justify-content:space-between;flex-direction:column}.cssModulesScope .cssModules-d69J9lLudJwIx1qe{flex-grow:1}.cssModulesScope .cssModules-WAycmaTzA8xvGLpa{flex-grow:0;flex-shrink:0;display:flex;justify-content:center}.cssModulesScope .cssModules-_1PG_zA_PIoAzfZW{flex-grow:2}
.cssModulesScope .cssModules-BKrbhQST4RIjmJQx{position:relative;width:400px;background:#fff;text-align:center;border-radius:2px;box-shadow:0 2px 10px rgba(0,0,0,.15);border:1px solid #e6e9ed;padding:30px 20px}.cssModulesScope .cssModules-qAdsiqvOAsdLQq6x{position:absolute;right:0;top:10px;font-size:15px;width:40px;height:40px;color:#73879c;opacity:.5;transition:opacity,transform .3s;background:rgba(0,0,0,0);border:0;outline:none;transform:rotate(0)}.cssModulesScope .cssModules-qAdsiqvOAsdLQq6x:hover{opacity:.7}.cssModulesScope .cssModules-qAdsiqvOAsdLQq6x:focus{opacity:1;outline:none}.cssModulesScope .cssModules-DDG4B4vaCMl0C56d{display:flex;margin-bottom:15px;font-size:40px;line-height:1;justify-content:center}.cssModulesScope .cssModules-uySM7LlUC8cr9LHr{color:#1f2a32;font-size:16px;line-height:24px;font-weight:700;margin-bottom:25px}.cssModulesScope .cssModules-DKKGSsTCnW0KHP0z{position:relative;margin-bottom:30px;font-size:13px;line-height:20px;color:#4a5867}.cssModulesScope .cssModules-DKKGSsTCnW0KHP0z dl dt{text-transform:capitalize;font-weight:bold}.cssModulesScope .cssModules-DKKGSsTCnW0KHP0z dl dd{margin:0}.cssModulesScope .cssModules-xJeWyn3UL4ccaoGw:before,.cssModulesScope .cssModules-PQgUuF3xLisANa7L:before,.cssModulesScope .cssModules-ba0_TPWIbt8Wy95g:before,.cssModulesScope .cssModules-Q3bLIzdoDEDJsi5x:before{content:"";height:10px;top:-1px;left:-1px;right:-1px;position:absolute;border-radius:2px 2px 0 0}.cssModulesScope .cssModules-xJeWyn3UL4ccaoGw:after,.cssModulesScope .cssModules-PQgUuF3xLisANa7L:after,.cssModulesScope .cssModules-ba0_TPWIbt8Wy95g:after,.cssModulesScope .cssModules-Q3bLIzdoDEDJsi5x:after{position:absolute;left:0;right:0;top:30px}.cssModulesScope .cssModules-xJeWyn3UL4ccaoGw:before{background:#46a147}.cssModulesScope .cssModules-xJeWyn3UL4ccaoGw .cssModules-DDG4B4vaCMl0C56d{color:#46a147}.cssModulesScope .cssModules-PQgUuF3xLisANa7L:before,.cssModulesScope .cssModules-Q3bLIzdoDEDJsi5x:before{background:#e4bc56}.cssModulesScope .cssModules-PQgUuF3xLisANa7L .cssModules-DDG4B4vaCMl0C56d,.cssModulesScope .cssModules-Q3bLIzdoDEDJsi5x .cssModules-DDG4B4vaCMl0C56d{color:#e4bc56}.cssModulesScope .cssModules-ba0_TPWIbt8Wy95g:before{background:#ff6565}.cssModulesScope .cssModules-ba0_TPWIbt8Wy95g .cssModules-DDG4B4vaCMl0C56d{color:#ff6565}
.cssModulesScope .cssModules-vptCSxHhotiJSFg7{margin-top:35px;background:#fff;padding:20px;position:relative;border-radius:4px;max-width:100vw}.cssModulesScope .cssModules-i5f1xDUNQ0TBLFQ7{-webkit-appearance:none;border:0;background:none;padding:0}
.cssModulesScope .cssModules-sDe0QjgqtO8BfhLs{max-width:960px;min-width:300px}.cssModulesScope .cssModules-sDe0QjgqtO8BfhLs .cssModules-BmlHM0bzUTMNTXWK{padding-bottom:15px;margin-bottom:15px;border-bottom:2px solid #f5f5f5}.cssModulesScope .cssModules-sDe0QjgqtO8BfhLs .cssModules-Vf52Yo0I17IMZRcd p{margin:0}.cssModulesScope .cssModules-sDe0QjgqtO8BfhLs .cssModules-Vf52Yo0I17IMZRcd .cssModules-kggHTivtWHELq_1H{text-align:center;color:#ff6565;line-height:20px;font-size:13px}.cssModulesScope .cssModules-sDe0QjgqtO8BfhLs .cssModules-Vf52Yo0I17IMZRcd .cssModules-kggHTivtWHELq_1H .cssModules-R5Bl9b2W_8rIcuLV{font-weight:bold}.cssModulesScope .cssModules-sDe0QjgqtO8BfhLs .cssModules-Vf52Yo0I17IMZRcd .cssModules-RmOSHWgMB7I_7N3y{margin-top:20px}.cssModulesScope .cssModules-sDe0QjgqtO8BfhLs .cssModules-Vf52Yo0I17IMZRcd .cssModules-RmOSHWgMB7I_7N3y .cssModules-TebxsXSCo4L7FPfn{background-color:#ffe8e8}.cssModulesScope .cssModules-sDe0QjgqtO8BfhLs .cssModules-f7OamgzGkkXOZajc{border-top:1px dashed #abb7c4;padding-top:20px;margin-top:20px}
.cssModulesScope .cssModules-k6BO4aPttsI4Wxy0{font-size:15px;font-weight:600;color:#73879c;text-align:center}
.cssModulesScope .cssModules-fZAgYQ6sH81Q1GDp{display:block;margin:-7.5px}.cssModulesScope .cssModules-fZAgYQ6sH81Q1GDp>*{display:inline-block;margin:7.5px}.cssModulesScope .cssModules-MTi3R9lWHvQWTgvw{display:block;margin:-5px}.cssModulesScope .cssModules-MTi3R9lWHvQWTgvw>*{display:inline-block;margin:5px}.cssModulesScope .cssModules-fivM0bECEf8O4aF6{display:block}.cssModulesScope .cssModules-fivM0bECEf8O4aF6>*:not(:first-child){margin-top:15px}.cssModulesScope .cssModules-Lku1qe4Ys7EB5c4C{justify-content:center;display:flex}.cssModulesScope .cssModules-_ghcksDGM0z9limB{display:flex;align-items:center;margin:-5px}.cssModulesScope .cssModules-_ghcksDGM0z9limB>*{margin:5px}.cssModulesScope .cssModules-_ghcksDGM0z9limB [role=button]{line-height:1}.cssModulesScope .cssModules-LMh1RHJmvEE3c4mT{display:flex;align-items:center;justify-content:center;margin:-5px}.cssModulesScope .cssModules-LMh1RHJmvEE3c4mT>*{margin:5px}.cssModulesScope .cssModules-LMh1RHJmvEE3c4mT [role=button]{line-height:1}
.cssModulesScope .cssModules-_ELBShWccUna6nJ_{height:30px;position:relative;text-align:left;color:#73879c;white-space:nowrap}.cssModulesScope .cssModules-_ELBShWccUna6nJ_:not(:last-of-type)::after{content:"";position:absolute;right:0;top:5px;height:25px;width:1px;background-color:#e6e9ed}.cssModulesScope .cssModules-_ELBShWccUna6nJ_.cssModules-aBa4IvoNZtW9Zhni{padding:0}.cssModulesScope .cssModules-_ELBShWccUna6nJ_ svg{margin-left:4px}.cssModulesScope .cssModules-LZhX88yzepE54itd{width:50px}.sticky .cssModules-LZhX88yzepE54itd{min-width:50px}.cssModulesScope .cssModules-HUj1xZAnaRUAoZlj{width:80px}.sticky .cssModules-HUj1xZAnaRUAoZlj{min-width:80px}.cssModulesScope .cssModules-oMVpGZj99AAT1vgo{width:130px}.sticky .cssModules-oMVpGZj99AAT1vgo{min-width:130px}.cssModulesScope .cssModules-k7MPdlarcoufoesL{width:210px}.sticky .cssModules-k7MPdlarcoufoesL{min-width:150px}@media(min-width: 960px){.sticky .cssModules-k7MPdlarcoufoesL{min-width:210px}}.cssModulesScope .cssModules-mhbv5KVWIUchcOWi{width:340px}.sticky .cssModules-mhbv5KVWIUchcOWi{min-width:200px}@media(min-width: 960px){.sticky .cssModules-mhbv5KVWIUchcOWi{min-width:340px}}.cssModulesScope .cssModules-iLIoY_P0NGYhj_co{width:550px}.sticky .cssModules-iLIoY_P0NGYhj_co{min-width:270px}@media(min-width: 960px){.sticky .cssModules-iLIoY_P0NGYhj_co{min-width:550px}}.cssModulesScope .cssModules-pLhVaohRnHsWW3Pt{width:890px}.sticky .cssModules-pLhVaohRnHsWW3Pt{min-width:270px}@media(min-width: 960px){.sticky .cssModules-pLhVaohRnHsWW3Pt{min-width:890px}}.cssModulesScope .cssModules-xKduK32r14JfX4Tr{display:flex;justify-content:space-between;align-items:center;width:100%;padding:10px 10px;border:0;-webkit-appearance:none;text-align:left;background:rgba(0,0,0,0);outline:none}.cssModulesScope .cssModules-xKduK32r14JfX4Tr:hover{background:#f4f9f8}.cssModulesScope .cssModules-j4lxls6mFdUXBtwz{height:11px;fill:#dfe1e5}.cssModulesScope .cssModules-gC70xdUuRV4V4m0L.cssModules-DhiMqEWF1iQglePu .cssModules-o52RUTtEh30XoWo7{fill:#73879c}.cssModulesScope .cssModules-ZSFSLmD3kAE13t8U.cssModules-DhiMqEWF1iQglePu .cssModules-NqJtohdSfwju6k3K{fill:#73879c}.cssModulesScope .cssModules-afjkDFzbtIsVj71J{display:flex}.cssModulesScope .cssModules-afjkDFzbtIsVj71J.cssModules-LZhX88yzepE54itd{max-width:50px}.cssModulesScope .cssModules-afjkDFzbtIsVj71J.cssModules-HUj1xZAnaRUAoZlj{max-width:80px}.cssModulesScope .cssModules-afjkDFzbtIsVj71J.cssModules-oMVpGZj99AAT1vgo{max-width:110px}@media(min-width: 960px){.cssModulesScope .cssModules-afjkDFzbtIsVj71J.cssModules-oMVpGZj99AAT1vgo{min-width:130px}}.cssModulesScope .cssModules-afjkDFzbtIsVj71J.cssModules-k7MPdlarcoufoesL{max-width:150px}@media(min-width: 960px){.cssModulesScope .cssModules-afjkDFzbtIsVj71J.cssModules-k7MPdlarcoufoesL{max-width:210px}}.cssModulesScope .cssModules-afjkDFzbtIsVj71J.cssModules-mhbv5KVWIUchcOWi{max-width:200px}@media(min-width: 960px){.cssModulesScope .cssModules-afjkDFzbtIsVj71J.cssModules-mhbv5KVWIUchcOWi{max-width:340px}}.cssModulesScope .cssModules-afjkDFzbtIsVj71J.cssModules-iLIoY_P0NGYhj_co{max-width:270px}@media(min-width: 960px){.cssModulesScope .cssModules-afjkDFzbtIsVj71J.cssModules-iLIoY_P0NGYhj_co{max-width:550px}}.cssModulesScope .cssModules-afjkDFzbtIsVj71J.cssModules-pLhVaohRnHsWW3Pt{max-width:270px}@media(min-width: 960px){.cssModulesScope .cssModules-afjkDFzbtIsVj71J.cssModules-pLhVaohRnHsWW3Pt{max-width:890px}}.cssModulesScope .cssModules-afjkDFzbtIsVj71J>*{flex:1;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}
.cssModulesScope .cssModules-W6jYWcTQQMoEMblo{overflow:auto}.cssModulesScope .cssModules-W6jYWcTQQMoEMblo .cssModules-O08PGzLHslwa8XLU{border:1px solid #e6e9ed}.cssModulesScope .cssModules-W6jYWcTQQMoEMblo th,.cssModulesScope .cssModules-W6jYWcTQQMoEMblo td{border-bottom:1px solid #e6e9ed}.cssModulesScope .cssModules-W6jYWcTQQMoEMblo th{padding:10px}.cssModulesScope .cssModules-W6jYWcTQQMoEMblo .cssModules-O08PGzLHslwa8XLU{border-collapse:collapse;border-spacing:0;width:100%;font-size:11px}.cssModulesScope .cssModules-W6jYWcTQQMoEMblo tr{background:#fff}.cssModulesScope .cssModules-W6jYWcTQQMoEMblo .cssModules-XWvjPqyYzfcpep84{color:#73879c}.cssModulesScope .cssModules-W6jYWcTQQMoEMblo .cssModules-XWvjPqyYzfcpep84:hover{background:#fff}.cssModulesScope .cssModules-W6jYWcTQQMoEMblo tfoot tr{font-weight:bold;border-style:solid;border-top-color:#73879c;border-right:0;border-left:0;border-bottom:0;border-top-width:2px}.cssModulesScope .cssModules-W6jYWcTQQMoEMblo tbody tr:hover{background:#f4f9f8}.cssModulesScope .cssModules-W6jYWcTQQMoEMblo td{height:35px;padding:0 10px;white-space:nowrap}.cssModulesScope .cssModules-W6jYWcTQQMoEMblo .cssModules-qcp6F59O147si2Cd thead{display:block;width:100%}.cssModulesScope .cssModules-W6jYWcTQQMoEMblo .cssModules-qcp6F59O147si2Cd tbody{display:block;width:100%;overflow:auto;max-height:50vh}
.cssModulesScope .cssModules-hGks9vayrQk4D3Eb{display:block;border-radius:10px;height:6px;width:100%;background-color:#eee}.cssModulesScope .cssModules-hGks9vayrQk4D3Eb{animation:backgroundPulse 2s infinite ease-in-out}.cssModulesScope .cssModules-NBKt5MZBIEfuxrGh{animation-delay:0ms}.cssModulesScope .cssModules-V0WPkMfCssYTPzS8{animation-delay:100ms}.cssModulesScope .cssModules-ZOCNb6uIzBk7Sadr{animation-delay:200ms}.cssModulesScope .cssModules-Jmjft5a5FskakGgI{animation-delay:300ms}.cssModulesScope .cssModules-KLd0QM370owjM2CC{animation-delay:400ms}.cssModulesScope .cssModules-Ibsawqb9Sqo7Q4xh{animation-delay:500ms}.cssModulesScope .cssModules-DFV8JKJl90q6G8cL{animation-delay:600ms}.cssModulesScope .cssModules-VfccuuWwoRQbixrW{animation-delay:700ms}.cssModulesScope .cssModules-VA2BHIfYcdkODyDF{animation-delay:800ms}.cssModulesScope .cssModules-xhgSpcvXqnASnIh8{animation-delay:900ms}.cssModulesScope .cssModules-xJp81QXtZ3UmsbKr{animation-delay:1000ms}.cssModulesScope .cssModules-Spa_5t1wwjMIggWa{animation-delay:1100ms}.cssModulesScope .cssModules-QldDgz5tP3U6kVRx{animation-delay:1200ms}.cssModulesScope .cssModules-aUvX39Pte4o4ryRz{animation-delay:1300ms}.cssModulesScope .cssModules-w0AX6LBnwK8NCgu0{animation-delay:1400ms}.cssModulesScope .cssModules-bxMn4EcjHmIOIiWE{animation-delay:1500ms}.cssModulesScope .cssModules-DV2dAggt4dgiUi18{animation-delay:1600ms}.cssModulesScope .cssModules-TnROGA21RrEJ7nvf{animation-delay:1700ms}.cssModulesScope .cssModules-we3KoqaO_JQa0NVt{animation-delay:1800ms}.cssModulesScope .cssModules-JB3l5FgRIEUQK_S6{animation-delay:1900ms}@keyframes backgroundPulse{25%{background-color:#eee}50%{background-color:#cfd5db}75%{background-color:#eee}}
.cssModulesScope .cssModules-zSXeMjYA5AcQTwF2{width:100%}.cssModulesScope .cssModules-MFxiknzKC4EzMs1S{display:flex;align-items:center}.cssModulesScope .cssModules-MFxiknzKC4EzMs1S .cssModules-nN290jQ4dIIeSoiI{width:300px;margin-right:10px}.cssModulesScope .cssModules-MFxiknzKC4EzMs1S .cssModules-FOyd34rHos25sEPv{margin-left:10px}.cssModulesScope .cssModules-ROVGG0FRghMNaMjz{overflow:auto}.cssModulesScope .cssModules-ROVGG0FRghMNaMjz tbody tr.cssModules-grxgB6iYUO89ifRx{background-color:#e7f1f0}.cssModulesScope .cssModules-KCbM4nT_srsq7_AG{margin-top:20px;margin-bottom:20px;border:1px solid #f5f5f5}.cssModulesScope .cssModules-ksgLV8dOcBEMC5au{margin-top:20px;margin-bottom:20px;border-top:1px dashed #abb7c4}.cssModulesScope .cssModules-TLHU0XAzE7MCHPqg{display:flex;justify-content:space-between}.cssModulesScope .cssModules-TLHU0XAzE7MCHPqg .cssModules-XpTYyXGuJtUJ6xHx{display:flex;align-items:center;margin-bottom:20px}.cssModulesScope .cssModules-TLHU0XAzE7MCHPqg .cssModules-XpTYyXGuJtUJ6xHx>*{margin:0;padding:0}.cssModulesScope .cssModules-TLHU0XAzE7MCHPqg .cssModules-XpTYyXGuJtUJ6xHx label{margin-left:10px}.cssModulesScope .cssModules-TLHU0XAzE7MCHPqg .cssModules-XpTYyXGuJtUJ6xHx input[type=checkbox]:checked+label:after{display:none}.cssModulesScope .cssModules-_BFviZBrXh0SZQqC{display:inline-block}
.cssModulesScope .cssModules-vh8sfbTvcBAKe7Un{position:relative}.cssModulesScope .cssModules-vh8sfbTvcBAKe7Un.cssModules-X_XNfNpp4TAfP7vi{height:21px}.cssModulesScope .cssModules-vh8sfbTvcBAKe7Un .cssModules-NmMKvgf0aqQu8rEQ{pointer-events:none}.cssModulesScope .cssModules-VRhMhbBU4MiJBJNq{padding-right:36px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;cursor:default;-webkit-user-select:none;user-select:none}.cssModulesScope .cssModules-ctQI10rhFojFroO1{position:relative;min-width:300px;width:100%;margin-top:4px;box-shadow:16px 20px 60px 0 rgba(0,0,0,.15);border-radius:2px;border:1px solid #dfe1e5;background-color:#fff}.cssModulesScope .cssModules-ctQI10rhFojFroO1.cssModules-W8yJgzwKJDEMz6LB{min-width:100%}.cssModulesScope .cssModules-ctQI10rhFojFroO1 .cssModules-O_Pe1wi3aQuQahVt{margin:0;padding:5px 0;color:#4a5867;max-height:250px;overflow-y:auto}.cssModulesScope .cssModules-ctQI10rhFojFroO1 .cssModules-O_Pe1wi3aQuQahVt .cssModules-miFRR67DbDUyw44e{padding:7px 10px;position:relative;display:flex;cursor:default;-webkit-user-select:none;user-select:none;background-color:#fff;outline:none}.cssModulesScope .cssModules-ctQI10rhFojFroO1 .cssModules-O_Pe1wi3aQuQahVt .cssModules-miFRR67DbDUyw44e:hover,.cssModulesScope .cssModules-ctQI10rhFojFroO1 .cssModules-O_Pe1wi3aQuQahVt .cssModules-miFRR67DbDUyw44e:focus{outline:none}.cssModulesScope .cssModules-ctQI10rhFojFroO1 .cssModules-O_Pe1wi3aQuQahVt .cssModules-miFRR67DbDUyw44e:not(.cssModules-s2ZG22_GlCktQ4BV):not(.cssModules-C04ohzYglAM_F4DM):hover,.cssModulesScope .cssModules-ctQI10rhFojFroO1 .cssModules-O_Pe1wi3aQuQahVt .cssModules-miFRR67DbDUyw44e:not(.cssModules-s2ZG22_GlCktQ4BV):not(.cssModules-C04ohzYglAM_F4DM):focus:hover{background-color:#5fae9f;color:#fff}.cssModulesScope .cssModules-ctQI10rhFojFroO1 .cssModules-O_Pe1wi3aQuQahVt .cssModules-miFRR67DbDUyw44e:not(.cssModules-s2ZG22_GlCktQ4BV):not(.cssModules-C04ohzYglAM_F4DM):hover .cssModules-ELRKBHnqk8PHDpNg,.cssModulesScope .cssModules-ctQI10rhFojFroO1 .cssModules-O_Pe1wi3aQuQahVt .cssModules-miFRR67DbDUyw44e:not(.cssModules-s2ZG22_GlCktQ4BV):not(.cssModules-C04ohzYglAM_F4DM):focus:hover .cssModules-ELRKBHnqk8PHDpNg{color:#fff}.cssModulesScope .cssModules-ctQI10rhFojFroO1 .cssModules-O_Pe1wi3aQuQahVt .cssModules-miFRR67DbDUyw44e:not(.cssModules-s2ZG22_GlCktQ4BV):not(.cssModules-C04ohzYglAM_F4DM):hover,.cssModulesScope .cssModules-ctQI10rhFojFroO1 .cssModules-O_Pe1wi3aQuQahVt .cssModules-miFRR67DbDUyw44e:not(.cssModules-s2ZG22_GlCktQ4BV):not(.cssModules-C04ohzYglAM_F4DM):focus:hover{background-color:#5fae9f;color:#fff}.cssModulesScope .cssModules-ctQI10rhFojFroO1 .cssModules-O_Pe1wi3aQuQahVt .cssModules-miFRR67DbDUyw44e:not(.cssModules-s2ZG22_GlCktQ4BV):not(.cssModules-C04ohzYglAM_F4DM):hover .cssModules-ELRKBHnqk8PHDpNg,.cssModulesScope .cssModules-ctQI10rhFojFroO1 .cssModules-O_Pe1wi3aQuQahVt .cssModules-miFRR67DbDUyw44e:not(.cssModules-s2ZG22_GlCktQ4BV):not(.cssModules-C04ohzYglAM_F4DM):focus:hover .cssModules-ELRKBHnqk8PHDpNg{color:#fff}.cssModulesScope .cssModules-ctQI10rhFojFroO1 .cssModules-O_Pe1wi3aQuQahVt .cssModules-miFRR67DbDUyw44e:not(.cssModules-s2ZG22_GlCktQ4BV):not(.cssModules-C04ohzYglAM_F4DM):not(.cssModules-BNQPPqTbtZc_Quwr):focus{background-color:#5fae9f;color:#fff}.cssModulesScope .cssModules-ctQI10rhFojFroO1 .cssModules-O_Pe1wi3aQuQahVt .cssModules-miFRR67DbDUyw44e:not(.cssModules-s2ZG22_GlCktQ4BV):not(.cssModules-C04ohzYglAM_F4DM):not(.cssModules-BNQPPqTbtZc_Quwr):focus .cssModules-ELRKBHnqk8PHDpNg{color:#fff}.cssModulesScope .cssModules-ctQI10rhFojFroO1 .cssModules-O_Pe1wi3aQuQahVt .cssModules-miFRR67DbDUyw44e.cssModules-BNQPPqTbtZc_Quwr{background:rgba(95,174,159,.3);padding-right:36px}.cssModulesScope .cssModules-ctQI10rhFojFroO1 .cssModules-O_Pe1wi3aQuQahVt .cssModules-miFRR67DbDUyw44e.cssModules-UzQ7QnP_PYPaAL1h{background:#5fae9f;color:#fff}.cssModulesScope .cssModules-Tvb8VOokNysyn9Ds:before{transition:transform .3s;display:inline-block;transform:rotate(0deg)}.cssModulesScope .cssModules-v0T83QKHBj4L6neI:before{transform:rotate(180deg)}.cssModulesScope .cssModules-ELRKBHnqk8PHDpNg{padding-right:10px;display:flex;align-items:center;width:31px;color:#5fae9f;font-size:18px;line-height:1}.cssModulesScope .cssModules-eGLxWnyLT0cIKK88{padding-right:10px;width:90px}.cssModulesScope .cssModules-eGLxWnyLT0cIKK88 img{display:block;max-width:80px;height:20px}.cssModulesScope .cssModules-clpCnndiP4YMyJdp{position:absolute;right:0;top:0;height:100%;display:flex;align-items:center;justify-content:center;width:36px;color:#5fae9f}.cssModulesScope .cssModules-BYLoLXF0oco8aFJf{cursor:default}.cssModulesScope .cssModules-BYLoLXF0oco8aFJf:hover{background:#fff !important;color:#73879c !important}.cssModulesScope .cssModules-P_gYbrFMVloVd3sw{position:relative;width:100%;min-width:80px}.cssModulesScope .cssModules-P_gYbrFMVloVd3sw select{-webkit-appearance:none;width:100%;position:absolute;right:0;top:0;bottom:0;left:0;border:0;background:rgba(0,0,0,0);padding-right:30px;padding-left:10px}.cssModulesScope .cssModules-P_gYbrFMVloVd3sw select:focus{outline:none}.cssModulesScope .cssModules-P_gYbrFMVloVd3sw select:hover+*{box-shadow:inset 0 0 0 2px #5fae9f}.cssModulesScope .cssModules-P_gYbrFMVloVd3sw select:hover+*~.cssModules-NmMKvgf0aqQu8rEQ{border-color:#5fae9f}.cssModulesScope .cssModules-P_gYbrFMVloVd3sw select:focus+*{box-shadow:0 0 5px rgba(95,174,159,.7),inset 0 0 5px 2px rgba(95,174,159,.7),inset 0 0 0 2px #5fae9f}.cssModulesScope .cssModules-P_gYbrFMVloVd3sw select:focus+*~.cssModules-NmMKvgf0aqQu8rEQ{border-color:#5fae9f}.cssModulesScope .cssModules-P_gYbrFMVloVd3sw select:focus+*~.cssModules-NmMKvgf0aqQu8rEQ svg{display:inline-block;transform:rotate(180deg)}.cssModulesScope .cssModules-BHDxuxouBEo19l_9{width:100%}.cssModulesScope .cssModules-pCZ4nYeittkCp4Ej:disabled{opacity:1;background:#eee;pointer-events:auto !important;box-shadow:inset 0 0 0 1px #a0adbc}
.cssModulesScope .cssModules-Vl9esQIBrJQui62i{position:relative;margin:0;background-color:#fff}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-hmKVIgUFzo2x2S7s:not(.cssModules-Y18NVYAvP8ynRO8W) .cssModules-JwxBAPcYfwjtRvB0{box-shadow:inset 0 0 0 1px #73879c}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-hmKVIgUFzo2x2S7s:not(.cssModules-Y18NVYAvP8ynRO8W):hover .cssModules-JwxBAPcYfwjtRvB0{box-shadow:inset 0 0 0 2px #5fae9f}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-hmKVIgUFzo2x2S7s:not(.cssModules-Y18NVYAvP8ynRO8W):hover .cssModules-LQLxNYmg98UEhbtK{border-left:#5fae9f 1px solid}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-hmKVIgUFzo2x2S7s:not(.cssModules-Y18NVYAvP8ynRO8W) .cssModules-JwxBAPcYfwjtRvB0:focus{box-shadow:0 0 5px rgba(95,174,159,.7),inset 0 0 5px 2px rgba(95,174,159,.7),inset 0 0 0 2px #5fae9f}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-hmKVIgUFzo2x2S7s:not(.cssModules-Y18NVYAvP8ynRO8W) .cssModules-JwxBAPcYfwjtRvB0:focus~.cssModules-LQLxNYmg98UEhbtK{border-left:#5fae9f 1px solid}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-hmKVIgUFzo2x2S7s:not(.cssModules-Y18NVYAvP8ynRO8W) .cssModules-LQLxNYmg98UEhbtK{border-left:#73879c 1px solid;color:#73879c}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-hmKVIgUFzo2x2S7s:not(.cssModules-Y18NVYAvP8ynRO8W) .cssModules-LQLxNYmg98UEhbtK:hover{color:#5fae9f}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-hmKVIgUFzo2x2S7s.cssModules-Y18NVYAvP8ynRO8W .cssModules-JwxBAPcYfwjtRvB0{border:solid 1px #dfe1e5;background-color:#e6e9ed;box-shadow:none}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-hmKVIgUFzo2x2S7s.cssModules-Y18NVYAvP8ynRO8W .cssModules-JwxBAPcYfwjtRvB0~.cssModules-LQLxNYmg98UEhbtK{border-left:#dfe1e5 1px solid;color:#dfe1e5}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-vP5RDRj_AXbo6Ez7:not(.cssModules-Y18NVYAvP8ynRO8W) .cssModules-JwxBAPcYfwjtRvB0{box-shadow:inset 0 0 0 1px #ff6565}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-vP5RDRj_AXbo6Ez7:not(.cssModules-Y18NVYAvP8ynRO8W):hover .cssModules-JwxBAPcYfwjtRvB0{box-shadow:inset 0 0 0 2px #ff6565}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-vP5RDRj_AXbo6Ez7:not(.cssModules-Y18NVYAvP8ynRO8W):hover .cssModules-LQLxNYmg98UEhbtK{border-left:#ff6565 1px solid}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-vP5RDRj_AXbo6Ez7:not(.cssModules-Y18NVYAvP8ynRO8W) .cssModules-JwxBAPcYfwjtRvB0:focus{box-shadow:0 0 5px rgba(255,101,101,.7),inset 0 0 5px 2px rgba(255,101,101,.7),inset 0 0 0 2px #ff6565}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-vP5RDRj_AXbo6Ez7:not(.cssModules-Y18NVYAvP8ynRO8W) .cssModules-JwxBAPcYfwjtRvB0:focus~.cssModules-LQLxNYmg98UEhbtK{border-left:#ff6565 1px solid}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-vP5RDRj_AXbo6Ez7:not(.cssModules-Y18NVYAvP8ynRO8W) .cssModules-LQLxNYmg98UEhbtK{border-left:#ff6565 1px solid;color:#73879c}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-vP5RDRj_AXbo6Ez7:not(.cssModules-Y18NVYAvP8ynRO8W) .cssModules-LQLxNYmg98UEhbtK:hover{color:#ff6565}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-vP5RDRj_AXbo6Ez7.cssModules-Y18NVYAvP8ynRO8W .cssModules-JwxBAPcYfwjtRvB0{border:solid 1px #dfe1e5;background-color:#e6e9ed;box-shadow:none}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-vP5RDRj_AXbo6Ez7.cssModules-Y18NVYAvP8ynRO8W .cssModules-JwxBAPcYfwjtRvB0~.cssModules-LQLxNYmg98UEhbtK{border-left:#dfe1e5 1px solid;color:#dfe1e5}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-BJTIcApWGukXlOpm:not(.cssModules-Y18NVYAvP8ynRO8W) .cssModules-JwxBAPcYfwjtRvB0{box-shadow:inset 0 0 0 1px #46a147}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-BJTIcApWGukXlOpm:not(.cssModules-Y18NVYAvP8ynRO8W):hover .cssModules-JwxBAPcYfwjtRvB0{box-shadow:inset 0 0 0 2px #46a147}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-BJTIcApWGukXlOpm:not(.cssModules-Y18NVYAvP8ynRO8W):hover .cssModules-LQLxNYmg98UEhbtK{border-left:#46a147 1px solid}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-BJTIcApWGukXlOpm:not(.cssModules-Y18NVYAvP8ynRO8W) .cssModules-JwxBAPcYfwjtRvB0:focus{box-shadow:0 0 5px rgba(70,161,71,.7),inset 0 0 5px 2px rgba(70,161,71,.7),inset 0 0 0 2px #46a147}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-BJTIcApWGukXlOpm:not(.cssModules-Y18NVYAvP8ynRO8W) .cssModules-JwxBAPcYfwjtRvB0:focus~.cssModules-LQLxNYmg98UEhbtK{border-left:#46a147 1px solid}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-BJTIcApWGukXlOpm:not(.cssModules-Y18NVYAvP8ynRO8W) .cssModules-LQLxNYmg98UEhbtK{border-left:#46a147 1px solid;color:#73879c}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-BJTIcApWGukXlOpm:not(.cssModules-Y18NVYAvP8ynRO8W) .cssModules-LQLxNYmg98UEhbtK:hover{color:#46a147}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-BJTIcApWGukXlOpm.cssModules-Y18NVYAvP8ynRO8W .cssModules-JwxBAPcYfwjtRvB0{border:solid 1px #dfe1e5;background-color:#e6e9ed;box-shadow:none}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-BJTIcApWGukXlOpm.cssModules-Y18NVYAvP8ynRO8W .cssModules-JwxBAPcYfwjtRvB0~.cssModules-LQLxNYmg98UEhbtK{border-left:#dfe1e5 1px solid;color:#dfe1e5}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-nTsIWR0sBkViKGRJ .cssModules-JwxBAPcYfwjtRvB0{height:36px;padding:8px 46px 8px 10px}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-nTsIWR0sBkViKGRJ .cssModules-LQLxNYmg98UEhbtK{width:36px;height:36px}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-WLsngYLYTvgY6f7W .cssModules-JwxBAPcYfwjtRvB0{height:30px;padding:8px 40px 8px 10px}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-WLsngYLYTvgY6f7W .cssModules-LQLxNYmg98UEhbtK{width:30px;height:30px}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-UTbacrFQs1sWylrA .cssModules-JwxBAPcYfwjtRvB0{height:20px;padding:8px 30px 8px 10px}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-UTbacrFQs1sWylrA .cssModules-LQLxNYmg98UEhbtK{width:20px;height:20px}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-j9TetN8ObcschmPs{pointer-events:none;-webkit-user-select:none;user-select:none;opacity:.3}.cssModulesScope .cssModules-Vl9esQIBrJQui62i.cssModules-Y18NVYAvP8ynRO8W>.cssModules-LQLxNYmg98UEhbtK{pointer-events:none;-webkit-user-select:none;user-select:none}.cssModulesScope .cssModules-JwxBAPcYfwjtRvB0{display:block;width:100%;outline:0;border:0;border-radius:2px;-webkit-appearance:none}.cssModulesScope .cssModules-JwxBAPcYfwjtRvB0.cssModules-f3MFP7BQsBUlan1d{text-align:left}.cssModulesScope .cssModules-JwxBAPcYfwjtRvB0.cssModules-RxiKI5E70RIgpqMh{text-align:center}.cssModulesScope .cssModules-JwxBAPcYfwjtRvB0.cssModules-mmQo5PAPfmAP66_K{text-align:right}.cssModulesScope .cssModules-Vl9esQIBrJQui62i:not(.cssModules-Y18NVYAvP8ynRO8W) .cssModules-JwxBAPcYfwjtRvB0:focus~.cssModules-yemJq37N9DcK_5oD,.cssModulesScope .cssModules-J56fwpnfEuwnwZce~.cssModules-yemJq37N9DcK_5oD{top:0;transform:translateY(-50%);font-style:normal;font-size:10px;background-color:#fff}.cssModulesScope .cssModules-yemJq37N9DcK_5oD{pointer-events:none;-webkit-user-select:none;user-select:none;transition:all .3s ease-out;top:50%;transform:translateY(-50%);position:absolute;left:10px;padding:0 5px;font-size:13px;border-radius:10px;color:#73879c;font-style:italic}.cssModulesScope .cssModules-LQLxNYmg98UEhbtK{display:flex;justify-content:center;align-items:center;background-color:rgba(0,0,0,0);position:absolute;right:0;top:0;cursor:pointer;border:0;padding:0;border-radius:0 2px 2px 0}
.cssModulesScope .cssModules-Hg6XY9iHADoHUYMR{display:flex;flex-flow:row nowrap;position:relative}.cssModulesScope .cssModules-Hg6XY9iHADoHUYMR.cssModules-cafXNCNmLgAmGgDm{pointer-events:none;-webkit-user-select:none;user-select:none;opacity:.3}.cssModulesScope .cssModules-aTZF93jysKUxjaWr{position:absolute;top:50%;z-index:-1000;transform:translateY(-50%);opacity:0}.cssModulesScope .cssModules-mbaP_qdfwT0xDPBa{display:flex;flex-flow:row nowrap;align-items:center;cursor:pointer;margin-bottom:0}.cssModulesScope .cssModules-mbaP_qdfwT0xDPBa .cssModules-kU6V1JXeopYewiha{position:relative;width:15px;height:15px;line-height:15px;border-radius:2px;border:solid 1px #73879c;display:inline-block;transition:125ms ease-in-out}.cssModulesScope .cssModules-mbaP_qdfwT0xDPBa .cssModules-kU6V1JXeopYewiha::after{content:"";position:absolute;top:1px;left:1px;width:11px;height:11px;border-radius:1px;background-color:rgba(0,0,0,0);transition:125ms ease-in-out}.cssModulesScope .cssModules-mbaP_qdfwT0xDPBa .cssModules-kU6V1JXeopYewiha.cssModules-hZP5R1hbzhoYotJk{margin-right:10px}.cssModulesScope .cssModules-mbaP_qdfwT0xDPBa .cssModules-kU6V1JXeopYewiha.cssModules-X23NiDhDF6IOKFrS{border-color:#ff6565}.cssModulesScope .cssModules-mbaP_qdfwT0xDPBa:hover .cssModules-kU6V1JXeopYewiha:not(.cssModules-X23NiDhDF6IOKFrS){border-color:#4a5867}.cssModulesScope .cssModules-mbaP_qdfwT0xDPBa:hover .cssModules-kU6V1JXeopYewiha:not(.cssModules-X23NiDhDF6IOKFrS)::after{background-color:#e6e9ed}.cssModulesScope .cssModules-mbaP_qdfwT0xDPBa:hover .cssModules-kU6V1JXeopYewiha.cssModules-X23NiDhDF6IOKFrS::after{background-color:#e6e9ed}.cssModulesScope .cssModules-aTZF93jysKUxjaWr:focus+.cssModules-mbaP_qdfwT0xDPBa .cssModules-kU6V1JXeopYewiha:not(.cssModules-X23NiDhDF6IOKFrS){border-color:#5fae9f;box-shadow:0 0 5px #5fae9f}.cssModulesScope .cssModules-aTZF93jysKUxjaWr:focus+.cssModules-mbaP_qdfwT0xDPBa .cssModules-kU6V1JXeopYewiha:not(.cssModules-X23NiDhDF6IOKFrS)::after{background-color:#e6e9ed}.cssModulesScope .cssModules-aTZF93jysKUxjaWr:focus+.cssModules-mbaP_qdfwT0xDPBa .cssModules-kU6V1JXeopYewiha.cssModules-X23NiDhDF6IOKFrS{border-color:#ff6565;box-shadow:0 0 5px #ff6565}.cssModulesScope .cssModules-aTZF93jysKUxjaWr:focus+.cssModules-mbaP_qdfwT0xDPBa .cssModules-kU6V1JXeopYewiha.cssModules-X23NiDhDF6IOKFrS::after{background-color:#e6e9ed}.cssModulesScope .cssModules-aTZF93jysKUxjaWr:checked+.cssModules-mbaP_qdfwT0xDPBa .cssModules-kU6V1JXeopYewiha:not(.cssModules-X23NiDhDF6IOKFrS)::after{background-color:#5fae9f}.cssModulesScope .cssModules-aTZF93jysKUxjaWr:checked+.cssModules-mbaP_qdfwT0xDPBa::after{content:none}.cssModulesScope .cssModules-aTZF93jysKUxjaWr:checked+.cssModules-mbaP_qdfwT0xDPBa .cssModules-kU6V1JXeopYewiha.cssModules-X23NiDhDF6IOKFrS::after{background-color:#ff6565}
.cssModulesScope .cssModules-QIo4BnJx3qQsbcxq{margin:0 auto;font-size:40px}
.cssModulesScope .cssModules-ET82I1_liqYuwJOK{display:flex;width:40px;height:40px;line-height:38px;background-color:#fff;border:0;border-radius:20px;padding:0;margin:0;justify-content:center;font-size:36px;color:#73879c}.cssModulesScope .cssModules-ET82I1_liqYuwJOK:hover,.cssModulesScope .cssModules-ET82I1_liqYuwJOK:focus{background-color:#d9d9d9;color:#516172}.cssModulesScope .cssModules-ET82I1_liqYuwJOK:active{transition:transform 400ms;transform:perspective(500px) translate3d(0, 0, -100px)}
.cssModulesScope .cssModules-rQEZyC_mrsF1er9u{text-align:center;position:relative}.cssModulesScope .cssModules-Bg2CGt5PU8cnhWpz{color:#73879c;font-size:17px;line-height:23px;font-weight:bold;margin-bottom:10px}.cssModulesScope .cssModules-kPlQbKDlDKgLQURI{font-size:13px;color:#73879c;line-height:18px}.cssModulesScope .cssModules-B7_zTb7aAAIJhD9_{position:absolute;right:0;top:0}
.cssModulesScope .cssModules-TqZiAUoTo3IZ1pe3{min-height:100vh;display:flex;flex-direction:column;background-color:#fff;align-items:center}.cssModulesScope .cssModules-Sgum8CpSm84H3jPl{background-color:#f5f5f5;padding:20px;width:100%}.cssModulesScope .cssModules-Jn8_T829Mso3iVOe{max-width:1050px;width:100%;padding:20px;flex-grow:1;display:flex}
.cssModulesScope .cssModules-DKV8gBTc9wO76HBR{display:inline-block;position:relative;width:5em;height:30px}.cssModulesScope .cssModules-DKV8gBTc9wO76HBR>input.sh-form-control{padding-left:10px}
.globalScope input[type=checkbox]:checked+label.cssModules-EeCcSfn6tADWDp7D:after{display:none}.cssModulesScope .cssModules-nRdpFb_ayfAnyIKf{display:block;margin-bottom:15px}.cssModulesScope .cssModules-cnEXzJWUHLuB9GJB{display:none}.cssModulesScope .cssModules-EeCcSfn6tADWDp7D{position:relative;display:flex;align-items:center;cursor:pointer;margin:0}.cssModulesScope .cssModules-EeCcSfn6tADWDp7D:before{display:none}.cssModulesScope .cssModules-EeCcSfn6tADWDp7D:hover:not(.cssModules-EC3bBP7wMboIeXDk):not(.cssModules-CfFtvWkykm0cJPPg) .cssModules-g44FEyUOwCUEdgs3{border:2px solid #5fae9f}.cssModulesScope .cssModules-EeCcSfn6tADWDp7D.cssModules-CfFtvWkykm0cJPPg .cssModules-g44FEyUOwCUEdgs3:before{opacity:1;background:#5fae9f}.cssModulesScope .cssModules-EeCcSfn6tADWDp7D:active:not(.cssModules-EC3bBP7wMboIeXDk) .cssModules-g44FEyUOwCUEdgs3{box-shadow:0 0 7px rgba(95,174,159,.7),inset 0 0 7px rgba(95,174,159,.7)}.cssModulesScope .cssModules-EeCcSfn6tADWDp7D.cssModules-EC3bBP7wMboIeXDk{opacity:.4;text-decoration:none !important}.cssModulesScope .cssModules-g44FEyUOwCUEdgs3{position:relative;width:15px;min-width:15px;height:15px;margin-top:1px;margin-right:5px;border-radius:2px;border:1px solid #73879c;background-color:#fff}.cssModulesScope .cssModules-g44FEyUOwCUEdgs3:before{content:"";left:1px;top:1px;right:1px;bottom:1px;position:absolute;opacity:0;pointer-events:none;background:#fff;transition:all .3s}.cssModulesScope .cssModules-nmDy7Be5yY0Yu2_W .cssModules-g44FEyUOwCUEdgs3{width:30px;height:30px}.cssModulesScope .cssModules-xt5GwNI9bUMrbABz{color:#ff6565}.cssModulesScope .cssModules-xt5GwNI9bUMrbABz:hover .cssModules-g44FEyUOwCUEdgs3{border-color:#ff6565 !important}.cssModulesScope .cssModules-xt5GwNI9bUMrbABz .cssModules-g44FEyUOwCUEdgs3{border-color:#ff6565}.cssModulesScope .cssModules-xt5GwNI9bUMrbABz input:checked+.cssModules-g44FEyUOwCUEdgs3:before{background:#ff6565}.cssModulesScope .cssModules-xt5GwNI9bUMrbABz.cssModules-CfFtvWkykm0cJPPg .cssModules-g44FEyUOwCUEdgs3:before{background:#ff6565}.cssModulesScope .cssModules-xt5GwNI9bUMrbABz:active:not(.cssModules-EC3bBP7wMboIeXDk) .cssModules-g44FEyUOwCUEdgs3{box-shadow:0 0 7px rgba(255,101,101,.7),inset 0 0 7px rgba(255,101,101,.7)}.cssModulesScope .cssModules-vNIMqQkX668k3bSB,.cssModulesScope .cssModules-qu9LbZlWkkEy9P1j{margin-bottom:0}.cssModulesScope .cssModules-vNIMqQkX668k3bSB .cssModules-EeCcSfn6tADWDp7D,.cssModulesScope .cssModules-qu9LbZlWkkEy9P1j .cssModules-EeCcSfn6tADWDp7D{padding:9px 10px;color:#4a5867}.cssModulesScope .cssModules-vNIMqQkX668k3bSB .cssModules-g44FEyUOwCUEdgs3,.cssModulesScope .cssModules-qu9LbZlWkkEy9P1j .cssModules-g44FEyUOwCUEdgs3{margin-right:10px}.cssModulesScope .cssModules-vNIMqQkX668k3bSB{-webkit-user-select:none;user-select:none}.cssModulesScope .cssModules-vNIMqQkX668k3bSB:not(.cssModules-lzebJDBYYaQXxPVC):hover{background:#5fae9f}.cssModulesScope .cssModules-vNIMqQkX668k3bSB:not(.cssModules-lzebJDBYYaQXxPVC):hover .cssModules-EeCcSfn6tADWDp7D{color:#fff}.cssModulesScope .cssModules-vNIMqQkX668k3bSB:not(.cssModules-lzebJDBYYaQXxPVC):hover:not(.cssModules-EC3bBP7wMboIeXDk):not(.cssModules-CfFtvWkykm0cJPPg) .cssModules-g44FEyUOwCUEdgs3{border:1px solid #73879c}.cssModulesScope .cssModules-qu9LbZlWkkEy9P1j,.cssModulesScope .cssModules-rGlCH3SaqsauEaaH{background:#fff}.cssModulesScope .cssModules-qu9LbZlWkkEy9P1j.cssModules-qTneDytJnq8mcPAA,.cssModulesScope .cssModules-rGlCH3SaqsauEaaH.cssModules-qTneDytJnq8mcPAA{background:rgba(95,174,159,.3)}.cssModulesScope .cssModules-qu9LbZlWkkEy9P1j:hover,.cssModulesScope .cssModules-qu9LbZlWkkEy9P1j.cssModules-CfFtvWkykm0cJPPg:hover{background:#5fae9f}.cssModulesScope .cssModules-qu9LbZlWkkEy9P1j:hover .cssModules-EeCcSfn6tADWDp7D,.cssModulesScope .cssModules-qu9LbZlWkkEy9P1j.cssModules-CfFtvWkykm0cJPPg:hover .cssModules-EeCcSfn6tADWDp7D{color:#fff}.cssModulesScope .cssModules-qu9LbZlWkkEy9P1j:hover .cssModules-EeCcSfn6tADWDp7D:not(.cssModules-EC3bBP7wMboIeXDk):not(.cssModules-CfFtvWkykm0cJPPg) .cssModules-g44FEyUOwCUEdgs3,.cssModulesScope .cssModules-qu9LbZlWkkEy9P1j.cssModules-CfFtvWkykm0cJPPg:hover .cssModules-EeCcSfn6tADWDp7D:not(.cssModules-EC3bBP7wMboIeXDk):not(.cssModules-CfFtvWkykm0cJPPg) .cssModules-g44FEyUOwCUEdgs3{border:1px solid #73879c}.cssModulesScope .cssModules-rGlCH3SaqsauEaaH{padding:0;margin-bottom:0;border-radius:3px}.cssModulesScope .cssModules-rGlCH3SaqsauEaaH .cssModules-EeCcSfn6tADWDp7D{width:100%;display:flex;justify-content:center;align-items:center;height:30px;border:solid 1px #73879c;border-radius:3px}.cssModulesScope .cssModules-rGlCH3SaqsauEaaH .cssModules-EeCcSfn6tADWDp7D.cssModules-CfFtvWkykm0cJPPg{color:#5fae9f;border-color:#5fae9f}.cssModulesScope .cssModules-rGlCH3SaqsauEaaH .cssModules-EeCcSfn6tADWDp7D:hover,.cssModulesScope .cssModules-rGlCH3SaqsauEaaH .cssModules-EeCcSfn6tADWDp7D.cssModules-CfFtvWkykm0cJPPg:hover{background:#5fae9f;border-color:#5fae9f;color:#fff}.cssModulesScope .cssModules-e8J2WTZsw46thMVY .cssModules-g44FEyUOwCUEdgs3{border-radius:50%}.cssModulesScope .cssModules-e8J2WTZsw46thMVY .cssModules-g44FEyUOwCUEdgs3::before{border-radius:50%}.cssModulesScope .cssModules-e8J2WTZsw46thMVY .cssModules-Q9Tj9gy3lFIEojla{display:flex;font-size:16px}.cssModulesScope .cssModules-e8J2WTZsw46thMVY:not(.cssModules-rGlCH3SaqsauEaaH) .cssModules-Q9Tj9gy3lFIEojla{margin-right:5px}
.cssModulesScope .cssModules-Prya0PQr0UsJ_T67,.cssModulesScope .cssModules-Prya0PQr0UsJ_T67:before{border-radius:50%}
.cssModulesScope .cssModules-b0mQCPhNKecD7H7d{width:70px}.cssModulesScope .cssModules-fBf8wuJrPgALvG0t{margin-left:5px}.cssModulesScope .cssModules-NUHmhzf1qOYzTuxQ{text-align:right;white-space:nowrap}
.cssModulesScope .cssModules-rXkgiIWepXsM3Bwa{display:flex}.cssModulesScope .cssModules-ehnqdPCi5QlIN4Xx{margin-top:5px;margin-right:10px;line-height:1;font-size:25px;color:#5fae9f;width:25px}.cssModulesScope .cssModules-W7fkUNzbstoPd0ro{width:100%}@media(min-width: 992px){.cssModulesScope .cssModules-W7fkUNzbstoPd0ro{display:flex;width:73%}}
.cssModulesScope .cssModules-z3w7clkzijsTFY5Y{display:block;height:1px}.cssModulesScope .cssModules-g3884BuStd4qcTC_{margin-left:-5px;margin-right:-5px}.cssModulesScope .cssModules-sKHAf_nc08ucC_Dt{background:#e6e9ed}.cssModulesScope .cssModules-umbwUn20b4IYdLM1{background-image:linear-gradient(to right, #ABB7C4 50%, rgba(255, 255, 255, 0) 0%);background-position:0 0;background-size:8px 1px;background-repeat:repeat-x}
.cssModulesScope .cssModules-HBTZBHlOwecb0Zis{position:relative;display:flex;align-items:center;padding-bottom:10px;margin-bottom:15px;border-bottom:1px solid #e6e9ed;min-height:41px}.cssModulesScope .cssModules-yiTT2hvOA3m4FM36{text-align:left;justify-content:flex-start}.cssModulesScope .cssModules-TIS24PJ9ZT8d46Bw{text-align:center;justify-content:center}.cssModulesScope .cssModules-qyzEPZqKvM3pDpfM{text-align:right;justify-content:flex-end}.cssModulesScope .cssModules-WHFoqpEZQkY_d_Pp{text-align:left;justify-content:space-between}.cssModulesScope .cssModules-s10zEyCt1SoCxiRg,.cssModulesScope .cssModules-oQESdXMwUs3a7E6M>span:first-child{color:#73879c;font-size:15px;font-weight:bold;text-transform:capitalize}.cssModulesScope .cssModules-s10zEyCt1SoCxiRg i:first-child,.cssModulesScope .cssModules-oQESdXMwUs3a7E6M>span:first-child i:first-child{color:#5fae9f;font-size:20px;line-height:0;margin-right:10px}.cssModulesScope .cssModules-oQESdXMwUs3a7E6M>span:first-child{padding-right:20px}
.cssModulesScope .cssModules-OsXEadKIlQpPWlN3{display:block;color:#ff6565}.cssModulesScope .cssModules-Fg18P1_Q4CsyOC6_{width:100%;display:flex;flex-flow:row nowrap;align-items:center}.cssModulesScope .cssModules-Fg18P1_Q4CsyOC6_>div:first-of-type{margin-right:5px}.cssModulesScope .cssModules-Fg18P1_Q4CsyOC6_>div+div{margin-left:5px}.cssModulesScope .cssModules-Fg18P1_Q4CsyOC6_>button{margin-left:10px}
.cssModulesScope .cssModules-Q2mWEaP6gvYNeCCQ{min-width:unset;padding:0;border:0;font-size:15px;font-weight:600;width:36px;height:36px;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);color:#73879c;outline:0}.cssModulesScope .cssModules-Q2mWEaP6gvYNeCCQ+.cssModules-zDp_eW50ZK0U4Hun{margin-left:10px}.cssModulesScope .cssModules-Q2mWEaP6gvYNeCCQ:hover{background-color:rgba(95,174,159,.15);color:#5fae9f}.cssModulesScope .cssModules-Q2mWEaP6gvYNeCCQ:focus{box-shadow:0 0 7px rgba(95,174,159,.15),inset 0 0 7px rgba(95,174,159,.15)}.cssModulesScope .cssModules-bD99G89XOfMOOhsC{background-color:rgba(95,174,159,.15);color:#5fae9f}.cssModulesScope .cssModules-Q2mWEaP6gvYNeCCQ.cssModules-CXQ5WNTRYbINE8NZ{border:1px solid #ff6565;color:#ff6565}
.cssModulesScope .cssModules-JZXtrXaHyiw_aACA{margin-bottom:5px}.cssModulesScope .cssModules-aZnXvE0lsC0QW_VQ{margin-bottom:10px}.cssModulesScope .cssModules-vuPERgsh5mUuAO6V{margin-bottom:15px}.cssModulesScope .cssModules-p2qzTr3e4E0whcOi{margin-bottom:20px}.cssModulesScope .cssModules-sXRdl8GgoRc9dRJn{margin-bottom:25px}.cssModulesScope .cssModules-ZXgCsDNE_0gcUy6n{margin-bottom:30px}.cssModulesScope .cssModules-RPBjoz_zXEjgQ4qy{margin-bottom:35px}.cssModulesScope .cssModules-yDGiWh69iD8Jko7Q{margin-bottom:40px}.cssModulesScope .cssModules-uS6QAa4gGEgfncVH{margin-bottom:45px}.cssModulesScope .cssModules-SYNNqsnRk0wwaFGK{margin-bottom:50px}.cssModulesScope .cssModules-K6zobbQokhwoPAMp{margin-top:5px}.cssModulesScope .cssModules-hUURR47S1YEe3euA{margin-top:10px}.cssModulesScope .cssModules-fjiRsy9xyFULdtVQ{margin-top:15px}.cssModulesScope .cssModules-TNbBslJZe2wmScSX{margin-top:20px}.cssModulesScope .cssModules-HkJlUoqfIMM3RkBl{margin-top:25px}.cssModulesScope .cssModules-ee_jB1Tfo_kDIFFZ{margin-top:30px}.cssModulesScope .cssModules-K3nVN42WVEEn3vKe{margin-top:35px}.cssModulesScope .cssModules-iLx93ZfSuDE_XSoA{margin-top:40px}.cssModulesScope .cssModules-edSbBmzMackcboKM{margin-top:45px}.cssModulesScope .cssModules-STyHH5mca28Xr7gF{margin-top:50px}@media only screen and (min-width: 540px){.cssModulesScope .cssModules-Ag0CfYMzCCYa0mJN{margin-bottom:5px}.cssModulesScope .cssModules-v38pw0F0wogIISKE{margin-bottom:10px}.cssModulesScope .cssModules-xZLYVPjQ6JsmntJu{margin-bottom:15px}.cssModulesScope .cssModules-GYWj9FIh0sUEdryA{margin-bottom:20px}.cssModulesScope .cssModules-Fy0LGXGhtsI6Rwig{margin-bottom:25px}.cssModulesScope .cssModules-H5T8KU7UAGo12EBP{margin-bottom:30px}.cssModulesScope .cssModules-XGDFCzFwLNUTq7WV{margin-bottom:35px}.cssModulesScope .cssModules-pefMSyg9Ocg3O7O6{margin-bottom:40px}.cssModulesScope .cssModules-TqcIgjauhv00q7VX{margin-bottom:45px}.cssModulesScope .cssModules-ncFO_1Vs5bw9OO3b{margin-bottom:50px}.cssModulesScope .cssModules-aVuin9vq0k8C95JP{margin-top:5px}.cssModulesScope .cssModules-lFDVquCl08YBL7hW{margin-top:10px}.cssModulesScope .cssModules-pGYcMk1J_YS8CMbm{margin-top:15px}.cssModulesScope .cssModules-kvTIJh0XVVQ1d9zW{margin-top:20px}.cssModulesScope .cssModules-ENS4IWZiSeY5unfN{margin-top:25px}.cssModulesScope .cssModules-VIT8LV0M8E8DAZGM{margin-top:30px}.cssModulesScope .cssModules-MYr5YtwFvYPjZtZw{margin-top:35px}.cssModulesScope .cssModules-b2V2_18K3h0NUjMc{margin-top:40px}.cssModulesScope .cssModules-sMVmqQOgVceuyKXW{margin-top:45px}.cssModulesScope .cssModules-llDNZl3sn3kEIA4V{margin-top:50px}}@media only screen and (min-width: 768px){.cssModulesScope .cssModules-F1278bpTMjcEmy1A{margin-bottom:5px}.cssModulesScope .cssModules-QqIKTrcwjsg0LLPy{margin-bottom:10px}.cssModulesScope .cssModules-zt_V31km8h_cbsLq{margin-bottom:15px}.cssModulesScope .cssModules-aVl1yqK0x_UhTglZ{margin-bottom:20px}.cssModulesScope .cssModules-TAyvpf5LIoughUwR{margin-bottom:25px}.cssModulesScope .cssModules-Vtc4NNzBDLk7Bfqd{margin-bottom:30px}.cssModulesScope .cssModules-h_ldM9zkjdPX85PG{margin-bottom:35px}.cssModulesScope .cssModules-FlfN6Hc78MIPCnWz{margin-bottom:40px}.cssModulesScope .cssModules-Fe6eTLi5H44DgKmC{margin-bottom:45px}.cssModulesScope .cssModules-ALPNS8KVr9IDx_ov{margin-bottom:50px}.cssModulesScope .cssModules-DRltF_3JaZE7kHY5{margin-top:5px}.cssModulesScope .cssModules-Wew0H81QSk5bogQA{margin-top:10px}.cssModulesScope .cssModules-fAYGQWly_gFMQuCI{margin-top:15px}.cssModulesScope .cssModules-FWXK33fTrXsqWwTP{margin-top:20px}.cssModulesScope .cssModules-tndjB10L7a8tx_kT{margin-top:25px}.cssModulesScope .cssModules-O3jVZrzn6785Tj2u{margin-top:30px}.cssModulesScope .cssModules-ladBEzvSFM3iW0yT{margin-top:35px}.cssModulesScope .cssModules-HCPSsbzIAkQSAQJN{margin-top:40px}.cssModulesScope .cssModules-exGBcaOWjcEDyXt9{margin-top:45px}.cssModulesScope .cssModules-WtUk4jWGkl0ge8Lo{margin-top:50px}}@media only screen and (min-width: 992px){.cssModulesScope .cssModules-rlmblzaZZBo8rrhC{margin-bottom:5px}.cssModulesScope .cssModules-SfOyIp5gw73LTxQJ{margin-bottom:10px}.cssModulesScope .cssModules-lW9pmLxTjNY48iXr{margin-bottom:15px}.cssModulesScope .cssModules-KGqYqnibT1o0qL4X{margin-bottom:20px}.cssModulesScope .cssModules-malA3QFBAIkHureH{margin-bottom:25px}.cssModulesScope .cssModules-LxUy8gOKSSMA388j{margin-bottom:30px}.cssModulesScope .cssModules-Bfm02CA8a8AGxa3W{margin-bottom:35px}.cssModulesScope .cssModules-JIFMrOBXH4IERpi8{margin-bottom:40px}.cssModulesScope .cssModules-kCnthD4uSVMsSPUR{margin-bottom:45px}.cssModulesScope .cssModules-S9FjqpXH3e8DjYwT{margin-bottom:50px}.cssModulesScope .cssModules-pos4JoRrxcosAHDp{margin-top:5px}.cssModulesScope .cssModules-BalOb2J8utQf8Esa{margin-top:10px}.cssModulesScope .cssModules-dTec_kWfXFQW9oLK{margin-top:15px}.cssModulesScope .cssModules-_dChHf_nzloZWFdI{margin-top:20px}.cssModulesScope .cssModules-lF10JY0oYBwbZdoV{margin-top:25px}.cssModulesScope .cssModules-AHq8MBX9PegaL336{margin-top:30px}.cssModulesScope .cssModules-CCjdBxRg3jUCq2nQ{margin-top:35px}.cssModulesScope .cssModules-lSNP8VrK7towTXPk{margin-top:40px}.cssModulesScope .cssModules-GtpoYQRzdBAUsPR0{margin-top:45px}.cssModulesScope .cssModules-gKY_YAvkEOExlCg6{margin-top:50px}}@media only screen and (min-width: 1280px){.cssModulesScope .cssModules-ZXHHkx_1wDgZrXY8{margin-bottom:5px}.cssModulesScope .cssModules-sVB8mAewpVb9kujS{margin-bottom:10px}.cssModulesScope .cssModules-KVfl6f8d_tgsDn2r{margin-bottom:15px}.cssModulesScope .cssModules-SMPv4M8MVOYymrca{margin-bottom:20px}.cssModulesScope .cssModules-h26zDoPxEiMo__69{margin-bottom:25px}.cssModulesScope .cssModules-N4os57gTPQsHiHQU{margin-bottom:30px}.cssModulesScope .cssModules-sOPcmqWLDfoYHFFm{margin-bottom:35px}.cssModulesScope .cssModules-yyhxoPPwcQDKC_xe{margin-bottom:40px}.cssModulesScope .cssModules-hHiEJxRsKGUTWuFW{margin-bottom:45px}.cssModulesScope .cssModules-BHebmJwxccIIvCCu{margin-bottom:50px}.cssModulesScope .cssModules-vBxJe_RDwwMOcwfT{margin-top:5px}.cssModulesScope .cssModules-IaWJI4Q19IgarcDo{margin-top:10px}.cssModulesScope .cssModules-bJvx2cSagloRelp5{margin-top:15px}.cssModulesScope .cssModules-msVO1RkCziIqnzQ6{margin-top:20px}.cssModulesScope .cssModules-EN8npD9UM4LGFHjD{margin-top:25px}.cssModulesScope .cssModules-x00lDfIwdioT7MzO{margin-top:30px}.cssModulesScope .cssModules-v_AfiGS1u88Ao0SW{margin-top:35px}.cssModulesScope .cssModules-PG6adZrdUYFWK8CK{margin-top:40px}.cssModulesScope .cssModules-zGHRIOkDa06DSQnR{margin-top:45px}.cssModulesScope .cssModules-S9NtQsYFUgH5YNWw{margin-top:50px}}.cssModulesScope .cssModules-DgTu3sCWissrFPZX{padding-bottom:5px}.cssModulesScope .cssModules-zAbj1jvpy7Ay7WPi{padding-bottom:10px}.cssModulesScope .cssModules-Q0xiDnkJ09lh9A32{padding-bottom:15px}.cssModulesScope .cssModules-UpcXL__TV_gQKjnJ{padding-bottom:20px}.cssModulesScope .cssModules-U7dCSgIcnx8DaooZ{padding-bottom:25px}.cssModulesScope .cssModules-I_SaIMgp43cfmbJ6{padding-bottom:30px}.cssModulesScope .cssModules-cgDiPhiQye2FqedA{padding-bottom:35px}.cssModulesScope .cssModules-Gss6T7jTrRoUIw2c{padding-bottom:40px}.cssModulesScope .cssModules-jr9kWCAQq7oZc0lC{padding-bottom:45px}.cssModulesScope .cssModules-a5DMCcLE876wXMIT{padding-bottom:50px}.cssModulesScope .cssModules-dMQxy3NtCXw_8hqo{padding-top:5px}.cssModulesScope .cssModules-JzG1kTOS9iUCmauc{padding-top:10px}.cssModulesScope .cssModules-oFLi8te3aQJWVC_3{padding-top:15px}.cssModulesScope .cssModules-Dh26CQCezy8gRVQU{padding-top:20px}.cssModulesScope .cssModules-IqBUkbP_BWY3psix{padding-top:25px}.cssModulesScope .cssModules-MhcM1kNhhO85GXIp{padding-top:30px}.cssModulesScope .cssModules-aA8rHS5S3eEtRk5a{padding-top:35px}.cssModulesScope .cssModules-FwqXIVwt6Fk3l7KZ{padding-top:40px}.cssModulesScope .cssModules-PpVtSjprs04m1301{padding-top:45px}.cssModulesScope .cssModules-ntw6baTE4DYHFBWG{padding-top:50px}@media only screen and (min-width: 540px){.cssModulesScope .cssModules-wbuTf1C88ug3hWYu{padding-bottom:5px}.cssModulesScope .cssModules-Qdsq0lrCgYqwe6mB{padding-bottom:10px}.cssModulesScope .cssModules-m4Bl_XJGZWgWKCTd{padding-bottom:15px}.cssModulesScope .cssModules-mInuyheER2InLJEU{padding-bottom:20px}.cssModulesScope .cssModules-ojz3zARGGb0hh1gd{padding-bottom:25px}.cssModulesScope .cssModules-A4vJNmDEGO4p_oMs{padding-bottom:30px}.cssModulesScope .cssModules-P07zkYNGsq0P3Jc2{padding-bottom:35px}.cssModulesScope .cssModules-PwHb_EB8WAYf6tVH{padding-bottom:40px}.cssModulesScope .cssModules-eVY6tOPrDh0SKEt9{padding-bottom:45px}.cssModulesScope .cssModules-Hxk8QwzaF7cFyiLw{padding-bottom:50px}.cssModulesScope .cssModules-fibIvutWv80yVK4w{padding-top:5px}.cssModulesScope .cssModules-D3ig72K28mIfe2Ox{padding-top:10px}.cssModulesScope .cssModules-cHpQzvqyT0mB1EIE{padding-top:15px}.cssModulesScope .cssModules-Ys1FJu1Algg5hGYx{padding-top:20px}.cssModulesScope .cssModules-NTtromssV8wb6f5D{padding-top:25px}.cssModulesScope .cssModules-kRrKXNdUQjknDkVe{padding-top:30px}.cssModulesScope .cssModules-Ub4BCOe8VoYF8kI_{padding-top:35px}.cssModulesScope .cssModules-u6UucuUwHpILShFD{padding-top:40px}.cssModulesScope .cssModules-ndFikeYGmFkl731y{padding-top:45px}.cssModulesScope .cssModules-D4iguW14xNkGioxS{padding-top:50px}}@media only screen and (min-width: 768px){.cssModulesScope .cssModules-GBc6XLQp3WMneAmg{padding-bottom:5px}.cssModulesScope .cssModules-HiUYUg6O2yECDtNo{padding-bottom:10px}.cssModulesScope .cssModules-gRdHJtbwTZZM0bjw{padding-bottom:15px}.cssModulesScope .cssModules-h6UlQjOfaas2UdP9{padding-bottom:20px}.cssModulesScope .cssModules-Va00Z40GYJ42wNAb{padding-bottom:25px}.cssModulesScope .cssModules-hfSteePu908oR6WL{padding-bottom:30px}.cssModulesScope .cssModules-sNTlYWIjKs3FV5_m{padding-bottom:35px}.cssModulesScope .cssModules-BqAjQzjsIMXfZ3S4{padding-bottom:40px}.cssModulesScope .cssModules-tZLLKZ10tMYlEBGF{padding-bottom:45px}.cssModulesScope .cssModules-E8TGekypCI3sQVKK{padding-bottom:50px}.cssModulesScope .cssModules-jkbmi7VzhsZVSr1B{padding-top:5px}.cssModulesScope .cssModules-tAd8Lvh1EsxS9AYn{padding-top:10px}.cssModulesScope .cssModules-J2Fn278GnTYalhEZ{padding-top:15px}.cssModulesScope .cssModules-YDR869ASegIhyHTW{padding-top:20px}.cssModulesScope .cssModules-UDCs9sbz_E9udcQN{padding-top:25px}.cssModulesScope .cssModules-csYtPrIm4g4k9hG_{padding-top:30px}.cssModulesScope .cssModules-NPow9JZBCdgYKs09{padding-top:35px}.cssModulesScope .cssModules-f4siyBo1bTkIxZKl{padding-top:40px}.cssModulesScope .cssModules-wZuqSaL1AXH6QKBN{padding-top:45px}.cssModulesScope .cssModules-WoBAk75jdErRzaSW{padding-top:50px}}@media only screen and (min-width: 992px){.cssModulesScope .cssModules-VBnpv17_zbAD6TBy{padding-bottom:5px}.cssModulesScope .cssModules-yxt3hdkIVcdGSGr5{padding-bottom:10px}.cssModulesScope .cssModules-XF9ONFUpy94wD7UR{padding-bottom:15px}.cssModulesScope .cssModules-vMVi7zqPBfcfzxsu{padding-bottom:20px}.cssModulesScope .cssModules-OP8ZV5p9FUUmZ342{padding-bottom:25px}.cssModulesScope .cssModules-K_7OR6o6az4RzXlz{padding-bottom:30px}.cssModulesScope .cssModules-SELDm0VTcLMLh8gD{padding-bottom:35px}.cssModulesScope .cssModules-HmtmBv3sliwe_Orw{padding-bottom:40px}.cssModulesScope .cssModules-mYQl3xEQjw8ZYxhp{padding-bottom:45px}.cssModulesScope .cssModules-RZdAcZ3OYlYL4s8z{padding-bottom:50px}.cssModulesScope .cssModules-hQlIMaEEzbEmrcN0{padding-top:5px}.cssModulesScope .cssModules-My6VGievticGPqF3{padding-top:10px}.cssModulesScope .cssModules-cKhUmzZxp4AXOzbC{padding-top:15px}.cssModulesScope .cssModules-sgb6k90EefguLsss{padding-top:20px}.cssModulesScope .cssModules-QreZ2EIjO7sfvZEN{padding-top:25px}.cssModulesScope .cssModules-L_6Dr0klbNoPb4mc{padding-top:30px}.cssModulesScope .cssModules-JU8fqy0iPkQbtjCp{padding-top:35px}.cssModulesScope .cssModules-ECNOlod5ja84Hqb5{padding-top:40px}.cssModulesScope .cssModules-fksj0GI9ScQ2we9D{padding-top:45px}.cssModulesScope .cssModules-PC83nTrXZbQNzNvT{padding-top:50px}}@media only screen and (min-width: 1280px){.cssModulesScope .cssModules-OiSg8jRIojsnUTNY{padding-bottom:5px}.cssModulesScope .cssModules-_jkJLdYx2tkCV_Oa{padding-bottom:10px}.cssModulesScope .cssModules-xNiNbZEzLbwx2svp{padding-bottom:15px}.cssModulesScope .cssModules-BhiXamQ9gQpJAWHL{padding-bottom:20px}.cssModulesScope .cssModules-vFMOWDfhVo91ZdQ_{padding-bottom:25px}.cssModulesScope .cssModules-RQV7gnemwV8X5cuj{padding-bottom:30px}.cssModulesScope .cssModules-PPUuoGkfihwbvXYu{padding-bottom:35px}.cssModulesScope .cssModules-IcFWZ63LgcfARXnl{padding-bottom:40px}.cssModulesScope .cssModules-F47u2E1WvnseArKr{padding-bottom:45px}.cssModulesScope .cssModules-MfIRepndNIR6jc1B{padding-bottom:50px}.cssModulesScope .cssModules-J5CXv8kXJTsZl7YU{padding-top:5px}.cssModulesScope .cssModules-lIbcfmmcEgAI3S9W{padding-top:10px}.cssModulesScope .cssModules-M8lkU5_WNXoob8SW{padding-top:15px}.cssModulesScope .cssModules-QCdQTddjMUfu_A6f{padding-top:20px}.cssModulesScope .cssModules-eIlSZLulEdcXiZ2F{padding-top:25px}.cssModulesScope .cssModules-x_uHIVKhaaAVqsE0{padding-top:30px}.cssModulesScope .cssModules-oTp6I2dteAEWwn_f{padding-top:35px}.cssModulesScope .cssModules-ycmekShOAQAOYL4O{padding-top:40px}.cssModulesScope .cssModules-vm6xe3kT5tMsuUYb{padding-top:45px}.cssModulesScope .cssModules-OPK3ekyOiJgBpr10{padding-top:50px}}
.cssModulesScope .cssModules-p4o5LVCwGM8mBFpt{position:relative;display:flex}.cssModulesScope .cssModules-Zhh9kqqDUcYqIXR4{width:100%;height:100%;top:0;left:0;opacity:0;position:absolute;display:block !important}.cssModulesScope .cssModules-Zhh9kqqDUcYqIXR4+label{flex:1}.cssModulesScope .cssModules-Zhh9kqqDUcYqIXR4:focus+label span:first-child{box-shadow:0 0 7px rgba(95,174,159,.7),inset 0 0 7px 1px rgba(95,174,159,.7),inset 0 0 0 1px #5fae9f}.cssModulesScope .cssModules-Zhh9kqqDUcYqIXR4:focus+label span:first-child:hover{border-width:1px}
.cssModulesScope .cssModules-XhsyRIHRhNcvLso3{position:relative;display:flex;flex-wrap:wrap;justify-content:space-between;margin:-5px}@media(min-width: 500px){.cssModulesScope .cssModules-XhsyRIHRhNcvLso3{flex-wrap:nowrap}}.cssModulesScope .cssModules-REB2D46vR9U6vSWL{position:relative;flex:100%;min-height:100px;height:100%;color:#73879c;background:rgba(0,0,0,0);margin:0;padding:10px}.cssModulesScope .cssModules-REB2D46vR9U6vSWL:before{display:none}.cssModulesScope .cssModules-fdOWZ3ptYPIFMuy8 .cssModules-aZt5uwJxXBE5D_F3,input:checked~.cssModules-aZt5uwJxXBE5D_F3{background:rgba(95,174,159,.18);color:#5fae9f;border-color:#5fae9f}.cssModulesScope .cssModules-QppK6GeCJZ0NkR6T{opacity:.66}.cssModulesScope .cssModules-QppK6GeCJZ0NkR6T .cssModules-aZt5uwJxXBE5D_F3:hover{border:1px solid #e2e3e7}.cssModulesScope .cssModules-QppK6GeCJZ0NkR6T .cssModules-aZt5uwJxXBE5D_F3:active{box-shadow:none}.cssModulesScope .cssModules-aZt5uwJxXBE5D_F3{position:absolute;top:0;right:0;bottom:0;left:0;border:1px solid #e2e3e7;border-radius:2px}.cssModulesScope .cssModules-aZt5uwJxXBE5D_F3:hover{border-color:#5fae9f;border-width:2px}.cssModulesScope .cssModules-aZt5uwJxXBE5D_F3:active{box-shadow:0 0 2px #5fae9f}.cssModulesScope .cssModules-fdOWZ3ptYPIFMuy8 .cssModules-QYmD624gJ0C3kYl6{color:#5fae9f}.cssModulesScope .cssModules-QYmD624gJ0C3kYl6{display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;height:100%}.cssModulesScope .cssModules-JR65ON1b_Lw_90uv{line-height:1;margin-bottom:7px;font-size:28px}.cssModulesScope .cssModules-qCpUPFZlV4tgmqRO{margin:0 auto;line-height:1.4}.cssModulesScope .cssModules-omDN9cR_4Ts8chEG{display:flex;margin:-5px;flex-wrap:wrap}.cssModulesScope .cssModules-omDN9cR_4Ts8chEG>*{margin:5px}
.cssModulesScope .cssModules-AcHlO5M2up4XpAqp label{font-size:13px;color:#73879c}.cssModulesScope .cssModules-BYk_y3xh42oHVX8X{display:flex;margin:-5px;flex-wrap:wrap}.cssModulesScope .cssModules-BYk_y3xh42oHVX8X>*{flex:100%;margin:5px}@media(min-width: 700px){.cssModulesScope .cssModules-BYk_y3xh42oHVX8X>*{flex:1}}.cssModulesScope .cssModules-BYk_y3xh42oHVX8X>*>*{width:100%}.cssModulesScope .cssModules-K0qDESdi7VE8jDWy{display:flex;align-items:start;width:100%}.cssModulesScope .cssModules-IhrOwTQnaywNMja_{margin-top:10px;margin-left:16px}.cssModulesScope .cssModules-jvNpDWKUUl4mV3wu{width:100%}
.cssModulesScope .cssModules-iAMlH1a_uqof9rOV{display:inline-block}
.cssModulesScope .cssModules-ypRskT_nTYUyPcJI{position:relative;display:block;overflow:hidden;min-width:24px;max-width:100%}.cssModulesScope .cssModules-ypRskT_nTYUyPcJI::after{content:"";position:relative;display:block;padding-bottom:100%;z-index:20}.cssModulesScope .cssModules-pShacWtLA4Xv2XNt{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;max-width:100%;max-height:100%;z-index:10}.cssModulesScope .cssModules-o1dUH_s6yE38qnCg{width:80%;height:80%;opacity:.5}.cssModulesScope .cssModules-r7Npd8JWsUwyShGh{width:24px}.cssModulesScope .cssModules-V3ZGc919U_UswLRX{width:48px}.cssModulesScope .cssModules-xRgppSq9JgoV0a0a{width:86px}.cssModulesScope .cssModules-kc6cD8kaFVg6Z4Km{width:480px}.cssModulesScope .cssModules-h6OFSlrcHvR40ulA{width:960px}.tippy-box[data-theme~=image-preview-tooltip]{max-width:400px !important;background-color:#4a5867;padding:7px 10px;border-radius:3px;box-shadow:1px 2px 3px rgba(0,0,0,.15)}.tippy-box[data-theme~=image-preview-tooltip][data-placement^=right]>.tippy-arrow::before{border-right-color:#4a5867}.tippy-box[data-theme~=image-preview-tooltip][data-placement^=bottom]>.tippy-arrow::before{border-bottom-color:#4a5867}.tippy-box[data-theme~=image-preview-tooltip][data-placement^=top]>.tippy-arrow::before{border-top-color:#4a5867}.tippy-box[data-theme~=image-preview-tooltip][data-placement^=left]>.tippy-arrow::before{border-left-color:#4a5867}
.cssModulesScope .cssModules-mfZZ_ssZOwH7YyKJ{}.cssModulesScope .cssModules-EMGCg_HGIswa3Gu7{position:relative;border-bottom:1px solid #dfe1e5;padding-bottom:11px;margin-bottom:14px;text-align:left;display:flex;align-items:center}.cssModulesScope .cssModules-HahELfYJWULYIC89{color:#73879c;font-size:15px;font-weight:bold;text-transform:capitalize;position:relative;flex:auto}.cssModulesScope .cssModules-gfT99enU8UBfSuRo{display:inline-block;margin-left:10px}.cssModulesScope .cssModules-ACU35kmEmSUlUGc2{}
.cssModulesScope .cssModules-cbuxixNnRE0oefSL{display:flex;flex-direction:column}.cssModulesScope .cssModules-FPrOdP5S04OHSQi1{display:inline-block;width:100%;text-align:center}.cssModulesScope .cssModules-FPrOdP5S04OHSQi1 label{font-size:12px;color:#73879c}.cssModulesScope .cssModules-FPrOdP5S04OHSQi1 span{font-weight:bold;margin-left:8px}tr.cssModules-kXB5AFi1GFUHRj4P{background:#e7f3f1}.cssModulesScope .cssModules-iPmu3cBnv2Y7HdEC{background-color:rgba(41,171,226,.1019607843);display:flex;padding:16px}.cssModulesScope .cssModules-E6VkKer3U18Rv1TE{margin-top:8px}
.cssModulesScope .cssModules-PIQgE2coPQYK3mz8>*:first-child{margin-bottom:0;margin-top:-1px}
.cssModulesScope .cssModules-hF6Z4aKOhtgyraYS{color:#73879c;font-size:13px;margin-bottom:15px;line-height:1}
.cssModulesScope .cssModules-MdEctbQPlIQnSuy0{position:relative}.cssModulesScope .cssModules-Kmd99FroFYGdhsl2{padding:0px 10px 10px 20px}
.cssModulesScope .cssModules-kp3JmB4CPigY7Lml{position:absolute;z-index:940;top:45px;left:0;width:100%;height:100%;background-color:rgba(255,255,255,.8);display:flex;align-items:flex-start;justify-content:center}@media only screen and (min-width: 1170px){.cssModulesScope .cssModules-kp3JmB4CPigY7Lml{top:60px}}.cssModulesScope .cssModules-XDHvc9RKo4YfxGsc{display:flex;flex-flow:column nowrap;align-items:center;position:sticky;top:50vh}
.cssModulesScope .cssModules-q6_zrUkpbugAJ297{display:block;border-radius:50%;border:1px solid #73879c;width:17px;height:17px;position:relative}.cssModulesScope .cssModules-q6_zrUkpbugAJ297:before{transform-origin:center center;transform:scale(0.8, 0.8);content:"";position:absolute;left:0;right:0;bottom:0;top:0;border-radius:50%}.cssModulesScope .cssModules-Hc1_itCzQIc0I_6m:before{background-color:#5fae9f}
.cssModulesScope .cssModules-FgKkuDyISFsDE_w7{position:relative;display:flex;margin-bottom:10px;height:40px;align-items:center;width:100%}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-cbcYGWOYsak4C5Mx{position:relative;align-self:stretch;flex-grow:1;padding:0 8px 0 16px;display:flex;border:1px solid #e6e9ed;align-items:center;border-radius:2px}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-cbcYGWOYsak4C5Mx:hover{border-color:#5fae9f;cursor:pointer}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-cbcYGWOYsak4C5Mx.cssModules-VbKfXioF3tASeegy{border-color:#5fae9f;background-color:#e7f3f1;color:#5fae9f}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-cbcYGWOYsak4C5Mx.cssModules-VbKfXioF3tASeegy .cssModules-IpkXBnKL9kUGvRqk .cssModules-bdsyMoOo1M8yetaB{color:inherit}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-cbcYGWOYsak4C5Mx.cssModules-VbKfXioF3tASeegy .cssModules-u1ExjF5Gue0OeiQe,.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-cbcYGWOYsak4C5Mx.cssModules-VbKfXioF3tASeegy .cssModules-bdsyMoOo1M8yetaB{color:#5fae9f}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-cbcYGWOYsak4C5Mx .cssModules-IpkXBnKL9kUGvRqk{display:flex;align-items:center;max-width:60px}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-cbcYGWOYsak4C5Mx .cssModules-IpkXBnKL9kUGvRqk .cssModules-kecvuz7qXgkXYQGu{margin-right:8px}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-cbcYGWOYsak4C5Mx .cssModules-IpkXBnKL9kUGvRqk .cssModules-ux4AFBclIxwnAOZP{margin-right:8px;line-height:1}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-cbcYGWOYsak4C5Mx .cssModules-IpkXBnKL9kUGvRqk .cssModules-bdsyMoOo1M8yetaB{color:#4a5867;font-weight:bold}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-cbcYGWOYsak4C5Mx .cssModules-mePcJomSWQDOBg9l{flex-basis:100%;display:flex;justify-content:space-between;align-items:center}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-cbcYGWOYsak4C5Mx .cssModules-mePcJomSWQDOBg9l .cssModules-ozGVkGGEnccUqhsM:before{content:"("}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-cbcYGWOYsak4C5Mx .cssModules-mePcJomSWQDOBg9l .cssModules-ozGVkGGEnccUqhsM:after{content:")"}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-cbcYGWOYsak4C5Mx .cssModules-De9WmaG_zI0YC2A7{position:absolute;font-size:18px;top:-10px;right:-8px;pointer-events:none}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-bdsyMoOo1M8yetaB{color:#4a5867;line-height:15px;margin-bottom:2px}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-u1ExjF5Gue0OeiQe{font-size:11px;color:#73879c;min-height:20px}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-GsHqgHhK9FMEpEKF{margin-left:10px}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-GsHqgHhK9FMEpEKF .cssModules-WP1inIb8FScn6FXs{color:#abb7c4}.cssModulesScope .cssModules-FgKkuDyISFsDE_w7 .cssModules-GsHqgHhK9FMEpEKF .cssModules-WP1inIb8FScn6FXs svg{display:block}@media all and (max-width: 1300px){.cssModulesScope .cssModules-FgKkuDyISFsDE_w7{height:60px}.cssModulesScope .cssModules-mePcJomSWQDOBg9l{flex-wrap:wrap}}
.cssModulesScope .cssModules-B7mlEaXGIQUHFiGv input[type=radio]:checked+label:before{content:"";display:none}.cssModulesScope .cssModules-B7mlEaXGIQUHFiGv input[type=radio]{margin:0}.cssModulesScope .cssModules-B7mlEaXGIQUHFiGv label{margin:0}.cssModulesScope .cssModules-B7mlEaXGIQUHFiGv input[type=radio]:focus+label span:first-child{box-shadow:none}.cssModulesScope .cssModules-B7mlEaXGIQUHFiGv button[disabled]{opacity:1}
.cssModulesScope .cssModules-VX7bMHX2nV0tNr1c{min-height:200px}.cssModulesScope .cssModules-kPET_wRT7q8ahv9X{text-align:left;font-weight:bold}
.cssModulesScope .cssModules-gQyhitsV6Ic55aKB:not(:first-child){margin-top:7.5px}.cssModulesScope .cssModules-gQyhitsV6Ic55aKB.cssModules-T_IKyfPT9i0NInya{position:relative}.cssModulesScope .cssModules-gQyhitsV6Ic55aKB.cssModules-T_IKyfPT9i0NInya::before{content:"";position:absolute;left:0;right:0;bottom:0;top:0;background:rgba(255,255,255,.7);z-index:1;cursor:not-allowed}
.cssModulesScope .cssModules-gAVu4h91798ytat1{vertical-align:middle;display:inline-block;margin-left:10px}.cssModulesScope .cssModules-gAVu4h91798ytat1 .cssModules-hxG0Y8YrgesFr8Eu{color:#abb7c4}.cssModulesScope .cssModules-gAVu4h91798ytat1 .cssModules-hxG0Y8YrgesFr8Eu svg{display:block}.ui-ship-services__col{display:flex;flex-direction:column}
.cssModulesScope .cssModules-O32O09dHYY5aAbit span{font-weight:bold}.cssModulesScope .cssModules-mBz8ybj_Gr0vtuAV{word-wrap:break-word}
.cssModulesScope .cssModules-Mi_lq0jWe8AmVWLp{background-color:#f15a24;color:#fff}.cssModulesScope .cssModules-ogpQexadQdYl8nYn{display:flex;align-items:center}.cssModulesScope .cssModules-ogpQexadQdYl8nYn.cssModules-uTu0UnaVDYkFa322{margin-top:6px}.cssModulesScope .cssModules-SPIe2MmvI78biRTp{margin-right:10px;display:flex;align-items:center}
@keyframes closeWindow {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.ril__outer {
  background-color: rgba(0, 0, 0, 0.85);
  outline: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  -ms-content-zooming: none;
  -ms-user-select: none;
  -ms-touch-select: none;
  touch-action: none;
}

.ril__outerClosing {
  opacity: 0;
}

.ril__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.ril__image,
.ril__imagePrev,
.ril__imageNext {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: none;
  -ms-content-zooming: none;
  -ms-user-select: none;
  -ms-touch-select: none;
  touch-action: none;
}

.ril__imageDiscourager {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.ril__navButtons {
  border: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 34px;
  padding: 40px 30px;
  margin: auto;
  cursor: pointer;
  opacity: 0.7;
}
.ril__navButtons:hover {
  opacity: 1;
}
.ril__navButtons:active {
  opacity: 0.7;
}

.ril__navButtonPrev {
  left: 0;
  background: rgba(0, 0, 0, 0.2)
    url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjM0Ij48cGF0aCBkPSJtIDE5LDMgLTIsLTIgLTE2LDE2IDE2LDE2IDEsLTEgLTE1LC0xNSAxNSwtMTUgeiIgZmlsbD0iI0ZGRiIvPjwvc3ZnPg==)
    no-repeat center;
}

.ril__navButtonNext {
  right: 0;
  background: rgba(0, 0, 0, 0.2)
    url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjM0Ij48cGF0aCBkPSJtIDEsMyAyLC0yIDE2LDE2IC0xNiwxNiAtMSwtMSAxNSwtMTUgLTE1LC0xNSB6IiBmaWxsPSIjRkZGIi8+PC9zdmc+)
    no-repeat center;
}

.ril__downloadBlocker {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
  background-size: cover;
}

.ril__caption,
.ril__toolbar {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
}

.ril__caption {
  bottom: 0;
  max-height: 150px;
  overflow: auto;
}

.ril__captionContent {
  padding: 10px 20px;
  color: #fff;
}

.ril__toolbar {
  top: 0;
  height: 50px;
}

.ril__toolbarSide {
  height: 50px;
  margin: 0;
}

.ril__toolbarLeftSide {
  padding-left: 20px;
  padding-right: 0;
  flex: 0 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ril__toolbarRightSide {
  padding-left: 0;
  padding-right: 20px;
  flex: 0 0 auto;
}

.ril__toolbarItem {
  display: inline-block;
  line-height: 50px;
  padding: 0;
  color: #fff;
  font-size: 120%;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ril__toolbarItemChild {
  vertical-align: middle;
}

.ril__builtinButton {
  width: 40px;
  height: 35px;
  cursor: pointer;
  border: none;
  opacity: 0.7;
}
.ril__builtinButton:hover {
  opacity: 1;
}
.ril__builtinButton:active {
  outline: none;
}

.ril__builtinButtonDisabled {
  cursor: default;
  opacity: 0.5;
}
.ril__builtinButtonDisabled:hover {
  opacity: 0.5;
}

.ril__closeButton {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIj48cGF0aCBkPSJtIDEsMyAxLjI1LC0xLjI1IDcuNSw3LjUgNy41LC03LjUgMS4yNSwxLjI1IC03LjUsNy41IDcuNSw3LjUgLTEuMjUsMS4yNSAtNy41LC03LjUgLTcuNSw3LjUgLTEuMjUsLTEuMjUgNy41LC03LjUgLTcuNSwtNy41IHoiIGZpbGw9IiNGRkYiLz48L3N2Zz4=)
    no-repeat center;
}

.ril__zoomInButton {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGcgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PHBhdGggZD0iTTEgMTlsNi02Ii8+PHBhdGggZD0iTTkgOGg2Ii8+PHBhdGggZD0iTTEyIDV2NiIvPjwvZz48Y2lyY2xlIGN4PSIxMiIgY3k9IjgiIHI9IjciIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9zdmc+)
    no-repeat center;
}

.ril__zoomOutButton {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGcgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PHBhdGggZD0iTTEgMTlsNi02Ii8+PHBhdGggZD0iTTkgOGg2Ii8+PC9nPjxjaXJjbGUgY3g9IjEyIiBjeT0iOCIgcj0iNyIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiLz48L3N2Zz4=)
    no-repeat center;
}

.ril__outerAnimating {
  animation-name: closeWindow;
}

@keyframes pointFade {
  0%,
  19.999%,
  100% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
}

.ril__loadingCircle {
  width: 60px;
  height: 60px;
  position: relative;
}

.ril__loadingCirclePoint {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.ril__loadingCirclePoint::before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 11%;
  height: 30%;
  background-color: #fff;
  border-radius: 30%;
  animation: pointFade 800ms infinite ease-in-out both;
}
.ril__loadingCirclePoint:nth-of-type(1) {
  transform: rotate(0deg);
}
.ril__loadingCirclePoint:nth-of-type(7) {
  transform: rotate(180deg);
}
.ril__loadingCirclePoint:nth-of-type(1)::before,
.ril__loadingCirclePoint:nth-of-type(7)::before {
  animation-delay: -800ms;
}
.ril__loadingCirclePoint:nth-of-type(2) {
  transform: rotate(30deg);
}
.ril__loadingCirclePoint:nth-of-type(8) {
  transform: rotate(210deg);
}
.ril__loadingCirclePoint:nth-of-type(2)::before,
.ril__loadingCirclePoint:nth-of-type(8)::before {
  animation-delay: -666ms;
}
.ril__loadingCirclePoint:nth-of-type(3) {
  transform: rotate(60deg);
}
.ril__loadingCirclePoint:nth-of-type(9) {
  transform: rotate(240deg);
}
.ril__loadingCirclePoint:nth-of-type(3)::before,
.ril__loadingCirclePoint:nth-of-type(9)::before {
  animation-delay: -533ms;
}
.ril__loadingCirclePoint:nth-of-type(4) {
  transform: rotate(90deg);
}
.ril__loadingCirclePoint:nth-of-type(10) {
  transform: rotate(270deg);
}
.ril__loadingCirclePoint:nth-of-type(4)::before,
.ril__loadingCirclePoint:nth-of-type(10)::before {
  animation-delay: -400ms;
}
.ril__loadingCirclePoint:nth-of-type(5) {
  transform: rotate(120deg);
}
.ril__loadingCirclePoint:nth-of-type(11) {
  transform: rotate(300deg);
}
.ril__loadingCirclePoint:nth-of-type(5)::before,
.ril__loadingCirclePoint:nth-of-type(11)::before {
  animation-delay: -266ms;
}
.ril__loadingCirclePoint:nth-of-type(6) {
  transform: rotate(150deg);
}
.ril__loadingCirclePoint:nth-of-type(12) {
  transform: rotate(330deg);
}
.ril__loadingCirclePoint:nth-of-type(6)::before,
.ril__loadingCirclePoint:nth-of-type(12)::before {
  animation-delay: -133ms;
}
.ril__loadingCirclePoint:nth-of-type(7) {
  transform: rotate(180deg);
}
.ril__loadingCirclePoint:nth-of-type(13) {
  transform: rotate(360deg);
}
.ril__loadingCirclePoint:nth-of-type(7)::before,
.ril__loadingCirclePoint:nth-of-type(13)::before {
  animation-delay: 0ms;
}

.ril__loadingContainer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.ril__imagePrev .ril__loadingContainer,
.ril__imageNext .ril__loadingContainer {
  display: none;
}

.ril__errorContainer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ril__imagePrev .ril__errorContainer,
.ril__imageNext .ril__errorContainer {
  display: none;
}

.ril__loadingContainer__icon {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.tableRowWithActionsColumn:hover .actionCell,.tableRowWithActionsColumn.isActionMenuOpen .actionCell{opacity:1}
.cssModulesScope .cssModules-Rt4gtvMuQuwserGf{display:block;background:none;text-align:left;width:100%;color:#4a5867;padding:8px 16px;border:0;outline:0}.cssModulesScope .cssModules-Rt4gtvMuQuwserGf:hover,.cssModulesScope .cssModules-Rt4gtvMuQuwserGf:focus{background-color:#5fae9f;color:#fff}.cssModulesScope .cssModules-UtRzfzAn4is_ar9z{background-color:#e7f3f1}
.cssModulesScope .cssModules-zBToX1etvkqp1TAl{padding:0 16px}
.cssModulesScope .cssModules-pykc6KwLSQUJQyoY{display:inline-block;font-size:12px;font-weight:normal}
.cssModulesScope .cssModules-n5G2P7iCPs4nS3YH{max-width:600px;min-width:300px}.cssModulesScope .cssModules-n5G2P7iCPs4nS3YH .cssModules-lA1ObH7QBo73OAK6{padding-bottom:15px;margin-bottom:15px;border-bottom:2px solid #f5f5f5}.cssModulesScope .cssModules-n5G2P7iCPs4nS3YH .cssModules-Oh8TmNVaUcEEZx5M{border-top:1px dashed #abb7c4;padding-top:20px;margin-top:20px}
.cssModulesScope .cssModules-ymv8BQXpE1kgM9ch textarea{line-height:1.4;resize:none;min-height:41px;height:auto}.cssModulesScope .cssModules-Pcl4uUFTKr0fwTUF textarea{resize:vertical}
.typeheadField{width:100%}
.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__control{background:#fff;border:0;border-radius:2px;box-shadow:inset 0 0 0 1px #73879c;min-height:35px;outline:0}.cssModulesScope .cssModules-JbGH3MQfy7YNdS7Z.cssModules-ZkZ4oxyU7USFEqiX .react-select__control{box-shadow:inset 0 0 0 1px #ff6565}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__control:hover{box-shadow:inset 0 0 0 2px #5fae9f}.cssModulesScope .cssModules-JbGH3MQfy7YNdS7Z.cssModules-ZkZ4oxyU7USFEqiX .react-select__control:hover{box-shadow:inset 0 0 0 2px #ff6565}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__control--is-focused{box-shadow:0 0 5px rgba(95,174,159,.7),inset 0 0 5px 2px rgba(95,174,159,.7),inset 0 0 0 2px #5fae9f}.cssModulesScope .cssModules-JbGH3MQfy7YNdS7Z.cssModules-ZkZ4oxyU7USFEqiX .react-select__control--is-focused{box-shadow:0 0 5px rgba(255,101,101,.7),inset 0 0 5px 2px rgba(255,101,101,.7),inset 0 0 0 2px #ff6565}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__value-container{padding:4px 0 4px 8px}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__indicator-separator{display:none}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__control--is-disabled{box-shadow:inset 0 0 0 1px #dfe1e5;background-color:#e6e9ed}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__control--is-disabled .react-select__indicators{opacity:.3}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__control--is-disabled .react-select__multi-value{background:rgba(115,135,156,.3)}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__control--is-disabled .react-select__multi-value svg{fill:#73879c}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__control--is-disabled .react-select__placeholder{background:rgba(0,0,0,0)}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__control--is-disabled .react-select__value-container--has-value .react-select__placeholder{background:#fff}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__dropdown-indicator,.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__clear-indicator{padding:12px}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__dropdown-indicator svg,.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__clear-indicator svg{fill:#73879c}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__menu{border:1px solid #dfe1e5;border-radius:2px;box-shadow:1px 2px 5px rgba(31,42,50,.15);z-index:200}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__menu-notice{color:#73879c}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__multi-value{background:rgba(95,174,159,.2);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:160px}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__multi-value__label{font-size:100%;padding:2px 4px 2px 10px}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__multi-value__remove{background-color:rgba(95,174,159,0);padding:1px 6px 0 6px}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__multi-value__remove svg{fill:rgba(95,174,159,.7)}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__multi-value__remove:hover{background-color:rgba(255,101,101,.2)}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__multi-value__remove:hover svg{fill:rgba(255,101,101,.7)}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__option--is-focused{background-color:#5fae9f;color:#fff}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__option--is-selected{background:rgba(95,174,159,.3);color:#1f2a32}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__value-container{overflow:unset}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__placeholder{position:absolute;margin-top:-9px;transition:all .3s ease 0s;transition-property:transform,left,top;transform:scale3d(1, 1, 1);left:5px;top:50%;pointer-events:none;-webkit-user-select:none;user-select:none;font-style:italic;color:#73879c;padding:0 5px;background:#fff;border-radius:5px}.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__value-container--has-value .react-select__placeholder,.cssModulesScope .cssModules-ZkZ4oxyU7USFEqiX .react-select__control--is-focused .react-select__placeholder{transform:scale3d(0.76, 0.76, 1);top:-2px;left:-6px;font-style:normal}
.cssModulesScope .cssModules-RRyhaO8PMwcydbiU{display:block;margin-top:4px;color:#ff6565}
.cssModulesScope .cssModules-fJPabJ49awqXQKCY{font-weight:bold;color:#ff6565}.cssModulesScope .cssModules-jQdnHCHG8x4Xo8Wg{color:#ff6565}.cssModulesScope .cssModules-ADkOHFa0COc1mNvy{background-color:#f5f5f5 !important}.cssModulesScope .cssModules-ADkOHFa0COc1mNvy td{border:0}.cssModulesScope .cssModules-t2XPo6lBx9UXyKbl{display:flex}
.cssModulesScope .cssModules-qbz8HO6tFBojyUhk{display:flex;width:100%;padding:0 15px;justify-content:space-between;align-items:center}.cssModulesScope .cssModules-qbz8HO6tFBojyUhk>*+*{margin-left:15px}.cssModulesScope .cssModules-Od2VcuGgVsaJ6gp_{display:flex;flex-grow:1;justify-content:flex-end}.cssModulesScope .cssModules-Od2VcuGgVsaJ6gp_>*+*{margin-left:15px}.cssModulesScope .cssModules-Gz92XkPWx4VVQtUP{flex-shrink:0;width:25%}.cssModulesScope .cssModules-Z4v5WIYrnCsRzXGu{padding:0 10px}.cssModulesScope .cssModules-KXsZlOk3yO0kqymf{min-height:500px}
.cssModulesScope .cssModules-M0tkD06mAG0BJCk5{font-weight:bold}.cssModulesScope .cssModules-sgRE25IY80wmnjCu{display:flex;justify-content:flex-end}.cssModulesScope .cssModules-igogg5YAyOwz1FKQ{display:flex;justify-content:flex-start}.cssModulesScope .cssModules-D0iJXRLG8ikvCuS0{display:flex;justify-content:center;align-items:center}.cssModulesScope .cssModules-oqNYkGpR0PsUIckA{color:#ff6565;font-weight:700}.cssModulesScope .cssModules-SnknkKNVbUUMyaoO{font-size:20px;line-height:20px;color:rgba(115,135,156,.15)}.cssModulesScope .cssModules-SnknkKNVbUUMyaoO+*{margin-left:10px}.cssModulesScope .cssModules-TlV3_1cACuAmNU4p{font-size:20px;line-height:20px;color:rgba(115,135,156,.15)}.cssModulesScope .cssModules-TlV3_1cACuAmNU4p+*{margin-left:10px}.cssModulesScope .cssModules-zh07gtb25YXNTbOJ{font-size:20px;line-height:20px;color:#5fae9f}.cssModulesScope .cssModules-zh07gtb25YXNTbOJ+*{margin-left:10px}.cssModulesScope .cssModules-M2CPHdkLtEoNwB5w{font-size:20px;line-height:20px;margin-left:10px;color:rgba(115,135,156,.15)}.cssModulesScope .cssModules-M2CPHdkLtEoNwB5w+*{margin-left:10px}.cssModulesScope .cssModules-us6l9K9AFggMIJdF{font-size:20px;line-height:20px;color:#ff6565}.cssModulesScope .cssModules-us6l9K9AFggMIJdF+*{margin-left:10px}.cssModulesScope .cssModules-ZN0FSzkKXN0w8TbM{font-size:20px;line-height:20px;color:#1f2a32}.cssModulesScope .cssModules-ZN0FSzkKXN0w8TbM+*{margin-left:10px}.cssModulesScope .cssModules-s7JdQp2FRpohNIXI{color:#73879c}.cssModulesScope .cssModules-cbhosgDl8YULfJ2i,.cssModulesScope .cssModules-OWeLcBoYEDoqQ0Zy{display:flex;align-items:center}
.cssModulesScope .cssModules-YiqUkX9Q6cQIqP7I{position:relative;display:inline-flex;flex-direction:column;align-items:center}.cssModulesScope .cssModules-EQDIv4U_tDoSxAOi,.cssModulesScope .cssModules-GkwHQyjHcjoG5hpk{fill:none;stroke:#e6e9ed}.cssModulesScope .cssModules-GkwHQyjHcjoG5hpk{fill:none;stroke:#5fae9f;transform-origin:center center;transform:rotate(-90deg);transition:stroke-dashoffset 400ms linear}.cssModulesScope .cssModules-rzOHswMDT8wegjLt{position:absolute;text-align:center;width:100%;padding:10px;display:flex;justify-content:center;align-items:center;font-size:15px;font-weight:bold;color:#000}.cssModulesScope .cssModules-xO5kGiUuy6wp9sVI{margin-top:8px;font-size:13px;line-height:18px;color:#73879c;text-align:center}
.cssModulesScope .cssModules-Y_qgpnkXK08JPn4F{padding-top:10px}.cssModulesScope .cssModules-GPb0oRV0aw91G3IF{display:flex;flex-direction:column;align-items:center}.cssModulesScope .cssModules-qM021mWFxnUcIU3b{text-align:center;padding:20px 0;color:#73879c;font-size:13px;line-height:18px}.cssModulesScope .cssModules-qM021mWFxnUcIU3b .cssModules-qUBQaTKgigUN_ZyK{margin-top:10px;color:#1f2a32;font-size:20px;line-height:27px}.cssModulesScope .cssModules-CDbEG7OSLsZl67nW{padding:10px 0 0 10px;display:flex;flex-wrap:wrap;flex-grow:0}.cssModulesScope .cssModules-CDbEG7OSLsZl67nW .cssModules-nGpvJlnkiUvWBgjz{padding:0 10px 10px 0;flex-grow:1;flex-basis:33%;text-align:center}@media(min-width: 960px){.cssModulesScope .cssModules-CDbEG7OSLsZl67nW .cssModules-nGpvJlnkiUvWBgjz{flex-basis:25%}}@media(min-width: 1280px){.cssModulesScope .cssModules-CDbEG7OSLsZl67nW .cssModules-nGpvJlnkiUvWBgjz{flex-basis:0}}
.cssModulesScope .cssModules-_4S1JcQMPAYoyaKj{color:#ff6565}.cssModulesScope .cssModules-l8kbRCtTKW4aWoW0{text-align:center}.cssModulesScope .cssModules-jXjN0SgGNEh4kWaH{display:block}
/*!
 * Cropper.js v1.6.2
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2024-04-21T07:43:02.731Z
 */

.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  -ms-touch-action: none;
      touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.cropper-container img {
    backface-visibility: hidden;
    display: block;
    height: 100%;
    image-orientation: 0deg;
    max-height: none !important;
    max-width: none !important;
    min-height: 0 !important;
    min-width: 0 !important;
    width: 100%;
  }

.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cropper-wrap-box,
.cropper-canvas {
  overflow: hidden;
}

.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}

.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}

.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}

.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}

.cropper-dashed.dashed-h {
    border-bottom-width: 1px;
    border-top-width: 1px;
    height: calc(100% / 3);
    left: 0;
    top: calc(100% / 3);
    width: 100%;
  }

.cropper-dashed.dashed-v {
    border-left-width: 1px;
    border-right-width: 1px;
    height: 100%;
    left: calc(100% / 3);
    top: 0;
    width: calc(100% / 3);
  }

.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}

.cropper-center::before,
  .cropper-center::after {
    background-color: #eee;
    content: ' ';
    display: block;
    position: absolute;
  }

.cropper-center::before {
    height: 1px;
    left: -3px;
    top: 0;
    width: 7px;
  }

.cropper-center::after {
    height: 7px;
    left: 0;
    top: -3px;
    width: 1px;
  }

.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}

.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

.cropper-line {
  background-color: #39f;
}

.cropper-line.line-e {
    cursor: ew-resize;
    right: -3px;
    top: 0;
    width: 5px;
  }

.cropper-line.line-n {
    cursor: ns-resize;
    height: 5px;
    left: 0;
    top: -3px;
  }

.cropper-line.line-w {
    cursor: ew-resize;
    left: -3px;
    top: 0;
    width: 5px;
  }

.cropper-line.line-s {
    bottom: -3px;
    cursor: ns-resize;
    height: 5px;
    left: 0;
  }

.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}

.cropper-point.point-e {
    cursor: ew-resize;
    margin-top: -3px;
    right: -3px;
    top: 50%;
  }

.cropper-point.point-n {
    cursor: ns-resize;
    left: 50%;
    margin-left: -3px;
    top: -3px;
  }

.cropper-point.point-w {
    cursor: ew-resize;
    left: -3px;
    margin-top: -3px;
    top: 50%;
  }

.cropper-point.point-s {
    bottom: -3px;
    cursor: s-resize;
    left: 50%;
    margin-left: -3px;
  }

.cropper-point.point-ne {
    cursor: nesw-resize;
    right: -3px;
    top: -3px;
  }

.cropper-point.point-nw {
    cursor: nwse-resize;
    left: -3px;
    top: -3px;
  }

.cropper-point.point-sw {
    bottom: -3px;
    cursor: nesw-resize;
    left: -3px;
  }

.cropper-point.point-se {
    bottom: -3px;
    cursor: nwse-resize;
    height: 20px;
    opacity: 1;
    right: -3px;
    width: 20px;
  }

@media (min-width: 768px) {

.cropper-point.point-se {
      height: 15px;
      width: 15px;
  }
    }

@media (min-width: 992px) {

.cropper-point.point-se {
      height: 10px;
      width: 10px;
  }
    }

@media (min-width: 1200px) {

.cropper-point.point-se {
      height: 5px;
      opacity: 0.75;
      width: 5px;
  }
    }

.cropper-point.point-se::before {
    background-color: #39f;
    bottom: -50%;
    content: ' ';
    display: block;
    height: 200%;
    opacity: 0;
    position: absolute;
    right: -50%;
    width: 200%;
  }

.cropper-invisible {
  opacity: 0;
}

.cropper-bg {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC);
}

.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

.cropper-hidden {
  display: none !important;
}

.cropper-move {
  cursor: move;
}

.cropper-crop {
  cursor: crosshair;
}

.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}

.cssModulesScope .cssModules-K7xasRxqqlwc_zcx{margin-right:1em}.cssModulesScope .cssModules-Ho1Vqgam0kxPeaDr{margin-top:6px}.cssModulesScope .cssModules-MmfCmTzc0sYtldTL{font-size:12px}.cssModulesScope .cssModules-MmfCmTzc0sYtldTL label{display:flex;align-items:center;margin:0}.cssModulesScope .cssModules-MmfCmTzc0sYtldTL label input{padding:0;margin:0 1ex 0 0}
.cssModulesScope .cssModules-YakCx8gx3jICqNgP{margin-left:auto;margin-right:auto;background:#fff}.cssModulesScope .cssModules-rbPMUC1PuM0ba7hR{border:1px solid #e6e9ed}@media(min-width: 992px){.cssModulesScope .cssModules-ciTUcAWi0sofTA2a{max-width:1400px}.cssModulesScope .cssModules-FOr11LfIOIA9f0De{padding-left:50px;padding-right:50px}.cssModulesScope .cssModules-B4q5fwV2CrEFSiFJ{max-width:1690px;padding-left:50px;padding-right:240px}}.cssModulesScope .cssModules-MHMuCiXmsXIR_XYX{display:flex;flex-wrap:wrap;margin:0;min-height:66px;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}@media(min-width: 992px){.cssModulesScope .cssModules-MHMuCiXmsXIR_XYX{margin:0 -5px}}
.cssModulesScope .cssModules-lqQsaNn1iZMAE4tK{display:flex;width:100%;padding:0 5px}.cssModulesScope .cssModules-lqQsaNn1iZMAE4tK+.cssModules-lqQsaNn1iZMAE4tK{border-top:1px solid #e6e9ed}@media(min-width: 992px){.cssModulesScope .cssModules-lqQsaNn1iZMAE4tK+.cssModules-lqQsaNn1iZMAE4tK{border-top:0}.cssModulesScope .cssModules-lqQsaNn1iZMAE4tK:not(.cssModules-kVCGK0Nuby0qZo8W){flex:1;flex-basis:0;max-width:100%}.cssModulesScope .cssModules-kVCGK0Nuby0qZo8W{width:20%;min-width:20%}}.cssModulesScope .cssModules-AsNEdS47gUAi2vIB{font-size:20px;line-height:1.3;color:#73879c;width:27px;text-align:center}@media(min-width: 992px){.cssModulesScope .cssModules-AsNEdS47gUAi2vIB{font-size:28px;width:auto;text-align:left}}.cssModulesScope .cssModules-B1nC7SgXOVkXu64s{min-width:45px;margin-right:10px;padding:3px;padding-right:0;overflow:hidden;display:flex;align-items:center}.cssModulesScope .cssModules-pgczyghcdZYCbaKM,.cssModulesScope .cssModules-KLpnLvE7sbQAGSYp{color:#ff6565}.cssModulesScope .cssModules-y4RtTyurn5o9rZeu,.cssModulesScope .cssModules-sRR8MS_pX_IJwEsH{color:#e4bc56}.cssModulesScope .cssModules-LOfzZHOLNsQ8HuAC{display:flex;flex-direction:column;justify-content:center}.cssModulesScope .cssModules-sH7Y2aBLkN48x3rn{color:#73879c;font-weight:bold}@media(min-width: 992px){.cssModulesScope .cssModules-sH7Y2aBLkN48x3rn{font-size:13px}}.cssModulesScope .cssModules-hkgV0lFOZHQt8OVG{display:flex;flex-wrap:wrap;color:#1f2a32;font-weight:bold}@media(min-width: 992px){.cssModulesScope .cssModules-hkgV0lFOZHQt8OVG{font-size:15px}}.cssModulesScope .cssModules-EYqhCpqrTRQ9tJER{width:60px;max-width:60px;max-height:60px;min-height:60px;display:flex;align-items:center;justify-content:center;overflow:hidden;background:#f7f7f7}
.cssModulesScope .cssModules-_rbyejFEmqsUG_rO{display:list-item;justify-content:flex-start;align-items:center;margin-left:25px;margin-bottom:4px}.cssModulesScope .cssModules-_rbyejFEmqsUG_rO:last-child{margin-bottom:0}.cssModulesScope .cssModules-KoQSR71DEK8wbrQ2{max-width:225px;display:inline-block;vertical-align:top;white-space:break-spaces}.cssModulesScope .cssModules-karsNe1Af8w6658Q{min-width:30px}
.cssModulesScope .cssModules-RQJJvDRCEcvEk7VA{display:flex;align-items:center;overflow:hidden;text-overflow:ellipsis}.cssModulesScope .cssModules-cL5p9eyq0IUmuxpI{min-width:50px}tr:hover .cssModules-kimMFSrZOiwqtTKj{opacity:.3}
.cssModulesScope .cssModules-j4FhDtSfSgMEpW7O{display:flex;flex-flow:column nowrap;align-items:flex-start}
.cssModulesScope .cssModules-FeJa4CxLHwImwCzO{position:relative}.cssModulesScope .cssModules-UpJMR0A4bwYI0x5u{display:flex;align-items:center;margin-bottom:5px}.cssModulesScope .cssModules-UpJMR0A4bwYI0x5u>svg{margin-left:10px;color:#73879c;opacity:.4;font-size:16px}.cssModulesScope .cssModules-hGcvFprAAdQ27uu9{display:flex;flex-wrap:wrap;margin:0 -5px 15px -5px}.cssModulesScope .cssModules-hGcvFprAAdQ27uu9>div{margin:5px;flex-grow:1;flex-basis:100%;cursor:pointer}@media all and (min-width: 768px){.cssModulesScope .cssModules-hGcvFprAAdQ27uu9{flex-wrap:nowrap}.cssModulesScope .cssModules-hGcvFprAAdQ27uu9>div{flex-basis:50%}}.cssModulesScope .cssModules-hGcvFprAAdQ27uu9 input{margin:0;cursor:pointer}.cssModulesScope .cssModules-lP237OnDhPAG9ORR{height:1px;margin-bottom:20px;margin-top:30px}.cssModulesScope .cssModules-lP237OnDhPAG9ORR::after{content:"";position:absolute;width:100%;left:0;height:1px;background-color:#e6e9ed}
.cssModulesScope .cssModules-ttcVkPary4wbGvkI{padding:5px 10px;border:solid 1px #e6e9ed;font-size:13px;display:flex;align-items:center;color:#73879c;border-radius:2px;position:relative;z-index:10}.cssModulesScope .cssModules-ttcVkPary4wbGvkI:before{display:none}.cssModulesScope .cssModules-ttcVkPary4wbGvkI:hover{box-shadow:inset 0 0 0 1px #5fae9f;border-color:#5fae9f}.cssModulesScope .cssModules-N9rCBbqzz4gDuf_k{width:18px;height:18px;border-radius:100%;border:1px solid #73879c;position:relative;pointer-events:none}.cssModulesScope .cssModules-N9rCBbqzz4gDuf_k:active{box-shadow:0 0 2px #5fae9f}.cssModulesScope .cssModules-LCho7bn4Epw4R0c_{font-size:20px;margin:0 10px}.cssModulesScope .cssModules-oMEfVieP_f80BJpo{flex:1}.cssModulesScope .cssModules-fhQG23tVinUx4I7I{border-color:#5fae9f;color:#5fae9f;background-color:rgba(95,174,159,.15)}.cssModulesScope .cssModules-fhQG23tVinUx4I7I .cssModules-N9rCBbqzz4gDuf_k::before{content:"";position:absolute;border-radius:100%;top:1px;left:1px;width:14px;height:14px;background-color:#5fae9f}.cssModulesScope .cssModules-SXoHUt5SkusGVsjD{cursor:not-allowed;pointer-events:none}
.cssModulesScope .cssModules-WnRqxsohpw8Sok_C{height:40px;display:flex;align-items:center;justify-content:space-between}.cssModulesScope .cssModules-WnRqxsohpw8Sok_C .input-style{margin-bottom:0}.cssModulesScope .cssModules-Zp0RUdPdOkGtmOFU{flex-direction:row;align-items:center}.cssModulesScope .cssModules-Zp0RUdPdOkGtmOFU>div{margin-bottom:0}.cssModulesScope .cssModules-eilFhZj8sSgIbbHe{display:flex;flex-direction:row;align-items:center}.cssModulesScope .cssModules-eilFhZj8sSgIbbHe>div{margin-bottom:0}.cssModulesScope .cssModules-mf9dKQlCn8c6bGkF{display:flex;margin-top:20px;margin-bottom:20px;justify-content:flex-end}.cssModulesScope .cssModules-mgM_0Lua3wckx6jp{display:flex;margin-bottom:20px;align-items:center}.cssModulesScope .cssModules-MotDzHLqK81C7kOf{display:flex;margin-left:10px}.cssModulesScope .cssModules-fxDboMexB4wGngnH{margin-left:10px;height:16px}.cssModulesScope .cssModules-fxDboMexB4wGngnH>svg{color:#73879c;opacity:.4;font-size:16px}.cssModulesScope .cssModules-ooobpORmhw05coMl{display:flex;flex-direction:column;justify-content:space-between}.cssModulesScope .cssModules-B8g_Jp8U1eYHOY2g{display:flex;flex-direction:row}.cssModulesScope .cssModules-zDA4iSjW7YcIIWQb{flex-grow:1}.cssModulesScope .cssModules-EV3OZJLpBzER02qO{display:flex;flex-direction:column;margin-left:10px;justify-content:space-between}.cssModulesScope .cssModules-FkLFseFEd54HplVv{display:flex;margin-bottom:10px}.cssModulesScope .cssModules-s5IWYLXGnEkfCc43{flex-grow:1}.cssModulesScope .cssModules-AOuER_UGrfAy9qaQ{margin-left:10px;margin-right:9px;align-self:center}.cssModulesScope .cssModules-AOuER_UGrfAy9qaQ>i{color:#73879c;opacity:.4;font-size:15px}.cssModulesScope .cssModules-uHz1MonzDsYCxYxS{display:flex;margin-bottom:10px;height:31px;align-items:center}.cssModulesScope .cssModules-wXK0Bz6nMH4sngu0{padding-left:16px}@media(min-width: 960px){.cssModulesScope .cssModules-pvEzNfkf0Q8CcZMb{width:508px}.cssModulesScope .cssModules-msCnocchrWMvWkNu{flex-direction:row-reverse}.cssModulesScope .cssModules-cwOaaSN1nnYEvvTv{margin:0 0 0 16px}}
.cssModulesScope .cssModules-ZCadUsh0drsjySA4{margin-top:4px;margin-bottom:0;list-style-type:disc}
.cssModulesScope .cssModules-y7sO6oMOJyEdc9QQ{max-width:1230px;padding:0 15px;margin-left:auto;margin-right:auto;width:100%;flex-grow:1;display:flex;flex-direction:column}.cssModulesScope .cssModules-CcDhMaFED0cV1Pid{max-width:1680px}.cssModulesScope .cssModules-HWp7DdRQ6sIO2ilk{width:630px}.cssModulesScope .cssModules-RNq5uZb9Lw4yr0oS .boxBlock{margin-bottom:0;height:100%}.cssModulesScope .cssModules-x4WYKJA_6g411T4V{margin-bottom:10px}.cssModulesScope .cssModules-lfjgf86LuAsybkPe{line-height:1;font-size:20px}.cssModulesScope .cssModules-dn8u8kbpLyw4kTFa{color:#73879c}.cssModulesScope .cssModules-Xp9II7RPo2oZPF0b{color:#0071bc}.cssModulesScope .cssModules-H8G7TCsLWwfu0LBz{color:#46a147}.cssModulesScope .cssModules-px74cJ2S41QFAuEw{position:absolute;top:0;left:0;z-index:10;width:100%;height:100%;background-color:rgba(0,0,0,.125)}.cssModulesScope .cssModules-rMZ9fcrDoxg4NbtL{position:relative}
.cssModulesScope .cssModules-qYSrI_qKGU4mE_h5{display:flex;flex-wrap:wrap;margin-bottom:-15px}.cssModulesScope .cssModules-qYSrI_qKGU4mE_h5 .cssModules-qIFU127Op00G1y6q{margin-right:40px}.cssModulesScope .cssModules-LnYyCiGm2wYskVXb{display:flex;flex-wrap:wrap}.cssModulesScope .cssModules-LnYyCiGm2wYskVXb .cssModules-IhJx4WKwQ8w75kle{flex-grow:1;flex-basis:0}.cssModulesScope .cssModules-LnYyCiGm2wYskVXb .cssModules-IhJx4WKwQ8w75kle+.cssModules-IhJx4WKwQ8w75kle{margin-left:9px}.cssModulesScope .cssModules-fsCYka5h0Ho33iBd{display:flex;flex-wrap:wrap}.cssModulesScope .cssModules-BXd21fLn7sAgt5c9{display:flex;flex-direction:column;width:100%}.cssModulesScope .cssModules-DFvxKiRXDCArzbsW{position:relative}.cssModulesScope .cssModules-DFvxKiRXDCArzbsW:not(.cssModules-tvgjDDoU1kEWzh3o):hover{background:#5fae9f;color:#fff}.cssModulesScope .cssModules-DFvxKiRXDCArzbsW:not(.cssModules-tvgjDDoU1kEWzh3o):hover>*{background:rgba(0,0,0,0)}.cssModulesScope .cssModules-DFvxKiRXDCArzbsW:not(.cssModules-tvgjDDoU1kEWzh3o):hover>*:first-child label{color:#fff}.cssModulesScope .cssModules-oKVw2Jj2VcVqTBue{z-index:1500;box-shadow:1px 2px 5px rgba(0,0,0,.15);background:#5fae9f}.cssModulesScope .cssModules-oKVw2Jj2VcVqTBue label{color:#fff !important}.cssModulesScope .cssModules-HEh9FxSCLG0ecUOD{display:flex;flex-direction:column}
.cssModulesScope .cssModules-B2gsYR8sn8gPWilh{width:100%;display:inline-block;vertical-align:top;position:relative}.cssModulesScope .cssModules-b_mn4sx66MyneSeQ{margin:0 auto;max-width:480px}.cssModulesScope .cssModules-tynCpYMZKLAVbmtC{text-align:center;margin-bottom:30px !important}.cssModulesScope .cssModules-oGkVjSD5PKQZ3Htq{font-size:20px;margin:40px 0 30px;padding-bottom:20px;text-transform:uppercase;font-weight:700;color:#60afa0}.cssModulesScope .cssModules-QOuMJlAc3m89Y2pf{display:block;margin-bottom:3px;font-size:13px;color:#73879c}.cssModulesScope .cssModules-p9IZAKgX1oi7wlS2{border:1px solid #e6e9ed;border-width:1px 0}
.cssModulesScope .cssModules-ZFv4mCbRck86OMBN{background:#fff}.cssModulesScope .cssModules-ZFv4mCbRck86OMBN ::-webkit-scrollbar{width:9px;height:9px}.cssModulesScope .cssModules-ZFv4mCbRck86OMBN ::-webkit-scrollbar-track{will-change:background-color;-webkit-transition:background-color .3s ease-in-out;transition:background-color .3s ease-in-out;background-color:rgba(0,0,0,0)}.cssModulesScope .cssModules-ZFv4mCbRck86OMBN ::-webkit-scrollbar-thumb{will-change:background-color;-webkit-transition:background-color .3s ease-in-out;transition:background-color .3s ease-in-out;background-color:rgba(0,0,0,0);border-radius:7.5px}.cssModulesScope .cssModules-ZFv4mCbRck86OMBN ::-webkit-scrollbar-thumb:hover{background-color:#516172}.cssModulesScope .cssModules-ZFv4mCbRck86OMBN ::-webkit-scrollbar-thumb:active{background-color:#465463}.cssModulesScope .cssModules-ZFv4mCbRck86OMBN ::-webkit-scrollbar-track{background-color:#e6e9ed}.cssModulesScope .cssModules-ZFv4mCbRck86OMBN ::-webkit-scrollbar-thumb{background-color:#c8cfd8}.cssModulesScope .cssModules-NStY9b1iRRIplPOL{border:1px solid #e6e9ed}.cssModulesScope .cssModules-cGZdM2VjA00XSVz0{-webkit-overflow-scrolling:touch;display:flex;overflow-x:auto;overflow-y:hidden}.cssModulesScope .cssModules-swPUvF4cxZMXbVGJ{position:relative;display:flex;align-items:center;padding:5px 20px;border-right:1px solid #e6e9ed;color:#73879c;height:50px}.cssModulesScope .cssModules-swPUvF4cxZMXbVGJ .cssModules-jtz3xHs29D8UTigz{height:24px;margin-right:8px}.cssModulesScope .cssModules-swPUvF4cxZMXbVGJ .cssModules-ga30ouUa_Q223odr{white-space:nowrap}.cssModulesScope .cssModules-swPUvF4cxZMXbVGJ:after{content:"";position:absolute;width:0;transform:translateX(-50%);left:50%;background-color:#fff;height:3px;bottom:-1px;transition:width .2s,background-color .2s}.cssModulesScope .cssModules-swPUvF4cxZMXbVGJ:focus,.cssModulesScope .cssModules-swPUvF4cxZMXbVGJ:hover{color:#73879c}.cssModulesScope .cssModules-swPUvF4cxZMXbVGJ:focus:after,.cssModulesScope .cssModules-swPUvF4cxZMXbVGJ:hover:after{background-color:#73879c}.cssModulesScope .cssModules-swPUvF4cxZMXbVGJ.cssModules-CbrtDmHGGDUDee7P:after,.cssModulesScope .cssModules-swPUvF4cxZMXbVGJ.cssModules-CbrtDmHGGDUDee7P:hover:after,.cssModulesScope .cssModules-swPUvF4cxZMXbVGJ:hover:after{width:calc(100% + 1px)}.cssModulesScope .cssModules-swPUvF4cxZMXbVGJ.cssModules-CbrtDmHGGDUDee7P,.cssModulesScope .cssModules-swPUvF4cxZMXbVGJ.cssModules-CbrtDmHGGDUDee7P:hover{color:#5fae9f}.cssModulesScope .cssModules-swPUvF4cxZMXbVGJ.cssModules-CbrtDmHGGDUDee7P:after,.cssModulesScope .cssModules-swPUvF4cxZMXbVGJ.cssModules-CbrtDmHGGDUDee7P:hover:after{background-color:#5fae9f}.cssModulesScope .cssModules-bsCm624mjRkVjcg1{background:#fff}
.cssModulesScope .cssModules-TsC41juVsq09GDna{margin:0 -10px}.cssModulesScope .cssModules-DII1rRhi8v0T8Cbt{padding:0 10px}
.cssModulesScope .cssModules-hswYDCfl3pEKQBz9{box-sizing:border-box;flex:0 0 auto;padding:0 5px;padding-bottom:10px}.cssModulesScope .cssModules-yuz_QsO414IhfdU6{padding:0 5px;padding-bottom:10px;flex-basis:100%;max-width:100%}@media only screen and (min-width: 992px){.cssModulesScope .cssModules-yuz_QsO414IhfdU6{flex-grow:1;flex-basis:0}}.cssModulesScope .cssModules-kl5XWZDVX8Y00NQr{flex-basis:8.3333333333%;max-width:8.3333333333%}.cssModulesScope .cssModules-v2OdhjQyNm07pPNW{flex-basis:16.6666666667%;max-width:16.6666666667%}.cssModulesScope .cssModules-_SBsrBjJTon4Uk64{flex-basis:25%;max-width:25%}.cssModulesScope .cssModules-zDtMTzM7rqIswOAL{flex-basis:33.3333333333%;max-width:33.3333333333%}.cssModulesScope .cssModules-Y_pWzRFTCMU_XZln{flex-basis:41.6666666667%;max-width:41.6666666667%}.cssModulesScope .cssModules-xGXH_P4no9skeOu_{flex-basis:50%;max-width:50%}.cssModulesScope .cssModules-HkDZTkdDqQKInLnE{flex-basis:58.3333333333%;max-width:58.3333333333%}.cssModulesScope .cssModules-etf2nDEr8QIwQ1Pr{flex-basis:66.6666666667%;max-width:66.6666666667%}.cssModulesScope .cssModules-jeRfQkyEirQUt5Ec{flex-basis:75%;max-width:75%}.cssModulesScope .cssModules-C1J3I4jw7TUbbCjM{flex-basis:83.3333333333%;max-width:83.3333333333%}.cssModulesScope .cssModules-QvOHiN0c2QjtgaV3{flex-basis:91.6666666667%;max-width:91.6666666667%}.cssModulesScope .cssModules-vy4p_Hgjru81T9AY{flex-basis:100%;max-width:100%}@media only screen and (min-width: 540px){.cssModulesScope .cssModules-BL8DiNHCeEkbI519{flex-basis:8.3333333333%;max-width:8.3333333333%}.cssModulesScope .cssModules-TZ8SzUqDSGUY6DZZ{flex-basis:16.6666666667%;max-width:16.6666666667%}.cssModulesScope .cssModules-NHiVklMaZwalHGw7{flex-basis:25%;max-width:25%}.cssModulesScope .cssModules-ddvwVJBtl0opuGBX{flex-basis:33.3333333333%;max-width:33.3333333333%}.cssModulesScope .cssModules-zb1RP6tIuIx32Ibm{flex-basis:41.6666666667%;max-width:41.6666666667%}.cssModulesScope .cssModules-Nf8fE8r__lUp8hKI{flex-basis:50%;max-width:50%}.cssModulesScope .cssModules-dd2HLsK258U7dxvW{flex-basis:58.3333333333%;max-width:58.3333333333%}.cssModulesScope .cssModules-cxDMsmBAVAMTDb5z{flex-basis:66.6666666667%;max-width:66.6666666667%}.cssModulesScope .cssModules-sn_cFLTxbuAWrc6H{flex-basis:75%;max-width:75%}.cssModulesScope .cssModules-Hc3tUSBB2XgMOegU{flex-basis:83.3333333333%;max-width:83.3333333333%}.cssModulesScope .cssModules-jxD01t8nXkwvKBvl{flex-basis:91.6666666667%;max-width:91.6666666667%}.cssModulesScope .cssModules-Z27VGzIyIPYvhjPI{flex-basis:100%;max-width:100%}}@media only screen and (min-width: 992px){.cssModulesScope .cssModules-CDUkbHea1U4ZP0il{flex-basis:8.3333333333%;max-width:8.3333333333%}.cssModulesScope .cssModules-u6nQ7e8MRhUF7fVx{flex-basis:16.6666666667%;max-width:16.6666666667%}.cssModulesScope .cssModules-EDcgErwWXSYrOBI8{flex-basis:25%;max-width:25%}.cssModulesScope .cssModules-imRie9via9wdqGRI{flex-basis:33.3333333333%;max-width:33.3333333333%}.cssModulesScope .cssModules-dX3_rpE06skxNUHl{flex-basis:41.6666666667%;max-width:41.6666666667%}.cssModulesScope .cssModules-YXXncqrUH3kNdYBa{flex-basis:50%;max-width:50%}.cssModulesScope .cssModules-GDqNV_B2Ym4foJ2b{flex-basis:58.3333333333%;max-width:58.3333333333%}.cssModulesScope .cssModules-R93lPZo96UNoWC6o{flex-basis:66.6666666667%;max-width:66.6666666667%}.cssModulesScope .cssModules-JpIR_E_H4Cc9soIv{flex-basis:75%;max-width:75%}.cssModulesScope .cssModules-xyMqCFbo8iW5RICV{flex-basis:83.3333333333%;max-width:83.3333333333%}.cssModulesScope .cssModules-ZENLgnDtAU99y7M0{flex-basis:91.6666666667%;max-width:91.6666666667%}.cssModulesScope .cssModules-e2U0dWPtPWIIZaYQ{flex-basis:100%;max-width:100%}}@media only screen and (min-width: 1200px){.cssModulesScope .cssModules-cTIxdSePKgQNfhC0{flex-basis:8.3333333333%;max-width:8.3333333333%}.cssModulesScope .cssModules-ZfUMhqhQ5SPQf3uf{flex-basis:16.6666666667%;max-width:16.6666666667%}.cssModulesScope .cssModules-DM666KIGfGsWBSKE{flex-basis:25%;max-width:25%}.cssModulesScope .cssModules-WiG7NtUtIdTdSXZf{flex-basis:33.3333333333%;max-width:33.3333333333%}.cssModulesScope .cssModules-AZozxtJY2tEZbUgw{flex-basis:41.6666666667%;max-width:41.6666666667%}.cssModulesScope .cssModules-DIjJ7BQ9Y84K8nTs{flex-basis:50%;max-width:50%}.cssModulesScope .cssModules-_p4Wbm8lejMNVCPy{flex-basis:58.3333333333%;max-width:58.3333333333%}.cssModulesScope .cssModules-bDUvwN2KLYwd3M_a{flex-basis:66.6666666667%;max-width:66.6666666667%}.cssModulesScope .cssModules-w_sS4hnuuJEG6xto{flex-basis:75%;max-width:75%}.cssModulesScope .cssModules-mhbsDKD_5H4DEquQ{flex-basis:83.3333333333%;max-width:83.3333333333%}.cssModulesScope .cssModules-_YiIeluhGQcWhM2c{flex-basis:91.6666666667%;max-width:91.6666666667%}.cssModulesScope .cssModules-JM2R03H03UotnHv9{flex-basis:100%;max-width:100%}}.cssModulesScope .cssModules-bgz0pTNyW8cFIO4c{order:-1}.cssModulesScope .cssModules-BURzUqvWH18uwv47{order:1}
.cssModulesScope .cssModules-tPZc9VduFzs7v60T{display:flex;flex:0 1 auto;flex-direction:row;flex-wrap:wrap;margin:0 -5px;margin-bottom:-10px}.cssModulesScope .cssModules-QhsPUSIewlEWc8t7{justify-content:flex-start;text-align:start}.cssModulesScope .cssModules-I0OPh2uBlrI14lQy{justify-content:center;text-align:center}.cssModulesScope .cssModules-BDLBqx_jFV8GAtdy{justify-content:flex-end;text-align:end}.cssModulesScope .cssModules-FocT4LmootY_UI83{justify-content:space-around}.cssModulesScope .cssModules-kQJxcfCFcUQpLZHX{justify-content:space-between}.cssModulesScope .cssModules-A_tBEYBSFIcX1rcv{align-items:flex-start}.cssModulesScope .cssModules-pdkM3C5RefIL98P5{align-items:center}.cssModulesScope .cssModules-jVvzjOEqSvwlodxO{align-items:flex-end}.cssModulesScope .cssModules-gpw9uOGK49klV5Fx{flex:1}.cssModulesScope .cssModules-gpw9uOGK49klV5Fx>*{display:flex;flex-flow:column}.cssModulesScope .cssModules-lFUbeckT0YkNkFyS{flex:1}.cssModulesScope .cssModules-lFUbeckT0YkNkFyS>*{display:flex;flex-flow:column}.cssModulesScope .cssModules-lFUbeckT0YkNkFyS>*>*{margin-bottom:10px}.cssModulesScope .cssModules-lFUbeckT0YkNkFyS>*>*:last-child{flex-grow:1;margin-bottom:0}
.cssModulesScope .cssModules-Vjg6uFnHT5ULBkrX{padding:0 9px}.cssModulesScope .cssModules-mvXKo2M1SjEgXawp{color:#73879c}.cssModulesScope .cssModules-oZqppoRuDpksakS9{margin-top:9px}
.cssModulesScope .cssModules-O7BjEbWoMVIST0p_{display:block;margin-top:4px;color:#ff6565}.cssModulesScope .cssModules-u_e7od9KOsYbh81J{width:100%;display:flex;flex-flow:row nowrap;align-items:center}.cssModulesScope .cssModules-u_e7od9KOsYbh81J>div:first-of-type{margin-right:5px}.cssModulesScope .cssModules-u_e7od9KOsYbh81J>div+div{margin-left:5px}.cssModulesScope .cssModules-u_e7od9KOsYbh81J>button{margin-left:10px}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: "Open Sans", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

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

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
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;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

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

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

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

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

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

progress {
  vertical-align: baseline;
}

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

::-webkit-inner-spin-button,
::-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.
*/

::-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 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
	*:focus-visible {
  border-radius: 0.375rem;
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: #2979FF;
}
	html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
	body {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}
.s-pointer-events-none {
  pointer-events: none;
}
.s-invisible {
  visibility: hidden;
}
.s-fixed {
  position: fixed;
}
.s-absolute {
  position: absolute;
}
.s-relative {
  position: relative;
}
.s-sticky {
  position: sticky;
}
.s-inset-0 {
  inset: 0px;
}
.s-inset-y-0 {
  top: 0px;
  bottom: 0px;
}
.-s-left-2 {
  left: -0.5rem;
}
.-s-right-2 {
  right: -0.5rem;
}
.s-bottom-0 {
  bottom: 0px;
}
.s-bottom-1 {
  bottom: 0.25rem;
}
.s-bottom-2\.5 {
  bottom: 0.625rem;
}
.s-left-0 {
  left: 0px;
}
.s-left-\[50\%\] {
  left: 50%;
}
.s-right-0 {
  right: 0px;
}
.s-right-\[16px\] {
  right: 16px;
}
.s-right-\[22px\] {
  right: 22px;
}
.s-right-\[5px\] {
  right: 5px;
}
.s-top-0 {
  top: 0px;
}
.s-top-1\/2 {
  top: 50%;
}
.s-top-\[24px\] {
  top: 24px;
}
.s-top-\[50\%\] {
  top: 50%;
}
.s-top-\[5px\] {
  top: 5px;
}
.\!s-z-\[1500\] {
  z-index: 1500 !important;
}
.s-z-10 {
  z-index: 10;
}
.s-z-101 {
  z-index: 101;
}
.s-z-\[1500\] {
  z-index: 1500;
}
.s-z-\[2000\] {
  z-index: 2000;
}
.s-z-\[500\] {
  z-index: 500;
}
.s-z-\[900\] {
  z-index: 900;
}
.s-col-span-12 {
  grid-column: span 12 / span 12;
}
.s-m-0 {
  margin: 0px;
}
.s-m-auto {
  margin: auto;
}
.\!s-my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.-s-mx-2 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.s-mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.s-mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.s-mx-\[-5px\] {
  margin-left: -5px;
  margin-right: -5px;
}
.s-mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.s-my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.s-my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.s-my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.s-my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.s-my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.s-my-7 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}
.s-my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.s-my-\[24px\] {
  margin-top: 24px;
  margin-bottom: 24px;
}
.-s-ml-\[var\(--input-padding-x\)\] {
  margin-left: calc(var(--input-padding-x) * -1);
}
.-s-mr-2 {
  margin-right: -0.5rem;
}
.-s-mr-\[var\(--input-padding-x\)\] {
  margin-right: calc(var(--input-padding-x) * -1);
}
.-s-mt-3 {
  margin-top: -0.75rem;
}
.-s-mt-6 {
  margin-top: -1.5rem;
}
.s-mb-0\.5 {
  margin-bottom: 0.125rem;
}
.s-mb-1 {
  margin-bottom: 0.25rem;
}
.s-mb-2 {
  margin-bottom: 0.5rem;
}
.s-mb-2\.5 {
  margin-bottom: 0.625rem;
}
.s-mb-3 {
  margin-bottom: 0.75rem;
}
.s-mb-4 {
  margin-bottom: 1rem;
}
.s-mb-5 {
  margin-bottom: 1.25rem;
}
.s-mb-6 {
  margin-bottom: 1.5rem;
}
.s-mb-7 {
  margin-bottom: 1.75rem;
}
.s-mb-8 {
  margin-bottom: 2rem;
}
.s-mb-\[15px\] {
  margin-bottom: 15px;
}
.s-mb-\[4px\] {
  margin-bottom: 4px;
}
.s-me-1 {
  margin-inline-end: 0.25rem;
}
.s-me-2\.5 {
  margin-inline-end: 0.625rem;
}
.s-ml-0 {
  margin-left: 0px;
}
.s-ml-1 {
  margin-left: 0.25rem;
}
.s-ml-2 {
  margin-left: 0.5rem;
}
.s-ml-2\.5 {
  margin-left: 0.625rem;
}
.s-ml-4 {
  margin-left: 1rem;
}
.s-ml-6 {
  margin-left: 1.5rem;
}
.s-ml-\[-65px\] {
  margin-left: -65px;
}
.s-ml-auto {
  margin-left: auto;
}
.s-mr-0 {
  margin-right: 0px;
}
.s-mr-2 {
  margin-right: 0.5rem;
}
.s-mr-2\.5 {
  margin-right: 0.625rem;
}
.s-mr-3 {
  margin-right: 0.75rem;
}
.s-mr-4 {
  margin-right: 1rem;
}
.s-mr-6 {
  margin-right: 1.5rem;
}
.s-mr-auto {
  margin-right: auto;
}
.s-ms-1 {
  margin-inline-start: 0.25rem;
}
.s-ms-2 {
  margin-inline-start: 0.5rem;
}
.s-ms-2\.5 {
  margin-inline-start: 0.625rem;
}
.s-mt-1 {
  margin-top: 0.25rem;
}
.s-mt-2\.5 {
  margin-top: 0.625rem;
}
.s-mt-3 {
  margin-top: 0.75rem;
}
.s-mt-4 {
  margin-top: 1rem;
}
.s-mt-5 {
  margin-top: 1.25rem;
}
.s-mt-6 {
  margin-top: 1.5rem;
}
.s-mt-\[4px\] {
  margin-top: 4px;
}
.s-mt-auto {
  margin-top: auto;
}
.s-box-border {
  box-sizing: border-box;
}
.s-block {
  display: block;
}
.s-inline-block {
  display: inline-block;
}
.s-flex {
  display: flex;
}
.s-grid {
  display: grid;
}
.s-hidden {
  display: none;
}
.s-size-10 {
  width: 2.5rem;
  height: 2.5rem;
}
.s-size-14 {
  width: 3.5rem;
  height: 3.5rem;
}
.s-size-2 {
  width: 0.5rem;
  height: 0.5rem;
}
.s-size-2\.5 {
  width: 0.625rem;
  height: 0.625rem;
}
.s-size-3 {
  width: 0.75rem;
  height: 0.75rem;
}
.s-size-3\.5 {
  width: 0.875rem;
  height: 0.875rem;
}
.s-size-4 {
  width: 1rem;
  height: 1rem;
}
.s-size-5 {
  width: 1.25rem;
  height: 1.25rem;
}
.s-size-6 {
  width: 1.5rem;
  height: 1.5rem;
}
.s-size-8 {
  width: 2rem;
  height: 2rem;
}
.s-size-\[1\.875rem\] {
  width: 1.875rem;
  height: 1.875rem;
}
.s-size-\[1em\] {
  width: 1em;
  height: 1em;
}
.s-size-\[20px\] {
  width: 20px;
  height: 20px;
}
.s-size-\[30px\] {
  width: 30px;
  height: 30px;
}
.s-size-\[40px\] {
  width: 40px;
  height: 40px;
}
.s-size-auto {
  width: auto;
  height: auto;
}
.s-size-min {
  width: -moz-min-content;
  width: min-content;
  height: -moz-min-content;
  height: min-content;
}
.s-h-1 {
  height: 0.25rem;
}
.s-h-10 {
  height: 2.5rem;
}
.s-h-14 {
  height: 3.5rem;
}
.s-h-2 {
  height: 0.5rem;
}
.s-h-20 {
  height: 5rem;
}
.s-h-3 {
  height: 0.75rem;
}
.s-h-3\/5 {
  height: 60%;
}
.s-h-4 {
  height: 1rem;
}
.s-h-8 {
  height: 2rem;
}
.s-h-96 {
  height: 24rem;
}
.s-h-\[1024px\] {
  height: 1024px;
}
.s-h-\[12px\] {
  height: 12px;
}
.s-h-\[16px\] {
  height: 16px;
}
.s-h-\[2\.375rem\] {
  height: 2.375rem;
}
.s-h-\[20px\] {
  height: 20px;
}
.s-h-\[22px\] {
  height: 22px;
}
.s-h-\[24px\] {
  height: 24px;
}
.s-h-\[30px\] {
  height: 30px;
}
.s-h-\[38px\] {
  height: 38px;
}
.s-h-\[400px\] {
  height: 400px;
}
.s-h-\[44px\] {
  height: 44px;
}
.s-h-\[60px\] {
  height: 60px;
}
.s-h-\[80\%\] {
  height: 80%;
}
.s-h-\[88px\] {
  height: 88px;
}
.s-h-auto {
  height: auto;
}
.s-h-dvh {
  height: 100dvh;
}
.s-h-full {
  height: 100%;
}
.s-h-min {
  height: -moz-min-content;
  height: min-content;
}
.s-h-px {
  height: 1px;
}
.s-max-h-\[14px\] {
  max-height: 14px;
}
.s-max-h-\[280px\] {
  max-height: 280px;
}
.s-max-h-dvh {
  max-height: 100dvh;
}
.s-max-h-full {
  max-height: 100%;
}
.s-min-h-16 {
  min-height: 4rem;
}
.s-min-h-4 {
  min-height: 1rem;
}
.s-min-h-6 {
  min-height: 1.5rem;
}
.s-min-h-\[14px\] {
  min-height: 14px;
}
.s-min-h-\[4rem\] {
  min-height: 4rem;
}
.s-w-10 {
  width: 2.5rem;
}
.s-w-14 {
  width: 3.5rem;
}
.s-w-3 {
  width: 0.75rem;
}
.s-w-32 {
  width: 8rem;
}
.s-w-4 {
  width: 1rem;
}
.s-w-6 {
  width: 1.5rem;
}
.s-w-8 {
  width: 2rem;
}
.s-w-9 {
  width: 2.25rem;
}
.s-w-\[12px\] {
  width: 12px;
}
.s-w-\[1920px\] {
  width: 1920px;
}
.s-w-\[200px\] {
  width: 200px;
}
.s-w-\[225px\] {
  width: 225px;
}
.s-w-\[24px\] {
  width: 24px;
}
.s-w-\[284px\] {
  width: 284px;
}
.s-w-\[28px\] {
  width: 28px;
}
.s-w-\[320px\] {
  width: 320px;
}
.s-w-\[33px\] {
  width: 33px;
}
.s-w-\[365px\] {
  width: 365px;
}
.s-w-\[400px\] {
  width: 400px;
}
.s-w-\[480px\] {
  width: 480px;
}
.s-w-\[48px\] {
  width: 48px;
}
.s-w-\[640px\] {
  width: 640px;
}
.s-w-\[80\%\] {
  width: 80%;
}
.s-w-\[88px\] {
  width: 88px;
}
.s-w-\[960px\] {
  width: 960px;
}
.s-w-\[var\(--input-width\)\] {
  width: var(--input-width);
}
.s-w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.s-w-full {
  width: 100%;
}
.s-w-px {
  width: 1px;
}
.s-min-w-80 {
  min-width: 20rem;
}
.s-min-w-\[120px\] {
  min-width: 120px;
}
.s-min-w-\[14px\] {
  min-width: 14px;
}
.s-min-w-\[24px\] {
  min-width: 24px;
}
.s-min-w-\[50px\] {
  min-width: 50px;
}
.s-min-w-\[80px\] {
  min-width: 80px;
}
.s-min-w-fit {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.s-max-w-80 {
  max-width: 20rem;
}
.s-max-w-\[14px\] {
  max-width: 14px;
}
.s-max-w-\[200px\] {
  max-width: 200px;
}
.s-max-w-\[365px\] {
  max-width: 365px;
}
.s-max-w-\[70\%\] {
  max-width: 70%;
}
.s-max-w-full {
  max-width: 100%;
}
.s-max-w-none {
  max-width: none;
}
.s-flex-1 {
  flex: 1 1 0%;
}
.s-flex-shrink-0 {
  flex-shrink: 0;
}
.s-shrink-0 {
  flex-shrink: 0;
}
.s-flex-grow {
  flex-grow: 1;
}
.s-flex-grow-0 {
  flex-grow: 0;
}
.s-grow {
  flex-grow: 1;
}
.s-grow-0 {
  flex-grow: 0;
}
.s-basis-1\/2 {
  flex-basis: 50%;
}
.s-basis-auto {
  flex-basis: auto;
}
.s-basis-full {
  flex-basis: 100%;
}
.s-origin-\[1px\] {
  transform-origin: 1px;
}
.s-origin-\[23px\] {
  transform-origin: 23px;
}
.-s-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-s-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-s-translate-y-\[50\%\] {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.s-translate-x-1\/4 {
  --tw-translate-x: 25%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-s-rotate-90 {
  --tw-rotate: -90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes s-pulse {

  50% {
    opacity: .5;
  }
}
.s-animate-pulse {
  animation: s-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes s-spin {

  to {
    transform: rotate(360deg);
  }
}
.s-animate-spin {
  animation: s-spin 1s linear infinite;
}
.s-cursor-auto {
  cursor: auto;
}
.s-cursor-not-allowed {
  cursor: not-allowed;
}
.s-cursor-pointer {
  cursor: pointer;
}
.s-select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.s-list-disc {
  list-style-type: disc;
}
.s-appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.s-grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.s-grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.s-grid-cols-\[1fr_1px_1fr_1px_1fr\] {
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
}
.s-flex-row {
  flex-direction: row;
}
.s-flex-col {
  flex-direction: column;
}
.s-flex-wrap {
  flex-wrap: wrap;
}
.s-items-start {
  align-items: flex-start;
}
.s-items-end {
  align-items: flex-end;
}
.s-items-center {
  align-items: center;
}
.s-justify-start {
  justify-content: flex-start;
}
.s-justify-center {
  justify-content: center;
}
.s-justify-between {
  justify-content: space-between;
}
.s-justify-around {
  justify-content: space-around;
}
.s-gap-0\.5 {
  gap: 0.125rem;
}
.s-gap-1 {
  gap: 0.25rem;
}
.s-gap-2 {
  gap: 0.5rem;
}
.s-gap-2\.5 {
  gap: 0.625rem;
}
.s-gap-3 {
  gap: 0.75rem;
}
.s-gap-4 {
  gap: 1rem;
}
.s-gap-6 {
  gap: 1.5rem;
}
.s-gap-\[4px\] {
  gap: 4px;
}
.s-gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.s-space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.s-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.625rem * var(--tw-space-x-reverse));
  margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse)));
}
.s-space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.s-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.125rem * var(--tw-space-y-reverse));
}
.s-self-start {
  align-self: flex-start;
}
.s-self-center {
  align-self: center;
}
.s-overflow-auto {
  overflow: auto;
}
.s-overflow-hidden {
  overflow: hidden;
}
.s-overflow-y-auto {
  overflow-y: auto;
}
.s-overscroll-contain {
  overscroll-behavior: contain;
}
.s-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.s-overflow-ellipsis {
  text-overflow: ellipsis;
}
.s-text-ellipsis {
  text-overflow: ellipsis;
}
.s-whitespace-nowrap {
  white-space: nowrap;
}
.s-whitespace-pre {
  white-space: pre;
}
.s-rounded {
  border-radius: 0.25rem;
}
.s-rounded-\[10px\] {
  border-radius: 10px;
}
.s-rounded-\[15px\] {
  border-radius: 15px;
}
.s-rounded-\[16px\] {
  border-radius: 16px;
}
.s-rounded-\[20px\] {
  border-radius: 20px;
}
.s-rounded-\[2px\] {
  border-radius: 2px;
}
.s-rounded-\[4px\] {
  border-radius: 4px;
}
.s-rounded-\[6px\] {
  border-radius: 6px;
}
.s-rounded-full {
  border-radius: 9999px;
}
.s-rounded-lg {
  border-radius: 0.5rem;
}
.s-rounded-md {
  border-radius: 0.375rem;
}
.s-rounded-none {
  border-radius: 0px;
}
.s-rounded-sm {
  border-radius: 0.125rem;
}
.s-rounded-l-\[\.3125rem\] {
  border-top-left-radius: .3125rem;
  border-bottom-left-radius: .3125rem;
}
.s-rounded-l-lg {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.s-border {
  border-width: 1px;
}
.s-border-0 {
  border-width: 0px;
}
.s-border-2 {
  border-width: 2px;
}
.s-border-\[1px\] {
  border-width: 1px;
}
.s-border-\[3px\] {
  border-width: 3px;
}
.s-border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.s-border-b {
  border-bottom-width: 1px;
}
.s-border-b-0 {
  border-bottom-width: 0px;
}
.s-border-l {
  border-left-width: 1px;
}
.s-border-r {
  border-right-width: 1px;
}
.s-border-t {
  border-top-width: 1px;
}
.s-border-t-2 {
  border-top-width: 2px;
}
.s-border-solid {
  border-style: solid;
}
.s-border-dashed {
  border-style: dashed;
}
.s-border-none {
  border-style: none;
}
.s-border-\[\#151F2B\] {
  --tw-border-opacity: 1;
  border-color: rgb(21 31 43 / var(--tw-border-opacity, 1));
}
.s-border-\[\#5FAE9F\] {
  --tw-border-opacity: 1;
  border-color: rgb(95 174 159 / var(--tw-border-opacity, 1));
}
.s-border-\[\#5cb0a1\] {
  --tw-border-opacity: 1;
  border-color: rgb(92 176 161 / var(--tw-border-opacity, 1));
}
.s-border-\[\#60afa0\] {
  --tw-border-opacity: 1;
  border-color: rgb(96 175 160 / var(--tw-border-opacity, 1));
}
.s-border-\[\#73879c\] {
  --tw-border-opacity: 1;
  border-color: rgb(115 135 156 / var(--tw-border-opacity, 1));
}
.s-border-\[\#ABB7C4\] {
  --tw-border-opacity: 1;
  border-color: rgb(171 183 196 / var(--tw-border-opacity, 1));
}
.s-border-\[\#E6E9ED\] {
  --tw-border-opacity: 1;
  border-color: rgb(230 233 237 / var(--tw-border-opacity, 1));
}
.s-border-\[\#dfe1e5\] {
  --tw-border-opacity: 1;
  border-color: rgb(223 225 229 / var(--tw-border-opacity, 1));
}
.s-border-\[\#edeff2\] {
  --tw-border-opacity: 1;
  border-color: rgb(237 239 242 / var(--tw-border-opacity, 1));
}
.s-border-\[\#ff6565\] {
  --tw-border-opacity: 1;
  border-color: rgb(255 101 101 / var(--tw-border-opacity, 1));
}
.s-border-\[var\(--border-color\)\] {
  border-color: var(--border-color);
}
.s-border-\[var\(--main-color\)\] {
  border-color: var(--main-color);
}
.s-border-gray-light {
  --tw-border-opacity: 1;
  border-color: rgb(223 225 229 / var(--tw-border-opacity, 1));
}
.s-border-gray-main {
  --tw-border-opacity: 1;
  border-color: rgb(171 183 196 / var(--tw-border-opacity, 1));
}
.s-border-green-500 {
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}
.s-border-red-700 {
  --tw-border-opacity: 1;
  border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}
.s-border-red-main {
  --tw-border-opacity: 1;
  border-color: rgb(255 101 101 / var(--tw-border-opacity, 1));
}
.s-border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.s-border-white-dark {
  --tw-border-opacity: 1;
  border-color: rgb(230 233 237 / var(--tw-border-opacity, 1));
}
.s-border-yellow-700 {
  --tw-border-opacity: 1;
  border-color: rgb(161 98 7 / var(--tw-border-opacity, 1));
}
.s-border-b-\[\#ebeef0\] {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(235 238 240 / var(--tw-border-opacity, 1));
}
.s-border-b-gray-dark {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(115 135 156 / var(--tw-border-opacity, 1));
}
.s-border-l-white-dark {
  --tw-border-opacity: 1;
  border-left-color: rgb(230 233 237 / var(--tw-border-opacity, 1));
}
.s-border-t-\[\#61BE61\] {
  --tw-border-opacity: 1;
  border-top-color: rgb(97 190 97 / var(--tw-border-opacity, 1));
}
.s-border-t-\[\#9F833C\] {
  --tw-border-opacity: 1;
  border-top-color: rgb(159 131 60 / var(--tw-border-opacity, 1));
}
.s-border-t-\[\#C73E3B\] {
  --tw-border-opacity: 1;
  border-top-color: rgb(199 62 59 / var(--tw-border-opacity, 1));
}
.s-bg-\[\#151F2B\] {
  --tw-bg-opacity: 1;
  background-color: rgb(21 31 43 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#212F40\] {
  --tw-bg-opacity: 1;
  background-color: rgb(33 47 64 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#212f40D9\] {
  background-color: #212f40D9;
}
.s-bg-\[\#29ABE2\] {
  --tw-bg-opacity: 1;
  background-color: rgb(41 171 226 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#3ad98a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(58 217 138 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#46A1471A\] {
  background-color: #46A1471A;
}
.s-bg-\[\#46A147\] {
  --tw-bg-opacity: 1;
  background-color: rgb(70 161 71 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#46A147\]\/10 {
  background-color: rgb(70 161 71 / 0.1);
}
.s-bg-\[\#4A5867\] {
  --tw-bg-opacity: 1;
  background-color: rgb(74 88 103 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#4c555b\]\/30 {
  background-color: rgb(76 85 91 / 0.3);
}
.s-bg-\[\#5FAE9F4D\] {
  background-color: #5FAE9F4D;
}
.s-bg-\[\#73879c\] {
  --tw-bg-opacity: 1;
  background-color: rgb(115 135 156 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#9747FF\]\/\[\.1\] {
  background-color: rgb(151 71 255 / .1);
}
.s-bg-\[\#ABB7C4\] {
  --tw-bg-opacity: 1;
  background-color: rgb(171 183 196 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#E4BC56\] {
  --tw-bg-opacity: 1;
  background-color: rgb(228 188 86 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#F0C65B\] {
  --tw-bg-opacity: 1;
  background-color: rgb(240 198 91 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#F5F5F5\] {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#FF6565\]\/10 {
  background-color: rgb(255 101 101 / 0.1);
}
.s-bg-\[\#dfe1e5\] {
  --tw-bg-opacity: 1;
  background-color: rgb(223 225 229 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#ef5b33\] {
  --tw-bg-opacity: 1;
  background-color: rgb(239 91 51 / var(--tw-bg-opacity, 1));
}
.s-bg-\[\#ff6565\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 101 101 / var(--tw-bg-opacity, 1));
}
.s-bg-\[rgb\(115\,135\,156\,0\.12\)\] {
  background-color: rgb(115,135,156,0.12);
}
.s-bg-\[rgba\(95\,174\,159\,0\.1\)\] {
  background-color: rgba(95,174,159,0.1);
}
.s-bg-\[var\(--bg-color\)\] {
  background-color: var(--bg-color);
}
.s-bg-\[var\(--main-color\)\] {
  background-color: var(--main-color);
}
.s-bg-black-light {
  --tw-bg-opacity: 1;
  background-color: rgb(74 88 103 / var(--tw-bg-opacity, 1));
}
.s-bg-black-main {
  --tw-bg-opacity: 1;
  background-color: rgb(33 47 64 / var(--tw-bg-opacity, 1));
}
.s-bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.s-bg-orange-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
}
.s-bg-red-main {
  --tw-bg-opacity: 1;
  background-color: rgb(255 101 101 / var(--tw-bg-opacity, 1));
}
.s-bg-transparent {
  background-color: transparent;
}
.s-bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.s-bg-white-dark {
  --tw-bg-opacity: 1;
  background-color: rgb(230 233 237 / var(--tw-bg-opacity, 1));
}
.s-bg-\[linear-gradient\(to_bottom\,_\#ABB7C4_50\%\,_rgba\(255\,255\,255\,0\)_0\%\)\] {
  background-image: linear-gradient(to bottom, #ABB7C4 50%, rgba(255,255,255,0) 0%);
}
.s-bg-\[linear-gradient\(to_right\,_\#ABB7C4_50\%\,_rgba\(255\,255\,255\,0\)_0\%\)\] {
  background-image: linear-gradient(to right, #ABB7C4 50%, rgba(255,255,255,0) 0%);
}
.s-bg-gradient-135deg {
  background-image: linear-gradient(135deg, var(--tw-gradient-stops));
}
.s-bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.s-from-\[\#4792b3\] {
  --tw-gradient-from: #4792b3 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(71 146 179 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.s-from-\[var\(--shipmonk-phrases-loading-background\,\#f5f5f5\)\] {
  --tw-gradient-from: var(--shipmonk-phrases-loading-background,#f5f5f5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.s-via-\[\#40b69e\] {
  --tw-gradient-to: rgb(64 182 158 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #40b69e var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.s-via-transparent {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.s-via-50\% {
  --tw-gradient-via-position: 50%;
}
.s-via-65\% {
  --tw-gradient-via-position: 65%;
}
.s-to-\[\#3ad98a\] {
  --tw-gradient-to: #3ad98a var(--tw-gradient-to-position);
}
.s-to-\[var\(--shipmonk-phrases-loading-background\,\#f5f5f5\)\] {
  --tw-gradient-to: var(--shipmonk-phrases-loading-background,#f5f5f5) var(--tw-gradient-to-position);
}
.s-bg-\[0_0\] {
  background-position: 0 0;
}
.s-bg-repeat-x {
  background-repeat: repeat-x;
}
.s-bg-repeat-y {
  background-repeat: repeat-y;
}
.s-fill-black-light {
  fill: #4a5867;
}
.s-fill-gray-dark {
  fill: #73879c;
}
.s-fill-gray-dark\/30 {
  fill: rgb(115 135 156 / 0.3);
}
.s-fill-gray-light {
  fill: #dfe1e5;
}
.s-fill-red-main {
  fill: #ff6565;
}
.s-fill-smGreen-main {
  fill: #5fae9f;
}
.s-fill-white {
  fill: #fff;
}
.s-stroke-current {
  stroke: currentColor;
}
.s-p-0 {
  padding: 0px;
}
.s-p-1 {
  padding: 0.25rem;
}
.s-p-2 {
  padding: 0.5rem;
}
.s-p-2\.5 {
  padding: 0.625rem;
}
.s-p-4 {
  padding: 1rem;
}
.s-p-5 {
  padding: 1.25rem;
}
.s-p-\[10px\] {
  padding: 10px;
}
.s-p-\[13px\] {
  padding: 13px;
}
.s-p-\[16px\] {
  padding: 16px;
}
.s-p-\[9px\] {
  padding: 9px;
}
.s-px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.s-px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.s-px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.s-px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.s-px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.s-px-3\.5 {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}
.s-px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.s-px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.s-px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.s-px-\[10px\] {
  padding-left: 10px;
  padding-right: 10px;
}
.s-px-\[12px\] {
  padding-left: 12px;
  padding-right: 12px;
}
.s-px-\[4px\] {
  padding-left: 4px;
  padding-right: 4px;
}
.s-px-\[5px\] {
  padding-left: 5px;
  padding-right: 5px;
}
.s-px-\[var\(--input-padding-x\)\] {
  padding-left: var(--input-padding-x);
  padding-right: var(--input-padding-x);
}
.s-py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.s-py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.s-py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.s-py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.s-py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.s-py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.s-py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.s-py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.s-py-40 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.s-py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.s-py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.s-py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.s-py-\[1px\] {
  padding-top: 1px;
  padding-bottom: 1px;
}
.s-py-\[3px\] {
  padding-top: 3px;
  padding-bottom: 3px;
}
.s-py-\[6px\] {
  padding-top: 6px;
  padding-bottom: 6px;
}
.\!s-pr-0 {
  padding-right: 0px !important;
}
.s-pb-12 {
  padding-bottom: 3rem;
}
.s-pb-2 {
  padding-bottom: 0.5rem;
}
.s-pb-2\.5 {
  padding-bottom: 0.625rem;
}
.s-pb-6 {
  padding-bottom: 1.5rem;
}
.s-pb-8 {
  padding-bottom: 2rem;
}
.s-pb-\[24px\] {
  padding-bottom: 24px;
}
.s-pe-3 {
  padding-inline-end: 0.75rem;
}
.s-pl-0 {
  padding-left: 0px;
}
.s-pl-5 {
  padding-left: 1.25rem;
}
.s-pl-\[10px\] {
  padding-left: 10px;
}
.s-pl-\[34px\] {
  padding-left: 34px;
}
.s-pr-0 {
  padding-right: 0px;
}
.s-pr-1 {
  padding-right: 0.25rem;
}
.s-pt-4 {
  padding-top: 1rem;
}
.s-pt-5 {
  padding-top: 1.25rem;
}
.s-pt-6 {
  padding-top: 1.5rem;
}
.s-pt-8 {
  padding-top: 2rem;
}
.s-text-left {
  text-align: left;
}
.s-text-center {
  text-align: center;
}
.s-text-start {
  text-align: start;
}
.s-align-middle {
  vertical-align: middle;
}
.s-text-\[\.675rem\]\/loose {
  font-size: .675rem;
  line-height: 2;
}
.s-text-\[\.8125rem\]\/\[1\.375rem\] {
  font-size: .8125rem;
  line-height: 1.375rem;
}
.s-text-\[11px\] {
  font-size: 11px;
}
.s-text-\[11px\]\/\[14px\] {
  font-size: 11px;
  line-height: 14px;
}
.s-text-\[11px\]\/\[16px\] {
  font-size: 11px;
  line-height: 16px;
}
.s-text-\[12px\] {
  font-size: 12px;
}
.s-text-\[13px\] {
  font-size: 13px;
}
.s-text-\[13px\]\/\[22px\] {
  font-size: 13px;
  line-height: 22px;
}
.s-text-\[13px\]\/\[24px\] {
  font-size: 13px;
  line-height: 24px;
}
.s-text-\[16px\] {
  font-size: 16px;
}
.s-text-\[16px\]\/\[24px\] {
  font-size: 16px;
  line-height: 24px;
}
.s-text-\[20px\] {
  font-size: 20px;
}
.s-text-\[24px\] {
  font-size: 24px;
}
.s-text-\[40px\] {
  font-size: 40px;
}
.s-text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.s-text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.s-text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.s-text-xs\/4 {
  font-size: 0.75rem;
  line-height: 1rem;
}
.s-text-xs\/relaxed {
  font-size: 0.75rem;
  line-height: 1.625;
}
.s-font-bold {
  font-weight: 700;
}
.s-font-medium {
  font-weight: 500;
}
.s-font-normal {
  font-weight: 400;
}
.s-uppercase {
  text-transform: uppercase;
}
.s-italic {
  font-style: italic;
}
.s-leading-5 {
  line-height: 1.25rem;
}
.s-leading-6 {
  line-height: 1.5rem;
}
.s-leading-7 {
  line-height: 1.75rem;
}
.s-leading-9 {
  line-height: 2.25rem;
}
.s-leading-\[14px\] {
  line-height: 14px;
}
.s-leading-\[16px\] {
  line-height: 16px;
}
.s-leading-\[22px\] {
  line-height: 22px;
}
.s-text-\[\#083808\] {
  --tw-text-opacity: 1;
  color: rgb(8 56 8 / var(--tw-text-opacity, 1));
}
.s-text-\[\#1F2A32\] {
  --tw-text-opacity: 1;
  color: rgb(31 42 50 / var(--tw-text-opacity, 1));
}
.s-text-\[\#212F40\] {
  --tw-text-opacity: 1;
  color: rgb(33 47 64 / var(--tw-text-opacity, 1));
}
.s-text-\[\#46A147\] {
  --tw-text-opacity: 1;
  color: rgb(70 161 71 / var(--tw-text-opacity, 1));
}
.s-text-\[\#60afa0\] {
  --tw-text-opacity: 1;
  color: rgb(96 175 160 / var(--tw-text-opacity, 1));
}
.s-text-\[\#61BE61\] {
  --tw-text-opacity: 1;
  color: rgb(97 190 97 / var(--tw-text-opacity, 1));
}
.s-text-\[\#666666\] {
  --tw-text-opacity: 1;
  color: rgb(102 102 102 / var(--tw-text-opacity, 1));
}
.s-text-\[\#73879C61\] {
  color: #73879C61;
}
.s-text-\[\#73879C\] {
  --tw-text-opacity: 1;
  color: rgb(115 135 156 / var(--tw-text-opacity, 1));
}
.s-text-\[\#9747FF\] {
  --tw-text-opacity: 1;
  color: rgb(151 71 255 / var(--tw-text-opacity, 1));
}
.s-text-\[\#9F833C\] {
  --tw-text-opacity: 1;
  color: rgb(159 131 60 / var(--tw-text-opacity, 1));
}
.s-text-\[\#C73E3B\] {
  --tw-text-opacity: 1;
  color: rgb(199 62 59 / var(--tw-text-opacity, 1));
}
.s-text-\[\#DFE1E5\] {
  --tw-text-opacity: 1;
  color: rgb(223 225 229 / var(--tw-text-opacity, 1));
}
.s-text-\[\#F05A28\] {
  --tw-text-opacity: 1;
  color: rgb(240 90 40 / var(--tw-text-opacity, 1));
}
.s-text-\[\#FF6565\] {
  --tw-text-opacity: 1;
  color: rgb(255 101 101 / var(--tw-text-opacity, 1));
}
.s-text-\[color\:var\(--main-color\)\] {
  color: var(--main-color);
}
.s-text-\[var\(--text-color\)\] {
  color: var(--text-color);
}
.s-text-\[white\] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.s-text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.s-text-black-light {
  --tw-text-opacity: 1;
  color: rgb(74 88 103 / var(--tw-text-opacity, 1));
}
.s-text-black-main {
  --tw-text-opacity: 1;
  color: rgb(33 47 64 / var(--tw-text-opacity, 1));
}
.s-text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}
.s-text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.s-text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.s-text-gray-dark {
  --tw-text-opacity: 1;
  color: rgb(115 135 156 / var(--tw-text-opacity, 1));
}
.s-text-gray-light {
  --tw-text-opacity: 1;
  color: rgb(223 225 229 / var(--tw-text-opacity, 1));
}
.s-text-gray-main {
  --tw-text-opacity: 1;
  color: rgb(171 183 196 / var(--tw-text-opacity, 1));
}
.s-text-green-main {
  --tw-text-opacity: 1;
  color: rgb(70 161 71 / var(--tw-text-opacity, 1));
}
.s-text-inherit {
  color: inherit;
}
.s-text-red-main {
  --tw-text-opacity: 1;
  color: rgb(255 101 101 / var(--tw-text-opacity, 1));
}
.s-text-smGreen-main {
  --tw-text-opacity: 1;
  color: rgb(95 174 159 / var(--tw-text-opacity, 1));
}
.s-text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.s-text-white-dark {
  --tw-text-opacity: 1;
  color: rgb(230 233 237 / var(--tw-text-opacity, 1));
}
.s-text-white-main {
  --tw-text-opacity: 1;
  color: rgb(245 245 245 / var(--tw-text-opacity, 1));
}
.s-text-yellow-main {
  --tw-text-opacity: 1;
  color: rgb(228 188 86 / var(--tw-text-opacity, 1));
}
.s-underline {
  text-decoration-line: underline;
}
.s-placeholder-transparent::-moz-placeholder {
  color: transparent;
}
.s-placeholder-transparent::placeholder {
  color: transparent;
}
.s-opacity-0 {
  opacity: 0;
}
.s-opacity-100 {
  opacity: 1;
}
.s-opacity-20 {
  opacity: 0.2;
}
.s-opacity-30 {
  opacity: 0.3;
}
.s-opacity-50 {
  opacity: 0.5;
}
.s-shadow-\[0_10px_10px_rgba\(0\,0\,0\,0\.1\)\] {
  --tw-shadow: 0 10px 10px rgba(0,0,0,0.1);
  --tw-shadow-colored: 0 10px 10px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.s-shadow-\[0_2px_2px_rgba\(0\,0\,0\,0\.1\)\] {
  --tw-shadow: 0 2px 2px rgba(0,0,0,0.1);
  --tw-shadow-colored: 0 2px 2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.s-shadow-\[0_4px_8px_0_rgba\(0\,0\,0\,\.05\)\] {
  --tw-shadow: 0 4px 8px 0 rgba(0,0,0,.05);
  --tw-shadow-colored: 0 4px 8px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.s-shadow-\[0px_4px_8px_0px_rgba\(0\,0\,0\,0\.05\)\] {
  --tw-shadow: 0px 4px 8px 0px rgba(0,0,0,0.05);
  --tw-shadow-colored: 0px 4px 8px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.s-shadow-\[1px_2px_3px_rgba\(0\,0\,0\,0\.15\)\] {
  --tw-shadow: 1px 2px 3px rgba(0,0,0,0.15);
  --tw-shadow-colored: 1px 2px 3px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.s-shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.s-outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.s-outline {
  outline-style: solid;
}
.s-outline-1 {
  outline-width: 1px;
}
.-s-outline-offset-\[2\.1px\] {
  outline-offset: -2.1px;
}
.s-outline-offset-2 {
  outline-offset: 2px;
}
.s-outline-\[black\] {
  outline-color: black;
}
.s-outline-\[blue\] {
  outline-color: blue;
}
.s-outline-\[green\] {
  outline-color: green;
}
.s-outline-\[transparent\] {
  outline-color: transparent;
}
.s-ring-0 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.s-ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.s-ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.s-ring-inset {
  --tw-ring-inset: inset;
}
.s-ring-\[blue\] {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 0 255 / var(--tw-ring-opacity, 1));
}
.s-ring-\[color\:var\(--main-color\)\] {
  --tw-ring-color: var(--main-color);
}
.s-ring-offset-2 {
  --tw-ring-offset-width: 2px;
}
.s-ring-offset-\[2px\] {
  --tw-ring-offset-width: 2px;
}
.s-transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-transition-\[height\] {
  transition-property: height;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-transition-\[padding-left\] {
  transition-property: padding-left;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-transition-\[top\] {
  transition-property: top;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.s-duration-100 {
  transition-duration: 100ms;
}
.s-duration-1000 {
  transition-duration: 1000ms;
}
.s-duration-200 {
  transition-duration: 200ms;
}
.s-duration-500 {
  transition-duration: 500ms;
}
.s-ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.s-ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.s-ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.\[--anchor-max-height\:280px\] {
  --anchor-max-height: 280px;
}
.\[--bg-active\:\#0000001F\] {
  --bg-active: #0000001F;
}
.\[--bg-active\:\#29ABE24D\] {
  --bg-active: #29ABE24D;
}
.\[--bg-active\:\#46A1474D\] {
  --bg-active: #46A1474D;
}
.\[--bg-active\:\#5FAE9F26\] {
  --bg-active: #5FAE9F26;
}
.\[--bg-active\:\#5FAE9F4D\] {
  --bg-active: #5FAE9F4D;
}
.\[--bg-active\:\#73879C26\] {
  --bg-active: #73879C26;
}
.\[--bg-active\:\#E4BC564D\] {
  --bg-active: #E4BC564D;
}
.\[--bg-active\:\#FF65654D\] {
  --bg-active: #FF65654D;
}
.\[--bg-active\:\#FFFFFF1F\] {
  --bg-active: #FFFFFF1F;
}
.\[--bg-color\:none\] {
  --bg-color: none;
}
.\[--bg-hover\:\#0000000A\] {
  --bg-hover: #0000000A;
}
.\[--bg-hover\:\#29ABE226\] {
  --bg-hover: #29ABE226;
}
.\[--bg-hover\:\#46A14726\] {
  --bg-hover: #46A14726;
}
.\[--bg-hover\:\#5FAE9F26\] {
  --bg-hover: #5FAE9F26;
}
.\[--bg-hover\:\#5FAE9F4D\] {
  --bg-hover: #5FAE9F4D;
}
.\[--bg-hover\:\#73879C14\] {
  --bg-hover: #73879C14;
}
.\[--bg-hover\:\#E4BC5626\] {
  --bg-hover: #E4BC5626;
}
.\[--bg-hover\:\#FF656526\] {
  --bg-hover: #FF656526;
}
.\[--bg-hover\:\#FFFFFF0A\] {
  --bg-hover: #FFFFFF0A;
}
.\[--border-color\:\#73879C\] {
  --border-color: #73879C;
}
.\[--border-color\:\#FF6565\] {
  --border-color: #FF6565;
}
.\[--color-top-border\:\#46A147\] {
  --color-top-border: #46A147;
}
.\[--color-top-border\:\#E4BC56\] {
  --color-top-border: #E4BC56;
}
.\[--color-top-border\:\#FF6565\] {
  --color-top-border: #FF6565;
}
.\[--input-padding-x\:10px\] {
  --input-padding-x: 10px;
}
.\[--light-color\:\#49bea7\] {
  --light-color: #49bea7;
}
.\[--light-color\:\#61be61\] {
  --light-color: #61be61;
}
.\[--light-color\:\#73879c\] {
  --light-color: #73879c;
}
.\[--light-color\:\#f0c65b\] {
  --light-color: #f0c65b;
}
.\[--light-color\:\#ff7777\] {
  --light-color: #ff7777;
}
.\[--main-color\:\#46a147\] {
  --main-color: #46a147;
}
.\[--main-color\:\#4a5867\] {
  --main-color: #4a5867;
}
.\[--main-color\:\#5fae9f\] {
  --main-color: #5fae9f;
}
.\[--main-color\:\#e4bc56\] {
  --main-color: #e4bc56;
}
.\[--main-color\:\#ff6565\] {
  --main-color: #ff6565;
}
.\[--text-color\:\#29ABE2\] {
  --text-color: #29ABE2;
}
.\[--text-color\:\#46A147\] {
  --text-color: #46A147;
}
.\[--text-color\:\#5FAE9F\] {
  --text-color: #5FAE9F;
}
.\[--text-color\:\#73879C\] {
  --text-color: #73879C;
}
.\[--text-color\:\#ABB7C4\] {
  --text-color: #ABB7C4;
}
.\[--text-color\:\#E4BC56\] {
  --text-color: #E4BC56;
}
.\[--text-color\:\#FF6565\] {
  --text-color: #FF6565;
}
.\[--text-color\:inherit\] {
  --text-color: inherit;
}
.\[--text-hover\:\#0071BC\] {
  --text-hover: #0071BC;
}
.\[--text-hover\:\#212F40\] {
  --text-hover: #212F40;
}
.\[--text-hover\:\#2B812C\] {
  --text-hover: #2B812C;
}
.\[--text-hover\:\#4A5867\] {
  --text-hover: #4A5867;
}
.\[--text-hover\:\#5FAE8F\] {
  --text-hover: #5FAE8F;
}
.\[--text-hover\:\#73879C\] {
  --text-hover: #73879C;
}
.\[--text-hover\:\#9F833C\] {
  --text-hover: #9F833C;
}
.\[--text-hover\:\#C73E3B\] {
  --text-hover: #C73E3B;
}
.\[--text-hover\:inherit\] {
  --text-hover: inherit;
}
.\[-moz-appearance\:_textfield\] {
  -moz-appearance: textfield;
}
.\[background-size\:1px_8px\] {
  background-size: 1px 8px;
}
.\[background-size\:8px_1px\] {
  background-size: 8px 1px;
}
.\[box-shadow\:0px_4px_8px_0px_\#0000000D\] {
  box-shadow: 0px 4px 8px 0px #0000000D;
}
.\[transform\:rotateZ\(-45deg\)\] {
  transform: rotateZ(-45deg);
}
.\[transform\:rotateZ\(45deg\)\] {
  transform: rotateZ(45deg);
}
.before\:s-absolute::before {
  content: var(--tw-content);
  position: absolute;
}
.before\:-s-left-4::before {
  content: var(--tw-content);
  left: -1rem;
}
.before\:-s-left-\[4px\]::before {
  content: var(--tw-content);
  left: -4px;
}
.before\:-s-left-px::before {
  content: var(--tw-content);
  left: -1px;
}
.before\:-s-right-4::before {
  content: var(--tw-content);
  right: -1rem;
}
.before\:-s-right-px::before {
  content: var(--tw-content);
  right: -1px;
}
.before\:-s-top-\[18px\]::before {
  content: var(--tw-content);
  top: -18px;
}
.before\:-s-top-px::before {
  content: var(--tw-content);
  top: -1px;
}
.before\:s-top-0::before {
  content: var(--tw-content);
  top: 0px;
}
.before\:s-h-2::before {
  content: var(--tw-content);
  height: 0.5rem;
}
.before\:s-h-full::before {
  content: var(--tw-content);
  height: 100%;
}
.before\:s-h-px::before {
  content: var(--tw-content);
  height: 1px;
}
.before\:s-w-0\.5::before {
  content: var(--tw-content);
  width: 0.125rem;
}
.before\:s-rounded-full::before {
  content: var(--tw-content);
  border-radius: 9999px;
}
.before\:s-rounded-t::before {
  content: var(--tw-content);
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.before\:s-bg-\[\#1F2A32\]::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(31 42 50 / var(--tw-bg-opacity, 1));
}
.before\:s-bg-\[var\(--color-top-border\)\]::before {
  content: var(--tw-content);
  background-color: var(--color-top-border);
}
.before\:s-bg-\[var\(--shipmonk-sidebar-item-indicator\2c \#fff\)\]::before {
  content: var(--tw-content);
  background-color: var(--shipmonk-sidebar-item-indicator,#fff);
}
.before\:s-text-\[10px\]::before {
  content: var(--tw-content);
  font-size: 10px;
}
.before\:s-text-\[black\]::before {
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.before\:s-text-\[blue\]::before {
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgb(0 0 255 / var(--tw-text-opacity, 1));
}
.before\:s-text-\[green\]::before {
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgb(0 128 0 / var(--tw-text-opacity, 1));
}
.before\:s-content-\[\"\"\]::before {
  --tw-content: "";
  content: var(--tw-content);
}
.before\:s-content-\[\'\'\]::before {
  --tw-content: '';
  content: var(--tw-content);
}
.after\:s-absolute::after {
  content: var(--tw-content);
  position: absolute;
}
.after\:s-relative::after {
  content: var(--tw-content);
  position: relative;
}
.after\:s-bottom-0::after {
  content: var(--tw-content);
  bottom: 0px;
}
.after\:s-right-9::after {
  content: var(--tw-content);
  right: 2.25rem;
}
.after\:s-top-0::after {
  content: var(--tw-content);
  top: 0px;
}
.after\:s-z-20::after {
  content: var(--tw-content);
  z-index: 20;
}
.after\:s-block::after {
  content: var(--tw-content);
  display: block;
}
.after\:s-rounded-\[4px\]::after {
  content: var(--tw-content);
  border-radius: 4px;
}
.after\:s-rounded-sm::after {
  content: var(--tw-content);
  border-radius: 0.125rem;
}
.after\:s-border-l::after {
  content: var(--tw-content);
  border-left-width: 1px;
}
.after\:s-border-\[var\(--border-color\)\]::after {
  content: var(--tw-content);
  border-color: var(--border-color);
}
.after\:\!s-bg-\[\#4A5867\]::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1 !important;
  background-color: rgb(74 88 103 / var(--tw-bg-opacity, 1)) !important;
}
.after\:s-pb-\[100\%\]::after {
  content: var(--tw-content);
  padding-bottom: 100%;
}
.after\:s-content-\[\'\'\]::after {
  --tw-content: '';
  content: var(--tw-content);
}
.first\:s-rounded-l-\[4px\]:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.first\:s-border-l:first-child {
  border-left-width: 1px;
}
.last\:s-rounded-r-\[4px\]:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.focus-within\:s-border-\[var\(--border-color\)\]:focus-within {
  border-color: var(--border-color);
}
.focus-within\:s-outline-\[var\(--border-color\)\]:focus-within {
  outline-color: var(--border-color);
}
.focus-within\:s-ring-2:focus-within {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-within\:\[--border-color\:\#5FAE9F\]:focus-within {
  --border-color: #5FAE9F;
}
.focus-within\:\[box-shadow\:0px_0px_4px_0px_var\(--border-color\)\]:focus-within {
  box-shadow: 0px 0px 4px 0px var(--border-color);
}
.hover\:s-rounded:hover {
  border-radius: 0.25rem;
}
.hover\:s-border:hover {
  border-width: 1px;
}
.hover\:s-border-\[\#5FAE9F\]:hover {
  --tw-border-opacity: 1;
  border-color: rgb(95 174 159 / var(--tw-border-opacity, 1));
}
.hover\:s-border-\[white\]:hover {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.hover\:s-border-b-\[\#60afa0\]:hover {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(96 175 160 / var(--tw-border-opacity, 1));
}
.hover\:s-bg-\[\#1B2736\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(27 39 54 / var(--tw-bg-opacity, 1));
}
.hover\:s-bg-\[\#5FAE9F26\]:hover {
  background-color: #5FAE9F26;
}
.hover\:s-bg-\[\#F0C65B\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(240 198 91 / var(--tw-bg-opacity, 1));
}
.hover\:s-bg-\[rgb\(115\2c 135\2c 156\2c 0\.2\)\]:hover {
  background-color: rgb(115,135,156,0.2);
}
.hover\:s-bg-\[rgb\(31_42_50\/0\.5\)\]:hover {
  background-color: rgb(31 42 50/0.5);
}
.hover\:s-bg-\[rgba\(0\2c _0\2c _0\2c _0\.05\)\]:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.hover\:s-bg-\[var\(--bg-hover\)\]:hover {
  background-color: var(--bg-hover);
}
.hover\:s-bg-\[var\(--light-color\)\]:hover {
  background-color: var(--light-color);
}
.hover\:s-bg-\[white\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.hover\:s-bg-transparent:hover {
  background-color: transparent;
}
.hover\:s-bg-gradient-135deg:hover {
  background-image: linear-gradient(135deg, var(--tw-gradient-stops));
}
.hover\:s-from-\[\#4792b3\]:hover {
  --tw-gradient-from: #4792b3 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(71 146 179 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:s-via-\[\#40b69e\]:hover {
  --tw-gradient-to: rgb(64 182 158 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #40b69e var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.hover\:s-via-65\%:hover {
  --tw-gradient-via-position: 65%;
}
.hover\:s-to-\[\#3ad98a\]:hover {
  --tw-gradient-to: #3ad98a var(--tw-gradient-to-position);
}
.hover\:\!s-text-\[\#ff6565\]:hover {
  --tw-text-opacity: 1 !important;
  color: rgb(255 101 101 / var(--tw-text-opacity, 1)) !important;
}
.hover\:s-text-\[\#212F40\]:hover {
  --tw-text-opacity: 1;
  color: rgb(33 47 64 / var(--tw-text-opacity, 1));
}
.hover\:s-text-\[var\(--text-hover\)\]:hover {
  color: var(--text-hover);
}
.hover\:s-text-black-main:hover {
  --tw-text-opacity: 1;
  color: rgb(33 47 64 / var(--tw-text-opacity, 1));
}
.hover\:s-text-black\/75:hover {
  color: rgb(0 0 0 / 0.75);
}
.hover\:s-text-gray-light:hover {
  --tw-text-opacity: 1;
  color: rgb(223 225 229 / var(--tw-text-opacity, 1));
}
.hover\:s-text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:s-text-white\/75:hover {
  color: rgb(255 255 255 / 0.75);
}
.hover\:s-no-underline:hover {
  text-decoration-line: none;
}
.hover\:\!s-opacity-100:hover {
  opacity: 1 !important;
}
.hover\:s-opacity-100:hover {
  opacity: 1;
}
.hover\:s-opacity-80:hover {
  opacity: 0.8;
}
.hover\:s-outline-\[var\(--border-color\)\]:hover {
  outline-color: var(--border-color);
}
.hover\:s-ring-0:hover {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.hover\:\[--border-color\:\#5FAE9F\]:hover {
  --border-color: #5FAE9F;
}
.hover\:\[--border-color\:\#FF6565\]:hover {
  --border-color: #FF6565;
}
.focus\:s-bg-\[\#5FAE9F26\]:focus {
  background-color: #5FAE9F26;
}
.focus\:s-bg-\[var\(--bg-hover\)\]:focus {
  background-color: var(--bg-hover);
}
.focus\:s-text-\[var\(--text-hover\)\]:focus {
  color: var(--text-hover);
}
.focus\:s-text-white:focus {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.focus\:s-outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:s-ring-\[2px\]:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:s-ring-\[\#2979FF\]:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(41 121 255 / var(--tw-ring-opacity, 1));
}
.focus-visible\:s-opacity-100:focus-visible {
  opacity: 1;
}
.focus-visible\:s-outline-none:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.active\:s-bg-\[rgb\(115\2c 135\2c 156\2c 0\.2\)\]:active {
  background-color: rgb(115,135,156,0.2);
}
.active\:s-bg-\[var\(--bg-hover\)\]:active {
  background-color: var(--bg-hover);
}
.active\:s-bg-\[var\(--light-color\)\]:active {
  background-color: var(--light-color);
}
.active\:s-bg-transparent:active {
  background-color: transparent;
}
.active\:s-text-\[var\(--text-hover\)\]:active {
  color: var(--text-hover);
}
.active\:s-text-white:active {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.active\:s-opacity-100:active {
  opacity: 1;
}
.active\:s-opacity-80:active {
  opacity: 0.8;
}
.active\:s-ring-0:active {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.s-group:focus-within .group-focus-within\:s-placeholder-\[\#9ca3af\]::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}
.s-group:focus-within .group-focus-within\:s-placeholder-\[\#9ca3af\]::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}
.s-group\/indicator:hover .group-hover\/indicator\:s-h-4 {
  height: 1rem;
}
.s-group:hover .group-hover\:s-border-smGreen-main {
  --tw-border-opacity: 1;
  border-color: rgb(95 174 159 / var(--tw-border-opacity, 1));
}
.s-group:hover .group-hover\:s-pl-3 {
  padding-left: 0.75rem;
}
.s-group\/end:hover .group-hover\/end\:s-text-inherit {
  color: inherit;
}
.s-group:hover .group-hover\:s-text-\[\#60afa0\] {
  --tw-text-opacity: 1;
  color: rgb(96 175 160 / var(--tw-text-opacity, 1));
}
.s-group:hover .group-hover\:s-text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.s-group\/filter-radio-label:hover .group-hover\/filter-radio-label\:s-opacity-100 {
  opacity: 1;
}
.s-group\/table-row:hover .group-hover\/table-row\:s-opacity-30 {
  opacity: 0.3;
}
.s-peer:hover ~ .peer-hover\:s-text-black\/75 {
  color: rgb(0 0 0 / 0.75);
}
.s-peer:hover ~ .peer-hover\:s-text-white\/75 {
  color: rgb(255 255 255 / 0.75);
}
.s-peer:focus ~ .peer-focus\:-s-left-\[var\(--prefix-left-offset\)\] {
  left: calc(var(--prefix-left-offset) * -1);
}
.s-peer:focus ~ .peer-focus\:s-top-0 {
  top: 0px;
}
.s-peer:focus ~ .peer-focus\:s-rounded-\[16px\] {
  border-radius: 16px;
}
.s-peer:focus ~ .peer-focus\:s-border-smGreen-main {
  --tw-border-opacity: 1;
  border-color: rgb(95 174 159 / var(--tw-border-opacity, 1));
}
.s-peer:focus ~ .peer-focus\:s-bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.s-peer:focus ~ .peer-focus\:s-px-\[4px\] {
  padding-left: 4px;
  padding-right: 4px;
}
.s-peer:focus ~ .peer-focus\:s-text-\[11px\] {
  font-size: 11px;
}
.s-peer:focus ~ .peer-focus\:s-not-italic {
  font-style: normal;
}
.s-peer:focus ~ .peer-focus\:s-leading-\[14px\] {
  line-height: 14px;
}
.s-peer:focus-visible ~ .peer-focus-visible\:s-opacity-100 {
  opacity: 1;
}
.s-peer:not(:-moz-placeholder-shown) ~ .peer-\[\:not\(\:-moz-placeholder-shown\)\]\:-s-left-\[var\(--prefix-left-offset\)\] {
  left: calc(var(--prefix-left-offset) * -1);
}
.s-peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:-s-left-\[var\(--prefix-left-offset\)\] {
  left: calc(var(--prefix-left-offset) * -1);
}
.s-peer:not(:-moz-placeholder-shown) ~ .peer-\[\:not\(\:-moz-placeholder-shown\)\]\:s-top-0 {
  top: 0px;
}
.s-peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:s-top-0 {
  top: 0px;
}
.s-peer:not(:-moz-placeholder-shown) ~ .peer-\[\:not\(\:-moz-placeholder-shown\)\]\:s-rounded-\[16px\] {
  border-radius: 16px;
}
.s-peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:s-rounded-\[16px\] {
  border-radius: 16px;
}
.s-peer:not(:-moz-placeholder-shown) ~ .peer-\[\:not\(\:-moz-placeholder-shown\)\]\:s-bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.s-peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:s-bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.s-peer:not(:-moz-placeholder-shown) ~ .peer-\[\:not\(\:-moz-placeholder-shown\)\]\:s-px-\[4px\] {
  padding-left: 4px;
  padding-right: 4px;
}
.s-peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:s-px-\[4px\] {
  padding-left: 4px;
  padding-right: 4px;
}
.s-peer:not(:-moz-placeholder-shown) ~ .peer-\[\:not\(\:-moz-placeholder-shown\)\]\:s-text-\[11px\] {
  font-size: 11px;
}
.s-peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:s-text-\[11px\] {
  font-size: 11px;
}
.s-peer:not(:-moz-placeholder-shown) ~ .peer-\[\:not\(\:-moz-placeholder-shown\)\]\:s-not-italic {
  font-style: normal;
}
.s-peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:s-not-italic {
  font-style: normal;
}
.s-peer:not(:-moz-placeholder-shown) ~ .peer-\[\:not\(\:-moz-placeholder-shown\)\]\:s-leading-\[14px\] {
  line-height: 14px;
}
.s-peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:s-leading-\[14px\] {
  line-height: 14px;
}
.has-\[\[data-child\=link\]\:hover\]\:s-bg-\[\#1B2736\]:has([data-child=link]:hover) {
  --tw-bg-opacity: 1;
  background-color: rgb(27 39 54 / var(--tw-bg-opacity, 1));
}
.data-\[focus\]\:s-bg-smGreen-main\/15[data-focus] {
  background-color: rgb(95 174 159 / 0.15);
}
.data-\[selected\]\:s-bg-smGreen-main\/30[data-selected] {
  background-color: rgb(95 174 159 / 0.3);
}
.data-\[state\=active\]\:s-bg-\[var\(--light-color\)\][data-state="active"] {
  background-color: var(--light-color);
}
.data-\[state\=active\]\:s-text-white[data-state="active"] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.data-\[leave\]\:data-\[closed\]\:s-opacity-0[data-closed][data-leave] {
  opacity: 0;
}
.data-\[state\=active\]\:s-opacity-80[data-state="active"] {
  opacity: 0.8;
}
.data-\[state\=active\]\:s-ring-0[data-state="active"] {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.s-group[data-selected] .group-data-\[selected\]\:s-visible {
  visibility: visible;
}
.s-group\/arrow-down[data-state="closed"] .group-data-\[state\=closed\]\/arrow-down\:-s-rotate-90 {
  --tw-rotate: -90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scrollbar\:s-size-2::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
.scrollbar\:s-bg-transparent::-webkit-scrollbar {
  background-color: transparent;
}
.scrollbar-thumb\:s-rounded-full::-webkit-scrollbar-thumb {
  border-radius: 9999px;
}
.scrollbar-thumb\:s-border-2::-webkit-scrollbar-thumb {
  border-width: 2px;
}
.scrollbar-thumb\:s-border-solid::-webkit-scrollbar-thumb {
  border-style: solid;
}
.scrollbar-thumb\:s-border-black-light::-webkit-scrollbar-thumb {
  --tw-border-opacity: 1;
  border-color: rgb(74 88 103 / var(--tw-border-opacity, 1));
}
.scrollbar-thumb\:s-border-red-main::-webkit-scrollbar-thumb {
  --tw-border-opacity: 1;
  border-color: rgb(255 101 101 / var(--tw-border-opacity, 1));
}
.scrollbar-thumb\:s-bg-gray-main::-webkit-scrollbar-thumb {
  --tw-bg-opacity: 1;
  background-color: rgb(171 183 196 / var(--tw-bg-opacity, 1));
}
@media not all and (min-width: 768px) {

  .max-md\:s-mb-2 {
    margin-bottom: 0.5rem;
  }

  .max-md\:s-ml-2\.5 {
    margin-left: 0.625rem;
  }
}
@media not all and (min-width: 640px) {

  .max-sm\:s-left-0 {
    left: 0px;
  }

  .max-sm\:s-right-0 {
    right: 0px;
  }

  .max-sm\:s-w-auto {
    width: auto;
  }

  .max-sm\:s-px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (min-width: 640px) {

  .sm\:s-w-1\/2 {
    width: 50%;
  }
}
@media (min-width: 768px) {

  .md\:s-mr-2\.5 {
    margin-right: 0.625rem;
  }

  .md\:s-h-\[88px\] {
    height: 88px;
  }

  .md\:s-flex-1 {
    flex: 1 1 0%;
  }

  .md\:s-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {

  .lg\:s-w-1\/6 {
    width: 16.666667%;
  }

  .lg\:s-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1150px) {

  .min-\[1150px\]\:s-px-1\.5 {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }
}
@media (min-width: 1250px) {

  .min-\[1250px\]\:s-px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (min-width: 1280px) {

  .xl\:s-col-span-4 {
    grid-column: span 4 / span 4;
  }

  .xl\:s-col-span-8 {
    grid-column: span 8 / span 8;
  }

  .xl\:s-grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (min-width: 1450px) {

  .min-\[1450px\]\:s-px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.\[\&\+\&\]\:s-mt-6+.\[\&\+\&\]\:s-mt-6 {
  margin-top: 1.5rem;
}
.\[\&\:\:-webkit-inner-spin-button\]\:s-m-0::-webkit-inner-spin-button {
  margin: 0px;
}
.\[\&\:\:-webkit-inner-spin-button\]\:s-appearance-none::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
}
.\[\&\:\:-webkit-outer-spin-button\]\:s-m-0::-webkit-outer-spin-button {
  margin: 0px;
}
.\[\&\:\:-webkit-outer-spin-button\]\:s-appearance-none::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
}
.\[\&\:\:placeholder\]\:\[transition\:_color_ease_0\.15s\]::-moz-placeholder {
  -moz-transition: color ease 0.15s;
  transition: color ease 0.15s;
}
.\[\&\:\:placeholder\]\:\[transition\:_color_ease_0\.15s\]::placeholder {
  transition: color ease 0.15s;
}
.\[\&\>div\:last-child\]\:s-mb-0>div:last-child {
  margin-bottom: 0px;
}
.\[\&\>div\]\:s-relative>div {
  position: relative;
}
.\[\&\>div\]\:s-mb-\[9px\]>div {
  margin-bottom: 9px;
}
.\[\&\>div\]\:s-block>div {
  display: block;
}
.\[\&\>div\]\:s-h-0\.5>div {
  height: 0.125rem;
}
.\[\&\>div\]\:s-h-1>div {
  height: 0.25rem;
}
.\[\&\>div\]\:s-w-1>div {
  width: 0.25rem;
}
.\[\&\>div\]\:s-rounded>div {
  border-radius: 0.25rem;
}
.\[\&\>div\]\:s-bg-\[\#212F40\]>div {
  --tw-bg-opacity: 1;
  background-color: rgb(33 47 64 / var(--tw-bg-opacity, 1));
}
.\[\&\>div\]\:s-bg-\[\#29ABE2\]>div {
  --tw-bg-opacity: 1;
  background-color: rgb(41 171 226 / var(--tw-bg-opacity, 1));
}
.\[\&\>div\]\:s-bg-\[\#46A147\]>div {
  --tw-bg-opacity: 1;
  background-color: rgb(70 161 71 / var(--tw-bg-opacity, 1));
}
.\[\&\>div\]\:s-bg-\[\#ABB7C4\]>div {
  --tw-bg-opacity: 1;
  background-color: rgb(171 183 196 / var(--tw-bg-opacity, 1));
}
.\[\&\>div\]\:s-bg-\[\#E4BC56\]>div {
  --tw-bg-opacity: 1;
  background-color: rgb(228 188 86 / var(--tw-bg-opacity, 1));
}
.\[\&\>div\]\:s-bg-white>div {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.\[\&\>div\]\:\[transition\:transform_0\.3s_ease\2c top_0\.3s_ease\2c width_0\.3s_ease\2c right_0\.3s_ease\]>div {
  transition: transform 0.3s ease,top 0.3s ease,width 0.3s ease,right 0.3s ease;
}
.\[\&_\+_\&\]\:s-mt-\[8px\] + .\[\&_\+_\&\]\:s-mt-\[8px\] {
  margin-top: 8px;
}
.\[\&_a\:hover\]\:s-no-underline a:hover {
  text-decoration-line: none;
}
.\[\&_a\]\:s-underline a {
  text-decoration-line: underline;
}

.cssModulesScope .cssModules-WwOfyg1pKwELaHDK{display:flex;align-items:center;overflow:hidden;text-overflow:ellipsis;max-width:360px}.cssModulesScope .cssModules-Hr3zHctVvo0XNfxl{min-width:50px}.cssModulesScope .cssModules-X__d5oLqJ8AbgzB2{white-space:nowrap}
.cssModulesScope .cssModules-sVa1Y5Smh1YjPQxA{background-color:#f5f5f5 !important}.cssModulesScope .cssModules-UkiSjpHJ1g1JKu59 th{white-space:normal}
.cssModulesScope .cssModules-dkMZP6JTh204Tpl6{display:flex;padding-right:23px;padding-left:34px}
.cssModulesScope .cssModules-qte6aEQhSmQ_7OqR{transition:all .3s;display:block;line-height:1}.cssModulesScope .cssModules-qte6aEQhSmQ_7OqR:hover{color:#1f2a32;cursor:pointer}*+.cssModules-qte6aEQhSmQ_7OqR{margin-left:10px}
.cssModulesScope .cssModules-s9vOoAbgjdwq6jrK{display:flex;justify-content:center}.cssModulesScope .cssModules-_tj9cKn_u1MyryCp{width:20px;display:inline-block}.cssModulesScope .cssModules-_tj9cKn_u1MyryCp>svg{fill:#73879c}
.cssModulesScope .cssModules-k9nVPffDpnkSIvOv{font-size:13px}
.cssModulesScope .cssModules-E4uavzw5B5UlFO9Q{display:flex}.cssModulesScope .cssModules-E4uavzw5B5UlFO9Q .cssModules-EZhlOW6KmAoJ4kVr{flex:1 1 auto}.cssModulesScope .cssModules-E4uavzw5B5UlFO9Q .cssModules-EZhlOW6KmAoJ4kVr+.cssModules-EZhlOW6KmAoJ4kVr{margin-left:15px}.cssModulesScope .cssModules-efsDeBBCdcoz677a,.cssModulesScope .cssModules-IlXG8nDYprEVLLqw{white-space:normal}
.cssModulesScope .cssModules-WuyyQCr0urMW1mVf{display:flex;flex-direction:column;align-items:center;justify-content:center}.cssModulesScope .cssModules-yPBbud4t4QCsE8In{display:flex;flex-direction:row;align-items:center}.cssModulesScope .cssModules-HVmkGMq9wNQJaTFt{flex-grow:1;font-weight:700}.cssModulesScope .cssModules-qu4_5lPaKF8hX82j{padding:0 10px;background-color:rgba(0,0,0,0);min-width:unset;border:0;color:#73879c;font-size:20px}.cssModulesScope .cssModules-qu4_5lPaKF8hX82j:hover{color:#5fae9f}.cssModulesScope .cssModules-bl92opty6hsRfMqa{margin-bottom:10px;color:#ff6565;text-align:center}
.cssModulesScope .cssModules-tXUueHl_URpL4bIV{background:#fff;border:1px solid #e6e9ed}.cssModulesScope .cssModules-W5I3qt6MXD0leoJQ{border-bottom:1px solid #e6e9ed}.cssModulesScope .cssModules-fxNcc97stTcsXFI8{width:100%;background:#e6e9ed;height:1px;margin-top:-1px}.cssModulesScope .cssModules-hmt9IWZ5xvs6mMIW{position:relative}.cssModulesScope .cssModules-fcatMn3nkI489rmd{display:flex;width:100%;padding:5px 15px}.cssModulesScope .cssModules-fcatMn3nkI489rmd+.cssModules-fcatMn3nkI489rmd{border-top:1px solid #e6e9ed}@media(min-width: 992px){.cssModulesScope .cssModules-fcatMn3nkI489rmd+.cssModules-fcatMn3nkI489rmd{border-top:0}.cssModulesScope .cssModules-fcatMn3nkI489rmd{padding:15px;flex:1;flex-basis:0;max-width:100%}}.cssModulesScope .cssModules-BNvMDCF4DsyiX8qz{margin-right:10px}.cssModulesScope .cssModules-GW7k17EpcOQVxuBm{color:#ff6565}.cssModulesScope .cssModules-Us4Gdmg8NE0Ml59C{color:#e4bc56}.cssModulesScope .cssModules-m6AIHeixWEE0lAIg{position:relative;margin-top:-3px}.cssModulesScope .cssModules-m6AIHeixWEE0lAIg+.cssModules-m6AIHeixWEE0lAIg{padding-left:15px}.cssModulesScope .cssModules-BsYMij4O2dUx7wgx{line-height:1;position:static;justify-content:center;display:flex;margin:auto;text-align:center;border-top:1px solid #e6e9ed}.cssModulesScope .cssModules-BsYMij4O2dUx7wgx label{margin-bottom:0}.cssModulesScope .cssModules-BsYMij4O2dUx7wgx button{margin-right:16px}@media(min-width: 992px){.cssModulesScope .cssModules-BsYMij4O2dUx7wgx{border-top:0;position:absolute;right:50px;top:50%;transform:translateY(-50%)}}
.cssModulesScope .cssModules-bp322Mf0n44k7RH8{color:#73879c;font-size:15px;text-transform:uppercase;font-weight:bold;text-align:center;margin-bottom:8px;margin-top:15px}.cssModulesScope .cssModules-pzGA3liI9y8WmG18{background:#fff;border:1px solid #e6e9ed;margin-bottom:10px;display:flex;flex-flow:column;color:#73879c}.cssModulesScope .cssModules-pzGA3liI9y8WmG18:last-child{flex-grow:1}
.cssModulesScope .cssModules-aNyVSvhIZlkPdNB9{border-bottom:1px solid #e6e9ed;flex:100%}@media(min-width: 540px){.cssModulesScope .cssModules-aNyVSvhIZlkPdNB9{border-bottom:0;border-right:1px solid #e6e9ed}}.cssModulesScope .cssModules-LG0qeWsK7oKarr0G{display:flex;justify-content:space-between;align-items:center;padding:14px 9px;background:#fff;font-size:15px;font-weight:bold}.cssModulesScope .cssModules-dlYD4HlYduIVRUVK{align-items:center;display:flex;line-height:1.1}.cssModulesScope .cssModules-PxlVhB2xneM6vxmj{margin-top:2px;font-size:20px;color:#5fae9f;line-height:0}.cssModulesScope .cssModules-S6X5ua8FEcru6PIh{margin-right:10px}.cssModulesScope .cssModules-MK0LQB5YLjMZuQ64{color:#73879c}.cssModulesScope .cssModules-w3N4toj2UncFFuh3{color:#5fae9f;margin-left:10px}.cssModulesScope .cssModules-G0ZgPxoqQgdhW_Bw{border-top:1px solid #e6e9ed;padding:6px 9px;display:flex;justify-content:space-between;font-size:11px}.cssModulesScope .cssModules-G0ZgPxoqQgdhW_Bw:nth-child(2n){background:rgba(230,233,237,.2)}.cssModulesScope .cssModules-C7ymokFl8c8hIojG{color:#1f2a32;font-weight:bold}.cssModulesScope .cssModules-cNtWkkeF9mojMEAW{border-top:1px solid #e6e9ed}.cssModulesScope .cssModules-AOh5SHw4pfggB32N{display:flex;justify-content:space-between;align-items:center;font-size:13px;font-weight:bold;padding:14px 9px}.cssModulesScope .cssModules-AOh5SHw4pfggB32N .cssModules-y33Y9bdE2_A6v62f{color:#73879c}.cssModulesScope .cssModules-AOh5SHw4pfggB32N .cssModules-JmrnsY6VzUQ5KGNe{color:#1f2a32}.cssModulesScope .cssModules-JLQXcBwz0uIb3q_o .cssModules-y33Y9bdE2_A6v62f,.cssModulesScope .cssModules-JLQXcBwz0uIb3q_o .cssModules-JmrnsY6VzUQ5KGNe{color:#ff6565}.cssModulesScope .cssModules-KPPj2L4AOhMJsnGA .cssModules-y33Y9bdE2_A6v62f,.cssModulesScope .cssModules-KPPj2L4AOhMJsnGA .cssModules-JmrnsY6VzUQ5KGNe{color:#e4bc56}.cssModulesScope .cssModules-bzqKCDZz1Ckbqdhq{font-size:11px;padding:15px 10px}@media(min-width: 540px){.cssModulesScope .cssModules-bzqKCDZz1Ckbqdhq{padding:0;margin-top:17px}}.cssModulesScope .cssModules-xaFehWKSFOU831C7+.cssModules-xaFehWKSFOU831C7{margin-top:8px}.cssModulesScope .cssModules-nYaf9i2hX1kgNnaO{color:#73879c}.cssModulesScope .cssModules-kWAG_d7FjjIoovJD{color:#1f2a32;font-weight:bold}.cssModulesScope .cssModules-eKtX836jZSoDHn7f{padding-left:5px;vertical-align:middle}.cssModulesScope .cssModules-eKtX836jZSoDHn7f>i{color:#73879c;font-size:11px;display:inline-block}.cssModulesScope .cssModules-eKtX836jZSoDHn7f>i:hover{color:#ff6565}
.cssModulesScope .cssModules-_RYUR54Jox70EWD6{color:#73879c;font-weight:bold;display:flex;align-items:center;justify-content:space-between;line-height:1.5}.cssModulesScope .cssModules-_RYUR54Jox70EWD6.cssModules-XhYRcxOqJk4VuOTL{font-size:13px}.cssModulesScope .cssModules-_RYUR54Jox70EWD6.cssModules-R7njmYBqtMsPKemp{font-size:15px}.cssModulesScope .cssModules-_RYUR54Jox70EWD6.cssModules-oSxrlFP9sHsHWF0M{font-size:17px}.cssModulesScope .cssModules-_RYUR54Jox70EWD6.cssModules-b6yntIViIEAly4Aa{color:#ff6565}.cssModulesScope .cssModules-_RYUR54Jox70EWD6.cssModules-b6yntIViIEAly4Aa .cssModules-XXlltNRnJEZ28KU1{color:#ff6565}.cssModulesScope .cssModules-_RYUR54Jox70EWD6.cssModules-q38poru6nP8Q1FNR{color:#e4bc56}.cssModulesScope .cssModules-_RYUR54Jox70EWD6.cssModules-q38poru6nP8Q1FNR .cssModules-XXlltNRnJEZ28KU1{color:#e4bc56}.cssModulesScope .cssModules-_RYUR54Jox70EWD6 .cssModules-XXlltNRnJEZ28KU1{color:#5fae9f;margin-left:10px}
.cssModulesScope .cssModules-XAVFe09BCwkHuzWb{color:#ff6565;font-weight:bold}
.cssModulesScope .cssModules-QAROPIX70J4_bC4W{background:#fff;border:1px solid #e6e9ed;padding:10px;height:100%}
.cssModulesScope .cssModules-MnPDbWqXbEXm1TRl{margin-left:auto;margin-right:auto}.cssModulesScope .cssModules-NbqPS2voGiA76c4L{padding:0}@media only screen and (min-width: 540px){.cssModulesScope .cssModules-NbqPS2voGiA76c4L{padding:0 15px}}.cssModulesScope .cssModules-LzI1MqbvWz4LoMJF{padding:0 15px}.cssModulesScope .cssModules-qYnQy6bBIIs1GY4e{max-width:670px}.cssModulesScope .cssModules-GXFr9FnptUcAp27e{max-width:990px}.cssModulesScope .cssModules-OL0jN6DbOuseo0QF{max-width:1230px}.cssModulesScope .cssModules-QgSPbvQfemMMQ0p5{max-width:1430px}
.cssModulesScope .cssModules-oBEXxNirhkMM0Vrr{display:flex;align-items:center}.cssModulesScope .cssModules-oBEXxNirhkMM0Vrr .cssModules-zyJg0HUwaysHUj0d{min-width:120px}.cssModulesScope .cssModules-oBEXxNirhkMM0Vrr button{border:1px solid;height:20px;padding:0 15px;min-width:initial}.cssModulesScope .cssModules-oBEXxNirhkMM0Vrr>*{margin-left:10px}.cssModulesScope .cssModules-oBEXxNirhkMM0Vrr>*:first-child{margin-left:0}
.cssModulesScope .cssModules-puSJyb3TiFELPaiv{background:#fff;border:1px solid #e6e9ed;padding:15px 10px 10px;margin-bottom:10px}.cssModulesScope .cssModules-akj9ElZQpwMIs0t3{color:#ff6565;font-weight:bold}
.cssModulesScope .cssModules-gMOYmFkkb9Yrtlmq{background:#fff;border:1px solid #e6e9ed;padding:15px 10px 10px;margin-bottom:10px}.cssModulesScope .cssModules-JOxaK7O5pWQS9gCL{color:#e4bc56;font-weight:bold}
.cssModulesScope .cssModules-Ck7cgsMbSxcTyh6x{background:#fff;border:1px solid #e6e9ed;padding:15px 10px 10px;height:100%}.cssModulesScope .cssModules-USOokLndLKEtR0xw button{border:1px solid;height:20px;padding:0 15px;min-width:initial}.cssModulesScope .cssModules-AL47j1pmIcJnsUUM{color:#5fae9f;font-weight:bold}.cssModulesScope .cssModules-g__aoPtbir0iRhe4{margin-left:8px;height:16px;color:#e4bc56}.cssModulesScope .cssModules-P9y7JT9LfAZ3sdl6{display:flex;align-items:center}
.cssModulesScope .cssModules-UVIrmPzdBMcinoYR>header{color:#73879c;font-weight:bold;text-align:center;font-size:15px;margin-bottom:20px}.cssModulesScope .cssModules-jaRgfcP0xxsZlFN4{margin-top:10px}.cssModulesScope .cssModules-T7NIV2EzaT01G5FD{margin:20px 0}
.cssModulesScope .cssModules-hqc6XYP_BrcgK8YM{color:#5fae9f}.cssModulesScope .cssModules-wu0sMCoNiUcQWx4i{display:flex}.cssModulesScope .cssModules-wu0sMCoNiUcQWx4i .cssModules-s2sdnjsvgll0XOdB,.cssModulesScope .cssModules-wu0sMCoNiUcQWx4i .cssModules-d5ZOjmPIjrMDpDCm{display:flex;flex-grow:1}@media all and (max-width: 992px){.cssModulesScope .cssModules-wu0sMCoNiUcQWx4i{flex-direction:column}.cssModulesScope .cssModules-wu0sMCoNiUcQWx4i .cssModules-s2sdnjsvgll0XOdB{margin-top:15px}.cssModulesScope .cssModules-wu0sMCoNiUcQWx4i .cssModules-s2sdnjsvgll0XOdB .cssModules-PRcKMPP3PEcCBKG1:first-of-type{padding-left:0;border-left:0}}.cssModulesScope .cssModules-rgjqfiPFDj4dNGRn{color:#ff6565}.cssModulesScope .cssModules-PRcKMPP3PEcCBKG1{display:flex;flex-direction:column;align-items:center;padding:0 10px;flex-grow:1}.cssModulesScope .cssModules-PRcKMPP3PEcCBKG1 .cssModules-suL9IoKaGZwYPm8S{width:100%;display:flex}.cssModulesScope .cssModules-PRcKMPP3PEcCBKG1 .cssModules-GSn6eUc0jlI8cTN4{margin-left:10px;display:flex;align-items:flex-end}.cssModulesScope .cssModules-PRcKMPP3PEcCBKG1 .cssModules-GSn6eUc0jlI8cTN4 i{font-size:20px}.cssModulesScope .cssModules-PRcKMPP3PEcCBKG1 .cssModules-GSn6eUc0jlI8cTN4 button{min-width:unset;padding:0}.cssModulesScope .cssModules-PRcKMPP3PEcCBKG1 label{font-size:13px;font-weight:bold;color:#73879c;margin:0;line-height:1}.cssModulesScope .cssModules-d5ZOjmPIjrMDpDCm .cssModules-PRcKMPP3PEcCBKG1:first-of-type{padding-left:0}.cssModulesScope .cssModules-s2sdnjsvgll0XOdB .cssModules-PRcKMPP3PEcCBKG1{border-left:solid 1px #f5f5f5}.cssModulesScope .cssModules-s2sdnjsvgll0XOdB .cssModules-PRcKMPP3PEcCBKG1:last-of-type{padding-right:0}.cssModulesScope .cssModules-Np_f0Q9eXGITRnES{width:100%;margin-top:10px;border:solid 2px #e6e9ed;border-radius:10rem;display:flex;align-items:center;justify-content:center;text-transform:uppercase;font-size:15px;font-weight:bold}.cssModulesScope .cssModules-VOp4HcpGzMzn7Vdd{border-color:#ff6565;color:#ff6565;text-transform:lowercase}.cssModulesScope .cssModules-Q8oofx95K9wKXbci{border-color:#e4bc56;color:#e4bc56;text-transform:lowercase}.cssModulesScope .cssModules-hnahs0uAQsRUCISI{min-width:80px;height:40px}@media all and (min-width: 1280px){.cssModulesScope .cssModules-hnahs0uAQsRUCISI{min-width:95px}}.cssModulesScope .cssModules-r29HYpiDokgIOCuX{min-width:170px;height:40px}.cssModulesScope .cssModules-JyYloJ28CLYXcToK{display:flex;flex-direction:row;align-items:center;font-size:20px;line-height:20px}.cssModulesScope .cssModules-EnYLOgfNZyAQFNM9 button{min-width:unset;padding:0;height:auto}.cssModulesScope .cssModules-EnYLOgfNZyAQFNM9+.cssModules-EnYLOgfNZyAQFNM9{margin-left:10px}.cssModulesScope .cssModules-WyVmSuDabQNW_ifl{margin-right:16px;line-height:1}.cssModulesScope .cssModules-WyVmSuDabQNW_ifl svg{fill:#e6e9ed}.cssModulesScope .cssModules-UPVKQ5MInJwFInaI svg{fill:#73879c}
.ammapAlert
{
    display:table-cell;
    vertical-align:middle;
    text-align:center;
    font-family:verdana,helvetica,arial,sans-serif;
    font-size:12px;
    color:#CC0000;
}

.ammapDescriptionWindow
{
   font-size:11px;
   font-family:verdana,helvetica,arial,sans-serif;
   background-color:#FFFFFF;
   border-style:solid;
   border-color:#DADADA;
   border-width:1px;
   color:#000000;
   padding:8px;
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
}

.ammapDescriptionTitle
{
   font-size:12px;
   font-weight:bold;
   font-family:verdana,helvetica,arial,sans-serif;
   padding-bottom:5px;
}

.ammapDescriptionWindowCloseButton
{

}

.ammapObjectList ul
{
    padding-left:20px;
    list-style:square outside;
    color:#999999;
    font-family:verdana,helvetica,arial,sans-serif;
    font-size: 12px;
}

.ammapObjectList ul ul
{
    padding-left:14px;
}

.ammapObjectList a
{
    color:#000000;
}

.ammapObjectList a
{
    color:#000000;
    text-decoration:none;
    display:block;
    padding:2px;
}

.ammapObjectList a:hover
{
    color:#CC0000;
    text-decoration:none;
    background:#FFFFFF;
    cursor:pointer;
    display:block;
}

.ammapDescriptionText
{
	overflow: auto;
}


.amChartsPlotArea
{

}
/**
 * Swiper 11.1.15
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 18, 2024
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

.cssModulesScope .cssModules-qX0atcItZsMKOPts>header{color:#73879c;font-weight:bold;text-align:center;font-size:15px;margin-bottom:20px;padding-bottom:20px;border-bottom:1px solid #e6e9ed}.cssModulesScope .cssModules-ChC03kov2akQUQXU{margin:20px 0}
.tinFjZTsakMTCwQv {
	position: relative;
}
.tinFjZTsakMTCwQv::after {
	position: absolute;
	bottom: 0px;
	height: 0.25rem;
	width: 100%;
	background-image: linear-gradient(to top, var(--tw-gradient-stops));
	content: var(--tw-content);
	--tw-gradient-from: #212f40 var(--tw-gradient-from-position);
	--tw-gradient-to: rgb(33 47 64 / 0) var(--tw-gradient-to-position);
	--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.tinFjZTsakMTCwQv[data-state='open'] {
	animation: bUIYR6U5EeIWOxRh 200ms ease-out;
}
.tinFjZTsakMTCwQv[data-state='open']::after {
	content: var(--tw-content);
	visibility: hidden;
}
.tinFjZTsakMTCwQv[data-state='closed'] {
	animation: WBUHXE9E3HUEXiPl 200ms ease-out;
}

@keyframes bUIYR6U5EeIWOxRh {
	from {
		height: 0px;
		overflow: hidden;
	}
	to {
		height: var(--radix-collapsible-content-height);
		overflow: hidden;
	}
}

@keyframes WBUHXE9E3HUEXiPl {
	from {
		height: var(--radix-collapsible-content-height);
		overflow: hidden;
	}
	to {
		height: 0px;
		overflow: hidden;
	}
}

