@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");
body {
  font-family: "Poppins", sans-serif;
  padding: 10px;
  margin: 0;
  color: #3E4B5B;
}
body.loginPage {
  padding: 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  font-family: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.login {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  position: relative;
  height: 100vh;
  width: 100%;
  align-items: center;
  background-image: url("../images/loginPagebackground.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.login .loginSection {
  margin-right: 100px;
  padding: 10px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid #FFF;
  width: 350px;
}
.login .loginSection > .title {
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
.login .loginSection p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
}
.login .loginSection form ul li {
  margin-bottom: 20px;
}
.login .loginSection form ul li .title {
  display: block;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
}
.login .loginSection form ul li input[type=text], .login .loginSection form ul li input[type=password] {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  border-radius: 8px;
  border: 1px solid #DDD;
  padding: 6px 12px;
}
.login .loginSection form button {
  border-radius: 8px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  height: 32px;
  background-color: #358c0d;
  border: 0;
  color: #FFF;
  margin-bottom: 20px;
}
.login .loginSection .copy {
  font-size: 12px;
  line-height: 18px;
}

header {
  margin-bottom: 10px;
  height: 50px;
}
header .logo {
  float: left;
  background-image: url("../images/logo_new.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 50px;
  font-size: 20px;
  line-height: 24px;
  padding: 13px 0 13px 60px;
}
header .logo strong {
  font-weight: 500;
}
header .nameLogout {
  float: right;
  font-size: 14px;
  line-height: 36px;
  color: #748CAB;
  font-weight: 500;
  padding: 7px 0;
}
header .nameLogout a {
  float: right;
  height: 36px;
  width: 36px;
  background-image: url("../images/out.png");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 15px;
}

.tabsFilters {
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.tabsFilters .tabs {
  background-color: #F5F5F5;
  height: 50px;
  border-radius: 25px;
  padding: 5px;
  float: left;
}
.tabsFilters .tabs ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}
.tabsFilters .tabs ul li {
  font-size: 14px;
  line-height: 24px;
  color: #94A7B5;
  padding: 8px 10px;
  border-radius: 20px;
}
.tabsFilters .tabs ul li.active {
  background-color: #FFF;
}
.tabsFilters > a {
  float: right;
  font-size: 14px;
  line-height: 24px;
  color: #FAFAFA;
  font-weight: 500;
  border-radius: 20px;
  padding: 8px 20px;
  margin-left: 10px;
  background-color: #91A3B2;
  margin-top: 5px;
}
.tabsFilters > a.active {
  background-color: #5B8CD5;
  color: #FFF;
}
.tabsFilters .filters {
  float: right;
  padding: 5px 0;
}
.tabsFilters .filters > select {
  height: 40px;
  border-radius: 20px;
  background-color: #FAFAFA;
  border: 1px solid #DDD;
  font-size: 14px;
  line-height: 24px;
  color: #94A7B5;
  font-weight: 500;
  padding: 0 30px 0 10px;
  background-image: url("../images/selectBoxArrow.png");
  background-position: right 10px center;
  background-size: 10px;
  background-repeat: no-repeat;
  appearance: none;
  float: left;
  margin-left: 40px;
}
.tabsFilters .filters .search {
  float: left;
  margin-left: 10px;
  position: relative;
}
.tabsFilters .filters .search > span {
  height: 40px;
  display: block;
  border-radius: 20px;
  background-color: #748CAB;
  font-size: 14px;
  line-height: 24px;
  color: #CEDBE5;
  font-weight: 500;
  padding: 8px 30px 8px 10px;
  background-image: url("../images/selectBoxArrow.png");
  background-position: right 10px center;
  background-size: 10px;
  background-repeat: no-repeat;
  background-blend-mode: screen;
  cursor: pointer;
}
.tabsFilters .filters .search .dropDown {
  position: absolute;
  right: 0;
  top: 100%;
  border-radius: 10px;
  padding: 10px;
  background-color: #FFF;
  border: 1px solid #DDD;
  display: none;
}
.tabsFilters .filters .search .dropDown ul {
  margin: 0 0 10px 0;
  width: 200px;
}
.tabsFilters .filters .search .dropDown ul li {
  margin-top: 10px;
}
.tabsFilters .filters .search .dropDown ul li:first-child {
  margin-top: 0;
}
.tabsFilters .filters .search .dropDown ul li .title {
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: #666;
  font-weight: 500;
}
.tabsFilters .filters .search .dropDown ul li input[type=text], .tabsFilters .filters .search .dropDown ul li select {
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid #DDD;
  font-size: 14px;
  line-height: 24px;
  width: 100%;
}
.tabsFilters .filters .search .dropDown button {
  height: 32px;
  border-radius: 16px;
  padding: 0 15px;
  background-color: #C3DFA2;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  border: 0;
}
.tabsFilters .filters .search .dropDown button.gray {
  background-color: #BFD1DF;
}
.tabsFilters .filters .search .dropDown button.blue {
  background-color: #90DBEE;
}
.tabsFilters .filters > a {
  float: left;
  background-color: #FD7235;
  height: 40px;
  border-radius: 20px;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  border: 0;
  color: #FFF;
}
.tabsFilters .pageTitle {
  float: left;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #94A7B5;
  padding: 13px 0;
}
.tabsFilters .pageTitle strong {
  font-weight: 500;
  color: #455969;
}
.tabsFilters .weekSelection {
  float: left;
  padding-top: 20px;
}
.tabsFilters .weekSelection ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 30px;
}
.tabsFilters .weekSelection ul li input[type=radio] + label {
  display: block;
  position: relative;
  padding-left: 23px;
  color: #94A7B5;
  font-size: 14px;
  line-height: 24px;
}
.tabsFilters .weekSelection ul li input[type=radio] + label:before {
  position: absolute;
  left: 0;
  height: 14px;
  width: 14px;
  border-radius: 9px;
  border: 2px solid #DDD;
  content: "";
  top: 3px;
}
.tabsFilters .weekSelection ul li input[type=radio]:checked + label:before {
  background-color: #5CAE18;
}
.tabsFilters.weeks + .residents {
  height: calc(100vh - 228px);
}

.homeList {
  margin-bottom: 10px;
  overflow-y: auto;
  height: calc(100vh - 184px);
}
.homeList > ul {
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid #DDD;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 20px;
  padding: 10px;
}
.homeList > ul:first-of-type {
  margin-top: 0;
}
.homeList > ul li {
  font-size: 16px;
  line-height: 24px;
}
.homeList > ul li .homeLogo {
  max-height: 80px;
  max-width: 110px;
  float: left;
}
.homeList > ul li .title {
  font-size: 12px;
  line-height: 18px;
  color: #94A7B5;
  display: block;
  margin-bottom: 10px;
}
.homeList > ul li .value {
  display: inline-block;
  padding: 5px 0;
}
.homeList > ul li .value.sign {
  display: block;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 24px;
  cursor: pointer;
}
.homeList > ul li .value.sign.warning {
  background-image: url("../images/warning.png");
}
.homeList > ul li .counterBox {
  background-color: #FAFAFA;
  border: 1px solid #DDD;
  border-radius: 6px;
  position: relative;
  padding: 5px 15px;
  display: inline-block;
  margin-bottom: 18px;
  font-weight: 600;
  cursor: pointer;
}
.homeList > ul li .counterBox + .counterBox {
  margin-left: 10px;
}
.homeList > ul li .counterBox:after {
  content: attr(data-title);
  left: 50%;
  transform: translate(-50%);
  position: absolute;
  top: calc(100% + 5px);
  font-size: 10px;
  text-align: center;
  line-height: 10px;
  color: #94A7B5;
  font-weight: 400;
}
.homeList > ul li.middleAlign {
  align-content: center;
}
.homeList > ul li .icon {
  display: inline-block;
  height: 24px;
  width: 24px;
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.homeList > ul li .icon.view {
  background-image: url("../images/view.png");
}
.homeList > ul li.toRight {
  margin-left: auto;
}

.residents, .homeList {
  margin-bottom: 10px;
  overflow-y: auto;
  height: calc(100vh - 184px);
  padding-bottom: 16px;
  position: relative;
}
.residents > article, .homeList > article {
  margin-top: 10px;
}
.residents > article:first-of-type, .homeList > article:first-of-type {
  margin-top: 0;
}
.residents > article > .title, .homeList > article > .title {
  display: block;
  background-color: #748CAB;
  border-radius: 10px;
  color: #F5F5F5;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  padding: 5px 10px;
  margin-bottom: 10px;
}
.residents > article > .title a, .homeList > article > .title a {
  float: right;
  padding-right: 29px;
  font-size: 14px;
  line-height: 24px;
  color: #F5F5F5;
  background-size: 24px;
  background-position: right center;
  background-repeat: no-repeat;
  margin-left: 20px;
}
.residents > article > .title a.edit, .homeList > article > .title a.edit {
  background-image: url("../images/edit.png");
}
.residents > article > .title a.AddMedicine, .homeList > article > .title a.AddMedicine {
  background-image: url("../images/addMedicine.png");
}
.residents > article > .title span, .homeList > article > .title span {
  float: right;
  font-size: 14px;
  line-height: 24px;
  color: #F5F5F5;
  margin-left: 10px;
}
.residents > article .allergies, .homeList > article .allergies {
  border: 1px solid #F5F5F5;
  background-color: #FAFAFA;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 5px;
  font-size: 14px;
  line-height: 24px;
  position: relative;
}
.residents > article .allergies:before, .homeList > article .allergies:before {
  content: "Allergies";
  font-size: 12px;
  line-height: 24px;
  color: #F5F5F5;
  font-weight: 500;
  border-radius: 8px;
  background-color: #E3A2A2;
  padding: 0 5px;
  display: inline-block;
  margin-right: 10px;
}
.residents > article .medicine, .homeList > article .medicine {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  padding: 10px;
  border: 1px solid #DDD;
  border-radius: 10px;
  margin-top: 5px;
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}
.residents > article .medicine li, .homeList > article .medicine li {
  font-size: 16px;
  line-height: 24px;
}
.residents > article .medicine li .title, .homeList > article .medicine li .title {
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: #94A7B5;
  margin-bottom: 5px;
}
.residents > article .medicine li input[type=text], .residents > article .medicine li select, .homeList > article .medicine li input[type=text], .homeList > article .medicine li select {
  border-width: 0 0 2px 0;
  border-color: #DDD;
  border-style: solid;
  width: 100%;
  font-size: 16px;
  background-color: transparent;
}
.residents > article .medicine:first-of-type, .homeList > article .medicine:first-of-type {
  margin-top: 0;
}
.residents > article .medicine.interim:after, .homeList > article .medicine.interim:after {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px 10px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: #FFF;
  background-color: #e96677;
  content: "Interim";
  border-radius: 8px;
}
.residents > article .careHomeStatus, .homeList > article .careHomeStatus {
  width: 100%;
  background-color: #EEE;
  border-radius: 8px;
  padding: 10px 10px 10px 180px;
  float: left;
  display: flex;
  align-items: center;
  position: relative;
}
.residents > article .careHomeStatus:before, .homeList > article .careHomeStatus:before {
  position: absolute;
  left: 10px;
  content: "From Care Home";
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: #94A7B5;
  float: left;
  top: 50%;
  transform: translateY(-50%);
}
.residents > article .careHomeStatus ul, .homeList > article .careHomeStatus ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  float: left;
}
.residents > article .editMode > button, .homeList > article .editMode > button {
  float: left;
  border: 0;
  height: 24px;
  padding: 0 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #FFF;
  background-color: #3d4a59;
  cursor: pointer;
  margin-right: 5px;
}
.residents > article .quickInfo, .homeList > article .quickInfo {
  float: right;
  margin-bottom: 10px;
}
.residents > article .quickInfo ul, .homeList > article .quickInfo ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
}
.residents > article .quickInfo ul li, .homeList > article .quickInfo ul li {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}
.residents > article .quickInfo ul li i, .homeList > article .quickInfo ul li i {
  font-style: normal;
  color: #748CAB;
  font-weight: 400;
}

.noDataTable {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  background-color: #666;
  border-radius: 10px;
  font-size: 12px;
  line-height: 18px;
  color: #FFF;
}
.noDataTable img {
  height: 24px;
  width: 24px;
  display: block;
  margin: 0 auto;
}

.formFields {
  padding-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.formFields li {
  width: calc((100% - 40px) / 5);
}
.formFields li .title {
  font-size: 12px;
  line-height: 18px;
  color: #748CAB;
  display: block;
  margin-bottom: 5px;
}
.formFields li input[type=text], .formFields li select, .formFields li input[type=date] {
  height: 36px;
  border-radius: 10px;
  background-color: #FFF;
  border: 1px solid #DDD;
  font-size: 16px;
  line-height: 18px;
  padding: 0 10px;
  color: #748CAB;
  width: 100%;
}
.formFields li select {
  padding: 0 30px 0 10px;
  background-image: url("../images/selectBoxArrow.png");
  background-position: right 10px center;
  background-size: 10px;
  background-repeat: no-repeat;
  appearance: none;
}
.formFields li input[type=checkbox] + label {
  display: block;
  height: 24px;
  width: 36px;
  border-radius: 12px;
  transform: translateY(6px);
  background-color: #DDD;
  position: relative;
  cursor: pointer;
  transition: background-color 300ms ease-in-out;
}
.formFields li input[type=checkbox] + label:before {
  height: 20px;
  width: 20px;
  border-radius: 10px;
  left: 2px;
  top: 2px;
  background-color: #F5F5F5;
  box-shadow: -1px 0 1px rgba(255, 255, 255, 0.2);
  content: "";
  position: absolute;
  transition: left 300ms ease-in-out;
}
.formFields li input[type=checkbox]:checked + label {
  background-color: #1f7a07;
}
.formFields li input[type=checkbox]:checked + label:before {
  left: 14px;
}
.formFields li .counter {
  width: 90px;
  position: relative;
}
.formFields li .counter button {
  position: absolute;
  right: 2px;
  height: 15px;
  border-radius: 8px;
  border: 0;
  width: 20px;
  background-image: url("../images/selectBoxArrow.png");
  background-position: center;
  background-size: 10px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.formFields li .counter button.inc {
  top: 2px;
  transform: rotate(180deg);
}
.formFields li .counter button.dec {
  bottom: 2px;
}
.formFields li .counter:after {
  position: absolute;
  font-size: 12px;
  line-height: 18px;
  color: #748CAB;
  content: attr(data-label);
  transform: translate(5px, 9px);
}

.addForm {
  margin-bottom: 10px;
  overflow-y: auto;
  height: calc(100vh - 184px);
  padding-bottom: 16px;
}
.addForm .medSearch {
  border-radius: 10px;
  background-color: #FAFAFA;
  border: 1px solid #DDD;
  padding: 5px;
}
.addForm .medSearch .select2-container {
  width: calc(100% - 430px) !important;
  height: 40px;
}
.addForm .medSearch .select2-container .selection .select2-selection--single {
  background-color: transparent;
  border: 0;
  border-radius: 0;
}
.addForm .medSearch .select2-container .selection .select2-selection--single .select2-selection__rendered {
  color: #748CAB;
  font-size: 14px;
  line-height: 18px;
  padding: 11px;
}
.addForm .medSearch .select2-container .selection .select2-selection--single .select2-selection__arrow {
  display: none;
}
.addForm .medSearch button {
  float: right;
  background-color: #748CAB;
  border-radius: 8px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 18px;
  color: #FFF;
  height: 32px;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}
.addForm .medSearch .preListed {
  float: right;
  position: relative;
  margin-left: 80px;
}
.addForm .medSearch .preListed:before {
  font-size: 14px;
  line-height: 18px;
  color: #94A7B5;
  content: "Or Use";
  right: calc(100% + 5px);
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  white-space: nowrap;
}
.addForm .medSearch .preListed select {
  height: 40px;
  width: 270px;
  border-radius: 8px;
  background-color: #FFF;
  border: 1px solid #DDD;
  font-size: 14px;
  line-height: 18px;
  color: #94A7B5;
  font-weight: 500;
  padding: 0 30px 0 10px;
  background-image: url("../images/selectBoxArrow.png");
  background-position: right 10px center;
  background-size: 10px;
  background-repeat: no-repeat;
  appearance: none;
}
.addForm .dependentFields {
  border: 1px solid #DDD;
  background-color: #FAFAFA;
  border-radius: 10px;
  padding: 5px;
  margin-top: 10px;
}
.addForm .dependentFields .formFields {
  padding-top: 0;
}

.generalListing {
  overflow-y: auto;
  height: calc(100vh - 184px);
}
.generalListing .counters {
  text-align: right;
  margin-bottom: 10px;
}
.generalListing .counters .title {
  float: right;
  font-size: 10px;
  margin-right: 10px;
}
.generalListing .counters ul {
  display: flex;
  gap: 5px;
  flex-direction: row-reverse;
}
.generalListing .counters ul li article {
  font-size: 12px;
  color: #000;
  padding: 2px 10px 2px 2px;
  background-color: #DDD;
  border: 1px solid #CCC;
  border-radius: 6px;
  height: 36px;
  text-align: left;
  line-height: 1.1;
}
.generalListing .counters ul li article span {
  float: left;
  background-color: #FFCD60;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #1C3C4B;
  padding: 0 6px;
  height: 30px;
  line-height: 30px;
  margin-right: 5px;
}
.generalListing .counters ul li article .title {
  display: table;
  height: 32px;
}
.generalListing .counters ul li article .title i {
  font-style: normal;
  display: table-cell;
  vertical-align: middle;
  height: 100%;
}
.generalListing .counters .mainName {
  margin: 0 0 6px 0;
}
.generalListing .counters .mainName > li {
  display: block;
  width: 100%;
  text-align: left;
}
.generalListing .counters .mainName > li span {
  font-size: 18px;
  color: #404455;
}
.generalListing .counters .mainName > li span .redEdit {
  background-color: #F87C7C;
  font-size: 12px;
  width: 40px;
  height: 19px;
  border-radius: 4px;
  padding: 3px 10px;
  color: #fff;
}
.generalListing .counters .mainName > li.smallNotice {
  text-decoration: 0;
  font-size: 12px;
}
.generalListing .counters.whiteBg {
  padding-top: 10px;
}
.generalListing .counters + .scroll-wrapper {
  top: 50px !important;
}
.generalListing article {
  border: 1px solid #DDD;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}
.generalListing article ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: center;
}
.generalListing article ul li {
  color: #3E4B5B;
  font-size: 16px;
  line-height: 24px;
}
.generalListing article ul li .title {
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: #94A7B5;
  margin-bottom: 5px;
}
.generalListing article ul li .status {
  display: inline-block;
  font-style: normal;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #FAFAFA;
  padding: 3px 5px;
  border-radius: 8px;
}
.generalListing article ul li .status.closed {
  background-color: #D8A7A7;
}
.generalListing article ul li .status.open {
  background-color: #ABD8A7;
}
.generalListing article ul li .info {
  display: inline-block;
  position: relative;
  height: 18px;
  width: 18px;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/moreInfoIcon.png");
  transform: translateY(3px);
  font-style: normal;
  cursor: pointer;
}
.generalListing article ul li .info ul {
  position: absolute;
  left: 100%;
  top: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  border: 1px solid #DDD;
  background-color: #FAFAFA;
  border-radius: 10px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: transform 300ms ease-in-out;
}
.generalListing article ul li .info ul li {
  text-align: center;
}
.generalListing article ul li .info ul li span:first-of-type {
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  border-radius: 12px;
  padding: 3px 0;
  min-width: 24px;
  color: #FFF;
  background-color: #414E5E;
  margin-bottom: 5px;
}
.generalListing article ul li .info ul li span:first-of-type.red {
  background-color: #CB0000;
}
.generalListing article ul li .info ul li span:nth-of-type(2) {
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #465363;
  font-weight: 600;
}
.generalListing article ul li .info:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.generalListing article ul li.icons a, .generalListing article ul li.icons span {
  display: inline-block;
  padding-top: 18px;
  font-size: 12px;
  line-height: 18px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 18px;
  color: #828787;
  cursor: pointer;
}
.generalListing article ul li.icons.edit span {
  background-image: url("../images/editIcon.png");
}
.generalListing article ul li.icons.view a {
  background-image: url("../images/view.png");
}

.marSheet {
  height: calc(100vh - 185px);
  margin-bottom: 10px;
  overflow-y: auto;
  padding-bottom: 16px;
  position: relative;
}

.eMarLegends {
  display: flex;
  position: relative;
  padding-right: 400px;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.eMarLegends::after {
  border-radius: 4px;
  background-color: rgb(246, 150, 121);
  position: absolute;
  padding: 10px;
  font-size: 12px;
  color: rgb(28, 60, 75);
  line-height: 1.5;
  text-align: center;
  content: "Codes C, D, K, M, N, S, F and G do not effect the quantity levels";
  right: 0;
  top: 0;
}
.eMarLegends li {
  line-height: 24px;
  padding-left: 25px;
  position: relative;
  font-size: 12px;
  color: rgb(63, 66, 83);
}
.eMarLegends li:before {
  background-color: #3f4253;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  left: 0;
  top: 2px;
  position: absolute;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
  color: rgb(220, 222, 222);
  content: attr(data-point);
  text-transform: uppercase;
  font-weight: 500;
}
.eMarLegends li.red:before {
  background-color: #cb0000;
  color: #dcdede;
}
.eMarLegends li.orange:before {
  background-color: #fdc689;
  color: #3f4253;
}
.eMarLegends li.green:before {
  background-color: #a3d39c;
  color: #3f4253;
}

.profileAllergies {
  padding-top: 10px;
  border-top: 1px solid #DDD;
}
.profileAllergies .profile {
  position: relative;
  padding-left: 60px;
  margin-bottom: 20px;
}
.profileAllergies .profile .img {
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  border-width: 2px;
  border-color: rgb(167, 184, 198);
  border-style: solid;
  border-radius: 4px;
  overflow: hidden;
}
.profileAllergies .profile .img img {
  width: 100%;
  height: 100%;
}
.profileAllergies .profile ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 7px 0;
}
.profileAllergies .profile ul li {
  flex: 1;
  font-size: 14px;
  line-height: 18px;
  position: relative;
}
.profileAllergies .profile ul li i {
  font-size: 12px;
  color: rgb(148, 152, 152);
  font-style: normal;
  display: block;
}
.profileAllergies .profile ul li .covert {
  border-radius: 4px;
  background-color: rgb(246, 150, 121);
  font-size: 10px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  text-transform: uppercase;
  padding: 2px 5px;
}
.profileAllergies .profile ul li .helpTip {
  z-index: 2;
  position: relative;
}
.profileAllergies .profile ul li .helpTip .tTText {
  position: absolute;
  left: 100%;
  top: 0;
  border-radius: 4px;
  padding: 5px 10px;
  background-color: #3F4253;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  visibility: hidden;
  opacity: 0;
}
.profileAllergies .profile ul li .helpTip .tTText .scroll-wrapper {
  left: 10px;
  right: 10px;
  top: 5px;
  bottom: 5px;
  width: auto;
}
.profileAllergies .profile ul li .helpTip .tTText .scroll-wrapper .scrollArea > article {
  padding-right: 20px;
}
.profileAllergies .profile ul li .helpTip:hover .tTText {
  visibility: visible;
  opacity: 1;
}
.profileAllergies .profile ul li:first-child {
  padding-right: 60px;
}
.profileAllergies .profile ul li:first-child .covert {
  position: absolute;
  right: 0;
  bottom: 0;
}
.profileAllergies .allergies {
  background-color: #a7b8c6 !important;
  border-radius: 4px;
  position: relative;
  margin-bottom: 20px;
}
.profileAllergies .allergies ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  padding: 44px 10px 10px 10px;
  position: relative;
}
.profileAllergies .allergies ul:before {
  font-size: 14px;
  line-height: 24px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  content: "Allergies";
  position: absolute;
  left: 10px;
  top: 10px;
}
.profileAllergies .allergies ul li {
  position: relative;
  padding-left: 23px;
  font-size: 12px;
  line-height: 18px;
}
.profileAllergies .allergies ul li img {
  position: absolute;
  left: 0;
  top: 0;
  height: 18px;
  width: 18px;
}

.marSheetDateInfo {
  text-align: right;
  border-radius: 4px;
  background-color: rgb(255, 205, 96);
  line-height: 24px;
  padding-right: 10px;
}
.marSheetDateInfo > span {
  display: inline-block;
  padding-left: 30px;
}
.marSheetDateInfo > span:first-child {
  padding-left: 0;
}

.medicinesTable article {
  margin-top: 30px;
}
.medicinesTable article .medicineNameStatus {
  margin-bottom: 5px;
}
.medicinesTable article .medicineNameStatus .medicineName {
  float: left;
  width: 405px;
  position: relative;
  padding: 0 10px 0 30px;
  height: 24px;
}
@media print {
  .medicinesTable article .medicineNameStatus .medicineName {
    padding: 0 10px 0 0;
  }
  .medicinesTable article .medicineNameStatus .medicineName i {
    display: none;
  }
}
.medicinesTable article .medicineNameStatus .medicineName i {
  position: absolute;
  height: 24px;
  width: 24px;
  background-image: url("../images/eMarMoreInfo.png");
  left: 0;
  display: block;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  top: -2px;
}
.medicinesTable article .medicineNameStatus .medicineName samp {
  font-size: 14px;
  color: #3f4253;
  font-weight: 700;
  width: 100%;
  overflow: hidden;
  height: 40px;
  display: block;
}
.medicinesTable article .medicineNameStatus .medicinesStatus {
  float: right;
  width: calc(100% - 405px);
  height: 24px;
}
.medicinesTable article .medicineNameStatus .medicinesStatus span {
  float: left;
  margin-right: 2px;
  border-radius: 4px;
  background-color: rgb(245, 152, 157);
  padding: 0 5px;
  line-height: 24px;
  font-size: 12px;
  color: rgb(255, 255, 255);
}
.medicinesTable article .medicineInfo {
  float: left;
  width: 295px;
  margin-top: 30px;
  position: relative;
}
.medicinesTable article .medicineInfo ul li {
  font-size: 12px;
  color: rgb(130, 135, 135);
  border-top: 1px solid #dcdede;
  overflow: hidden;
  line-height: 18px;
}
.medicinesTable article .medicineInfo ul li:first-child {
  border-top: 0;
}
.medicinesTable article .medicineInfo ul li i {
  font-style: normal;
  width: 80px;
  float: left;
}
.medicinesTable article .medicineInfo ul li span {
  width: calc(100% - 80px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  float: right;
  font-weight: 700;
  color: #3f4253;
}
.medicinesTable article .medicineInfo .direction {
  border-radius: 4px;
  background-color: rgb(63, 66, 83);
  width: 100%;
  height: 50px;
  position: relative;
  overflow: hidden;
  color: #FFF;
  font-size: 12px;
  padding: 2px 5px;
}
.medicinesTable article .eMarTable {
  border-radius: 4px;
  background-color: rgb(228, 228, 221);
  width: calc(100% - 405px);
  float: right;
  padding: 5px;
}
.medicinesTable article .eMarTable .weeks {
  float: left;
  width: 100%;
  margin: 0 0 5px 0;
}
.medicinesTable article .eMarTable .weeks li {
  float: left;
  width: 25%;
  text-align: center;
  position: relative;
}
.medicinesTable article .eMarTable .weeks li:before {
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #828787;
  top: 50%;
  left: 0;
  content: "";
  z-index: 1;
}
.medicinesTable article .eMarTable .weeks li:after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  background-color: #828787;
  width: 1px;
}
.medicinesTable article .eMarTable .weeks li span {
  display: inline-block;
  background-color: rgb(228, 228, 221);
  padding: 0 10px;
  position: relative;
  z-index: 2;
}
.medicinesTable article .eMarTable .weeks li:first-child:after {
  display: none;
}
.medicinesTable article .eMarTable .days {
  float: left;
  width: 100%;
  margin: 0;
}
.medicinesTable article .eMarTable .days li {
  float: left;
  width: 3.5714285714%;
  text-align: center;
  border-left: 1px solid #a7b8c6;
  font-size: 12px;
  text-transform: uppercase;
  color: #828787;
  text-shadow: 0.819px 0.574px 0 rgb(255, 255, 255);
}
.medicinesTable article .eMarTable .days li strong {
  font-weight: 500;
  font-size: 16px;
  color: #3f4253;
  display: block;
}
.medicinesTable article .eMarTable .days li:first-child {
  border-left: 0;
}
.medicinesTable article .eMarTable .days li.current {
  background-color: #fff799;
}
.medicinesTable article .eMarTable .eMarTableData {
  float: left;
  width: 100%;
  position: relative;
}
.medicinesTable article .eMarTable .eMarTableData:before {
  position: absolute;
  content: "";
  border-width: 2px;
  border-color: rgb(167, 184, 198);
  border-style: solid;
  left: -92px;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 4px;
  display: block;
}
.medicinesTable article .eMarTable .eMarTableData ul {
  float: left;
  width: 100%;
  position: relative;
  margin: 0;
  border-top: 1px solid #a7b8c6;
  height: 30px;
}
.medicinesTable article .eMarTable .eMarTableData ul li {
  float: left;
  width: 3.5714285714%;
  text-align: center;
  font-size: 12px;
  color: rgb(63, 66, 83);
  text-transform: uppercase;
  line-height: 20px;
  padding: 5px 0;
  border-left: 1px solid #a7b8c6;
  height: 30px;
}
.medicinesTable article .eMarTable .eMarTableData ul li:first-child {
  position: absolute;
  right: 100%;
  width: 90px;
  border-left: 0;
  line-height: 13px;
  padding: 0;
}
.medicinesTable article .eMarTable .eMarTableData ul li:first-child:before {
  position: absolute;
  content: "";
  height: 1px;
  left: 5px;
  top: -1px;
  background-color: #a7b8c6;
  width: 100%;
}
.medicinesTable article .eMarTable .eMarTableData ul li:first-of-type li:first-child:before {
  display: none;
}
.medicinesTable article .eMarTable .eMarTableData ul li:nth-child(2) {
  border-left: 0;
}
.medicinesTable article .eMarTable .eMarTableData ul li a {
  display: inline-block;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  background-color: #3f4253;
  color: rgb(220, 222, 222);
}
.medicinesTable article .eMarTable .eMarTableData ul li a.red {
  background-color: #cb0000;
  color: #dcdede;
}
.medicinesTable article .eMarTable .eMarTableData ul li a.orange {
  background-color: #fdc689;
  color: #3f4253;
}
.medicinesTable article .eMarTable .eMarTableData ul li a.green {
  background-color: #a3d39c;
  color: #3f4253;
}
.medicinesTable article .eMarTable .eMarTableData ul li a.missedMedicationIcon {
  background-color: transparent;
}
.medicinesTable article .eMarTable .eMarTableData ul li a.initials {
  border-radius: 2px;
}
.medicinesTable article .eMarTable .eMarTableData ul:first-of-type:before {
  content: "Time & Dosage";
  position: absolute;
  right: calc(100% + 23px);
  width: 54px;
  text-align: center;
  background-color: #FFF;
  display: inline-block;
  top: -32px;
  z-index: 2;
  font-size: 12px;
  line-height: 14px;
}
.medicinesTable article .eMarTable .eMarTableData ul:first-of-type:after {
  content: "";
  position: absolute;
  right: calc(100% + 18px);
  width: 64px;
  border: 1px solid #939696;
  border-width: 1px 1px 0 1px;
  border-radius: 4px 4px 0 0;
  height: 16px;
  z-index: 1;
  top: -20px;
}
.medicinesTable article .eMarTable .stock {
  border-radius: 4px;
  background-color: rgb(63, 66, 83);
  padding: 5px;
  float: left;
  margin-top: 5px;
}
.medicinesTable article .eMarTable .stock span {
  font-size: 12px;
  color: rgb(255, 205, 96);
  margin-right: 10px;
  float: left;
  line-height: 1;
}
.medicinesTable article .eMarTable.extended .weeks li {
  width: 23.3333333333%;
}
.medicinesTable article .eMarTable.extended .weeks li:last-child {
  width: 6.6666666667%;
}
.medicinesTable article .eMarTable.extended .weeks li span {
  font-size: 10px;
  font-weight: 500;
}
.medicinesTable article .eMarTable.extended .days li {
  width: 3.3333333333%;
}
.medicinesTable article .eMarTable.extended .eMarTableData ul li {
  width: 3.3333333333%;
}

.addeMarList {
  margin-bottom: 10px;
  overflow-y: auto;
  height: calc(100vh - 184px);
  padding-bottom: 16px;
  position: relative;
}
.addeMarList ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.addeMarList ul li {
  width: calc((100% - 40px) / 5);
}
@media (max-width: 1600px) {
  .addeMarList ul li {
    width: calc((100% - 30px) / 4);
  }
}
.addeMarList ul li input[type=checkbox] + label {
  display: block;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #DDD;
  cursor: pointer;
}
.addeMarList ul li input[type=checkbox] + label img {
  float: left;
  height: 60px;
  width: 60px;
  padding: 5px;
  border: 1px solid #DDD;
  border-radius: 8px;
  margin-right: 10px;
}
.addeMarList ul li input[type=checkbox] + label .name {
  font-size: 16px;
  line-height: 24px;
  float: left;
  width: calc(100% - 70px);
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.addeMarList ul li input[type=checkbox] + label a {
  display: inline-block;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  line-height: 18px;
  background-color: #3d87d3;
  color: #FFF;
  font-weight: 500;
}
.addeMarList ul li input[type=checkbox]:checked + label {
  background-color: #9cc69b;
}

footer {
  height: 34px;
}
footer > a {
  background-color: #E2E7EF;
  border-radius: 12px;
  font-size: 10px;
  line-height: 14px;
  padding: 5px 10px;
  float: left;
  margin: 5px 10px 0 0;
  font-weight: 500;
}
footer .pagination {
  float: left;
  background-color: #F5F5F5;
  border-radius: 17px;
  padding: 5px;
  margin-right: 10px;
}
footer .pagination ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5px;
}
footer .pagination ul li a {
  color: #94A7B5;
  font-size: 10px;
  line-height: 24px;
  font-weight: 500;
  border-radius: 12px;
  padding: 0 10px;
  display: block;
}
footer .pagination ul li:first-child a, footer .pagination ul li:last-child a {
  background-color: #FFF;
  pointer-events: none;
}
footer .pagination ul li:first-child.active a, footer .pagination ul li:last-child.active a {
  background-color: #748CAB;
  color: #DDE7EE;
  pointer-events: auto;
}
footer .pagination ul li:not(:first-child):not(:last-child).active a {
  background-color: #1f7a07;
  color: #FFF;
  pointer-events: none;
}
footer input[type=date] {
  height: 32px;
  border-radius: 16px;
  padding: 0 15px;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  border: 1px solid #DDD;
}
footer button {
  height: 32px;
  border-radius: 16px;
  padding: 0 15px;
  background-color: #C3DFA2;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  border: 0;
}
footer button.gray {
  background-color: #BFD1DF;
}
footer button.blue {
  background-color: #90DBEE;
}
footer .homeLogo {
  float: right;
  height: 34px;
  position: relative;
}
footer .homeLogo img {
  position: absolute;
  max-height: 50px;
  right: 0;
  bottom: 0;
}

.pop {
  z-index: 3;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  align-items: center;
  flex-direction: column;
}
.pop .closePop {
  position: absolute;
  right: 20px;
  top: 20px;
  height: 18px;
  width: 18px;
  cursor: pointer;
  background-image: url("../images/closeIcon.png");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.pop section {
  display: inline-block;
  padding: 20px;
  border: 1px solid #DDD;
  background-color: #FFF;
  border-radius: 10px;
}
.pop section > .title, .pop section #appendHTML > .title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #828787;
  display: block;
  margin-bottom: 20px;
}
.pop section ul li {
  margin-bottom: 20px;
}
.pop section ul li .title {
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: #828787;
  margin-bottom: 5px;
}
.pop section ul li input[type=date], .pop section ul li input[type=text], .pop section ul li textarea {
  border-radius: 8px;
  background-color: #FAFAFA;
  border: 1px solid #DDD;
  width: 100%;
  font-size: 16px;
  line-height: 18px;
  color: #828787;
  padding: 9px;
}
.pop section ul li input[type=date]:disabled, .pop section ul li input[type=text]:disabled, .pop section ul li textarea:disabled {
  background-color: #DDD;
  pointer-events: none;
}
.pop section ul li textarea {
  resize: none;
  height: 72px;
}
.pop section ul li input[type=checkbox] + label {
  display: block;
  height: 24px;
  width: 36px;
  border-radius: 12px;
  transform: translateY(6px);
  background-color: #DDD;
  position: relative;
  cursor: pointer;
  transition: background-color 300ms ease-in-out;
}
.pop section ul li input[type=checkbox] + label:before {
  height: 20px;
  width: 20px;
  border-radius: 10px;
  left: 2px;
  top: 2px;
  background-color: #F5F5F5;
  box-shadow: -1px 0 1px rgba(255, 255, 255, 0.2);
  content: "";
  position: absolute;
  transition: left 300ms ease-in-out;
}
.pop section ul li input[type=checkbox]:checked + label {
  background-color: #1f7a07;
}
.pop section ul li input[type=checkbox]:checked + label:before {
  left: 14px;
}
.pop section ul.col2 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}
.pop section ul.col2 li {
  width: calc((100% - 10px) / 2);
}
.pop section table {
  width: 100%;
  margin-bottom: 20px;
}
.pop section table thead, .pop section table tbody {
  font-size: 12px;
  line-height: 18px;
}
.pop section table thead tr th, .pop section table thead tr td, .pop section table tbody tr th, .pop section table tbody tr td {
  text-align: left;
}
.pop section button {
  height: 32px;
  border-radius: 16px;
  padding: 0 15px;
  background-color: #C3DFA2;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  border: 0;
}
.pop section button.gray {
  background-color: #BFD1DF;
}
.pop section button.blue {
  background-color: #90DBEE;
}
.pop .residentList {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 20px;
  bottom: 20px;
  z-index: 2;
}
.pop .residentList > .title {
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #404D5D;
  margin-bottom: 20px;
}
.pop .residentList > .title select, .pop .residentList > .title input[type=text] {
  border-radius: 8px;
  border: 1px solid #DDD;
  height: 24px;
  padding: 0 10px;
  appearance: none;
  font-size: 14px;
  line-height: 18px;
  margin-left: 50px;
}
.pop .residentList > .title select {
  background-image: url("../images/selectBoxArrow.png");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: right 5px center;
  padding: 0 20px 0 10px;
}
.pop .residentList > .title > a, .pop .residentList > .title > button {
  display: inline-block;
  height: 24px;
  padding: 3px 10px;
  font-size: 14px;
  line-height: 18px;
  border-radius: 8px;
  background-color: #91a3b2;
  color: #FFF;
  border: 0;
}
.pop .residentList > .title > a#searchResidentBtn, .pop .residentList > .title > button#searchResidentBtn {
  background-color: #5fb219;
}
.pop .residentList > .title > a#printResidentBtn, .pop .residentList > .title > button#printResidentBtn {
  background-color: #4a5767;
}
.pop .residentList > ul {
  max-height: calc(100% - 44px);
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  flex-wrap: wrap;
}
.pop .residentList > ul li {
  border: 1px solid #8E9FAE;
  background-color: #FFF;
  border-radius: 8px;
  padding: 5px;
  width: calc((100% - 30px) / 4);
  position: relative;
}
@media (min-width: 1600px) {
  .pop .residentList > ul li {
    width: calc((100% - 40px) / 5);
  }
}
.pop .residentList > ul li > a {
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 6px;
  background-color: #3d87d3;
  font-size: 12px;
  line-height: 18px;
  color: #FFF;
}
.pop .residentList > ul li > a.add {
  background-color: #d34552;
}
.pop .residentList > ul li img {
  position: absolute;
  left: 5px;
  top: 5px;
  border-radius: 6px;
  height: 64px;
  width: 64px;
  border: 1px solid #DDD;
}
.pop .residentList > ul li > span {
  display: block;
  padding-left: 74px;
}
.pop .residentList > ul li > span.name {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 5px;
  padding-top: 5px;
}
.pop .residentList > ul li > span.pending {
  color: #768597;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 18px;
}
.pop .residentList > ul li > span.pending i {
  font-style: normal;
  background-color: #61b41a;
  border-radius: 4px;
  color: #F5F5F5;
  padding: 0 5px;
}
.pop .residentList > ul li > div a {
  display: inline-block;
  border-radius: 8px;
  width: calc((100% - 5px) / 2);
  font-size: 14px;
  line-height: 24px;
  padding: 6px 0;
  color: #404D5D;
  background-color: #B2E0EA;
  text-align: center;
}
.pop .residentList > ul li > div a + a {
  background-color: #4F575C;
  color: #F5F5F5;
}

