@charset "utf-8";

/* CSS Document */

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

p {
  margin: 0;
  padding: 0;
}
.pointer {
  cursor: pointer !important;
}

/*Form STYLE*/

.animForm {
}

.animForm input,
.animForm textarea,
.animForm select {
  padding: 40px 10px 15px 10px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: none;
  outline: none;
  border: 1px solid #d3dbe3;
  background: #ffff;
}

.tbdr0 input,
.tbdr0 select {
  border-top: 0;
}

.animForm .frmDiv {
  position: relative;
}

.animForm label.ph {
  position: absolute;
  top: 15px;
  left: 10px;
  pointer-events: none;
  transition: 0.5s;
  font-size: 16px;
  color: #9098a9;
  font-weight: 500;
}

.animForm input:focus ~ label,
.animForm input.ng-dirty ~ label {
  top: 15px;
  color: rgba(184, 184, 184, 1);
  font-size: 13px;
  font-weight: 500;
}
.animForm input:valid ~ label {
  top: 5px;
  color: rgba(184, 184, 184, 1);
  font-size: 13px;
  font-weight: 500;
}

.frmIco {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
}

button.toggle,
button.toggle:hover,
button.toggle:focus,
button.toggle:active {
  background: none;
  border: none !important;
  outline: none !important;
}

.rmcheckbox input:focus ~ label,
.rmcheckbox input.ng-dirty ~ label {
  margin: 0;
  padding: 0;
  top: 0;
}

.frmRegular input {
  padding: 20px 10px 4px 10px;
  height: 50px;
  font-weight: 600;
}

.frmRegular select {
  padding: 20px 10px 4px 5px;
  height: 50px;
  font-weight: 600;
}

.frmRegular form label.ph {
  top: 13px;
}

.frmRegular input:focus ~ label,
.frmRegular input.ng-dirty ~ label {
  top: 5px;
}

.frmRegular .select {
  border-top: 1px solid #d3dbe3;
}

.floating-textarea {
  min-height: 30px;
  max-height: 260px;
  overflow: hidden;
  overflow-x: hidden;
}

/* highlighter */

