/*typography*/
/*color*/
html {
  height: auto;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-size: 16px;
  font-family: 'Titillium Web', sans-serif;
  color: #333;
  min-height: 100vh;
  height: auto;
  position: relative;
  padding-bottom: 4rem;
}
body a {
  text-decoration: none;
}
body a:hover {
  text-decoration: none;
}
body button:disabled {
  opacity: 0.7;
}
body button:focus {
  box-shadow: none;
}
.footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
}
#services {
  padding-top: 20px;
}
.margin-top-10 {
  margin-top: 10px;
}
.margin-top-20 {
  margin-top: 20px;
}
.margin-top-30 {
  margin-top: 30px;
}
.margin-right-10 {
  margin-right: 10px;
}
.margin-left-10 {
  margin-left: 10px;
}
.margin-left-20 {
  margin-left: 20px;
}
.margin-bottom-10 {
  margin-bottom: 10px;
}
.margin-bottom-15 {
  margin-bottom: 15px;
}
.margin-bottom-20 {
  margin-bottom: 20px;
}
.padding-10 {
  padding: 10px;
}
.padding-top-20 {
  padding-top: 20px;
}
.padding-right-10 {
  padding-right: 10px;
}
.border-none {
  border: none;
}
.bgc-first-color {
  background-color: #8A9CDA;
  border-color: #8A9CDA;
  color: #fff;
}
.bgc-first-color-reverse {
  border: 2px solid #8A9CDA;
  color: #8A9CDA;
}
.bgc-first-color.disabled,
.bgc-first-color:disabled {
  background-color: #8A9CDA;
  border-color: #8A9CDA;
  color: #fff;
}
.bgc-second-color {
  background-color: #6C878D;
  border-color: #6C878D;
  color: #fff;
}
.bgc-second-color-reverse {
  border: 2px solid #6C878D;
  color: #6C878D;
}
.bgc-third-color {
  background-color: #FF7481;
  border-color: #FF7481;
  color: #fff;
}
.bgc-third-color-reverse {
  border: 2px solid #FF7481;
  color: #FF7481;
}
.bgc-fourth-color {
  background-color: #BCA598;
  border-color: #BCA598;
  color: #fff;
}
.bgc-fourth-color-reverse {
  border: 2px solid #BCA598;
  color: #BCA598;
}
.bgc-fourth-color-transparent {
  background-color: rgba(188, 165, 152, 0.3);
}
.font-red {
  color: red;
}
.font-line-through {
  text-decoration: line-through;
}
.page-wrap-100 h3 {
  margin-bottom: 20px;
}
.page-wrap-80 {
  width: 80%;
  margin: auto;
}
.page-wrap-80 h3 {
  margin-bottom: 20px;
}
.page-wrap {
  max-width: 600px;
  width: 60%;
  margin: auto;
}
.page-wrap h3 {
  margin-bottom: 20px;
}
.max-450-wrap {
  max-width: 450px;
  margin: 0 auto;
}
i {
  margin-right: 7px;
}
.agenda-billed {
  margin-right: 3px;
}
.fa-minus-circle {
  margin-right: 15px;
  font-size: 1.2rem;
  color: red;
}
#contactForm .help-block {
  color: red;
  margin-bottom: 0;
}
.input-alignment-parent {
  position: relative;
}
.input-alignment-parent .input-alignment-child {
  position: absolute;
  bottom: 0;
}
.form-without-line {
  border: none;
}
.icon-menu {
  text-align: center;
}
.icon-menu a:hover i {
  color: #0056b3;
}
.icon-menu a i {
  font-size: 1.2rem;
  margin: 0;
}
.icon-menu a .fa-edit {
  color: #8A9CDA;
}
.icon-menu a .fa-lock {
  color: #6C878D;
}
.icon-menu a .fa-trash {
  color: #FF7481;
}
.icon-menu a .fa-list-alt {
  color: #6C878D;
}
.icon-menu a .fa-file-pdf {
  color: #DC3C29;
}
.show-hide-message {
  margin: 20px 0;
}
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkbox-container input:checked ~ .checkmark {
  background-color: #6C878D;
  border: none;
}
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 2px solid #eee;
}
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .checkbox-container .checkmark {
    top: 3px;
  }
}
.switch {
  position: relative;
  display: inline-block;
  width: 51px;
  height: 24px;
  top: 15px;
  margin-right: 5px;
  margin-left: 5px;
}
.switch input {
  display: none;
}
.switch input:checked + .slider {
  background-color: #FF7481;
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #BCA598;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.round-icon {
  position: relative;
  background-color: #FF7481;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
}
.round-icon i {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.alert-big {
  font-size: 1.5rem;
}
nav {
  color: #DFCFC6;
}
.nav-link {
  color: #cccccc;
}
.navbar-light .navbar-brand {
  color: #DFCFC6;
}
.navbar-toggler {
  padding: 0.5rem 0.5rem;
}
.navbar-toggler:focus {
  outline: none;
}
.animated-icon1 {
  width: 27px;
  height: 15px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.animated-icon1 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.animated-icon1 span {
  background: rgba(0, 0, 0, 0.1);
}
.animated-icon1 span:nth-child(1) {
  top: 0px;
}
.animated-icon1 span:nth-child(2) {
  top: 7px;
}
.animated-icon1 span:nth-child(3) {
  top: 14px;
}
.animated-icon1.open span:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.animated-icon1.open span:nth-child(3) {
  top: 7px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.username {
  text-transform: capitalize;
}
.homepage-left {
  min-height: 85vh;
}
.homepage-right-menu {
  margin-top: 3vh;
}
.login {
  margin-top: 2rem;
}
.menu {
  padding: 20px 0;
  margin: 10px 0;
  font-size: 1.4rem;
}
.menu:hover {
  opacity: 0.7;
}
.agenda-menu {
  padding: 10px 0;
}
.back {
  padding: 15px 0;
  color: #DFCFC6;
  border: 2px solid #DFCFC6;
}
.s-back {
  margin: 20px 0;
}
.s-back a {
  color: #DFCFC6;
  font-size: 1.2em;
}
.search_customer_container {
  background-color: #F5F5F5;
}
.table .padding-top-20 {
  padding-top: 20px;
}
.table td {
  vertical-align: middle;
}
.th-group-1 {
  background: #8A9CDA;
  color: #fff;
}
.th-group-1-child {
  background: rgba(114, 140, 175, 0.2);
}
.th-group-2 {
  background: #6C878D;
  color: #fff;
}
.th-group-2-child {
  background: rgba(145, 185, 193, 0.3);
}
.card-collpse-header {
  padding: 0;
  background-color: #fff;
}
.btn-collapse {
  padding: 0.75rem 1.25rem;
  font-size: 1.2rem;
}
.btn:focus,
.btn.focus {
  box-shadow: none;
}
.btn:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active:focus,
.show > .btn.dropdown-toggle:focus {
  box-shadow: none;
}
.page-link {
  color: #6C878D;
}
.page-item.active .page-link {
  background-color: #6C878D;
  border-color: #6C878D;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 650px;
    margin: 1.75rem auto;
  }
}
.calender-btn i {
  margin: 0;
}
svg {
  width: 1rem;
  height: 1rem;
}
.fa-svg-icon {
  margin: 0;
}
.uib-clear {
  display: none;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}
.fc-time-grid .fc-slats td {
  height: 5em;
  border-bottom: 2px solid #dee2e6;
}
.alert-info {
  background-color: #e3e7f4;
}
.event-thick-border {
  border: 3px solid;
}
.fc-timeline td {
  height: 5rem;
}
.fc-time-area .fc-rows td > div {
  height: 100%;
}
.fc-time-area .fc-rows tr:first-of-type td > div {
  background-color: rgba(255, 255, 179, 0.5);
}
.table-bordered thead td {
  height: auto;
}
.fc-timeline-event .fc-title {
  font-size: 0.9rem;
}
.fc-ltr .fc-timeline-event {
  height: 60px;
  margin: 0 2px 0 2px;
  border-right: 2px solid #315a6b;
  border-left: 2px solid #315a6b;
  overflow: hidden;
}
.fc-timeline-event .fc-content {
  padding: 0 4px 1px 4px;
  white-space: pre-line;
}
.md-whiteframe-1dp,
.md-whiteframe-z1 {
  box-shadow: none;
}
.autocomplete-input {
  height: -webkit-calc(2.25rem + 2px);
  height: -moz-calc(2.25rem + 2px);
  height: calc(2.25rem + 2px);
  line-height: 1.5;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
md-autocomplete input:not(.md-input) {
  font-size: 1rem;
  color: #495057;
  height: -webkit-calc(2.25rem + 2px);
  height: -moz-calc(2.25rem + 2px);
  height: calc(2.25rem + 2px);
}
md-autocomplete .md-show-clear-button button {
  height: -webkit-calc(2.25rem + 2px);
  height: -moz-calc(2.25rem + 2px);
  height: calc(2.25rem + 2px);
  margin: 0 5px 0 0;
}
md-autocomplete .md-show-clear-button button md-icon {
  height: unset;
  width: unset;
  min-height: unset;
  min-width: unset;
}
md-autocomplete.md-default-theme[disabled]:not([md-floating-label]),
md-autocomplete[disabled]:not([md-floating-label]) {
  background-color: #e9ecef;
  opacity: 1;
}
.md-autocomplete-suggestions-container {
  z-index: 100000 !important;
  /* any number of choice > 1050*/
}
.ecl-homepage-left {
  font-size: 0.8rem;
}
#calendar-container {
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 991.98px) {
  #calendar-container {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.available-apartment {
  border: 2px solid rgba(0, 0, 0, 0.125);
  padding: 8px 15px;
  margin: 10px 0;
  cursor: pointer;
}
.available-apartment:focus {
  outline: none;
}
.apartment-selected {
  background-color: #8A9CDA;
  color: #fff;
}
.bill-apartments {
  cursor: pointer;
}
.bill-apartments:focus {
  outline: none;
}
@media (max-width: 767.98px) {
  body {
    font-size: 0.8rem;
  }
  .page-wrap {
    width: 90%;
  }
}