#loading {
  background-color: rgba(255, 255, 255, 0.8);
  height: 100vh;
  position: fixed;
  z-index: 1000;
  left: 270px;
  right: 0;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 200px;
  width: 200px;
  transform: translateX(-50%) translateY(-50%);
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9999;
}

.preloader svg {
  width: 40px;
  height: 40px;
  margin: 20px;
  display: inline-block;
  position: absolute;
  top: 30px;
  left: calc(50% - 70px);
}

.preloader:before {
  position: absolute;
  content: "";
  border-radius: 6px;
  background-color: #828787;
  height: 80px;
  width: 250px;
  top: 30px;
  left: calc(50% - 75px);
}

.preloader:after {
  position: absolute;
  content: "Please Wait...";
  display: inline-block;
  top: 56px;
  left: 50%;
  color: #fff;
  font-size: 18px;
}

.printReady {
  font-size: 12px;
  background: #FFF;
}

.printReady table {
  width: 100%;
  padding: 0;
  margin: 0;
}

.printReady .header {
  padding: 15px 0;
}

.printReady .header .logo {
  height: 80px;
}

.printReady .header .printButton {
  border: 0;
  border-radius: 4px;
  background-color: #3DA492;
  padding: 5px 10px;
  color: #FFF;
  margin-bottom: 15px;
}

