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: #f5f8fa;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  
}

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

#modal-root {
    position: relative;
    z-index: 2000;
}

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

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

.nv-green-bg {
  background-color: #6caa50 !important;
}

.nv-primary-bg {
  color: #FFF !important;
  background-color: #1C64F2 !important;
}

.nv-primary-bg-light {
  background-color: #1C64F223 !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 {
	color: #FFF !important;
  background-color: #FFA800 !important;
}

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

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

.nv-green {
  color: #6caa50;
}

.nv-primary {
  color: #1C64F2;
}

.nv-cool {
  color: #58A5CB;
}

.nv-secondary {
  color: #E4E6EF;
}

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

.nv-info-dark{
  color: #4A528D;
}

.nv-danger {
  color: #F64E60;
}

.nv-warning {
  color: #FFA800;
}

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

.nv-success-all {
  color: #1BC5BD;
  background-color: #1BC5BD23 !important;
}

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

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

.sheet-container {

}

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

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

body *::-webkit-scrollbar {
  width: 6px;
  height: 8px;
  border-radius: 8px;
}
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):not(.form-field-errored) {
  display: none;
}

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

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

.form.errored .form-info {
	display: none;

}.form.required .form-info {
	display: none;
}

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

.form.errored .tabs-active:not(:has(.form-field-errored)) .form-tab-header{ display: none; }

.delivery-issue {
	display: flex;
	margin-right: 10px;
	padding: 2px;
	color: #FFF;
}


.modal .modify-main {
  height: calc(100vh - 200px);
}


[data-tooltip] {
  position: relative;
  display: inline-block;
}
  
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  top:0%;
  margin-top: -5px;
  transform: translateY(-100%);
  left: -100%;
  width: 200px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid black;
  z-index: 1000;
  background: #fff;
  color: #000;
  text-align: center;
  font-size: 13px;
  font-family: 'Montserrat';
  display: none;
  opacity: 0;
  transition: .3s opacity; 
}
  
[data-tooltip]:hover::after {
  display:block;
  opacity:1;
}

sup{
  font-size: .5em;
}

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.opacity-25 { opacity: .25; }
.opacity-50 { opacity: .5; }
.opacity-75 { opacity: .75; }

.-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}

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

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

.-mx-1{margin-left: -.25rem!important; margin-right: -.25rem!important}
.-mx-2{margin-left: -.5rem!important; margin-right: -.5rem!important}
.-mx-3{margin-left: -1rem!important; margin-right: -1rem!important}
.-mx-4{margin-left: -1.5rem!important; margin-right: -1.5rem!important}
.-mx-5{margin-left: -3rem!important; margin-right: -3rem!important}

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

.mb-10px{margin-bottom: 10px;}
.mt-10px{margin-top: 10px;}
.-mb-10px{margin-bottom: -10px;}
.-mt-10px{margin-top: -10px;}

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

.text-uppercase { text-transform: uppercase; }
.text-capitalize { text-transform: capitalize; }
.text-underline { text-decoration: underline !important; }

.absolute { position: absolute; }
.relative { position: relative; }

.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.inset-0 { inset: 0; }

.w-full {width: 100%;}

@keyframes placeHolderShimmer {
  0% {
    background-position: -800px 0
  }
  100% {
    background-position: 800px 0
  }
}

@keyframes slidingModal {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

.rounded { border-radius: 8px; }
.overflow-hidden { overflow: hidden; }

.cursor-pointer { cursor: pointer !important; }
.cursor-default { cursor: default !important; }

.rounded-thumbnail {
  border-radius: 10px;
  overflow: hidden;
}

.pointer-events-none { pointer-events: none !important; }

.fill-current { fill: currentColor; }


.fa-snowflake-half {
  width: .5em;
  overflow: hidden;
}