.highlight {
  position: absolute;
  height: 50%;
  width: 100%;
  top: 15%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

/*Multi Select*/

.button-sb {
  padding: 8px 10px;
  background: #f2f2f2;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #818181;
  font-family: sans-serif;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.button-sb:hover {
  color: #000;
}

.button-sb-block {
  display: block;
  width: 100%;
}

.hide {
  display: none;
}

.select-beauty {
  position: relative;
  display: block;
}

.select-beauty button {
  text-align: left;
  background: none;
  height: 50px;
  border-radius: 0;
  border: 1px solid #d3dbe3;
}

.select-beauty ul {
  position: absolute;
  padding: 0 15px;
  margin: 0;
  list-style: none;
  background: #ffffff;
  left: 0;
  right: 0;
  z-index: 2;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0px 10px 10px 2px rgba(0, 0, 0, 0.01);
  border: none;
  border-top: none;
  top: 132%;
}

.select-beauty ul li {
  float: left;
  width: 33.333%;
}

.select-beauty ul li a {
  display: block;
  font-size: 12px;
  padding: 10px 0;
  color: #818181;
  font-weight: 600;
  /* text-align: center; */
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 0.2s ease-in-out;
}

.select-beauty ul li a:hover,
.select-beauty ul li.active a {
  color: #2aabe4;
}

/*Multi Select END*/

/*CUSTOM SELECT*/

.s-hidden {
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: block;
  position: relative;
  border: 1px solid #d3dbe3;
  border-top: 0;
}

.styledSelect {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  padding: 0 10px;
  font-weight: 400;
  color: #3e5463;
  line-height: 106px;
}

.styledSelect:after {
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-color: black transparent transparent transparent;
  position: absolute;
  top: 36px;
  right: 16px;
}

.styledSelect:active,
.styledSelect.active {
  background-color: #eee;
}

.options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 10px 0 0 50px;
  padding: 0 0;
  list-style: none;
  background-color: white;
  border: 0.5px solid #d3dbe3;
  border-bottom: 0;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.options li {
  color: #202124;
  padding: 16px;
  margin: 0;
  background: #fff;
  border-bottom: 0.5px solid #d3dbe3;
}

.options li:hover {
  background-color: #ebf3f7;
  color: #202124;
}

.options li:first-child {
  display: none;
}

label.lblSelect {
  position: absolute;
  top: 25px;
  left: 10px;
  font-size: 16px;
  color: #9098a9;
  font-weight: 500;
  pointer-events: none;
  transition: 0.5s;
}

.select:hover > label {
  display: none;
}

.loginPanel .styledSelect:before {
  content: "Select user type";
  font-size: 15px;
  font-weight: 500;
  color: #7e8998;
  position: absolute;
  top: -20px;
  transition: 0.5s;
}

.loginPanel .styledSelect:hover:before {
  color: rgba(184, 184, 184, 1);
  font-size: 13px;
  font-weight: 500;
  top: -34px;
}

.properyFeature:before {
  content: "Property features";
  font-size: 15px;
  font-weight: 500;
  color: #7e8998;
  position: absolute;
  top: 18px;
  left: 10px;
  transition: 0.5s;
}

.properyFeature:hover:before {
  color: rgba(184, 184, 184, 1);
  font-size: 13px;
  font-weight: 500;
  top: 7px;
}

/****  floating-Lable style start ****/

.floating-label {
  position: relative;
}

.floating-input,
.floating-select {
  display: block;
  width: 100%;
  background-color: transparent;
  box-sizing: border-box;
  box-shadow: none;
  outline: none;
  border: 1px solid #d3dbe3;
}

.floating-input:focus,
.floating-select:focus {
  outline: none;
}

label.phSelect {
  color: #9098a9;
  font-weight: 500 !important;
  position: absolute;
  pointer-events: none;
  left: 10px;
  top: 13px;
  transition: 0.5s;
}

.floating-input:focus ~ label,
.floating-input:not(:placeholder-shown) ~ label {
  top: -18px;
  font-size: 14px;
  color: #5264ae;
}

.floating-select:focus ~ label,
.floating-select.ng-dirty ~ label {
  top: 4px;
  color: rgba(184, 184, 184, 1);
  font-size: 13px;
  font-weight: 500;
}

.floating-textarea {
  min-height: 100px;
  max-height: 260px;
  overflow: hidden;
  overflow-x: hidden;
  position: relative;
  padding: 20px 10px 10px 10px;
}

.floating-textarea label.phSelect {
  top: 30px;
}

.floating-textarea:focus ~ label,
.floating-textarea:not(:placeholder-shown) ~ label {
  top: 5px;
  color: #9098a9;
}

/****  floating-Lable style end ****/

/*CUSTOM SELECT END*/

/*Form STYLE END*/

/*CSS FOR LOGIN PANEL*/

.loginPanel {
  min-height: 100vh;
  background: url("../SVG/loginscreen-bottom.svg") no-repeat right 0 bottom 0;
  background-size: 210px;
}

.lpTitle {
  padding-top: 45px;
  font-size: 35px;
  color: #2196f3;
  text-transform: uppercase;
  font-family: "Rift-Regular";
}

.screenPic {
  margin-top: 50px;
  margin-right: 50px;
}

.screenPic img {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

.screenPic::before {
  content: "";
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border-top: 2px dashed #faa43a;
  border-right: 2px dashed #faa43a;
  border-left: 2px dashed #ffc174;
  border-bottom: 2px dashed #ffc174;
  animation: spin 10s infinite linear;
  position: absolute;
  top: 110px;
  left: -30px;
  z-index: 0;
}

@keyframes spin {
  100% {
    transform: rotate(1turn);
  }
}

.loginForm {
  padding-top: 175px;
  padding-bottom: 30px;
}

span.subTopic {
  font-weight: 500;
  color: #7e8998;
  font-size: 18px;
  display: block;
}

.loginForm h1 {
  margin: 0;
  padding: 0;
  font-weight: 900;
  color: #203442;
}

.loginForm form.loginform,
.loginForm form.signupform {
  margin-top: 40px;
}

.loginForm .form-group {
  border: 1px solid #d3dbe3;
  border-bottom: 0;
  margin-bottom: 0;
}

.loginForm .form-group:last-child {
  border-bottom: 1px solid #d3dbe3 !important;
}

.loginForm input:-internal-autofill-selected {
  background-color: rgba(255, 255, 255, 1) !important;
  background-image: none !important;
  color: -internal-light-dark-color(black) !important;
}

.loginForm form.resetpasswordform .form-group {
  border-bottom: 1px solid #d3dbe3 !important;
}

.loginForm label {
  margin-bottom: 0;
}

.true-validate-email::after {
  content: "\e64c";
  font-family: "themify";
  font-size: 15px;
  color: #58d890;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 200;
  height: 100%;
  top: 0;
  right: 12px;
  padding: 0 5px;
  cursor: pointer;
  -webkit-transition: background 0.4s;
  -o-transition: background 0.4s;
  -moz-transition: background 0.4s;
  transition: background 0.4s;
}

.loginForm label,
.loginForm label:hover,
.loginForm label:active,
.loginForm label:focus,
.loginForm label:selected {
  background: #fff !important;
}

.form-control-feedback {
  display: none;
}

.loginForm .form-control-feedback {
  width: 44px;
  height: 34px;
  line-height: 24px;
  color: #49d587;
}

.shadowBox {
  box-shadow: 0px 6px 10px #7b7b7b1a;
}

.remForget {
  padding: 25px 0 0 0;
  line-height: 1.4;
  font-size: 15px;
}

.rm {
  float: left;
  width: 55%;
}

.fp {
  float: right;
  width: 45%;
  text-align: right;
}

.fp a {
  color: #03a9f4;
}

.fp a:hover {
  color: #03a9f4;
  text-decoration: underline;
}

.remForget .custom-control-label::before {
  border: #536876 solid 1px;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  top: 0.12rem;
}

.remForget .custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #49d587;
  background-color: #49d587;
}

.loginformBtn {
  padding: 25px 0 0 0;
}

.loginformBtn button {
  height: 50px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 2px;
  font-weight: 500;
}

.signIn {
  float: left;
  width: 60%;
  max-width: 258px;
}

.signUp {
  float: right;
  width: 32%;
  max-width: 143px;
}

.signIn button {
  background: #a2d1f7;
  color: #fff;
  border: 1px solid #a2d1f7;
}

.signIn button:hover {
  background: #2196f3;
  border: 1px solid #a2d1f7;
}

.signUp button {
  background: #fff;
  color: #3e5463;
  border: 1px solid #d3dbe3;
}

.signUp button:hover {
  background: #fafafa;
  color: #3e5463;
}

.signIn button a,
.signIn button a:hover {
  color: #fff;
  text-decoration: none;
}

.signUp button a {
  color: #3e5463;
  text-decoration: none;
}

.signUp button a:hover {
  color: #3e5463;
  text-decoration: none;
}

.tandc {
  display: block;
  width: 100%;
  padding-top: 20px;
  color: #c0c9d5;
}

.tandc a {
  color: #203442;
}

.tandc a:hover {
  color: #c0c9d5;
  text-decoration: underline;
}

.backtoBtn a,
.backtoBtn a:hover {
  color: #7e8998;
  text-decoration: none;
}

.userGuidelines {
  padding-top: 10px;
}

.userGuidelines p {
  font-size: 16px;
  color: #203442;
}

form.resetpasswordform {
  padding-top: 20px;
}

button.btnPrimary {
  height: 50px;
  background: #a2d1f7;
  color: #fff;
  border: 1px solid #a2d1f7;
  display: block;
  width: 100%;
}

button.btnPrimary:hover {
  background: #2196f3 0% 0% no-repeat padding-box;
  box-shadow: 0px 6px 10px #2196f31a;
  border: 1px solid #2196f3;
  color: #fff;
}

button.btnPrimary a {
  color: #fff;
  text-decoration: none;
}

button.btnPrimary a:hover {
  color: #fff;
}

.resetpasswordformBtn {
  padding: 10px 0;
}

select.has-val {
  width: 100%;
  border: 0;
  padding: 0 16px;
}

.loginForm .form-group {
  margin-bottom: 0;
}

.tdflipArrow:after {
  content: "\e64b";
  font-family: "themify";
  color: #7e8998;
  font-size: 16px;
  display: block;
  position: absolute;
  height: 18px;
  width: 18px;
  right: 16px;
  top: 0;
  transition: 0.3s ease;
}

.tdflipArrow:hover:after {
  transform: rotate(180deg);
  transition: 0.3s ease;
}

.submissionSuccess {
  background: rgba(0, 0, 0, 0.35);
  position: relative;
  height: 100vh;
}

.submissionSuccess .successMBox {
  width: 100%;
  max-width: 555px;
  background: #fff;
  border-radius: 2px;
  padding: 30px;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.successMBox h3 {
  color: #2f4656;
  font-weight: 600;
  margin: 0;
  padding: 15px 0;
}

.successMBox p {
  padding-bottom: 20px;
  border-bottom: 1px solid #d3dbe3;
}

a.continueBtn {
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  height: 50px;
  line-height: 50px;
  background: #49d587;
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  width: 100%;
  max-width: 250px;
  transition: 2s ease;
}

a.continueBtn:hover {
  background: #49d587d1;
  text-decoration: none !important;
  transition: 2s ease;
  color: #fff !important;
}

.successMBox a {
  color: #2f4656;
  font-weight: 600;
  text-decoration: none;
}

.successMBox a:hover {
  text-decoration: underline;
}

/*CSS FOR LOGIN PANEL END*/

/*DASHBOARD START*/

.dashboardArea {
  background: #fafafa;
}

.dbToggle {
  position: fixed;
  top: 20px;
  left: 10px;
  z-index: 99999;
}

a.offcanvashamburger {
  font-family: "Rift-Regular";
  font-size: 24px;
  font-weight: 600;
  color: #203442;
  text-transform: uppercase;
  padding-left: 30px;
}

a.offcanvashamburger:hover {
  color: #203442;
}

a.offcanvashamburger:before {
  content: "\e907";
  font-family: "icomoon";
  font-weight: 600;
  color: #203442;
  font-size: 22px;
  display: block;
  position: absolute;
  height: 30px;
  width: 30px;
  transition: 0.3s ease;
  left: 0px;
  top: 3px;
}

a.offcanvashamburger:hover:before {
  /*color: #203442;
	transform: rotate(30deg)!important;*/
  transition: 0.3s ease;
}

.dashboardArea.sidebar-mini.sidebar-collapse a.offcanvashamburger:before {
  content: "\e908";
  font-family: "icomoon";
  color: #98a2b0;
  top: 0;
  font-size: 16px;
}

.dashboardArea .main-header {
  border-bottom: 0;
  border-top: 15px solid #f4f6f9;
  border-left: 15px solid #f4f6f9;
}

.sidebar-light-primary::after {
  content: "";
  border-left: 15px solid #000;
  display: block;
  position: absolute;
}

.dashboardArea .profile-user-img,
.dashboardArea .brand-link {
  border: 0;
}

.dashboardArea .profile-user-img {
  text-align: center;
  margin: 0 auto;
  margin-top: 60px;
  width: 100%;
}

.dashboardArea .profile-user-img img {
  margin: 0 auto;
  width: 100%;
  max-width: 72px;
  background: #f4f6f9;
  border-radius: 10px;
}

a.userCategory {
  color: #2196f3 !important;
  font-size: 12px;
  background: #ebf3f7;
  width: 72px;
  margin: 0 auto;
  padding: 4px 0;
  border-radius: 2px;
  display: block;
  text-align: center;
}

.sidebar-collapse a.offcanvashamburger {
  font-size: 16px;
  padding-left: 18px;
}

p.profileTitle {
  color: #c0c9d5;
  font-size: 12px;
}

.sidebar nav.mt-2 ul.nav-sidebar {
  margin: 0 auto;
  width: 100%;
}

.sidebar nav.mt-2 ul.nav-sidebar li a {
  margin: 0 25px;
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-primary .nav-sidebar > .nav-item > .nav-link {
  line-height: 42px;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-primary .nav-sidebar > .nav-item > .nav-link.active::before {
  content: "";
  width: 4px;
  height: 38px;
  background: #2196f3 0% 0% no-repeat padding-box;
  box-shadow: 3px 0px 6px #00000029;
  border-radius: 100px;
  display: block;
  position: absolute;
  left: -24px;
  top: 0;
}

ul.nav-treeview {
  margin-left: 1em;
}

ul.nav-treeview li.nav-item .fa-circle {
  font-size: 10px !important;
}

ul.nav-treeview > .nav-item > .nav-link > .nav-icon {
  width: 1rem;
}

ul.nav-treeview li a.active .fa-circle {
  background: #2196f3;
  width: 10px !important;
  border-radius: 100%;
  box-shadow: 3px 0px 6px #00000029;
}

ul.iconOnlyWB li {
  background: #e5f6fe 0% 0% no-repeat padding-box;
  border-radius: 4px;
  margin: 0 10px 0 0px !important;
}

ul.iconOnlyWB li .nav-link {
  padding: 10px !important;
  line-height: 1 !important;
  height: auto !important;
}

ul.iconOnlyWB .navbar-badge {
  right: -3px;
  top: -3px;
}

ul.iconOnlyWB .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #fff;
  margin: 0 auto;
  right: 8px;
  top: -10px;
  position: absolute;
  box-shadow: 0px 5px 33px #0000000d;
}

ul.notificationTogether li:nth-child(2) {
  margin-right: 0 !important;
  border-radius: 0;
  -webkit-border-top-left-radius: 4px !important;
  -webkit-border-bottom-left-radius: 4px !important;
  -moz-border-radius-topleft: 4px !important;
  -moz-border-radius-bottomleft: 4px !important;
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}

ul.notificationTogether li:nth-child(3) {
  border-radius: 0;
  -webkit-border-top-right-radius: 4px !important;
  -webkit-border-bottom-right-radius: 4px !important;
  -moz-border-radius-topright: 4px !important;
  -moz-border-radius-bottomright: 4px !important;
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

.dropITitle {
  padding: 1em 2em;
  text-align: left;
  font: Medium 16px/132px Montserrat;
  letter-spacing: 0;
  color: #203442;
  background: none;
  box-shadow: 0px 3px 20px #00000008;
}

.dropContent {
  padding: 1em 2em;
}

ul.oneColList,
ul.twoColList {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

ul.oneColList li,
ul.twoColList li {
  background: none;
  display: block;
  margin: 0 !important;
  padding: 0.5em 0 !important;
  border: 1px solid #d3dbe3;
  border-radius: 0 !important;
}

ul.twoColList li:nth-child(even) {
  float: right;
  border-right: 0;
  border-left: 0;
  width: 50%;
}

ul.twoColList li:nth-child(odd) {
  float: left;
  border-left: 0;
  width: 50%;
}

ul.twoColList li:nth-child(1),
ul.twoColList li:nth-child(2) {
  border-top: 0;
}

ul.twoColList li:nth-child(3),
ul.twoColList li:nth-child(4) {
  border-bottom: 0;
  border-top: 0;
}

ul.oneColList li:nth-child(2),
ul.twoColList li:nth-child(2) {
  margin: 0 !important;
}

ul.twoColList li a {
  color: #2196f3;
  font-size: 0.8em;
}

ul.twoColList li p {
  padding-top: 0.5em;
}

.icBox {
  background: #e5f6fe 0% 0% no-repeat padding-box;
  border-radius: 6px;
  width: min-content;
  padding: 10px;
  margin: 0 auto;
}

.icBox i {
  font-size: 30px;
}

ul.oneColList li {
  width: 100%;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  text-align: left;
  position: relative;
}

ul.oneColList li:nth-last-child(1),
ul.oneColList li:nth-last-child(2) {
  border-bottom: 0;
}

ul.oneColList li a p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  color: #536876;
}

ul.oneColList li a p span {
  padding-right: 10px;
  color: #536876;
  font-weight: 400;
}

ul.oneColList li p.timeCount {
  letter-spacing: 0;
  font-size: 13px;
}

ul.oneColList li a:hover p {
  color: #536876;
}

ul.oneColList li::before {
  content: "";
  background: #98a2b0 0% 0% no-repeat padding-box;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 45%;
}

ul.oneColList li:hover::before {
  background: #2196f3 0% 0% no-repeat padding-box;
}

ul.oneColList.noBullet li::before {
  display: none;
}

ul.oneColList.noBullet li p {
  padding-left: 0;
}

ul.oneColList li {
  padding-left: 10px !important;
}

.notificationPort ul.oneColList li {
  padding-left: 20px !important;
}

.notificationPort .dropdown-menu-lg {
  max-width: 100%;
  min-width: 380px;
}

.addProperty {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 462px;
  text-align: center;
  position: relative;
  min-height: calc(100vh - 120px);
}

.addProperty img {
  margin-bottom: 20px;
}

.addBtn {
  margin: 20px 0 0 0;
  padding: 20px 0 0 0;
  text-align: center;
  border-top: 0.5px solid #d3dbe3;
}

button.addBtn {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 40px;
  text-align: center;
  background: #2196f3;
  color: #fff;
  padding-left: 20px;
  padding-right: 20px;
}

.addBtn a,
.continueBtn a {
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 230px;
  line-height: 48px;
  text-align: center;
  background: #2196f3;
  color: #fff;
  padding-left: 20px;
  padding-right: 20px;
}

a.monthYear {
  line-height: 48px;
  text-align: left;
  color: #000;
  font-weight: 600;
}

span.ytod {
  color: #7e8998;
  font-weight: 400;
}

a.applyBtn,
a.resetBtn {
  padding: 10px 20px;
  font-size: 15px;
  display: block;
  display: inline-block;
  width: 49%;
  text-align: center;
}

a.applyBtn {
  background: #2196f3 !important;
  color: #fff;
}

a.resetBtn {
  background: #ff623d1a !important;
  color: #ff623d;
}

.apContent {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.ehDBR1 {
  min-height: 340px;
}

.ehDBR2 {
  min-height: 343px;
}

.whiteBox {
  background: #fff;
  padding: 15px;
}

.lightGreyBox {
  background: #fafafa 0% 0% no-repeat padding-box;
  padding: 20px;
}

.dbBoxTitle {
  margin: 0;
  padding: 0;
}

.dbtLeft {
  color: #fff;
  font-size: 15px;
  /*letter-spacing: -1px;*/
  padding: 8px;
  background: #2196f3 0% 0% no-repeat padding-box;
  border-radius: 2px;
}

.dbtLeft,
.dbtRight {
  width: auto;
  position: relative;
}

.dbtLeft {
  width: max-content;
}

.dbtRight select {
  color: #2196f3;
  font-size: 15px;
  height: auto;
  padding: 8px;
  min-width: 116px;
  background: #2196f31a 0% 0% no-repeat padding-box;
  border-radius: 2px;
  border: 0;
  /*letter-spacing: -1px;*/
}

.lgBg select {
  min-width: 145px;
}

.dbtRight .tdflipArrow:after {
  height: 14px;
  width: 14px;
  right: 10px;
  top: 8px;
  color: #2196f3;
}

.dbtRight .tdflipArrow:hover:after {
  top: 10px;
}

.chartBox {
  padding: 15px 0 0 0;
}

.chartBox img {
  margin: 0 auto;
  width: 100%;
}

.pieChart img {
  max-width: 230px;
}

.chartBottom {
  position: relative;
  /*padding-top: 20px;
	margin-top: -22px;*/
}

.legendLevel {
  margin-top: -22px;
}

.cbLeft {
  float: left;
}

.cbright {
  float: right;
}

.cbLeft,
.cbright {
  width: 50%;
}

.cbLeft ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

ul.upCommingchartIndex {
  margin: 0;
  padding: 0;
  text-align: left;
}

ul.upCommingchartIndex li {
  font-size: 11px;
  display: inline-block;
  padding: 0 6px 0 12px;
  position: relative;
}

ul.upCommingchartIndex li:last-child {
  padding-right: 0;
}

ul.upCommingchartIndex li a {
  color: #536876;
}

span.CI_Lease::before {
  background: #2196f3;
}

span.CI_Units::before {
  background: #bbdefb;
}

span.CI_Occupied::before {
  background: #49d587;
}

span.CI_Vacant::before {
  background: red;
}

span.CI_Invoices::before {
  background: #2196f3;
}

span.CI_Receipt::before {
  background: #49d587;
}

span.CI_Balance::before {
  background: #ff8264;
}

span.CI_Lease::before,
span.CI_Units::before,
span.CI_Vacant::before,
span.CI_Occupied::before,
span.CI_Invoices::before,
span.CI_Receipt::before,
span.CI_Balance::before {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  left: 0;
  top: 4px;
}

.cbright,
.cbright a {
  color: #98a2b0;
  font-size: 11px;
  display: block;
  text-align: right;
}

.progressPercent {
  padding-top: 55px;
  padding-right: 55px;
  color: #b3bcc9;
  font-weight: 300;
  text-align: right;
}

.barTopic {
  color: #536876;
  font-size: 12px;
  padding-top: 25px;
  text-align: center;
}

.noPerc {
  padding-top: 105px;
}

.pb2L {
  float: left;
  width: 175px;
}

.pb2R {
  float: right;
  /* width: calc(100% - 185px); Bilal*/
  max-width: 220px;
}

.counterBox {
  text-align: left;
  padding: 6px;
  /*border: 0.30000001192092896px solid #C0C9D5;*/
  border: 0.8px solid #c0c9d5;
  border-radius: 2px;
  min-width: 85px;
  position: relative;
}

.countedNumber,
.countedNumber a {
  font-size: 30px;
  font-weight: 300;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.counteTitle,
.counteTitle a {
  font-size: 12px;
  color: #98a2b0;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.counteTitle a {
  padding-top: 5px;
}

.cnLarge,
.cnLarge a {
  font-size: 54px;
}

ul.idBoxes {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.idBoxes li {
  float: left;
  margin-right: 10px;
  width: calc(33% - 6px);
}

ul.idBoxes li:nth-last-child(2) {
  margin-right: 0;
  float: right;
}

.clrGreen {
  color: #49d587;
}

.clrOrange {
  color: #ff623d;
}

.clrBlue {
  color: #2196f3;
}

.clrGold {
  color: #d1a34f;
}

.clrOrangeLight {
  color: #faa43a;
}

.clrBlack {
  color: #2f4656;
}

.helfLeft {
  float: left;
}

.halfRight {
  float: right;
}

.helfLeft,
.halfRight {
  width: calc(50% - 6px);
}

a.percent {
  display: block;
  text-align: right;
  font-size: 16px;
  position: absolute;
  right: 15px;
  top: 15px;
  color: #203442;
}

.hlLg {
  padding-right: 9px;
}

.hRLg {
  padding-left: 21px;
}

.seperatorLR {
  border-left: 0.5px solid #c0c9d5;
}

span.currency {
  color: #98a2b0 !important;
  font-size: 15px;
}

a.reconciledBal {
  font-size: 8px;
  color: #2196f3;
  text-align: center;
  position: absolute;
  top: 2px;
  right: 6px;
}

a.totalyear {
  display: block;
  text-align: right;
  color: #7e8998;
  font-size: 13px;
  padding-top: 10px;
}

.tablePort a {
  color: #203442;
}

a.stHigh {
  color: #faa43a;
}

a.stCritical {
  color: #ff623d;
}

a.stMedium {
  color: #d1a34f;
}

.tablePort .sorting_asc:before::before {
  content: "\e906" !important;
  font-family: "icomoon" !important;
}

.tablePort thead {
  background: #ebf3f7 !important;
}

.tablePort .table thead th {
  border-bottom: 0;
}

.tablePort .table-bordered th {
  border: 0;
}

.tablePort .table-bordered {
  border: 0;
}

.tablePort .table-bordered th,
.tablePort .table-bordered td {
  border: 0.9px solid #ebf3f7;
  font-size: 14px;
  color: #203442;
}

li.breadcrumb-item a {
  color: #203442;
}

li.breadcrumb-item a.active {
  color: #2196f3;
}

.btnNoborder .addBtn {
  margin: 0;
  padding: 0;
  text-align: right;
  border-top: 0;
  width: 100%;
  max-width: 180px;
}

.tablePort .sorting_asc:after {
  content: "\e906" !important;
  font-family: "icomoon" !important;
  font-size: 10px;
  top: 8px;
  right: 10px !important;
}

.tablePort .sorting_asc:before {
  content: "\e905" !important;
  font-family: "icomoon" !important;
  font-size: 10px;
}

.tablePort .sorting:after {
  content: "\e905" !important;
  font-family: "icomoon" !important;
  font-size: 10px;
  right: 10px !important;
}

.tablePort .sorting:before {
  content: "\e906" !important;
  font-family: "icomoon" !important;
  font-size: 10px;
  top: 8px;
}

.tablePort .sorting_desc:after {
  content: "\e905" !important;
  font-family: "icomoon" !important;
  font-size: 10px;
}

.tablePort .sorting_desc:before {
  content: "\e906" !important;
  font-family: "icomoon" !important;
  font-size: 10px;
  right: 5px !important;
  top: 8px;
}

.areaHalf {
  text-align: center;
}

h6 {
  font-size: 16px;
  color: #203442;
  opacity: 0.89;
}

.tabPort .nav-tabs {
  border-bottom: 0;
}

.tabPort .nav-tabs {
  display: table;
  width: 100%;
}

.tabPort .nav-tabs a.nav-item {
  display: table-cell;
  color: #3e5463;
  font-weight: 600;
  line-height: 62px;
  padding: 20px;
  border: 0;
  border-radius: 0;
  /*background: #FFF;*/
  border-right: 15px solid #f5f5f5;
  position: relative;
}

.tabPort .nav-tabs a:last-child.nav-item {
  border-right: 0;
}

.tabPort .nav-tabs a.nav-item i {
  border: 1px solid #c0c9d5;
  padding: 10px;
  font-size: 40px;
  vertical-align: middle;
  margin-right: 30px;
  border-radius: 2px;
}

.tabPort .nav-tabs .nav-link.active i {
  background: #2196f3;
  border: 1px solid #2196f3;
  color: #fff;
}

.tabPort .nav-tabs a.nav-item::before {
  content: "";
  border: 1px solid #3e5463;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  position: absolute;
  left: 30px;
  top: 46px;
}

.tabPort .nav-tabs .nav-link.active::before {
  content: "";
  border: 1px solid #2196f3;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  position: absolute;
  left: 30px;
  top: 46px;
}

.tabPort .nav-tabs .nav-link.active::after {
  content: "";
  background: #2196f3;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  left: 33px;
  top: 49px;
}

/*Accordian Start*/

.panel-default > .panel-heading {
  color: #333;
  background-color: #fff;
  border-color: #e4e5e7;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.panel-default > .panel-heading a {
  display: block;
  padding: 10px 15px;
}

.panel-default > .panel-heading a:after {
  content: "";
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  float: right;
  transition: transform 0.25s linear;
  -webkit-transition: -webkit-transform 0.25s linear;
}

.panel-default > .panel-heading a[aria-expanded="true"] {
  background-color: #eee;
}

.panel-default > .panel-heading a[aria-expanded="true"]:after {
  content: "\2212";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.panel-default > .panel-heading a[aria-expanded="false"]:after {
  content: "\002b";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.accordion-option {
  width: 100%;
  float: left;
  clear: both;
  margin: 15px 0;
}

.accordion-option .title {
  font-size: 20px;
  font-weight: bold;
  float: left;
  padding: 0;
  margin: 0;
}

.accordion-option .toggle-accordion {
  float: right;
  font-size: 16px;
  color: #6a6c6f;
}

.accordion-option .toggle-accordion:before {
  content: "Expand All";
}

.accordion-option .toggle-accordion.active:before {
  content: "Collapse All";
}

.tabPort .panel-default > .panel-heading a {
  padding: 0;
}

.tabPort .panel-default > .panel-heading a[aria-expanded="true"] {
  background-color: #fff;
}

.tabPort .panel-default > .panel-heading a[aria-expanded="true"]:after {
  content: "\e648";
  font-family: "themify";
  color: #7e8998;
}

.tabPort .panel-default > .panel-heading a[aria-expanded="false"]:after {
  content: "\e648";
  font-family: "themify";
  color: #7e8998;
}

.tabPort .panel {
  position: relative;
}

.tabPort .panel-default > .panel-heading {
  position: relative;
  padding: 15px;
}

.tabPort h5.panel-title,
.tabPort h5.panel-title a {
  color: #203442;
  font-size: 20px;
  margin: 0;
  padding: 0;
}

ul.actionBtn {
  position: absolute;
  right: 50px;
  top: 15px;
  width: auto;
  display: table;
}

ul.actionBtn li {
  display: table-cell;
  font-size: 16px;
  border-right: 10px solid #fff;
}

ul.actionBtn li:last-child {
  border-right: 0;
}

ul.actionBtn li a {
  padding: 6px 16px !important;
  text-align: center;
}

a.deleteBtn {
  background: #fbddd8;
  color: #ff623d;
}

a.duplicateBtn {
  background: #e5f6fe;
  color: #2196f3;
}

a.orangeLightBtn {
  background: #ff623d1a 0% 0% no-repeat padding-box;
  line-height: 48px;
  display: block;
  padding: 0 20px;
  color: #ff623d !important;
}

a.greenBtn {
  line-height: 48px;
  background: #49d587;
  display: block;
  padding: 0 20px;
  color: #fff !important;
}

a.blueBtn {
  line-height: 48px;
  background: #2196f3 0% 0% no-repeat padding-box;
  display: block;
  padding: 0 20px;
  color: #fff !important;
  min-width: 100px;
  text-align: center;
}

a.addItemsCount {
  color: #2f4656;
  font-weight: 600;
}

span.addedValue {
  color: #7e8998;
  font-size: 14px;
  font-weight: 400;
}

.lightGreenBtn {
  background: #49d58730 0% 0% no-repeat padding-box;
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 48px;
  padding: 0 20px;
  color: #49d587;
}

.removeLength .dataTables_length,
.removeTableFilter .dataTables_filter,
.removeTableInfo .dataTables_info,
.removePagination .dataTables_paginate {
  display: none;
}

.dataTable thead {
  background: #ebf3f7;
  font-size: 14px;
}

.dataTable table.dataTable thead th,
.dataTable table.dataTable thead td {
  padding: 10px !important;
}

table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd {
  background-color: #fbfbfb;
}

.dataTable table.dataTable.display tbody tr.odd > .sorting_1,
.dataTable table.dataTable.order-column.stripe tbody tr.odd > .sorting_1,
.dataTable table.dataTable.stripe tbody tr.odd,
.dataTable table.dataTable.display tbody tr.odd {
  background: #fff !important;
}

.dataTable table.dataTable thead th,
.dataTable table.dataTable thead td,
.dataTable table.dataTable.no-footer {
  border-color: #ebf3f7 !important;
}

.emptyMessage {
  text-align: center;
}

.emptyMessage h6 {
  color: #7e8998;
  font-size: 20px;
}

.emptyMessage p {
  color: #b3bcc9;
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

.previousBtn a {
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 230px;
  line-height: 48px;
  text-align: center;
  background: #e5f6fe;
  color: #2196f3;
  padding-left: 20px;
  padding-right: 20px;
}

ul.ccBtns {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

ul.ccBtns li {
  display: inline-block;
  padding: 0 7.5px;
  width: 49%;
}

ul.ccBtns li a {
  display: block;
  line-height: 50px;
  color: #fff;
}

ul.ccBtns li a.confirmBtn {
  background: #ff623d;
}

ul.ccBtns li a.cancelBtn {
  background: #49d587;
}

/*Accordian END*/

table.indiInfo tr {
  border-bottom: 1px solid #ebf3f7;
  height: 46px;
}

table.indiInfo tr:last-child {
  border-bottom: 0;
  vertical-align: bottom;
  height: 36px;
}

.dataTable select {
  padding: 0 5px;
  height: 42px;
  font-weight: 400;
  width: auto;
}

.dataTable .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: #2196f3 0% 0% no-repeat padding-box !important;
  padding: 0 8px !important;
  box-shadow: none !important;
  border: 0 !important;
  line-height: 40px;
  width: 40px;
  text-align: center;
}

.dataTable .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #fff !important;
}

.dataTable label {
  display: inline-block;
  margin-bottom: 0;
}

.dataTable .bottom {
  padding-top: 15px;
}

.fico {
  width: 42px;
  height: 42px;
  background: #2196f3 0% 0% no-repeat padding-box;
  float: right;
  position: relative;
  margin-left: 10px;
}

.fico:before {
  content: "\e6a2";
  color: #fff;
  font-family: "themify";
  font-size: 20px;
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  top: 5px;
  bottom: 0;
  left: 13px;
}

.filterFrmBox {
  position: absolute;
  padding: 15px;
  margin: 0;
  width: 100%;
  max-width: 372px;
  right: 15px;
  top: 236px;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 20px 40px #0000001a;
}

span.flipp {
  transform: scale(-1, 1);
}

.dataTable .fico {
  margin-top: -50px;
}

.vTabPort .nav {
  background: #fff;
  padding: 10px 0;
}

.vTabPort .nav-pills .nav-link {
  color: #203442;
  font-size: 15px;
  position: relative;
}

.vTabPort .nav-pills .nav-link.active {
  background: none;
  color: #2196f3;
}

.vTabPort .nav-pills .nav-link.active::before {
  content: "";
  width: 2px;
  height: 24px;
  background: #2196f3 0% 0% no-repeat padding-box;
  box-shadow: 3px 0px 6px #00000029;
  border-radius: 100px;
  display: block;
  position: absolute;
  left: 0px;
  top: 5px;
}

span.notifyCount {
  color: #faa43a;
}

.topBdr {
  border-top: 1px solid;
}

.bdrGrey {
  color: #e3e3e3;
}

.contentMiddleInner,
.generateValue {
  padding: 0 10px;
}

.cmiLeftBox,
.cmiWrapper {
  position: relative;
  height: 86px;
}

.smTabHeight .cmiLeftBox,
.smTabHeight .cmiWrapper {
  position: relative;
  height: 60px;
}

i.rcIcon,
.cmiWrapperInner {
  margin: 0;
  padding: 0 0 0 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.cmiLeftBox {
  float: left;
  width: 50px;
}

i.rcIcon {
  padding: 15px;
  font-size: 20px;
}

i.rcLightBlue,
.tabInsideTab a.nav-link.active .rcLightBlue {
  background: #2196f317;
  color: #2196f3;
}

i.rcLightGreen,
.tabInsideTab a.nav-link.active .rcLightGreen {
  background: #49d58717;
  color: #49d587;
}

i.rcLightOrange,
.tabInsideTab a.nav-link.active .rcLightOrange {
  background: #ff623d17;
  color: #ff623d;
}

.cmiWrapper {
  float: right;
  width: 100%;
  max-width: calc(100% - 60px);
}

a.itemTitle,
p.itemTitle {
  color: #7e8998;
  font-size: 12px;
}

a.itemAmount,
p.itemAmount {
  font-size: 30px;
  padding: 2px 0 8px 0 !important;
}

a.itemDefine,
p.itemDefine {
  color: #7e8998;
  font-size: 10px;
}

a.itemTitle,
a.itemAmount,
a.itemDefine {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.1;
}

.gvAnimPercent,
.gValueWrapper,
.gValueWrapperFull {
  position: relative;
  height: 80px;
}

.gvAnimPercent {
  float: left;
  width: 80px;
}

.gValueWrapper {
  float: right;
  width: 100%;
  max-width: calc(100% - 90px);
}

.percentGrey {
  color: #b3bcc9;
  font-size: 18px;
}

.gValueWrapperFull .cmiWrapperInner {
  padding: 0;
}

.vTabPort .tabInsideTab .nav {
  background: none;
  padding: 0;
  margin: 0;
}

.vTabPort .tabInsideTab .nav-tabs {
  border-bottom: 0;
}

.tabInsideTab ul.nav {
  display: table;
  width: 100%;
}

.tabInsideTab ul.nav li.nav-item {
  display: table-cell;
}

.tabInsideTab ul.nav li.nav-item a.nav-link {
  margin-right: 15px;
  border: 1px solid #d3dbe3;
  border-radius: 0 !important;
}

.tabInsideTab ul.nav li:last-child.nav-item a.nav-link {
  margin-right: 0;
}

.tabInsideTab .nav-tabs .nav-link.active {
  border: 0 !important;
  border-radius: 0 !important;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 6px 20px #00000008;
}

.tabInsideTab a.nav-link p {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.tabInsideTab .nav-tabs a.nav-link .contentMiddleInner {
  padding: 0;
}

.tabInsideTab .nav-tabs a.nav-link .cmiWrapper {
  max-width: calc(100% - 50px);
}

.tabInsideTab a.nav-link .clrBlue,
.clrGreen,
.clrOrange {
  color: #7e8998;
}

.tabInsideTab a.nav-link .rcLightBlue,
.tabInsideTab a.nav-link .rcLightGreen,
.tabInsideTab a.nav-link .rcLightOrange {
  background: #ebf3f7;
  color: #d3dbe3;
}

.tabInsideTab a.nav-link.active .clrBlue {
  color: #2196f3;
}

.tabInsideTab a.nav-link.active .clrGreen {
  color: #49d587;
}

.tabInsideTab a.nav-link.active .clrOrange {
  color: #ff623d;
}

.invoiceWraper {
  padding: 100px 0;
}

ul.actionBar {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.actionBar li {
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 136px;
  margin-left: 15px;
  float: right;
}

ul.actionBar li a {
  display: block;
  padding: 10px 16px;
  background: #2196f31a 0% 0% no-repeat padding-box;
  border-radius: 2px;
}

ul.actionBar li:nth-child(1) {
  margin-left: 0;
  float: left;
}

li.RightList {
  float: right !important;
  width: 50px !important;
}

ul.actionBar li.RightList .dropdown-menu a {
  background: none;
}

.dropdown .dropBtn:hover {
  background: #2196f3;
  color: #fff;
}

.invoiceBox {
  border: 1px solid #d3dbe3;
  background: #fff;
  padding: 15px;
}

a.invoiceLogo {
  font-family: "Rift-Regular";
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

a.invoiceNumber {
  font-size: 20px;
  color: #203442;
}

a.nameoninvoice {
  color: #203442;
  font-weight: 500;
}

#InvoiceInfoTable a {
  color: #203442;
}

#InvoiceInfoTable td:nth-child(even) {
  text-align: right;
}

tr.invTitle {
  background: #ebf3f7 0% 0% no-repeat padding-box;
}

tr.withBorder {
  border: 1px solid #d3dbe3;
}

#InvoiceBalance {
  text-align: right;
}

tr.topBorder {
  border-top: 1px solid #d3dbe3;
}

.invoiceBox ol {
  margin: 0;
  padding: 0 0 0 15px;
}

.invoiceBox ol li {
  font-size: 12px;
  color: #b3bcc9;
}

.InvoiceTabPort .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #ffffff;
  background: #2196f3 0% 0% no-repeat padding-box;
  border-radius: 0;
  border-color: #2196f3;
}

.InvoiceTabPort .nav-pills .nav-link {
  color: #7e8998;
  border: 1px solid #d3dbe3;
  border-radius: 0;
  line-height: 26px;
}

.InvoiceTabPort .animForm label.ph {
  font-size: 14px;
}

.inputIcon {
  position: absolute;
  right: 10px;
  top: 16px;
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: block;
}

.Uploadbtn {
  border: 1px solid #d3dbe3;
  background: #fff url("../SVG/fileUpload.svg");
  background-repeat: no-repeat;
  background-position: top 12px center;
  color: #7e8998;
  padding: 65px 0 8px 0;
  width: 100%;
  border-radius: 0;
}

.upload-btn-wrapper input[type="file"] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

#myModalDocument .Uploadbtn {
  padding: 120px 0;
  background-position: top 60px center;
  background-size: 180px;
}

#myModalDocument .upload-btn-wrapper input {
  height: 500px;
}

#myModalDocument .topAdjust {
  padding-top: 60px;
}

.submitBtn {
  display: block;
  border: 0 !important;
  margin: 0;
  padding: 0 !important;
  line-height: 1;
  margin-top: 10px;
  background: #2196f3 0% 0% no-repeat padding-box;
  color: #fff;
}

.dropBtn {
  background: #2196f3 0% 0% no-repeat padding-box;
  border-radius: 0;
  line-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  width: 50px;
  color: #fff;
}

.InvoiceTabPort {
  position: relative;
}

.InvoiceTabPort li:last-child {
  position: absolute;
  right: 0;
}

.addUnitsPort {
  position: absolute;
  right: 8px;
  margin-top: -52px;
}

.addUnitsPort .modal-dialog {
  max-width: 800px;
}

.addUnitsPort .modal-content {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#myModalEditDetails .modal-dialog {
  max-width: 960px;
}

#myModalShareProperty .modal-dialog {
  max-width: 380px;
}

.editBtnPort {
  margin-top: -32px;
  float: right;
}

span.tableCsummery {
  color: #7e8998;
  font-size: 12px;
}

/*Table Status*/

.stat_paid {
  color: #49d587;
}

.stat_partial_payment {
  color: #e4c113;
}

.stat_un_paid {
  color: #ff0000;
}

.pDetailsTable tr {
  height: 40px;
  border-bottom: 1px solid #ececec;
}

.pDetailsTable tr:last-child {
  border-bottom: 0 !important;
}

.tabInsideTab .nav-tabs {
  border-bottom: 0 !important;
}

.vTabPortRadio a.nav-link {
  color: #3e5463;
  line-height: 70px;
  padding-left: 50px;
  position: relative;
}

.vTabPortRadio a.nav-link span.icn {
  background: #fafafa 0% 0% no-repeat padding-box;
  padding: 8px;
  font-size: 22px;
  color: #3e5463;
  margin-right: 7px;
  vertical-align: middle;
}

.vTabPortRadio a.nav-link.active {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 6px 20px #00000008;
  color: #2196f3;
}

.vTabPortRadio a.nav-link.active span.icn {
  background: #2196f31a 0% 0% no-repeat padding-box;
  color: #2196f3;
}

.vTabPortRadio a.nav-link::before {
  content: "";
  border: 1px solid #3e5463;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  position: absolute;
  left: 25px;
  top: 34px;
}

.vTabPortRadio a.nav-link.active::before {
  content: "";
  border: 1px solid #2196f3;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  position: absolute;
  left: 25px;
  top: 34px;
}

.vTabPortRadio a.nav-link.active::after {
  content: "";
  background: #2196f3;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  left: 28px;
  top: 37px;
}

.bdrBox {
  padding: 15px;
  border: 1px solid #d3dbe3;
}

.nodataMessage {
  color: #b3bcc9;
  font-size: 14px;
}

ul.YMD {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: table;
}

ul.YMD li {
  display: table-cell;
  text-align: center;
}

ul.YMD li a {
  display: block;
  color: #2196f3;
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
}

ul.YMD li span.ymdTopic {
  color: #7e8998;
  margin: 0;
  padding: 0;
  line-height: 1;
}

ul.YMD li:nth-child(2) {
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

#myModalAddPayment {
}

#myModalAddPayment .modal-dialog {
  z-index: 99999999999999 !important;
}

.singleCell {
  border: 1px solid #bbdefb;
  padding: 6px 10px;
  font-size: 14px;
}

.scLeft {
  float: left;
  width: 50%;
  text-align: left;
}

.scRight {
  float: right;
  width: 50%;
  text-align: right;
}

a.orangeTxt,
.orangeTxt {
  color: #ff623d !important;
}

a.greenText,
.greenText {
  color: #49d587 !important;
}

a.blueText,
.blueText {
  color: #2196f3 !important;
}

.noteText {
  font-size: 12px;
}

.rightAlignPort ul.actionBar li {
  float: right;
}

.rightAlignPort ul.actionBar li:nth-child(1) {
  margin-left: 15px;
}

.halfLeftPort {
  float: left;
}

.halfRightPort {
  float: right;
}

.halfLeftPort,
.halfRightPort {
  width: 50%;
}

.leaseTitleRow {
  border-bottom: 1px solid #d3dbe3;
  padding-bottom: 10px;
}

a.leaseTitle {
  font-family: "Rift-Regular";
  font-size: 20px;
  font-weight: 600;
  color: #2196f3;
  text-transform: uppercase;
}

a.leaseNo {
  color: #203442;
  font-weight: 600;
}

table.customMadeTable {
  margin: 0;
  padding: 0;
}

table.customMadeTable td:nth-child(even) {
  text-align: right;
}

table.customMadeTable td:nth-child(odd),
table.customMadeTable td:nth-child(even) {
  color: #98a2b0;
  font-size: 14px;
}

table.customMadeTable tr.ctblTitle {
  color: #203442 !important;
  font-size: 16px;
  font-weight: 600;
  padding-top: 10px;
  display: block;
}

table.custumListingTable {
  font-size: 14px;
}

.tblwithBdr {
  border: 1px solid #ebf3f7;
}

table.custumListingTable tr.bdrBottm {
  border-bottom: 1px solid #ebf3f7;
}

.ctableTitleWithBg {
  background: #ebf3f7;
  font-weight: 600;
}

.ltDesc,
.ltAmt {
  border: 1px solid #d3dbe3;
  padding: 10px;
  font-size: 14px;
}

.ltDesc a,
.ltAmt a {
  color: #000;
}

.ltDesc {
  float: left;
  width: 100%;
  max-width: calc(100% - 300px);
}

.ltAmt {
  float: right;
  width: 285px;
}

.ProfileIconBox {
  margin: 0 auto;
  position: relative;
  padding: 30px;
  width: 130px;
  height: 130px;
  border: 2px solid #49d587;
  border-radius: 100%;
}

a.profileStatus {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  font-size: 12px;
}

.gValueAdjust .cmiWrapper {
  max-width: calc(100% - 80px);
}

.uploadedDocument img {
  border: 4px solid #d3dbe3;
  width: 100%;
}

.popUpBtn ul.actionBar li {
  float: right;
  margin-left: 10px;
  width: auto;
}

.popUpBtn ul.actionBar li a {
  padding: 8px 30px;
  color: #fff;
  border: 0;
  border-radius: 0;
}

.popUpBtn ul.actionBar li:nth-child(1) a {
  background: #3e5463;
}

.popUpBtn ul.actionBar li:nth-child(2) a {
  background: #ff623d;
}

.popUpBtn ul.actionBar li:nth-child(3) a {
  background: #49d587;
}

.popUpBtn {
  position: absolute;
  right: 16px;
  top: 9px;
}

a.nav-link .cMIsm .cmiLeftBox {
  width: 20px;
}

a.nav-link .cMIsm .cmiWrapper {
  max-width: calc(100% - 20px) !important;
}

a.nav-link .cMIsm .cmiLeftBox::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #536876;
  background: #fff;
  position: absolute;
  top: 38%;
  border-radius: 3px;
}

a.nav-link.active .cMIsm .cmiLeftBox::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #49d587;
  background: #49d587;
  position: absolute;
  top: 38%;
  border-radius: 3px;
}

a.nav-link.active .cMIsm .cmiLeftBox::after {
  content: "\e64c";
  font-family: "themify";
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 38%;
  left: 3px;
}

.cMIsm .cmiWrapperInner {
  padding: 0 0 0 10px;
}

.cMIsm p.itemAmount {
  font-size: 22px;
}

.customCheckbox input {
  width: auto;
  height: auto;
  margin-top: 25px;
  position: relative;
}

.customCheckbox a {
  color: #2f4656;
}

label.titlelabel {
  position: absolute;
  font-size: 16px;
  font-weight: 400 !important;
  color: #9098a9;
  left: 25px;
}

button.greenBtn {
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  background: #49d587;
  display: block;
  width: 100%;
  text-align: center;
  height: 50px;
}

button.blueBtn {
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  background: #2196f3;
  display: block;
  width: 100%;
  text-align: center;
  height: 50px;
}

button.blueBtnSm {
  color: #fff;
  background: #2196f3;
}

button.orangeBtnSm {
  color: #ff623d;
  background: #ff623d1a;
}

button.blueBtnSm,
button.orangeBtnSm {
  margin: 0;
  padding: 10px 16px;
  border: 0;
}

.dropbtn {
  background-color: #2196f3;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  position: absolute;
  min-width: 260px;
  padding: 15px 25px;
  overflow: auto;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 5px 33px #0000000d;
  border-radius: 10px;
  z-index: 1;
  right: 0;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.show {
  display: block;
}

button.nobg {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  display: block;
  width: 100%;
  text-align: left;
  height: 36px;
  border-bottom: 1px solid #f3f3f3;
}

button:last-child.nobg {
  border-bottom: 0 !important;
}

.btnGreenClr {
  color: #49d587;
}

.btnOrangeClr {
  color: #ff623d;
}

.tabSmall ul.nav-tabs {
  padding: 0;
  text-align: center;
  border: 1px solid #efefef;
  display: table;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.tabSmall ul.nav-tabs li {
  display: table-cell;
}

.tabSmall .nav-tabs .nav-link:hover,
.tabSmall .nav-tabs .nav-link:focus {
  border: 0;
}

.tabSmall ul.nav-tabs .nav-link.active {
  border-radius: 0;
  color: #fff;
  background: #2196f3;
  transition: 0.3s ease;
  border: 1px solid #2196f3;
}

.dataTable table.select {
  width: 100% !important;
  display: inline-table;
  border: 0;
}

.dataTable table.select thead th {
  padding: 10px !important;
}

.dataTable table.select thead th:first-child {
  text-align: center;
}

ul.checkBoxList {
  margin: 0;
  padding: 0;
  display: table;
  width: 100%;
  list-style: none;
}

ul.checkBoxList li {
  list-style: none;
  display: table-cell;
  position: relative;
}

ul.checkBoxList label span.cbDate {
  font-size: 12px;
  color: #7e8998;
  padding-left: 8px;
}

ul.checkBoxList label .cbAmount {
  padding-left: 30px;
}

ul.checkBoxList label input[type="checkbox"] {
  height: 18px;
  width: 18px;
  background: #fff !important;
  margin: 20px 0 0 0;
  vertical-align: -webkit-baseline-middle;
  position: relative;
}

ul.checkBoxList label .cbAmount {
  font-size: 22px;
  line-height: 0.3;
  color: #2f4656;
  font-weight: 500;
}

ul.checkBoxList li label {
  display: block;
  padding: 8px 15px 25px 15px;
  margin: 0 15px 0 0;
  border: 1px solid #d3dbe3;
  border-radius: 0 !important;
}

ul.checkBoxList li:last-child label {
  margin: 0 0px 0 0;
}

ul.checkBoxList li label.active {
  background: #fff !important;
  border-color: #fff;
}

ul.checkBoxList li label.active p.cbAmount {
  color: #2196f3;
}

table.withBorder {
  border: 1px solid #ebf3f7;
}

tr.bdrBottm {
  border-bottom: 1px solid #ebf3f7;
}

button.btnLightBlue {
  background: #2196f31a;
  border: 1px solid #2196f31a;
  color: #2196f3;
  padding: 6px 16px;
}

a.costEdit {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid #ebf3f7;
  color: #203442;
}

select.customSelect {
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #ebf3f7;
  height: 48px;
}

input.customSelect {
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #d3dbe3;
  height: 48px;
  width: 100%;
}

textarea.customSelect {
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #d3dbe3;
  width: 100%;
}

button.generateBtn {
  background: #2196f3;
  border: 1px solid #2196f3;
  height: 48px;
  color: #fff;
}

button.resetBtn {
  background: #fff0de;
  border: 1px solid #fff0de;
  height: 48px;
  color: #faa43a;
}

button.successBtn {
  background: #49d587;
  border: 1px solid #fff0de;
  height: 48px;
  color: #fff;
}

span.topicAdjust {
  font-size: 16px;
}

.paswordForm input {
  border: 1px solid #d3dbe3;
  height: 50px;
  border-radius: 0;
}

.paswordForm form label {
  color: #7e8998;
  padding-top: 16px;
  font-weight: 400 !important;
}

.paswordForm .field-icon {
  float: right;
  margin-top: -32px;
  margin-right: 15px;
  position: relative;
  z-index: 2;
}

/*SWITCH*/

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 33px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  border: 1px solid #536876;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: #536876;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #fff;
  border: 1px solid #0099ff;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
  background: #0099ff;
}

/* Rounded sliders */

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

ul.SettingList {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.SettingList li {
  color: #203442;
  font-size: 16px;
  border-bottom: 1px solid #f1f1f1;
  padding: 10px 0;
}

ul.SettingList li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

ul.SettingList li label {
  font-weight: 400 !important;
  margin: 0;
  padding: 0;
  line-height: 1;
}

ul.SettingList li label.settingLabelTitle {
  vertical-align: -webkit-baseline-middle;
}

.checkboxListing label.chkBoxTitle {
  display: block;
}

.checkboxListing input {
  width: auto;
  height: auto;
}

#myModalGoogleMap .modal-dialog {
  width: 100%;
  max-width: 960px;
}

#myModalGoogleMap .modal-content {
  border-radius: 0;
}

#myModalGoogleMap .modal-header {
  padding: 0;
  border: 0;
  border-radius: 0;
}

#myModalGoogleMap .modal-header button.close {
  padding: 8px 10px;
  background: #fff;
  margin: -30px 0 5px auto;
  opacity: 100%;
  font-size: 12px;
  cursor: pointer !important;
}

.whiteBox h5,
h6 {
  line-height: 40px;
}

.whiteBox h6 button.btnLightBlue {
  line-height: 1;
}

table.dataTable tbody th,
table.dataTable tbody td {
  font-size: 14px;
}

table.dataTable.display tbody tr.even > .sorting_1,
table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
  background-color: #ffff !important;
}