.printReady .header .printButton img.svg,
.printReady .header .printButton svg,
.printReady .header .printButton img {
  height: 18px;
  width: 18px;
  float: left;
  margin-right: 10px;
}

.printReady .header .printButton img.svg path,
.printReady .header .printButton svg path,
.printReady .header .printButton img path {
  fill: #FFF;
}

.printReady .header .date {
  font-family: "Roboto Condensed", sans-serif;
}

.printReady h4 {
  margin: 20px 0 10px 0;
  background-color: #CCC !important;
  -webkit-print-color-adjust: exact;
  color: #FFF;
  border-radius: 4px;
  padding: 5px;
  font-weight: 400;
}

.printReady .formInfo {
  display: block;
  padding: 5px 0;
  border-top: 1px solid #CCC;
}

.printReady .listing {
  margin-bottom: 0;
}

.printReady .listing li {
  border-top: 1px solid #CCC;
  padding: 15px 0;
}

.printReady .listing li .printInfo {
  display: block;
  margin-bottom: 15px;
}

.printReady .listing li .printInfo small {
  font-weight: 700;
}

.printReady .listing li .inlineInfo {
  display: inline-block;
  margin-right: 15px;
}

.printReady .listing li .inlineInfo strong {
  font-weight: 500;
}

.printReady .listing li .inlineInfo:last-of-type {
  padding-top: 15px;
}

