html,
body {
  margin: 0;
  padding: 0;

  min-width: 100%;
  width: 100%;
  max-width: 100%;

  min-height: 100%;
  height: 100%;
  max-height: 100%;
}

body {
  font-family: "Open Sans", Segoe UI, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.placeholder-moon-gray::placeholder {
  color: #cccccc;
}

.placeholder-moon-gray::-ms-input-placeholder {
  color: #cccccc;
}

.shadow-light {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.shadow-light2 {
  box-shadow: 0 1px 1px rgba(50, 50, 93, 0.11);
}

.button {
  border: none;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 14px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.025em;
  -webkit-transition: all 150ms ease;
  transition: all 150ms ease;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.button:hover {
  transform: translateY(-1px);
  cursor: pointer;
}

.button-white:after {
  position: absolute;
  left: calc(50% - 0.5em);
  top: 25%;
  height: 1em;
  width: 1em;
  content: "";
  opacity: 0;
  line-height: 100%;
  border-left: 2px solid rgba(119, 119, 119, 0.2);
  border-right: 2px solid rgba(119, 119, 119, 0.2);
  border-bottom: 2px solid rgba(119, 119, 119, 0.2);
  border-top: 2px solid rgba(119, 119, 119, 0.8);
  border-radius: 100%;
  -webkit-animation: rotate 0.6s infinite linear;
  -moz-animation: rotate 0.6s infinite linear;
  -ms-animation: rotate 0.6s infinite linear;
  -o-animation: rotate 0.6s infinite linear;
  animation: rotate 0.6s infinite linear;
  -moz-transition: opacity 0.15s ease-out;
  -o-transition: opacity 0.15s ease-out;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}

.button:after {
  position: absolute;
  left: calc(50% - 0.5em);
  top: 25%;
  height: 1em;
  width: 1em;
  content: "";
  opacity: 0;
  line-height: 100%;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  border-top: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 100%;
  -webkit-animation: rotate 0.6s infinite linear;
  -moz-animation: rotate 0.6s infinite linear;
  -ms-animation: rotate 0.6s infinite linear;
  -o-animation: rotate 0.6s infinite linear;
  animation: rotate 0.6s infinite linear;
  -moz-transition: opacity 0.15s ease-out;
  -o-transition: opacity 0.15s ease-out;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}

.button.busy {
  color: transparent;
  opacity: 0.5;
}

.button.busy:after {
  opacity: 1;
}

.input {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 0.5rem;
  margin-right: 0.5rem;
}

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

.card-shadow {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}
.fade-enter, .fade-leave-to /* .fade-leave-active in <2.1.8 */ {
  opacity: 0;
}

.slide-enter-active,
.slide-leave-active {
  transition: transform 0.2s ease;
  transform-origin: top;
}
.slide-enter, .slide-leave-to /* .fade-leave-active in <2.1.8 */ {
  transform: scaleY(0);
}

.indicator {
  width: 10px;
  height: 10px;
}

.indicator--small {
  width: 8px;
  height: 8px;
}

.brand-blue {
  color: #3a9ad1;
}

.b--brand-blue {
  border-color: #3a9ad1;
}

.bg-brand-blue {
  background-color: #3a9ad1;
}

.router-link-exact-active {
  color: #357edd;
}

.brand-green {
  color: #55bf76;
}

.bg-brand-green {
  background-color: #55bf76;
}

.b--brand-green {
  border-color: #55bf76;
}

.brand-red {
  color: #dc4a4a;
}

.b--brand-red {
  border-color: #dc4a4a;
}

.bg-brand-red {
  background-color: #dc4a4a;
}

.bg-card {
  background-color: #364350;
}

.brand-gray {
  color: #b5bdc2;
}

.b--brand-gray {
  border-color: #b5bdc2;
}

.b--brand-light-gray {
  border-color: #d4dbe0;
}

.bg-brand-gray {
  background-color: #b5bdc2;
}

.bg-placeholder-gray {
  background-color: #4d5965;
}

.bg-light-brand-gray {
  background-color: #ececec;
}

.striped--brand-gray:nth-child(even) {
  background-color: #f2f2f2;
}

.striped--brand-gray:nth-child(odd) {
  background-color: white;
}

.brand-bold {
  color: #404953;
}

.brand-bold2 {
  color: #4d5965;
}

.bg-secondary {
  background-color: #4D5965;
}

.modal-shadow {
  background-color: #777777d9;
}

.popper {
  box-shadow: #b5bdc2 0 0 6px 0;
}

.arrow {
  position: absolute;
  display: block;
  border-color: transparent;
  border-style: solid;
  left: 90%;
  margin-left: -11px;
  width: 0;
  height: 0;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: white;
  top: -18px;
  border-width: 11px;
}

.arrow:after {
  border-width: 10px;
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.ttfl {
  text-transform: lowercase;
}

.ttfl:first-letter {
  text-transform: uppercase;
}

.half-circle--bottom {
  width: 10px;
  height: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

@keyframes placeHolderShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.animated-background {
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #f6f7f8;
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background-size: 800px 104px;
}

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

@keyframes image-center-zoom {
  from {
    transform: scale(0) translate(-50%, -50%);
  }
  to {
    transform: scale(1) translate(-50%, -50%);
  }
}

.image-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.image-center.enhance {
  animation-name: image-center-zoom;
  animation-duration: 0.6s;
}

.dropzone {
  border-radius: 0.25rem;
  border: solid 1px;
  border-color: rgba(0, 0, 0, 0.2);
  min-height: inherit;
  height: 100%;
}

.dropzone .dz-preview .dz-image {
  width: 64px;
  height: 64px;
  border-radius: 0.25rem;
}

.dropzone .dz-preview .dz-details .dz-size {
  font-size: inherit;
}

.dropzone .dz-preview {
  min-height: inherit;
  margin: 0 16px;
}

.dropzone .dz-preview .dz-details {
  padding: 0.25rem 0;
}

.help {
  cursor: help;
}

@font-face {
  font-family: "icomoon";
  src: url("icomoon.eot");
  src: url("comoon.eot")
      format("embedded-opentype"),
    url("icomoon.ttf")
      format("truetype"),
    url("icomoon.woff")
      format("woff"),
    url("icomoon.svg")
      format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-rebalance:before {
  content: "\e900";
}
.icon-pre-trade:before {
  content: "\e902";
}
.icon-reports:before {
  content: "\e903";
}
.icon-trade:before {
  content: "\e904";
}
.icon-avatar-thumbnail:before {
  content: "\e901";
}

.no-select {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.w-5 {
  width: 5%;
}

.hover-row:hover {
  background-color: #fffceb;
}

.animateGrow {
  -webkit-animation: growFromTopLeft 150ms cubic-bezier(0, 0, 0.2, 1);
  -moz-animation: growFromTopLeft 150ms cubic-bezier(0, 0, 0.2, 1);
  -ms-animation: growFromTopLeft 150ms cubic-bezier(0, 0, 0.2, 1);
  -o-animation: growFromTopLeft 150ms cubic-bezier(0, 0, 0.2, 1);
  animation: growFromTopLeft 150ms cubic-bezier(0, 0, 0.2, 1);
  transform-origin: top left;
}
@keyframes growFromTopLeft {
  from {
    transform: scale3d(0, 0, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

.animateGrow-enter-active,
.animateGrow-leave-active {
  transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
  transform-origin: top left;
}
.animateGrow-enter {
  transform: scale3d(0, 0, 1);
}
.animateGrow-enter-to {
  transform: scale3d(1, 1, 1);
}
.animateGrow-leave {
  transform: scale3d(1, 1, 1);
}
.animateGrow-leave-to {
  transform: scale3d(0, 0, 1);
}

.slide2-fade-enter-active,
.slide2-fade-leave-active {
  transition: all 0.3s ease;
}
.slide2-fade-enter,
.slide2-fade-leave,
.slide2-fade-leave-to {
  transform: translateX(20px);
  opacity: 0;
}

.menu-popover-enter,
.menu-popover-leave-to {
  opacity: 0;
  transform: rotateY(50deg);
}
.menu-popover-enter-to,
.menu-popover-leave {
  opacity: 1;
  transform: rotateY(0deg);
}
.menu-popover-enter-active,
.menu-popover-leave-active {
  transition: opacity, transform 200ms ease-out;
  transform-origin: top left;
}

.scale-in-tl-enter-active {
  -webkit-animation: scale-in-tl 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: scale-in-tl 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.scale-in-tl-leave-active {
  -webkit-animation: scale-out-tl 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: scale-out-tl 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes scale-in-tl {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    opacity: 1;
  }
}
@keyframes scale-in-tl {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    opacity: 1;
  }
}

@-webkit-keyframes scale-out-tl {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes scale-out-tl {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 1;
  }
}

.emphasizeClickable {
  opacity: 0.3;
}

.emphasizeClickable:hover {
  opacity: 0.6;
  transform: translateY(-1px);
}

.select {
  background-clip: padding-box;
  background: #fff none;
  border: 1px solid hsl(220, 20%, 80%);
  border-radius: 0.25rem;
  color: hsl(220, 20%, 50%);
  display: block;
  font-size: 0.875rem;
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.5;
  padding: 0.5rem;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.input {
  background-clip: padding-box;
  background: #fff none;
  border: 1px solid hsl(220, 20%, 80%);
  border-radius: 0.25rem;
  display: block;
  font-size: 0.875rem;
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.5;
  padding: 0.5rem;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.input::placeholder {
  color: #cccccc;
}

.input::-ms-input-placeholder {
  color: #cccccc;
}

.fs12 {
  font-size: 12px;
}

.fs14 {
  font-size: 14px;
}

.reverse-dim {
  opacity: 0.3;
}

.reverse-dim:hover {
  opacity: 0.6;
}

th.sticky-header {
  position: sticky;
  top: -1px;
  background-color: white;
}

.modal-header {
  background-color: #3D586D;
  color: white;
}

.dropdown-scrollbar{
  max-height: 50px;
  overflow-x: hidden;
  overflow-y: auto;
 }