table.dataTable.row-border tbody th,
table.dataTable.row-border tbody td,
table.dataTable.display tbody th,
table.dataTable.display tbody td {
  border-top: 0.5px solid #ddd !important;
}

.dataTable a {
  color: #203442;
  font-weight: 500;
}

.vieweye::after {
  content: "\e63d";
  font-family: "themify";
}

#myModalDocumentView .modal-content {
  margin: 50px 0;
}

#myModalDocumentView .modal-content img {
  width: 100%;
  border: 4px solid #ebf3f7;
}

button.actionBtn {
  margin: 0;
  padding: 0 15px;
  border: 0;
}

.bgGreen {
  background: #49d587;
}

.bgOrange {
  background: #ff623d;
}

.bgBlack {
  background: #3e5463;
}

.txtWhite {
  color: #fff;
}

.data-rent {
  max-width: 190px;
}

button.LeaseAdd {
  margin: 0;
  border: 0;
  background: #e5f6fe;
  height: 42px;
  padding: 0 20px;
  float: right;
  clear: left;
  color: #2196f3;
}

button.signOut {
  margin: 0 auto;
  padding: 0;
  border: 0;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 214px;
  height: 40px;
  background: #03a9f41a 0% 0% no-repeat padding-box;
  border-radius: 2px;
  color: #2196f3;
}