.printReady .listing li .inlineInfo .smilies_table tbody tr td {
  padding: 0 10px 0 0;
  line-height: 30px;
  text-align: center;
}

.printReady .listing li .inlineInfo .smilies_table tbody tr td img.svg, .printReady .listing li .inlineInfo .smilies_table tbody tr td svg, .printReady .listing li .inlineInfo .smilies_table tbody tr td img {
  height: 30px;
  width: 30px;
  float: left;
  margin-right: 10px;
}

.printReady .profileImg {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: inline-block;
}

.printReady .serviceUserMiniProfile {
  padding: 10px 0;
  border-bottom: 1px solid #DDD;
  margin-bottom: 10px;
}

.printReady .serviceUserMiniProfile small {
  display: block;
  text-transform: uppercase;
  font-size: 10px;
}

.printReady .desc {
  padding: 10px 0;
  word-break: break-word;
}

.printReady .desc small {
  font-size: 16px;
  font-weight: 700;
}

@media print {
  html,
  body {
    background: none;
  }
  .printButton {
    display: none;
  }
  .printBodyMapImage {
    height: 900px;
    width: auto;
  }
  @page {
    margin: 0.5in 0;
    size: A4 portrait;
  }
}
.table {
  margin-bottom: 0;
  width: 100% !important;
  overflow: hidden;
  position: relative;
  border-collapse: separate;
}

