/**
* Uppy CSS and all of its out-of-the-box plugins
*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.UppyAnimation-zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/**
  * General Uppy styles that apply to everything inside the .Uppy container
  */
.uppy {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "avenir next", avenir, helvetica, "helvetica neue", ubuntu, roboto, noto, "segoe ui", arial, sans-serif;
  line-height: 1;
}

.uppy *,
.uppy *:before,
.uppy *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.UppyIcon {
  max-width: 100%;
  max-height: 100%;
  fill: currentColor;
  display: inline-block;
  vertical-align: text-top;
  overflow: hidden;
}

.UppyIcon--svg-baseline {
  bottom: -0.125em;
  position: relative;
}

.UppyButton--circular {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  -webkit-box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.UppyButton--blue {
  color: #fff;
  background-color: #4A90E2;
}

.UppyButton--blue:hover,
.UppyButton--blue:focus {
  background-color: #2275d7;
}

.UppyButton--white {
  color: #525252;
  background-color: #fff;
}

.UppyButton--white:hover,
.UppyButton--white:focus {
  color: #fff;
  background-color: #2275d7;
}

.UppyButton--yellow {
  color: #fff;
  background-color: #FFD600;
}

.UppyButton--yellow:hover,
.UppyButton--yellow:focus {
  background-color: #e6c100;
}

.UppyButton--green {
  color: #fff;
  background-color: #7AC824;
}

.UppyButton--green:hover,
.UppyButton--green:focus {
  background-color: #609d1c;
}

.UppyButton--red {
  color: #fff;
  background-color: #D32F2F;
}

.UppyButton--red:hover,
.UppyButton--red:focus {
  background-color: #ab2424;
}

.UppyButton--sizeM {
  width: 60px;
  height: 60px;
}

.UppyButton--sizeS {
  width: 45px;
  height: 45px;
}

.uppy-FileInput-container {
  margin-bottom: 15px;
}

.uppy-FileInput-btn {
  background: none;
  -webkit-appearance: none;
  line-height: 1;
  margin: 0;
  font-family: sans-serif;
  font-size: 0.85em;
  padding: 10px 15px;
  color: #1b5dab;
  border: 1px solid #1b5dab;
  border-radius: 8px;
  cursor: pointer;
}

.uppy-FileInput-btn:hover {
  background-color: #1b5dab;
  color: #fff;
}

.uppy-Informer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  padding: 0 15px;
  height: 30px;
  line-height: 30px;
  background-color: #000;
  color: #fff;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  z-index: 1004;
}

.uppy-Dashboard--wide .uppy-Informer {
  height: 40px;
  line-height: 40px;
  font-size: 13px;
}

.uppy-Informer[aria-hidden=true] {
  opacity: 0;
  -webkit-transform: translateY(200%);
  transform: translateY(200%);
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}

.uppy-Informer p {
  margin: 0;
  padding: 0;
  height: 30px;
  line-height: 30px;
}

.uppy-Dashboard--wide .uppy-Informer p {
  height: 40px;
  line-height: 40px;
}

.uppy-Informer span {
  line-height: 12px;
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  top: -1px;
  left: 3px;
  font-size: 10px;
  margin-left: -1px;
}

.uppy-Informer span:after {
  line-height: 1.3;
  word-wrap: break-word;
}

.uppy-ProgressBar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10000;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}

.uppy-ProgressBar[aria-hidden=true] {
  height: 0;
}