.Withico {
  position: relative;
}

.adjustIco {
  position: absolute;
  right: 0;
}

.relativearea {
  position: relative;
}

.UnReconcilemenu {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 5px;
  width: 100%;
  max-width: 250px;
  top: -50px;
  background: #ebf3f7 0% 0% no-repeat padding-box;
}

.dataTable .UnReconcilemenu select {
  padding: 0 10px;
  height: 32px;
  font-weight: 400;
  margin: 5px 0;
  width: 63%;
}

#individualTable_filter input {
  height: 42px;
}

.Withico input {
  padding: 10px;
  width: auto;
  position: relative;
}

.adjustIco {
  position: absolute;
  right: 10px;
  top: 13px;
}

.textGap {
  padding-left: 10px;
}

/*DASHBOARD END*/

/*CUSTOM RESPONSIVE*/

@media only screen and (max-width: 1600px) {
  .dbtLeft,
  .dbtRight select {
    font-size: 13px;
  }
  .dbtRight select {
    height: 36px;
    min-width: auto;
  }
}

@media only screen and (max-width: 1470px) {
  .counterBox {
    min-width: auto;
  }
  vTabPort .nav-pills .nav-link {
    font-size: 13px;
  }
  .contentMiddleInner,
  .generateValue {
    padding: 0 0;
  }
  .cmiWrapperInner {
    padding: 0 0 0 0;
  }
  .tabInsideTab .cmiWrapperInner {
    padding: 0 0 0 10px;
  }
  i.rcIcon {
    padding: 8px;
  }
  .cmiLeftBox {
    width: 36px;
  }
  .tabInsideTab .nav-tabs a.nav-link .cmiWrapper {
    max-width: calc(100% - 36px);
  }
  .tabInsideTab .nav-link {
    padding: 10px;
  }
  .cmiLeftBox,
  .cmiWrapper {
    height: 60px;
  }
  a.itemAmount,
  p.itemAmount {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1300px) {
  /* max-width: 1400px Bilal */
  .adjustMediumScreen .col-xl-12,
  .adjustMediumScreen .col-xl-11,
  .adjustMediumScreen .col-xl-10,
  .adjustMediumScreen .col-xl-9,
  .adjustMediumScreen .col-xl-8,
  .adjustMediumScreen .col-xl-7,
  .adjustMediumScreen .col-xl-6,
  .adjustMediumScreen .col-xl-5,
  .adjustMediumScreen .col-xl-4,
  .adjustMediumScreen .col-xl-3,
  .adjustMediumScreen .col-xl-2,
  .adjustMediumScreen .col-xl-1 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pb2L {
    float: none;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .pb2R {
    float: none;
    margin: 0 auto;
    width: 100%;
  }
  .itmeDetails {
    margin: 0 auto;
    width: 100%;
    max-width: 220px;
  }
  ul.idBoxes li {
    float: none;
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  ul.idBoxes li:last-child {
    margin-bottom: 0;
  }
  .mac1 {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 1200px) {
  .screenPic {
    margin-right: 0;
  }
  .addUnitsPort {
    margin-top: 10px;
    margin-right: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .dashboardArea .main-header {
    border-top: 7px solid #f4f6f9;
    border-left: 0;
  }
  .addUnitsPort .modal-dialog {
    max-width: 100%;
  }
  .mac2 {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .dashboardArea .main-header {
    border-top: 0;
  }
  .dbToggle {
    top: 14px;
  }
  .loginForm {
    padding-top: 30px;
  }
  .screenPic::before {
    content: "";
    width: 150px;
    height: 150px;
    top: -30px;
    left: -30px;
  }
  .screenPic {
    margin-top: 30px;
  }
  .loginForm form.loginform,
  .loginForm form.signupform {
    margin-top: 20px;
  }
  .rm,
  .fp,
  .signIn,
  .signUp {
    float: none;
    width: 100%;
    text-align: left;
  }
  .fp,
  .signUp {
    margin-top: 15px;
  }
  .signUp {
    max-width: 258px;
  }
  .lpTitle {
    padding-top: 15px;
  }
  .helfLeft,
  .halfRight {
    width: 100%;
  }
  .hRLg {
    padding-left: 0;
  }
  .hlLg {
    padding-right: 0;
  }
  .seperatorLR {
    border-left: 0;
  }
  .halfRight {
    padding-top: 15px;
  }
  .mac2 .halfRight {
    border-top: 1px solid #efefef;
  }
  .rightAlignPort ul.actionBar li {
    float: none;
    display: block;
    width: 100%;
    margin: 0;
    max-width: 100%;
    margin-top: 10px;
  }
  .rightAlignPort ul.actionBar li:nth-child(1) {
    margin-left: 0;
  }
  .paswordForm form label {
    padding-top: 0;
  }
  .paswordForm form label.text-right {
    text-align: left !important;
  }
  .navbar-white {
    position: fixed;
    width: 100%;
  }
  .mac3 {
    margin-top: 15px;
  }
  .frmDiv {
    margin-bottom: 15px;
  }
  .frmDiv.removeMB {
    margin-bottom: 0;
  }
}

progress {
  border: 0 none;
  background: #f5f5f5 0% 0% no-repeat padding-box;
  box-shadow: 0px 2px 6px #0000001c;
  border-radius: 6px;
  font-size: 0.6em;
  line-height: 1.5em;
  text-indent: 0.5em;
}

progress::-moz-progress-bar {
  border-radius: 12px;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.1),
    0 2px 5px 0px rgba(0, 0, 0, 0.05);
}

/* webkit */

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  progress {
    height: 1em;
  }
}

progress::-webkit-progress-bar {
  background: transparent;
}

progress::-webkit-progress-value {
  border-radius: 12px;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.07),
    0 2px 5px 0px rgba(0, 0, 0, 0.03);
}

progress.clrYellow::-webkit-progress-value {
  background: #f7d012 0% 0% no-repeat padding-box;
}

progress.clrGreen::-webkit-progress-value {
  background: #49d587 0% 0% no-repeat padding-box;
}

progress.clrOrrange::-webkit-progress-value {
  background: #faa43a 0% 0% no-repeat padding-box;
}

progress.clrRed::-webkit-progress-value {
  background: #ff623d 0% 0% no-repeat padding-box;
}

progress,
progress.clrYellow,
progress.clrGreen,
progress.clrOrrange,
progress.clrRed {
  width: 15em;
  height: 1em;
}

/*.progressRotate {transform: rotate(-107deg);}
.progressRotate div:nth-child(6), .noPercentage div:nth-child(5), .barTopic, .progressPercent { transform: rotate(107deg)!important;}
.progressRotate div:nth-child(6), .noPercentage div:nth-child(5) { margin: 0 auto; left: 0; right: 0;}
*/

/*NEW CHECKBOX*/

input[type="checkbox"] {
  position: relative;
  cursor: pointer;
  margin-right: 8px;
}

input[type="checkbox"]:before {
  content: "";
  display: block;
  position: absolute;
  height: 18px;
  width: 18px;
  top: 0;
  left: 0;
  border: 1px solid #536876;
  border-radius: 4px;
  outline: none;
  transition-duration: 0.3s;
  background-color: white;
}

input[type="checkbox"]:checked:after {
  content: "\2713";
  display: block;
  text-align: center;
  color: #fff;
  position: absolute;
  left: -1px;
  top: -1px;
  background: #49d587;
  width: 19px;
  height: 19px;
  border-radius: 4px;
  border: 1px solid #49d587 !important;
}