.table > thead > tr > th {
  background-color: #648DAC;
  color: #FFF;
  border-bottom: 0;
  vertical-align: middle;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  background-repeat: no-repeat;
  background-position: right;
  cursor: pointer;
  border: 0;
}

.table > thead > tr > th:first-child {
  border-radius: 4px 0 0 0;
}

.table > thead > tr > th:last-child {
  border-radius: 0 4px 0 0;
}

.table > thead > tr > th:only-child {
  border-radius: 4px 4px 0 0;
}

.table > thead > tr > th.desc {
  width: 500px;
}

.table > thead > tr > th.sorting {
  background-image: url("../images/sort_both.png");
}

.table > thead > tr > th.sorting_asc {
  background-image: url("../images/sort_asc.png");
}

.table > thead > tr > th.sorting_desc {
  background-image: url("../images/sort_desc.png");
}

.table > thead > tr > th > a {
  color: #FFF;
}

.table > tbody > tr > td {
  vertical-align: middle;
  border-top-color: #ACB6B6;
}

.table > tbody > tr > td.desc {
  width: 450px;
  word-break: break-word;
}

.table > tbody > tr > td .done img.svg,
.table > tbody > tr > td .done svg,
.table > tbody > tr > td .done img,
.table > tbody > tr > td .pending img.svg,
.table > tbody > tr > td .pending svg,
.table > tbody > tr > td .pending img,
.table > tbody > tr > td .warning img.svg,
.table > tbody > tr > td .warning svg,
.table > tbody > tr > td .warning img,
.table > tbody > tr > td .canceled img.svg,
.table > tbody > tr > td .canceled svg,
.table > tbody > tr > td .canceled img,
.table > tbody > tr > td .overDueIcon img.svg,
.table > tbody > tr > td .overDueIcon svg,
.table > tbody > tr > td .overDueIcon img,
.table > tbody > tr > td .allergies img.svg,
.table > tbody > tr > td .allergies svg,
.table > tbody > tr > td .allergies img,
.table > tbody > tr > td .cPlanIcon img.svg,
.table > tbody > tr > td .cPlanIcon svg,
.table > tbody > tr > td .cPlanIcon img {
  height: 28px;
  width: 28px;
  float: left;
}