.uppy-ProgressBar-inner {
  background-color: #4A90E2;
  -webkit-box-shadow: 0 0 10px rgba(74, 144, 226, 0.7);
  box-shadow: 0 0 10px rgba(74, 144, 226, 0.7);
  height: 100%;
  width: 0;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.uppy-ProgressBar-percentage {
  display: none;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
}

.uppy-StatusBar {
  position: relative;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: rgba(82, 82, 82, 0.7);
  -webkit-box-shadow: 1px 1px 4px 0 rgba(82, 82, 82, 0.3);
  box-shadow: 1px 1px 4px 0 rgba(82, 82, 82, 0.3);
  z-index: 1001;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}

.uppy-StatusBar[aria-hidden=true] {
  overflow-y: hidden;
  height: 0;
}

.uppy-StatusBar.is-complete .uppy-StatusBar-progress {
  background-color: #7AC824;
}

.uppy-StatusBar.is-error .uppy-StatusBar-progress {
  background-color: #D32F2F;
}

.uppy-StatusBar.is-complete .uppy-StatusBar-content {
  text-align: center;
  padding-left: 0;
}

.uppy-StatusBar:not([aria-hidden=true]).is-waiting {
  background-color: #fff;
  height: 65px;
  line-height: 65px;
}

.uppy-StatusBar-progress {
  background-color: #4A90E2;
  height: 100%;
  position: absolute;
  z-index: 1001;
  -webkit-transition: background-color, width 0.3s ease-out;
  transition: background-color, width 0.3s ease-out;
}

.uppy-StatusBar-progress.is-indeterminate {
  background-size: 64px 64px;
  background-image: linear-gradient(45deg, #2275d7 25%, transparent 25%, transparent 50%, #2275d7 50%, #2275d7 75%, transparent 75%, transparent);
  -webkit-animation: statusBarProgressStripes 1s linear infinite;
  animation: statusBarProgressStripes 1s linear infinite;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-progress {
  display: none;
}

@-webkit-keyframes statusBarProgressStripes {
  from {
    background-position: 64px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes statusBarProgressStripes {
  from {
    background-position: 64px 0;
  }
  to {
    background-position: 0 0;
  }
}
.uppy-StatusBar-content {
  position: relative;
  z-index: 1002;
  padding-left: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
}

.uppy-StatusBar-statusIndicator {
  color: #fff;
  margin-right: 8px;
}

button.uppy-StatusBar-statusIndicator {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  margin-right: 8px;
  cursor: pointer;
}

.uppy-StatusBar-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  z-index: 1004;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actions {
  left: 20px;
  right: initial;
}

.uppy-StatusBar-actionBtn {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  margin: 0;
  border: 0;
  color: inherit;
  font-size: 13px;
  line-height: 1em;
  font-weight: 400;
  padding: 7px 10px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.uppy-StatusBar-actionBtn:not(:last-child) {
  margin-right: 5px;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn {
  padding: 13px 30px;
  font-size: 15px;
}

.uppy-StatusBar-actionBtn--upload {
  background-color: #fff;
  color: #4A90E2;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload {
  background-color: #4A90E2;
  color: #fff;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload:hover {
  background-color: #1b5dab;
}

.uppy-StatusBar-actionBtn--retry {
  background-color: #fff;
  color: #D32F2F;
}

.uppy-StatusBar-details {
  line-height: 12px;
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  color: #D32F2F;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  top: -1px;
  left: 6px;
  font-size: 10px;
  text-align: center;
}

.uppy-StatusBar-details:after {
  line-height: 1.3;
  word-wrap: break-word;
}

/*------------------------------------------------------------------
[1. Font]
*/
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans/OpenSans-Regular.eot?v=1.1.0");
  src: url("../fonts/open-sans/OpenSans-Regular.eot?#iefix&v=1.1.0") format("embedded-opentype"), url("../fonts/open-sans/OpenSans-Regular.woff2?v=1.1.0") format("woff2"), url("../fonts/open-sans/OpenSans-Regular.woff?v=1.1.0") format("woff"), url("../fonts/open-sans/OpenSans-Regular.ttf?v=1.1.0") format("truetype"), url("../fonts/open-sans/OpenSans-Regular.svg?v=1.1.0#Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*------------------------------------------------------------------
[Font End]
*/
/*------------------------------------------------------------------
[2. Animations]
*/
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*------------------------------------------------------------------
[Animations End]
*/
/*------------------------------------------------------------------
[3. Header]
*/
.header {
  height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #cccccc;
  box-shadow: none;
}
.header .loginLogo {
  height: 35px;
  width: auto;
  margin-right: 10px;
}

/*------------------------------------------------------------------
[Header End]
*/
/*------------------------------------------------------------------
[5. Login]
*/
.login {
  background-color: #fafafa;
  height: 100vh;
}
.login .loginContainer {
  width: 400px;
  height: auto;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 13px 0 #a7a4a4;
  box-shadow: 0 1px 13px 0 #a7a4a4;
}
.login .loginContainer .loginLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login .loginContainer .loginLogo img {
  height: 50px;
  width: auto;
}
.login .loginContainer .loginBody {
  padding: 0px 20px 20px 20px;
}
.login .loginContainer .loginBody .form-group {
  display: block;
}
.login .loginContainer .loginBody .ant-form-item,
.login .loginContainer .loginBody .ant-form-item-control-wrapper {
  width: 100%;
}
.login .loginContainer .loginBody .ant-form-item .form-group,
.login .loginContainer .loginBody .ant-form-item-control-wrapper .form-group {
  margin: 0px;
}
.login .loginContainer .loginBody .ant-form-item-control {
  width: 100%;
}
.login .loginContainer .loginBody .ant-form-explain {
  position: absolute;
}
.login .loginContainer .loginBody input {
  border-radius: 0px;
}
.login .loginContainer .loginBody button span {
  font-size: 14px !important;
}
.login .loginContainer .loginBody .passwordWrapper {
  margin-top: 6px !important;
}
.login .footerButton {
  margin-left: 140px;
}

/*------------------------------------------------------------------
[Login End]
*/
/*------------------------------------------------------------------
[6. Layouts]
*/
body {
  margin: 0px;
  font-family: "Open Sans";
}

body a {
  text-decoration: none;
}

.pageContainer {
  display: flex;
  overflow: hidden;
}

.mainContainer {
  background-color: #f7f7f7;
  width: 100%;
  padding: 0px;
  height: calc(100vh - 38px);
  /* height: calc(100vh - 107px); */
}
.mainContainer .innerContainer {
  background-color: #ffffff;
  height: calc(0%);
  border-radius: 3px;
  padding: 15px;
  margin: 25px;
  overflow: scroll;
  overflow-x: hidden;
}
.mainContainer .PageHeader {
  background-color: #ffffff;
  border: 1px solid #f5f6fa;
  height: auto;
  margin: 25px 25px 10px 25px;
}
.mainContainer .PageHeader .panelHeading {
  padding: 10px;
  border-bottom: 1px solid #f5f6fa;
  font-weight: bold;
  font-size: 16px;
}
.mainContainer .panelContainer .panel {
  background-color: #ffffff;
  border: 1px solid #f5f6fa;
  height: auto;
}
.mainContainer .panelContainer .panel .panelHeading {
  padding: 10px;
  border-bottom: 1px solid #f5f6fa;
  font-weight: bold;
  font-size: 18px;
}
.mainContainer .panelContainer .panel .panelBody {
  padding: 15px;
}
.mainContainer .panelContainer.mainPanel {
  background-color: #ffffff;
  border: 1px solid #cccccc;
}
.mainContainer .panelContainer.mainPanel .panel {
  border: 0px;
}

/*------------------------------------------------------------------
[Layouts End]
*/
/*------------------------------------------------------------------
[5. Alignment]
*/
.verticalMiddle {
  display: flex;
  align-items: center;
}

.horizontallyMiddle {
  margin: 0 auto;
}

.verticalhorizontalMiddle {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*  Padding Helpers */
.p-t-0 {
  padding-top: 0px !important;
}

.p-r-0 {
  padding-right: 0px !important;
}

.p-l-0 {
  padding-left: 0px !important;
}

.p-b-0 {
  padding-bottom: 0px !important;
}

.padding-0 {
  padding: 0px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.padding-5 {
  padding: 5px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.padding-10 {
  padding: 10px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.padding-15 {
  padding: 15px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.padding-20 {
  padding: 20px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.padding-25 {
  padding: 25px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.padding-30 {
  padding: 30px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.padding-35 {
  padding: 35px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.padding-40 {
  padding: 40px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.padding-45 {
  padding: 45px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.p-l-60 {
  padding-left: 60px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.padding-50 {
  padding: 50px !important;
}

/* Margin Helpers */
.m-t-0 {
  margin-top: 0px;
}

.m-l-2 {
  margin-left: 2px;
}

.m-r-0 {
  margin-right: 0px;
}

.m-l-0 {
  margin-left: 0px;
}

.m-b-0 {
  margin-bottom: 0px;
}

.m-t-5 {
  margin-top: 5px;
}

.m-r-5 {
  margin-right: 5px;
}

.m-l-5 {
  margin-left: 5px;
}

.m-b-5 {
  margin-bottom: 5px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-r-10 {
  margin-right: 10px;
}

.m-l-10 {
  margin-left: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-t-15 {
  margin-top: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px;
}

.m-t-20 {
  margin-top: 20px !important;
}

.m-r-20 {
  margin-right: 20px;
}

.m-l-20 {
  margin-left: 20px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-t-25 {
  margin-top: 25px;
}

.m-r-25 {
  margin-right: 25px;
}

.m-l-25 {
  margin-left: 25px;
}

.m-b-25 {
  margin-bottom: 25px;
}

.m-t-28 {
  margin-top: 28px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-r-30 {
  margin-right: 30px;
}

.m-l-30 {
  margin-left: 30px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.m-t-35 {
  margin-top: 35px;
}

.m-r-35 {
  margin-right: 35px;
}

.m-l-35 {
  margin-left: 35px;
}

.m-b-35 {
  margin-bottom: 35px;
}

.m-t-37 {
  margin-top: 37px;
}

.m-t-40 {
  margin-top: 40px;
}

.m-r-40 {
  margin-right: 40px;
}

.m-l-40 {
  margin-left: 40px;
}

.m-b-40 {
  margin-bottom: 40px;
}

.m-t-45 {
  margin-top: 45px;
}

.m-r-45 {
  margin-right: 45px;
}

.m-l-45 {
  margin-left: 45px;
}

.m-b-45 {
  margin-bottom: 45px;
}

.m-t-50 {
  margin-top: 50px;
}

.m-r-50 {
  margin-right: 50px;
}

.m-l-50 {
  margin-left: 50px;
}

.m-b-50 {
  margin-bottom: 50px;
}

.m-l-92 {
  margin-left: 92px;
}

.m-l-82 {
  margin-left: 82px;
}

.m-l-1 {
  margin-left: 1px;
}

/* Generic Helpers */
.full-height {
  height: 100% !important;
}

.full-width {
  width: 100%;
}

.hide {
  display: none !important;
}

.inline {
  display: inline-block !important;
}

.block {
  display: block !important;
}

.flex {
  display: inline-flex !important;
}

.no-padding {
  padding: 0px !important;
}

.no-margin {
  margin: 0px !important;
}

.no-overflow {
  overflow: hidden !important;
}

.pull-left {
  float: left !important;
}

.pull-right {
  float: right !important;
}

.alignInline {
  display: flex;
}

.line-height {
  line-height: 60px;
}

.position-relative {
  position: relative;
}

/*------------------------------------------------------------------
[Alignment End]
*/
/*------------------------------------------------------------------
[6. SideNav]
*/
.sideNav {
  width: 300px;
  /* height: calc(100vh - 140px); */
  height: calc(100vh - 38px);
  overflow: visible;
  overflow-y: hidden;
  overflow-x: hidden;
  background-color: #ffffff;
  z-index: 1;
  font-size: 14px;
  -webkit-box-shadow: 20px 0 20px -20px #d3d7e9;
  -moz-box-shadow: 20px 0 20px -20px #d3d7e9;
  box-shadow: 20px 0 20px -20px #d3d7e9;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sideNav .itemsList {
  background-color: #fff;
}
.sideNav .sidenavFooter {
  position: relative;
  z-index: 35;
}
.sideNav .sidenavFooter .collapsed {
  border-top: 1px solid #ccc;
  cursor: pointer;
}
.sideNav .sidenavHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #cccc;
  height: 55px;
}
.sideNav .sidenavHeader .loginLogo {
  padding: 5px;
  opacity: 1;
}
.sideNav .sidenavHeader .loginLogo img {
  width: 100%;
  opacity: 1;
}
.sideNav .sideBarIcons {
  width: 40px;
}
.sideNav .navButton {
  width: 67px;
  background-color: #fff;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  height: 47px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.sideNav .list-sidebar .collapsed .fa-angle-down,
.sideNav .list-sidebar span .fa-angle-right {
  display: none;
}
.sideNav .list-sidebar .collapsed .fa-angle-right,
.sideNav .list-sidebar span .fa-angle-down {
  display: inline-block;
}
.sideNav .list-sidebar .tableGroup {
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  background-color: #fdfdfd;
}
.sideNav .list-sidebar .tableGroup a {
  padding-left: 25px !important;
}
.sideNav .list-sidebar .tableGroup .tableGroupName {
  background-color: #f8f8f8;
  height: 40px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  padding-left: 10px;
}
.sideNav ul {
  margin: 0px;
  padding: 0px;
  width: 100%;
}
.sideNav ul li {
  height: calc(100vh - 184px);
}
.sideNav ul li .sub-menu li .active {
  background-color: #ffffff;
  color: #007ae1;
}
.sideNav ul li .sub-menu li a {
  position: relative;
  padding: 15px 10px 10px 40px;
  height: 50px;
}
.sideNav ul li .sub-menu li a.active .nav-label:after {
  border-right: 11px solid transparent;
}
.sideNav ul li .sub-menu li a:hover {
  color: #007ae1;
  background-color: #f5f6fa;
  padding-left: 20px;
  transition: all 0.5s ease-in-out;
}
.sideNav ul li .sub-menu li a:hover:after {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  width: 5px;
  background-color: #007bff;
  height: 100%;
}
.sideNav li a {
  display: block;
  padding: 15px 12px;
  color: #4d4d4d;
  border-left: 0px solid #dedede;
  text-decoration: none;
  height: 45px;
  width: 100%;
  display: flex;
  align-items: center;
}
.sideNav li a:hover {
  background-color: #f5f6fa;
  color: #007ae1;
}
.sideNav li a i {
  padding-right: 5px;
}
.sideNav li a .nav-title {
  color: #096dd9;
  font-weight: bold;
}
.sideNav li a .nav-label {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.sideNav li a .nav-label + span {
  transition: all 0.5s ease-in-out;
  animation: fade 0.5s;
}
.sideNav li a.collapsed.active {
  display: flex;
  padding: 15px 12px;
  color: #ffffff;
  border-left: 0px solid #dedede;
  text-decoration: none;
  height: 45px;
}
.sideNav li a.collapsed.active .nav-title {
  color: #fff;
}
.sideNav li a.active {
  background-color: #007ae1;
  transition: all 0.5s ease-in-out;
  position: relative;
  color: #ffffff;
}
.sideNav li a.active :after {
  position: absolute;
  content: "";
  right: -1px;
  top: 11px;
  border-right: 11px solid #e4e7f2;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  z-index: 2020;
}
.sideNav li a.active .nav-label {
  width: 100%;
}
.sideNav.collapseNavBar {
  width: 66px;
  overflow: visible;
  overflow-x: visible;
  transition: all 0.5s ease-in-out;
}
.sideNav.collapseNavBar .loginLogo {
  padding: 15px 33px;
  display: none;
  transition: opacity 1s ease-out;
  opacity: 0;
}
.sideNav.collapseNavBar li {
  position: relative;
}
.sideNav.collapseNavBar li a .nav-label {
  display: none;
  transition: all 0.5s ease-in-out;
}
.sideNav.collapseNavBar li a .nav-label + span {
  display: none;
  transition: all 0.5s ease-in-out;
}
.sideNav.collapseNavBar li a:hover {
  display: flex;
  align-items: center;
  color: #ffffff;
  background-color: #007ae1;
  border-left: 0px;
  border-bottom: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transition: all 0s ease-out;
  -moz-transition: all 0s ease-out;
  -ms-transition: all 0s ease-out;
  -o-transition: all 0s ease-out;
  transition: all 0s ease-out;
}
.sideNav.collapseNavBar li a:hover .nav-title {
  color: #ffffff;
}
.sideNav.collapseNavBar li a:hover .nav-label {
  display: block;
  width: 100%;
}
.sideNav.collapseNavBar li .sub-menu li a {
  padding: 10px 10px 10px 0px;
}
.sideNav.collapseNavBar .sub-menu {
  position: absolute;
  left: 67px;
  top: 60;
  background-color: #cccccc;
  width: 200px;
  z-index: 100;
  list-style-type: none;
  height: auto;
  border-bottom: 1px solid #cccccc;
  display: none;
}
.sideNav.collapseNavBar .sub-menu li {
  background-color: #fafafa;
}
.sideNav.collapseNavBar .sub-menu li a:hover {
  width: 201px;
}
.sideNav.collapseNavBar .sub-menu .nav-label {
  display: inline;
}
.sideNav.collapseNavBar .tableGroupName {
  width: 65px;
  white-space: nowrap;
  display: block !important;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-top: 8px;
}

.sideNavOpen {
  width: calc(34%) !important;
}

/*------------------------------------------------------------------
[SideNav End]
*/
/*------------------------------------------------------------------
[6. Components]
*/
/* .tableIcon{

} */
.actionColumn {
  border-left: 1px solid #ccc !important;
}

.no-border {
  border: 0px !important;
}

.tableActions {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 37px;
}

.editForm {
  height: calc(100vh - 120px);
  overflow-y: hidden;
  background-color: #fff;
  padding: 10px;
  margin: 0px 15px;
}
.editForm .field-description {
  display: none;
}
.editForm #root__title {
  margin-bottom: 25px;
}
.editForm input {
  font-size: 14px;
}
.editForm input:disabled,
.editForm textarea:disabled {
  cursor: not-allowed;
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5 !important;
}

.editForm fieldset {
  height: calc(100vh - 140px);
  overflow-y: scroll;
}

.editForm .form-group.formItems {
  height: 110px;
  overflow: hidden;
}

.editForm .radioBtn .ant-radio-group {
  display: flex;
  flex-direction: column;
}
.editForm .radioBtn .ant-radio-group .ant-radio-wrapper {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.editForm .form-group .customComponent .form-group,
.editForm .form-group .ant-form-item {
  margin-bottom: 0px;
}

.editForm .form-group .customComponent .ant-form-item-control {
  line-height: 10px;
}

.editForm .form-group .customComponent .ant-select-selection {
  height: 35px;
}

.editForm .form-group input {
  border-radius: 1px;
}

.editForm .form-group select {
  border-radius: 1px;
}

.editForm .form-group textarea {
  border-radius: 1px;
}

.editForm .form-group .field-radio-group {
  display: inline-grid;
}
.editForm .form-group .field-radio-group .radio-inline {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0px;
}
.editForm .form-group .field-radio-group .radio-inline input {
  margin: 0px 5px 2px 0px;
}

.editForm .form-group .field-radio-group .radio {
  margin-right: 10px;
}

.editForm .form-group .field-radio-group .radio input {
  margin-right: 5px;
}

.editForm .form-group .required {
  color: red;
}

.editForm .form-group .control-label {
  font-size: 13px;
  margin-bottom: 5px;
}

.editForm .form-group .field-range-wrapper {
  position: relative;
}

.editForm .form-group .range-view {
  position: absolute;
  top: -20px;
  right: 0px;
  font-weight: bold;
}

.editForm .form-group .form-control,
.editForm .form-group .ant-calendar-picker input {
  height: 35px;
}

.editForm .form-group .ant-calendar-picker {
  width: 100%;
}

.editForm .form-group .form-control:focus {
  -webkit-box-shadow: 0 0 0 1px rgba(0, 123, 255, 0.25);
  box-shadow: 0 0 0 1px rgba(0, 123, 255, 0.25);
}

.editForm .form-group fieldset .error-detail {
  display: block;
  position: absolute;
  padding-left: 0px;
  list-style-type: none;
  margin-top: 5px;
  width: calc(100% - 30px);
  text-align: right;
  font-size: 10px;
}

.editForm .form-group .has-error input {
  border: 1px solid #dc3545;
}

.ant-select-search__field {
  border: 0px !important;
}

.button {
  padding: 5px 12px;
  border-radius: 0px;
  font-size: 14px;
  height: 32px !important;
  font-size: 12px !important;
}

.editForm button[type=submit] {
  position: absolute;
  top: 7px;
  right: 15px;
  padding: 5px 12px;
  border-radius: 0px;
  font-size: 14px;
  background-color: #39baf1;
  border-color: #3bb9f0;
  color: #fff;
}

.breadcrumb {
  justify-content: space-between;
  padding: 6px 16px;
  align-items: center;
  height: 48px;
}

/*------------------------------------------------------------------
[Components End]
*/
/*------------------------------------------------------------------
[7. Footer]
*/
.footer {
  width: 100%;
  border-top: 1px solid #cccccc;
  position: fixed;
  bottom: 0px;
  background-color: #ffffff;
  z-index: 10;
}

.footer .copyright {
  padding: 10px 2px 10px 10px;
  margin: 0px;
  color: #007ae1;
  font-size: 12px;
  float: right;
}

/*------------------------------------------------------------------
[Footer End]
*/
/*------------------------------------------------------------------
[7. Media query]
*/
@media screen and (min-width: 0) and (max-width: 992px) {
  body,
html {
    overflow-x: auto !important;
  }
}
@media screen and (min-width: 0) and (max-width: 768px) {
  /* Column XS */
  .col-xs-12 {
    width: 100%;
  }

  .col-xs-11 {
    width: 91.66666667%;
  }

  .col-xs-10 {
    width: 83.33333333%;
  }

  .col-xs-9 {
    width: 75%;
  }

  .col-xs-8 {
    width: 66.66666667%;
  }

  .col-xs-7 {
    width: 58.33333333%;
  }

  .col-xs-6 {
    width: 50%;
  }

  .col-xs-5 {
    width: 41.66666667%;
  }

  .col-xs-4 {
    width: 33.33333333%;
  }

  .col-xs-3 {
    width: 25%;
  }

  .col-xs-2 {
    width: 16.66666667%;
  }

  .col-xs-1 {
    width: 8.33333333%;
  }
}
/*------------------------------------------------------------------
[Media query End]
*/
/* button */
.ant-btn {
  border-radius: 0px;
  font-size: 12px;
}

.ant-select-selection {
  border-radius: 0px;
}

.agGrid {
  height: calc(100vh - 120px);
  width: 100%;
  margin: 0px 30px;
}
.agGrid .ag-pinned-right-cols-container {
  border-left: 1px solid #ccc;
}
.agGrid .ag-cell {
  border-right: 1px solid #ccc;
}

.profileModal .dropZone {
  width: 100%;
  height: 220px;
  border: 2px dashed #dedede;
  background-color: #f7f7f7;
  color: #b3b2b2;
  font-size: 12px;
  display: flex;
  align-items: center;
  text-align: center;
}

.modalValidationError {
  color: #f00;
  float: right;
  width: 270px;
  text-align: right;
  margin-top: 0px;
  font-size: 14px;
}

.progressBar {
    height: 6px;
    width: 100%;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.appLoading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  background: rgba(247, 247, 247, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}
.appLoading .loadingCard {
  height: 200px;
  width: 325px;
  border-radius: 2px;
  background-color: #fff;
  padding: 20px;
  box-shadow: -1px 2px 5px 0px rgba(0, 0, 0, 0.15);
}
.appLoading .loadingCard .loadingMessage {
  font-size: 14px;
  color: #8a8a8a;
  text-align: center;
}

.notificationModalBody {
  display: flex;
}
.notificationModalBody svg {
  font-size: 30px;
  margin-right: 12px;
}
.notificationModalBody p {
  margin: 0px;
}

::-webkit-scrollbar {
  width: 8px;
  /* 1px wider than Lion. */
  /* This is more usable for users trying to click it. */
  background-color: rgba(0, 0, 0, 0);
  border-radius: 100px;
  -webkit-border-radius: 100px;
}

/* hover effect for both scrollbar area, and scrollbar 'thumb' */
::-webkit-scrollbar:hover {
  background-color: rgba(0, 0, 0, 0.09);
}

/* The scrollbar 'thumb' ...that marque oval shape in a scrollbar */
::-webkit-scrollbar-thumb:vertical {
  /* This is the EXACT color of Mac OS scrollbars.
   Yes, I pulled out digital color meter */
  background: rgba(156, 156, 156, 0.61);
  border-radius: 100px;
  -webkit-border-radius: 100px;
}

::-webkit-scrollbar-thumb:vertical:active {
  background: rgba(156, 156, 156, 0.61);
  /* Some darker color when you click it */
  border-radius: 100px;
  -webkit-border-radius: 100px;
}

::-webkit-scrollbar:horizontal {
  height: 8px;
}

::-webkit-scrollbar-thumb:horizontal {
  /* This is the EXACT color of Mac OS scrollbars.
   Yes, I pulled out digital color meter */
  background: rgba(156, 156, 156, 0.61);
  border-radius: 100px;
  -webkit-border-radius: 100px;
}

::-webkit-scrollbar-thumb:horizontal:active {
  background: rgba(156, 156, 156, 0.61);
  /* Some darker color when you click it */
  border-radius: 100px;
  -webkit-border-radius: 100px;
}

.dropZone {
  border: 1px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  font-size: 12px;
  flex-direction: column;
}

.notificationModalBody {
  display: flex;
  height: 70px;
  align-items: center;
  padding: 10px;
}
.notificationModalBody svg {
  font-size: 30px;
  margin-right: 12px;
}
.notificationModalBody p {
  margin: 0px;
}

.ant-notification-notice-btn {
  margin-right: 25px;
  margin-top: 0px;
}

.ant-notification-notice-message {
  font-size: 14px !important;
  padding-right: 10px;
  width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  padding-right: 0px !important;
}

.ant-upload-text {
  width: 460px;
  padding: 0px 10px;
  max-height: 20px !important;
}

.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.ag-theme-balham .ag-filter-body-wrapper .ag-filter-condition {
  display: none;
}

.LoadingAnimation {
  position: fixed;
  z-index: 57;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(204, 204, 204, 0.380392);
  display: flex;
  align-items: center;
  justify-content: center;
}

.antModalMediumWidth {
  width: 50% !important;
  top: 115px;
}

.ant-modal-body {
  padding: 10px;
}

.ant-table-body {
  font-size: 12px;
}

.panel.panel-danger.errors {
  display: none;
}

.sideNav li a.collapsed.active {
  padding: 15px 20px;
}

.sideNav li a {
  padding: 15px 20px;
}

.sideNav.collapseNavBar li a:hover .nav-label {
  display: none !important;
}

.sidenavFooter .collapsed {
  padding-left: 13px;
}
.sidenavFooter .collapsed svg {
  font-size: 18px;
}

.tenant-logo-wrapper img {
  position: absolute;
  width: 270px;
  height: auto;
  top: 8px;
  right: 42%;
}

.tenant-logo-wrapper-tab-home {
  text-align: center;
  margin-top: 3px;
}
.tenant-logo-wrapper-tab-home img {
  width: 270px;
  height: auto;
}

.login-wrapper {
  height: 100%;
  background-color: blue;
}
.login-wrapper > * {
  height: 100%;
}
.login-wrapper .bg-pic {
  position: absolute;
  width: 100%;
  overflow: hidden;
}
.login-wrapper .bg-pic > img {
  height: 100%;
  opacity: 0.6;
}
.login-wrapper .login-container {
  width: 496px;
  display: block;
  position: relative;
  float: right;
}
.login-wrapper .bg-caption {
  width: auto;
}

.row-wrapper {
  font-size: 15px;
}

.text-wrapper {
  font-size: 15px;
  margin-top: 1px;
}

.ag-header-cell-label {
  font-size: 15px;
}

/*# sourceMappingURL=styles.css.map */
