html {
    height: 100%;
    font-size: 13px;
}

body {
    
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    min-height: 100%;
    
    width: 100%;
    height: 100%;
    
    position: relative;
    margin: 0;
    font-weight: 400;
    line-height: 1;
    text-align: left;
    background-color: #fff;
}

#app-root {
    width: 100%;
    height: 100%;
}

.nv-success-bg {
  color: #FFF !important;
  background-color: #1BC5BD !important;
}

.nv-success-bg-light {
  background-color: #1BC5BD23 !important;
}

.nv-primary-bg {
  color: #FFF !important;
  background-color: #187DE4 !important;
}

.nv-primary-bg-light {
  background-color: #187DE423 !important;
}

.nv-secondary-bg {
  background-color: #E4E6EF !important;
}

.nv-secondary-bg-light {
  background-color: #E4E6EF53 !important;
}

.nv-info-bg {
  background-color: #8950FC !important;
}

.nv-info-bg-light {
  background-color: #8950FC23 !important;
}

.nv-danger-bg {
  background-color: #F64E60 !important;
}

.nv-danger-bg-light {
  background-color: #F64E6023 !important;
}

.nv-warning-bg {
  background-color: #FFA800 !important;
}

.nv-warning-bg-light {
  background-color: #ffaa0023 !important;
}

.nv-success {
  color: #1BC5BD;
}

.nv-primary {
  color: #187DE4;
}

.nv-secondary {
  color: #E4E6EF;
}

.nv-info {
  color: #8950FC;
}

.nv-danger {
  color: #F64E60;
}

.nv-warning {
  color: #FFA800;
}

.sheet-container {

}

.sheet {
  position: absolute;
  background-color: #FFF;
  z-index: 100;
  width: calc(100vw - 240px);
  height: calc(100vh - 100px);
  top: 60px;
  margin-left: 40px;
  margin-bottom: 10px;
  overflow-y: scroll;
	box-shadow: 0 0 30px 0 rgb(82 63 105 / 5%);
}

@font-face {
    font-family: 'TT Lakes Condensed';
    src: url('/assets/fonts/TTLakesCondensed-Bold.woff2') format('woff2'),
    url('/assets/fonts/TTLakesCondensed-Bold.woff') format('woff'),
    url('/assets/fonts/TTLakesCondensed-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'TT Lakes Condensed';
    src: url('/assets/fonts/TTLakesCondensed-Light.woff2') format('woff2'),
    url('/assets/fonts/TTLakesCondensed-Light.woff') format('woff'),
    url('/assets/fonts/TTLakesCondensed-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'TT Lakes';
    src: url('/assets/fonts/TTLakes-Regular.woff2') format('woff2'),
    url('/assets/fonts/TTLakes-Regular.woff') format('woff'),
    url('/assets/fonts/TTLakes-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'TT Lakes';
    src: url('/assets/fonts/TTLakes-Light.woff2') format('woff2'),
    url('/assets/fonts/TTLakes-Light.woff') format('woff'),
    url('/assets/fonts/TTLakes-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'TT Lakes';
    src: url('/assets/fonts/TTLakes-Bold.woff2') format('woff2'),
    url('/assets/fonts/TTLakes-Bold.woff') format('woff'),
    url('/assets/fonts/TTLakes-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
  }

  button {
    padding: 0;
    border: 0;
    background: 0 0;
    outline: 0;
    color: inherit;
  }
body * {
  scrollbar-color: #707070 #e3e3e3;
  scrollbar-width: thin;
}

body *::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  border-radius: 2px;
}
body *::-webkit-scrollbar-track {
  background: #e3e3e3;
}
body *::-webkit-scrollbar-thumb {
  background: #707070;
}
body *::-webkit-scrollbar-thumb:hover {
  background: #b1b1b2;
}


.form-button {
  font-size: 12px;
  height: 40px;
  border-radius: 4px;
  box-shadow: 2x 2px 2px 0px rgba(0,0,0,0.25);
  background-color: #47585e;
  color: #fff;
  flex: .3;
}

.form-buttons {
  margin-top: 30px;
  display: flex;
}

.form.errored .form-field:not(.form-field-was-errored) {
  display: none;
}

.form.required .form-field:not(.form-field-required) {
  display: none;
}

.form-tab-header {
  display: none;
}

.form.errored .form-tab-header, .form.required .form-tab-header, .form.all .form-tab-header {
  display: block;
}


.ifTableLoadingRow:nth-child(even) {
  background: #F2F6FA;
  opacity: .5;
}

.ifTableLoadingRow {
  background: #fff;
}

.ifTableLoadingRow:nth-child(even) div {
  background: #ADB9C6;
}

.ifTableLoadingRow div {
  background: #F2F6FA;
  height: 10px;
  margin: 0 7.5px;
  /* border-radius: 2px; */
  animation: fadeIn 1s infinite alternate;
}


@keyframes fadeIn{from{opacity:.3}}


.highlighted-list-row {
  background-color: rgba(19,133,229,0.1); }

.highlighted-table-row .ReactVirtualized__Table__rowColumn {
  background-color: rgba(19,133,229,0.1); }

.-mt-1{margin-top: -.25rem!important}
.-mt-2{margin-top: -.5rem!important}
.-mt-3{margin-top: -1rem!important}
.-mt-4{margin-top: -1.5rem!important}
.-mt-5{margin-top: -3rem!important}


.-mb-1{margin-bottom: -.25rem!important}
.-mb-2{margin-bottom: -.5rem!important}
.-mb-3{margin-bottom: -1rem!important}
.-mb-4{margin-bottom: -1.5rem!important}
.-mb-5{margin-bottom: -3rem!important}


.fw-400, .fw-normal { font-weight: 500; }
.fw-500, .fw-semibold { font-weight: 500; }
.fw-600, .fw-bold { font-weight: 600; }