.table > tbody > tr > td .done img.svg path,
.table > tbody > tr > td .done img.svg circle,
.table > tbody > tr > td .done svg path,
.table > tbody > tr > td .done svg circle,
.table > tbody > tr > td .done img path,
.table > tbody > tr > td .done img circle,
.table > tbody > tr > td .pending img.svg path,
.table > tbody > tr > td .pending img.svg circle,
.table > tbody > tr > td .pending svg path,
.table > tbody > tr > td .pending svg circle,
.table > tbody > tr > td .pending img path,
.table > tbody > tr > td .pending img circle,
.table > tbody > tr > td .warning img.svg path,
.table > tbody > tr > td .warning img.svg circle,
.table > tbody > tr > td .warning svg path,
.table > tbody > tr > td .warning svg circle,
.table > tbody > tr > td .warning img path,
.table > tbody > tr > td .warning img circle,
.table > tbody > tr > td .canceled img.svg path,
.table > tbody > tr > td .canceled img.svg circle,
.table > tbody > tr > td .canceled svg path,
.table > tbody > tr > td .canceled svg circle,
.table > tbody > tr > td .canceled img path,
.table > tbody > tr > td .canceled img circle,
.table > tbody > tr > td .overDueIcon img.svg path,
.table > tbody > tr > td .overDueIcon img.svg circle,
.table > tbody > tr > td .overDueIcon svg path,
.table > tbody > tr > td .overDueIcon svg circle,
.table > tbody > tr > td .overDueIcon img path,
.table > tbody > tr > td .overDueIcon img circle,
.table > tbody > tr > td .allergies img.svg path,
.table > tbody > tr > td .allergies img.svg circle,
.table > tbody > tr > td .allergies svg path,
.table > tbody > tr > td .allergies svg circle,
.table > tbody > tr > td .allergies img path,
.table > tbody > tr > td .allergies img circle,
.table > tbody > tr > td .cPlanIcon img.svg path,
.table > tbody > tr > td .cPlanIcon img.svg circle,
.table > tbody > tr > td .cPlanIcon svg path,
.table > tbody > tr > td .cPlanIcon svg circle,
.table > tbody > tr > td .cPlanIcon img path,
.table > tbody > tr > td .cPlanIcon img circle {
  fill: #ACB6B6;
}

.table > tbody > tr > td .canceled img.svg path,
.table > tbody > tr > td .canceled img.svg circle,
.table > tbody > tr > td .canceled svg path,
.table > tbody > tr > td .canceled svg circle,
.table > tbody > tr > td .canceled img path,
.table > tbody > tr > td .canceled img circle {
  fill: #CB0000;
}

.table > tbody > tr > td .done img.svg path,
.table > tbody > tr > td .done img.svg circle,
.table > tbody > tr > td .done svg path,
.table > tbody > tr > td .done svg circle,
.table > tbody > tr > td .done img path,
.table > tbody > tr > td .done img circle {
  fill: #3DA492;
}

.table > tbody > tr > td .pending img.svg path,
.table > tbody > tr > td .pending img.svg circle,
.table > tbody > tr > td .pending svg path,
.table > tbody > tr > td .pending svg circle,
.table > tbody > tr > td .pending img path,
.table > tbody > tr > td .pending img circle {
  fill: #EAD423;
}

.table > tbody > tr > td .overDueIcon img.svg path,
.table > tbody > tr > td .overDueIcon img.svg circle,
.table > tbody > tr > td .overDueIcon svg path,
.table > tbody > tr > td .overDueIcon svg circle,
.table > tbody > tr > td .overDueIcon img path,
.table > tbody > tr > td .overDueIcon img circle {
  fill: #d39111 !important;
}

.table > tbody > tr > td .allergies {
  display: inline-block;
}

.table > tbody > tr > td .allergies img.svg,
.table > tbody > tr > td .allergies svg,
.table > tbody > tr > td .allergies img {
  float: left;
}

.table > tbody > tr > td > a {
  display: inline-block;
}

.table > tbody > tr > td > a.view {
  position: relative;
  height: 28px;
  width: 28px;
  overflow: hidden;
}

.table > tbody > tr > td > a.view img.svg,
.table > tbody > tr > td > a.view svg,
.table > tbody > tr > td > a.view img {
  height: 28px;
  width: 28px;
  float: left;
}

.table > tbody > tr > td > a.view img.svg path, .table > tbody > tr > td > a.view img.svg circle,
.table > tbody > tr > td > a.view svg path,
.table > tbody > tr > td > a.view svg circle,
.table > tbody > tr > td > a.view img path,
.table > tbody > tr > td > a.view img circle {
  fill: #648DAC;
}

.table > tbody > tr > td > a.view .png {
  position: absolute;
  width: auto;
  height: 28px;
  left: -56px;
}

.table > tbody > tr > td > a.qview {
  cursor: pointer;
}

.table > tbody > tr > td > a.qview img.svg,
.table > tbody > tr > td > a.qview svg {
  height: 28px;
  width: 28px;
  float: left;
}

.table > tbody > tr > td > a.qview img.svg path,
.table > tbody > tr > td > a.qview svg path {
  fill: #F8931D;
}

.table > tbody > tr > td > a.convertSU {
  display: inline-block;
  float: left;
  margin: 0 10px 0 0;
}

.table > tbody > tr > td > a.convertSU img.svg,
.table > tbody > tr > td > a.convertSU svg {
  height: 28px;
  width: 28px;
  float: left;
}

.table > tbody > tr > td > a.convertSU img.svg path,
.table > tbody > tr > td > a.convertSU svg path {
  fill: #666;
}

.table > tbody > tr > td.general {
  padding: 0 5px;
}

.table > tbody > tr > td.general img {
  height: 24px;
  width: 24px;
  float: left;
}

.table > tbody > tr > td .serviceUserImg {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 1px solid #DDD;
}

.table > tbody > tr > td .smilies_table {
  background: none !important;
  width: 100%;
}

.table > tbody > tr > td .smilies_table tr td {
  border: 0;
  line-height: 18px;
  display: inline-block;
  width: 50%;
  float: left;
  padding: 5px 5px 5px 23px;
  position: relative;
}

.table > tbody > tr > td .smilies_table tr td img.svg, .table > tbody > tr > td .smilies_table tr td svg, .table > tbody > tr > td .smilies_table tr td img {
  height: 18px;
  width: 18px;
  position: absolute;
  left: 0;
}

.table > tbody > tr > td .picture {
  width: 80px;
  height: 80px;
  border-radius: 4px;
}

.table > tbody > tr > td .select {
  position: relative;
}

.table > tbody > tr > td .select select {
  width: 100%;
  border-radius: 4px;
  padding: 10px;
  color: #666;
  border: 1px solid #DDD;
  resize: none;
  height: 42px;
  position: relative;
  z-index: 10;
  color: #666;
  padding-right: 25px;
}

.table > tbody > tr > td .select img.svg,
.table > tbody > tr > td .select svg,
.table > tbody > tr > td .select img {
  z-index: 15;
  position: absolute;
  right: 10px;
  height: 10px;
  width: 10px;
  top: 16px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  pointer-events: none;
}

.table > tbody > tr > td .select.small {
  float: left;
}

.table > tbody > tr > td > input[type='text'] {
  border: 2px solid #3DA492;
  float: left;
  width: auto;
}

.table > tbody > tr > td > input[type='text'] + .select {
  float: left;
  width: auto;
  margin-left: 10px;
}

.table > tbody > tr > td .canceledfb span,
.table > tbody > tr > td .unsuccessfulfb span {
  display: block;
}

.table > tbody > tr > td > button {
  border-radius: 4px;
  background-color: #F8931D;
  padding: 5px;
  height: 30px;
  width: 30px;
  border: 0;
}

.table > tbody > tr > td > button img.svg,
.table > tbody > tr > td > button svg,
.table > tbody > tr > td > button img {
  height: 20px;
  width: 20px;
  float: left;
}

.table > tbody > tr > td > button img.svg path,
.table > tbody > tr > td > button svg path,
.table > tbody > tr > td > button img path {
  fill: #FFF;
}

.table > tbody > tr > td > button.positionTest {
  width: auto;
  color: #FFF;
}

.table > tbody > tr > td .form-group {
  margin: 0;
  min-height: 0;
}

.table > tbody > tr > td .form-group input[type="text"] {
  width: 100%;
  border: 1px solid #DDD;
}

.table > tbody > tr > td .form-group img.svg,
.table > tbody > tr > td .form-group svg,
.table > tbody > tr > td .form-group img {
  top: 8px !important;
}

.table > tbody > tr > td .counter {
  position: relative;
  margin-right: 10px;
}

.table > tbody > tr > td .counter input[type="text"] {
  padding-right: 30px;
  text-align: center;
}

.table > tbody > tr > td .counter button {
  height: 50%;
  width: 24px;
  background-color: #ACB6B6;
  position: absolute;
  right: 0;
  border: 0;
  z-index: 15;
}

.table > tbody > tr > td .counter button img.svg,
.table > tbody > tr > td .counter button svg {
  height: 10px;
  width: 10px;
  float: left;
}

.table > tbody > tr > td .counter button img.svg path,
.table > tbody > tr > td .counter button svg path {
  fill: #FFF;
}

.table > tbody > tr > td .counter button:first-of-type {
  top: 0;
  border-radius: 0 4px 0 0;
}

.table > tbody > tr > td .counter button:first-of-type img.svg, .table > tbody > tr > td .counter button:first-of-type svg, .table > tbody > tr > td .counter button:first-of-type img {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.table > tbody > tr > td .counter button:last-of-type {
  bottom: 0;
  border-top: 1px solid #BAC1C1;
  border-radius: 0 0 4px 0;
}

.table > tbody > tr > td .counter button:last-of-type img.svg, .table > tbody > tr > td .counter button:last-of-type svg, .table > tbody > tr > td .counter button:last-of-type img {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.table > tbody > tr > td .counter.tempGauge button {
  background-color: #F8931D;
}

.table > tbody > tr > td .counter.tempGauge button:last-of-type {
  border-top-color: #F0A26E;
}

.table > tbody > tr > td.task-complete span, .table > tbody > tr > td.task-cancel span {
  display: inline-block;
  padding: 5px;
  border-radius: 4px;
  line-height: 1;
}

.table > tbody > tr > td.task-complete span img.svg,
.table > tbody > tr > td.task-complete span svg, .table > tbody > tr > td.task-cancel span img.svg,
.table > tbody > tr > td.task-cancel span svg {
  height: 14px;
  width: 14px;
  float: left;
}

.table > tbody > tr > td.task-complete img.svg path,
.table > tbody > tr > td.task-complete svg path,
.table > tbody > tr > td.task-complete img path {
  fill: #3DA492;
}

.table > tbody > tr > td.task-cancel img.svg path,
.table > tbody > tr > td.task-cancel svg path,
.table > tbody > tr > td.task-cancel img path {
  fill: #CB0000;
}

.table > tbody > tr > td:first-child {
  border-left: 3px solid #648DAC !important;
}

.table > tbody > tr > td:last-child {
  border-right: 3px solid #648DAC !important;
}

.table > tbody > tr > td .highWarning,
.table > tbody > tr > td .normalWarning,
.table > tbody > tr > td .lowWarning {
  display: inline-block;
}

.table > tbody > tr > td .highWarning img.svg,
.table > tbody > tr > td .highWarning svg,
.table > tbody > tr > td .highWarning img,
.table > tbody > tr > td .normalWarning img.svg,
.table > tbody > tr > td .normalWarning svg,
.table > tbody > tr > td .normalWarning img,
.table > tbody > tr > td .lowWarning img.svg,
.table > tbody > tr > td .lowWarning svg,
.table > tbody > tr > td .lowWarning img {
  height: 28px;
  width: 28px;
  float: left;
}

.table > tbody > tr > td .highWarning img.svg path,
.table > tbody > tr > td .highWarning svg path,
.table > tbody > tr > td .highWarning img path {
  fill: #CB0000;
}

.table > tbody > tr > td .normalWarning img.svg path,
.table > tbody > tr > td .normalWarning svg path,
.table > tbody > tr > td .normalWarning img path {
  fill: #d39111;
}

.table > tbody > tr > td .lowWarning img.svg path,
.table > tbody > tr > td .lowWarning svg path,
.table > tbody > tr > td .lowWarning img path {
  fill: #648DAC;
}

.table > tbody > tr.danger > td {
  position: relative;
}

.table > tbody > tr.danger > td.desc {
  text-decoration: line-through;
}

.table > tbody > tr.danger > td .checkBox label {
  cursor: not-allowed;
  pointer-events: none;
}

.table > tbody > tr.danger.active > td .checkBox label {
  cursor: default;
  pointer-events: all;
}

.table > tbody > tr.overDue > td {
  background-color: rgba(246, 178, 132, 0.7);
}

.table > tbody > tr.overDue:hover > td {
  background-color: #f6b284;
}

.table > tbody > tr.completed > td {
  background-color: rgba(187, 225, 188, 0.7);
}

.table > tbody > tr.completed:hover > td {
  background-color: #bbe1bc;
}

.table > tbody > tr.smileys .smileysBtn {
  height: auto;
  width: auto;
}

.table > tbody > tr.cPlan > td {
  background-color: rgba(100, 141, 172, 0.2);
}

.table > tbody > tr.cPlan > td .cPlanIcon img.svg path,
.table > tbody > tr.cPlan > td .cPlanIcon svg path {
  fill: #666;
}

.table > tbody > tr:last-of-type > td {
  border-bottom: 3px solid #648DAC;
}

.table > tbody > tr:last-of-type > td:first-child {
  border-radius: 0 0 0 4px;
}

.table > tbody > tr:last-of-type > td:last-child {
  border-radius: 0 0 4px 0;
}

.table > tbody .careAudit {
  background: #ACB6B6;
  color: #fff;
  font-size: 14px;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  padding: 2px 10px 3px 10px;
  border-radius: 4px;
  line-height: 17px;
  font-family: "Roboto Condensed", sans-serif;
  margin-right: 5px;
}

.table > tbody .careAudit small {
  display: block;
}

.table.graph {
  width: 50% !important;
}

.table.graph > tbody > tr > td.desc {
  width: 300px;
}

.table.satisfactoryLevel thead tr th {
  text-align: center;
  width: 16.66666666666667%;
}

.table.satisfactoryLevel tbody tr td {
  text-align: center;
}

.table.addFloors tbody tr td .form-group {
  width: 100%;
}

.table.BalShtHistory thead tr th {
  padding: 11px 8px;
  font-weight: bold;
}

.table.BalShtHistory thead tr th:last-child {
  text-align: right;
}

.table.BalShtHistory tbody tr td {
  vertical-align: top;
}

.table.BalShtHistory tbody tr td small {
  color: #999;
}

.table.BalShtHistory tbody tr td small b {
  color: #999;
}

.table.BalShtHistory .innerHeader {
  background-color: #ACB6B6;
  color: #fff;
}

.table.BalShtHistory .BalShtHistoryfooter {
  background: #648DAC;
  color: #fff;
}

.table.BalShtHistory .BalShtHistoryfooter td {
  font-weight: bold !important;
  vertical-align: top;
}

.table.training {
  width: auto !important;
  max-width: none;
  table-layout: fixed;
  margin: auto;
  border-collapse: separate;
  display: table !important;
}

.table.training > thead > tr:first-of-type > th:first-child {
  text-align: left;
}

.table.training > thead > tr:first-of-type > th:first-child img.svg, .table.training > thead > tr:first-of-type > th:first-child svg, .table.training > thead > tr:first-of-type > th:first-child img {
  height: 18px;
  width: 18px;
  position: absolute;
  -webkit-transform: translateX(10px) translateY(0);
  transform: translateX(10px) translateY(0);
}

.table.training > thead > tr:first-of-type > th:first-child img.svg path, .table.training > thead > tr:first-of-type > th:first-child svg path, .table.training > thead > tr:first-of-type > th:first-child img path {
  fill: #FFF;
}

.table.training > thead > tr:first-of-type > th {
  text-align: center;
  white-space: nowrap;
}

.table.training > thead > tr:nth-of-type(2) > th {
  background-color: #ACB6B6;
  text-align: center;
  white-space: nowrap;
}

.table.training > thead > tr:nth-of-type(2) > th:first-child, .table.training > thead > tr:nth-of-type(2) > th:last-child {
  border-radius: 0;
}

.table.training > thead > tr:nth-of-type(2) > th:first-child {
  text-align: left;
}

.table.training > thead > tr:nth-of-type(2) > th:first-child img.svg, .table.training > thead > tr:nth-of-type(2) > th:first-child svg, .table.training > thead > tr:nth-of-type(2) > th:first-child img {
  height: 18px;
  width: 18px;
  position: absolute;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: 10px;
}

.table.training > thead > tr:nth-of-type(2) > th:first-child img.svg path, .table.training > thead > tr:nth-of-type(2) > th:first-child svg path, .table.training > thead > tr:nth-of-type(2) > th:first-child img path {
  fill: #FFF;
}

.table.training > tbody {
  overflow-x: scroll;
}

.table.training > tbody > tr > td {
  text-align: center;
  width: 120px;
  white-space: nowrap;
}

.table.training > tbody > tr > td:first-child {
  text-align: left;
}

.table.training > tbody > tr > td:first-child span {
  display: block;
  color: #648DAC;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.table.training > tbody > tr > td.notCompleted img.svg, .table.training > tbody > tr > td.notCompleted svg {
  height: 18px;
  width: 18px;
}

.table.training > tbody > tr > td.green {
  color: #78D09F;
}

.table.training > tbody > tr > td.orange {
  color: #F8931D;
}

.table.training > tbody > tr > td.red {
  color: #F27177;
}

.table.training > tbody > tr > td.blue {
  color: #899AE4;
}

.table.supervision thead tr td {
  white-space: unset;
}

.table.supervision tbody tr td {
  white-space: unset;
}

.table.medSummary thead tr th:first-child {
  width: 100px !important;
}

.table.medSummary thead tr th:nth-child(2) {
  width: 110px !important;
}

.table.medSummary thead tr th:nth-child(3) {
  width: 100px !important;
}

.table.medSummary thead tr th:nth-child(4) {
  width: 70px !important;
}

.table.medSummary thead tr th:nth-child(5) {
  width: 110px !important;
}

.table.medSummary thead tr th:nth-child(6) {
  width: auto !important;
}

.table.medSummary thead tr th:nth-child(7) {
  width: 150px !important;
}

.table.medSummary thead tr th:nth-child(8), .table.medSummary thead tr th:nth-child(9) {
  width: 30px !important;
}

.table.medSummary tbody tr td:nth-child(6) {
  width: auto !important;
}

.generalListing article ul .checkBox label {
    height: 20px;
    width: 20px;
    border-radius: 4px;
    background-color: #FFF;
    border: 2px solid #DDD;
    position: relative;
    margin: 0;
    transition: all 300ms ease-in;
    display: block;
}

.generalListing article ul .checkBox {
    height: 20px;
    float: left;
    line-height: 20px;
    cursor: pointer;
}

.generalListing article ul .checked {
    background-color: #6DC77A !important;
    border-color: #6DC77A !important;
}
/*# sourceMappingURL=custom.css.map */
