/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
/* custom variable 
@import "variables/colors";*/
/* custom css 
@import "pages/common/nav";
@import "pages/home/index";

@import "pages/home/responsive";

@import "pages/home/custom";*/
/*BOOTSTRAP ADDITION TO MAKE UN-EVEN DIVS NEXT TO EACH OTHER, E.G. 5 IN A ROW SAME SIZE */
/* start of modification for 5 columns */
/* line 3, ../../css/sass/pages/home/_custom.scss */
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/* line 13, ../../css/sass/pages/home/_custom.scss */
.col-xs-5ths {
  width: 20%;
  float: left;
}

@media only screen and (max-width: 420px) {
  /* line 18, ../../css/sass/pages/home/_custom.scss */
  .desktop-add-task-menu {
    display: none !important;
  }

  /* line 21, ../../css/sass/pages/home/_custom.scss */
  .mobile-add-task-menu {
    display: block;
  }
}
@media (min-width: 768px) {
  /* line 27, ../../css/sass/pages/home/_custom.scss */
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  /* line 34, ../../css/sass/pages/home/_custom.scss */
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  /* line 41, ../../css/sass/pages/home/_custom.scss */
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}
/* to use this above, simply change class to col-md-5ths col-xs-6 in parent div class */
/* end of modification for 5 columns */
/* OTHER RANDOM CHANGES */
/* line 49, ../../css/sass/pages/home/_custom.scss */
.modal-full {
  width: 95%;
}

/* line 53, ../../css/sass/pages/home/_custom.scss */
.navbar-top-links > li > a:hover, .navbar-top-links > li > a:active {
  background: #f95b5b;
}

/* line 57, ../../css/sass/pages/home/_custom.scss */
.wizard-buttons > a {
  border-radius: 3px;
  font-size: 1.67rem;
  border: 1px solid #41b3f9;
}

/* line 64, ../../css/sass/pages/home/_custom.scss */
.wizard-back {
  background-color: #ffffff;
}

/* line 68, ../../css/sass/pages/home/_custom.scss */
.wizard-finish {
  border: 1px solid #7ace4c !important;
  color: #7ace4c !important;
}

/* line 73, ../../css/sass/pages/home/_custom.scss */
.wizard-finish:before {
  font-family: FontAwesome;
  content: "\f0c7";
  margin-right: 5px;
  font-size: 17px;
}

/* line 80, ../../css/sass/pages/home/_custom.scss */
.wizard-back:before {
  font-family: FontAwesome;
  content: "\f104";
  margin-right: 5px;
  font-size: 17px;
  font-weight: bold;
}

/* line 87, ../../css/sass/pages/home/_custom.scss */
a.wizard-finish.btn.btn-success {
  color: #fff !important;
}

/* line 91, ../../css/sass/pages/home/_custom.scss */
.wizard-next:after {
  font-family: FontAwesome;
  content: "\f105";
  margin-left: 5px;
  font-size: 17px;
  font-weight: bold;
}

/* line 99, ../../css/sass/pages/home/_custom.scss */
.wizard-next {
  color: #fff;
}

/* line 102, ../../css/sass/pages/home/_custom.scss */
.user-bg .overlay-box {
  background-color: #42b3f9;
}

/* line 105, ../../css/sass/pages/home/_custom.scss */
a.wizard-next.btn.btn-primary:focus {
  background: #41b3f9;
  opacity: 1 !important;
}

/* line 109, ../../css/sass/pages/home/_custom.scss */
a.wizard-back.btn.btn-primary:focus {
  background: #41b3f9;
  opacity: 1 !important;
}

/* line 113, ../../css/sass/pages/home/_custom.scss */
a.wizard-next.btn.btn-primary:hover {
  opacity: 0.8 !important;
}

/* line 116, ../../css/sass/pages/home/_custom.scss */
a.wizard-back.btn.btn-primary:hover {
  opacity: 0.8 !important;
}

/* line 120, ../../css/sass/pages/home/_custom.scss */
.form-group label {
  margin-top: 10px;
  font-weight: normal;
}

/* line 125, ../../css/sass/pages/home/_custom.scss */
.form-horizontal .form-group {
  margin-bottom: 0;
}

/* line 128, ../../css/sass/pages/home/_custom.scss */
.highligth {
  color: red !important;
}

/* line 131, ../../css/sass/pages/home/_custom.scss */
.loader {
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #3498db;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
  margin: 10px;
}

/* line 142, ../../css/sass/pages/home/_custom.scss */
.bg-info span {
  color: #f3f3f3;
}

/* line 147, ../../css/sass/pages/home/_custom.scss */
.bg-info a {
  color: #f3f3f3;
  text-decoration: underline;
}

/* line 151, ../../css/sass/pages/home/_custom.scss */
.primary-status {
  padding: 5px;
  background-color: #41b3f9;
  border-radius: 5px;
}

/* line 157, ../../css/sass/pages/home/_custom.scss */
.warning-status {
  padding: 5px;
  background-color: #f7af24;
  border-radius: 5px;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* line 173, ../../css/sass/pages/home/_custom.scss */
.sidebar {
  box-shadow: none !important;
  border: none !important;
}

/* line 177, ../../css/sass/pages/home/_custom.scss */
.navbar-default.sidebar {
  /*box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)!important;*/
}

/* line 180, ../../css/sass/pages/home/_custom.scss */
#leadsDirection {
  width: 100%;
  height: 350px;
}

/* line 185, ../../css/sass/pages/home/_custom.scss */
.panel {
  margin-bottom: 30px;
}

/* line 189, ../../css/sass/pages/home/_custom.scss */
.custom-title {
  position: fixed;
  z-index: 1000;
  overflow: initial;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
}

/* line 195, ../../css/sass/pages/home/_custom.scss */
.margin-top {
  margin-top: 85px;
}

/* line 198, ../../css/sass/pages/home/_custom.scss */
.little-menu {
  font-size: 1.35rem;
  position: fixed;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
  max-height: 80vh;
  overflow-y: scroll;
}

.little-menu .panel {
  margin-bottom: 0;
}

/* line 203, ../../css/sass/pages/home/_custom.scss */
.little-menu li, .little-menu ul {
  margin-left: 0;
  padding-left: 0;
  margin-top: 5px;
  list-style: none;
}

/* line 209, ../../css/sass/pages/home/_custom.scss */
.little-menu a {
  color: #000;
}

/* line 213, ../../css/sass/pages/home/_custom.scss */
.little-menu a:hover {
  color: #41b3f9;
}

/* line 216, ../../css/sass/pages/home/_custom.scss */
.little-menu strong {
  font-weight: normal;
  color: #313131;
  font-size: 15px;
}

/* line 221, ../../css/sass/pages/home/_custom.scss */
.edit-temp, .edit-tempfs, .edit-tempfau, .edit-tempfaf, .edit-tempfel {
  position: absolute;
  right: 0px;
  background: #41b3f9;
  padding: 10px 10px;
  color: #fff;
  border-radius: 0px 10px 10px 0px;
  font-size: 14px;
  line-height: 1.3;
  /*    right: 35px;*/
  /*    top: 10px;*/
}

/* line 233, ../../css/sass/pages/home/_custom.scss */
.save-temp, .save-tempfs, .save-tempfau, .save-tempfaf, .save-tempfel {
  position: absolute;
  right: 0px;
  background: #41b3f9;
  padding: 10px 10px;
  color: #fff;
  border-radius: 0px 10px 10px 0px;
  font-size: 14px;
  line-height: 1.3;
  /*    right: 35px;*/
  /*    top: 10px;*/
}

/* line 245, ../../css/sass/pages/home/_custom.scss */
.edit-temp:hover, .edit-tempfs:hover, .edit-tempfau:hover, .edit-tempfaf:hover, .edit-tempfel:hover {
  color: #fff;
  background: #41b3f9;
  opacity: 0.8;
}

/* line 250, ../../css/sass/pages/home/_custom.scss */
.save-temp:hover, .save-tempfs:hover, .save-tempfau:hover, .save-tempfaf:hover, .save-tempfel:hover {
  color: #fff;
  background: #41b3f9;
  opacity: 0.8;
}

/* line 255, ../../css/sass/pages/home/_custom.scss */
.total-count {
  margin-top: 30px;
  margin-left: 20px;
  margin-bottom: 20px;
}

/* line 259, ../../css/sass/pages/home/_custom.scss */
.pager {
  margin-right: 20px;
}

/* line 262, ../../css/sass/pages/home/_custom.scss */
.filters {
  height: 300px;
  overflow: auto;
}

/* line 266, ../../css/sass/pages/home/_custom.scss */
.btnBack {
  float: left;
  margin: 5px 15px 5px 0;
}

/* line 270, ../../css/sass/pages/home/_custom.scss */
.saved-filter {
  height: 337px;
  overflow: auto;
}

/* line 274, ../../css/sass/pages/home/_custom.scss */
#txtLandLineE, #txtMobileE, #txtWorkMobileE, #txtNextKinMobileE, #txtBusinessNumberE, #txtLandlineE, #txtBusinessMobileE {
  overflow: initial !important;
}

/* line 277, ../../css/sass/pages/home/_custom.scss */
.static-save-temp {
  display: none;
}

/* line 280, ../../css/sass/pages/home/_custom.scss */
.lg-info-panel {
  background-image: url("/new/plugins/images/sandbar-login-wallpaper.jpg") !important;
}

/* line 283, ../../css/sass/pages/home/_custom.scss */
#collapseSearchMap {
  width: 25%;
  position: absolute;
  z-index: 421;
}

/* line 288, ../../css/sass/pages/home/_custom.scss */
.overflow {
  overflow: hidden;
  height: 250px;
}

/* line 292, ../../css/sass/pages/home/_custom.scss */
.remove-adjust {
  margin-top: -15px;
  margin-right: -10px;
}

/* line 296, ../../css/sass/pages/home/_custom.scss */
.fix-width td {
  min-width: 200px;
}

/* line 299, ../../css/sass/pages/home/_custom.scss */
.mlf-5 {
  margin: 0 5px;
}

/* line 302, ../../css/sass/pages/home/_custom.scss */
.sidebar .icon-star {
  width: 20px;
  text-align: center !important;
  display: inline-block;
  font-style: normal;
  font-weight: 500;
  margin-right: 7px;
  font-size: 20px;
  vertical-align: middle;
}

/* line 312, ../../css/sass/pages/home/_custom.scss */
.sidebar .icon-directions {
  width: 20px;
  text-align: center !important;
  display: inline-block;
  font-style: normal;
  font-weight: 500;
  margin-right: 7px;
  font-size: 20px;
  vertical-align: middle;
}

/* line 322, ../../css/sass/pages/home/_custom.scss */
#side-menu li a {
  width: 240px;
  min-height: 61px;
}

/* line 326, ../../css/sass/pages/home/_custom.scss */
#side-menu > li > a {
  padding: 20px 20px 15px 20px;
  display: block;
}

/* line 330, ../../css/sass/pages/home/_custom.scss */
.sidebar .arrow {
  position: absolute;
  right: 14px;
  top: 22px;
}

/* line 335, ../../css/sass/pages/home/_custom.scss */
.sidebar .fa-fw {
  font-size: 20px;
}

/* line 338, ../../css/sass/pages/home/_custom.scss */
.dropdown-menu > li > a {
  padding: 9px 20px;
}

/* line 342, ../../css/sass/pages/home/_custom.scss */
.u-text {
  margin-top: 10px;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* line 350, ../../css/sass/pages/home/_custom.scss */
.u-text a.btn.btn-rounded.btn-danger.btn-sm {
  margin-top: 15px;
}

/* line 354, ../../css/sass/pages/home/_custom.scss */
i.mdi.fa-fw {
  font-size: 22px;
}

/* line 358, ../../css/sass/pages/home/_custom.scss */
.active > a.waves-effect {
  font-weight: 500;
}

/* line 361, ../../css/sass/pages/home/_custom.scss */
.nav-second-level .active {
  border-left: 3px solid #41b3f9 !important;
}

/* line 365, ../../css/sass/pages/home/_custom.scss */
.pager li > a, .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #41b3f9 !important;
  border: 1px solid #41b3f9 !important;
  border-radius: 4px;
  color: #fff !important;
  font-weight: 400 !important;
}

/* line 374, ../../css/sass/pages/home/_custom.scss */
.pager li > a:focus, .pager li > a:hover {
  opacity: 0.8 !important;
}

/* line 377, ../../css/sass/pages/home/_custom.scss */
.total-count-heading {
  margin-right: 10px;
  font-weight: bold;
  color: #41b3f9;
}

/* line 382, ../../css/sass/pages/home/_custom.scss */
.form-material .form-control, .form-material .form-control.focus, .form-material .form-control:focus {
  background-image: linear-gradient(#41b3f9, #41b3f9), linear-gradient(rgba(0, 0, 0, 0.13), rgba(65, 179, 249, 0.13));
  border: 0 none;
  border-radius: 0;
  box-shadow: none;
  float: none;
}

/* line 389, ../../css/sass/pages/home/_custom.scss */
.checkbox label::after {
  color: #41b3f9;
}

/* line 393, ../../css/sass/pages/home/_custom.scss */
h4.modal-title {
  color: #fff;
}

/* line 396, ../../css/sass/pages/home/_custom.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  background: #41b3f9;
  color: #fff !important;
}

/* line 402, ../../css/sass/pages/home/_custom.scss */
.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
  color: #41b3f9;
}

/* line 405, ../../css/sass/pages/home/_custom.scss */
.error-body i.fa.fa-lock {
  font-size: 20em;
  color: #41b3f9;
}

/* line 409, ../../css/sass/pages/home/_custom.scss */
.jq-toast-single h2 {
  font-weight: bold;
}

/* line 412, ../../css/sass/pages/home/_custom.scss */
textarea#atxtSMS {
  padding-left: 10px;
  padding-top: 20px;
}

/* line 416, ../../css/sass/pages/home/_custom.scss */
td.datetime-customise {
  min-width: 200px;
}

/* line 419, ../../css/sass/pages/home/_custom.scss */
td.name-customise {
  width: 200px;
}

/* line 422, ../../css/sass/pages/home/_custom.scss */
.datetime-customise i {
  color: #41b3f9;
  margin-right: 5px;
  margin-left: 5px;
}

/* line 427, ../../css/sass/pages/home/_custom.scss */
.name-customise i {
  color: #41b3f9;
  margin-right: 5px;
  margin-left: 5px;
}

/* line 432, ../../css/sass/pages/home/_custom.scss */
.panel-white .panel-heading, .panel-default .panel-heading {
  color: #000000;
  background-color: #ecf1f59c;
  border-bottom: 1px solid rgba(120, 130, 140, 0.13);
}

/* line 437, ../../css/sass/pages/home/_custom.scss */
.panel-heading {
}

/* line 440, ../../css/sass/pages/home/_custom.scss */
.panel-heading i.ti-minus {
  color: #fff;
}

/* line 443, ../../css/sass/pages/home/_custom.scss */
.panel-heading i.ti-plus {
  color: #fff;
}

/* line 446, ../../css/sass/pages/home/_custom.scss */
.panel.panel-default {
  /*border: 1px solid #cccccc75;*/
  /*box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)!important;*/
  border: 1px solid #dedede;
}

/* line 451, ../../css/sass/pages/home/_custom.scss */
.panel-heading {
  padding-top: 30px !important;
}

/* line 454, ../../css/sass/pages/home/_custom.scss */
.sms-user {
  width: 95%;
  float: left;
}

/* line 458, ../../css/sass/pages/home/_custom.scss */
.sms-sender {
  width: 95%;
  float: right;
}

/* line 462, ../../css/sass/pages/home/_custom.scss */
th.selectmenutitle {
  width: 80px;
}

/* line 465, ../../css/sass/pages/home/_custom.scss */
.minheightfranchisefix .fixed-table-body {
  min-height: 300px;
}

/* line 468, ../../css/sass/pages/home/_custom.scss */
.radio label::after {
  background-color: #41b3f9;
}

/* line 471, ../../css/sass/pages/home/_custom.scss */
.documents {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* line 475, ../../css/sass/pages/home/_custom.scss */
.documents a.pull-right {
  font-weight: bold;
}

/* line 478, ../../css/sass/pages/home/_custom.scss */
.leadsinfosub1 i.fa.fa-id-card-o {
  font-size: 50px;
  color: #41b3f9;
}

/* line 482, ../../css/sass/pages/home/_custom.scss */
.leadsinfosub1 span.counter.text-primary {
  font-size: 44px;
}

/* line 485, ../../css/sass/pages/home/_custom.scss */
.leadsinfosub2 i.fa.fa-check {
  font-size: 50px;
  color: #7ace4c;
}

/* line 489, ../../css/sass/pages/home/_custom.scss */
.leadsinfosub2 span.counter.text-success {
  font-size: 44px;
}

/* line 492, ../../css/sass/pages/home/_custom.scss */
.leadsinfosub3 i.fa.fa-ban {
  font-size: 50px;
  color: #ffbb44;
}

/* line 496, ../../css/sass/pages/home/_custom.scss */
.leadsinfosub3 span.counter.text-warning {
  font-size: 44px;
}

/* line 499, ../../css/sass/pages/home/_custom.scss */
.leadsinfosub4 i.mdi-account-alert {
  font-size: 50px !important;
  color: #f33155;
}

/* line 503, ../../css/sass/pages/home/_custom.scss */
.leadsinfosub4 span.text-danger {
  font-size: 44px !important;
}

/* line 506, ../../css/sass/pages/home/_custom.scss */
.leadsinfosub4 i.fa.fa-pause {
  font-size: 50px;
  color: #415ff9b5;
}

/* line 510, ../../css/sass/pages/home/_custom.scss */
.leadsinfosub4 .text-onhold {
  font-size: 44px !important;
  color: #788dfb;
}

/* line 514, ../../css/sass/pages/home/_custom.scss */
.leadsinfosub3 i.fa.fa-clock-o {
  font-size: 50px !important;
  color: #ffbb44;
}

/* line 518, ../../css/sass/pages/home/_custom.scss */
.leadsinfosub4 i.fa.fa-trash {
  font-size: 50px !important;
  color: #f33155;
}

/* line 522, ../../css/sass/pages/home/_custom.scss */
.leadsinfo1 h3.box-title {
  width: 100%;
  text-align: center;
  font-size: 15px;
}

/* line 527, ../../css/sass/pages/home/_custom.scss */
.leadsinfo2 .white-box.analytics-info {
  min-height: 200px;
}

/* line 530, ../../css/sass/pages/home/_custom.scss */
.leadsinfo2 h3.box-title {
  width: 100%;
  text-align: center;
  font-size: 15px;
}

/* line 535, ../../css/sass/pages/home/_custom.scss */
.leadsinfo1 .white-box.analytics-info {
  min-height: 200px;
}

/* line 538, ../../css/sass/pages/home/_custom.scss */
li.messageinfo {
  width: 100%;
  text-align: center;
}

/* line 542, ../../css/sass/pages/home/_custom.scss */
.leadsinfo1 .white-box {
  color: #000000;
  background-color: #fff;
  border: 1px solid rgba(120, 130, 140, 0.13);
}

/* line 547, ../../css/sass/pages/home/_custom.scss */
.panel-info-custom .panel-heading {
  color: #000000;
  background-color: #ecf1f59c;
  border-bottom: 1px solid rgba(120, 130, 140, 0.13);
  display: inline-block;
  width: 100%;
}

/* line 554, ../../css/sass/pages/home/_custom.scss */
.panel.panel-info.panel-info-custom {
  /*box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)!important;*/
  border: 1px solid #dedede;
}

/* line 558, ../../css/sass/pages/home/_custom.scss */
.panel-info-custom .pull-right .ti-close {
  color: #000;
}

/* line 561, ../../css/sass/pages/home/_custom.scss */
.panel-info-custom .pull-right .ti-minus {
  color: #000;
}

/* line 564, ../../css/sass/pages/home/_custom.scss */
.panel-info-custom .pull-right .ti-plus {
  color: #000;
}

/* line 567, ../../css/sass/pages/home/_custom.scss */
.custom-repair-dashboard-button {
  margin-top: 12px;
}

/* line 570, ../../css/sass/pages/home/_custom.scss */
.panel-info-custom .white-box {
  background: #ffffff;
  padding: 25px 15px 25px 15px;
  margin-bottom: 30px;
}

/* line 576, ../../css/sass/pages/home/_custom.scss */
.franchisesalessub1 span.counter.text-active {
  font-size: 44px;
  color: #7ace4c;
}

/* line 581, ../../css/sass/pages/home/_custom.scss */
.franchisesalessub1 i.fa.fa-trophy {
  font-size: 44px;
  color: #7ace4c;
}

/* line 586, ../../css/sass/pages/home/_custom.scss */
.franchisesalessub2 i.fa.fa-address-book-o {
  font-size: 44px;
  color: #fb4;
}

/* line 591, ../../css/sass/pages/home/_custom.scss */
.franchisesalessub2 span.text-warning {
  font-size: 44px !important;
}

/* line 595, ../../css/sass/pages/home/_custom.scss */
.franchisesalessub3 span.counter.text-active {
  font-size: 44px;
  color: #7ace4c;
}

/* line 600, ../../css/sass/pages/home/_custom.scss */
.franchisesalessub3 i.fa.fa-trophy {
  font-size: 44px;
  color: #7ace4c;
}

/* line 605, ../../css/sass/pages/home/_custom.scss */
.franchisesalessub4 i.fa.fa-address-book-o {
  font-size: 44px;
  color: #fb4;
}

/* line 610, ../../css/sass/pages/home/_custom.scss */
.franchisesalessub4 span.text-warning {
  font-size: 44px !important;
}

/* line 614, ../../css/sass/pages/home/_custom.scss */
.franchisesalessub4 span.text-danger {
  font-size: 44px !important;
}

/* line 618, ../../css/sass/pages/home/_custom.scss */
.franchisesalessub4 i.fa.fa-frown-o {
  font-size: 44px;
  color: #f33155;
}

/* line 622, ../../css/sass/pages/home/_custom.scss */
.franchisesales1 .white-box {
  color: #000000;
  background-color: #fff;
  border: 1px solid rgba(120, 130, 140, 0.13);
}

/* line 627, ../../css/sass/pages/home/_custom.scss */
.franchisesales1 h3.box-title {
  width: 100%;
  text-align: center;
}

/* line 631, ../../css/sass/pages/home/_custom.scss */
.graph-heading {
  margin-top: 0px;
  font-weight: 500;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

/* line 638, ../../css/sass/pages/home/_custom.scss */
.button-heading-container {
  display: inline-block;
}

/* line 642, ../../css/sass/pages/home/_custom.scss */
.button-heading-container a.btn.btn-block.btn-info {
  max-width: 250px;
  width: 100%;
  margin-left: 10px;
}

/* line 647, ../../css/sass/pages/home/_custom.scss */
.button-heading-container .btn-info {
  background: #ffffff !important;
  border: 1px solid #dedede !important;
}

/* line 651, ../../css/sass/pages/home/_custom.scss */
.button-heading-container a.btn {
  color: #000 !important;
}

/* line 654, ../../css/sass/pages/home/_custom.scss */
.button-heading-container a:hover.btn {
  color: #fff !important;
  background: #41b3f9 !important;
  border-color: #41b3f9 !important;
}

/* line 659, ../../css/sass/pages/home/_custom.scss */
.panel-info-custom .btn-info {
  background: #41b3f9;
  border: 1px solid #cccc;
}

/* line 663, ../../css/sass/pages/home/_custom.scss */
.panel-info-custom .btn-info.btn-outline {
  color: #000 !important;
  background-color: #fff !important;
}

/* line 667, ../../css/sass/pages/home/_custom.scss */
.panel-info-custom .messageinfo a:hover {
  background: #41b3f9 !important;
  color: #fff !important;
  border-color: #41b3f9 !important;
}

/* line 672, ../../css/sass/pages/home/_custom.scss */
.thumbs-dashboard strong {
  font-size: 14px;
  line-height: 1.42857143;
  font-weight: lighter;
}

/* line 678, ../../css/sass/pages/home/_custom.scss */
.thumbs-dashboard ul > li {
  float: left;
  width: 50%;
}

/* line 683, ../../css/sass/pages/home/_custom.scss */
.thumbs-dashboard-head li {
  text-align: center;
}

/* line 687, ../../css/sass/pages/home/_custom.scss */
.thumbs-dashboard-head strong {
  font-size: 14px;
  line-height: 1.42857143;
  font-weight: normal;
}

/* line 693, ../../css/sass/pages/home/_custom.scss */
.thumbs-dashboard-head ul > li:first-child {
  float: left;
  width: 100%;
}

/* line 697, ../../css/sass/pages/home/_custom.scss */
.thumbs-dashboard-head.over {
  border: 2px dashed #000;
}

/* line 701, ../../css/sass/pages/home/_custom.scss */
button#btnAttachLeadsFL {
  padding: 9px 0px 9px 0px;
}

/* line 704, ../../css/sass/pages/home/_custom.scss */
#blank-add-options p {
  display: inline-block;
  width: 49.99999%;
  padding-left: 10px;
  padding-bottom: 20px;
  min-width: 280px;
}

/* line 711, ../../css/sass/pages/home/_custom.scss */
a.btn.btn-danger.btn-xs.btn-outline.del-option {
  margin-left: 10px;
}

/* line 715, ../../css/sass/pages/home/_custom.scss */
#blank-add-leads p {
  display: inline-block;
  width: 49.99999%;
  padding-left: 10px;
  padding-bottom: 20px;
  min-width: 280px;
}

/* line 722, ../../css/sass/pages/home/_custom.scss */
a.btnAllocate {
  cursor: pointer;
}

/* line 726, ../../css/sass/pages/home/_custom.scss */
.allocatetablefix .fixed-table-container {
  height: 100%;
  padding-bottom: 37px;
  max-height: 228px;
  margin-bottom: 20px;
  overflow-y: scroll;
}

/* line 733, ../../css/sass/pages/home/_custom.scss */
.lead-allocation-info-container h5 {
  color: #333333;
  font-size: 16px;
}

/* line 738, ../../css/sass/pages/home/_custom.scss */
.allocated-message-box label {
  color: #333333;
  font-size: 16px;
}

/* line 743, ../../css/sass/pages/home/_custom.scss */
.allocation-list-container h4 {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
}

/* line 749, ../../css/sass/pages/home/_custom.scss */
.lead-allocation-info-container p strong {
  padding-left: 28px;
  font-weight: 500;
}

/* line 754, ../../css/sass/pages/home/_custom.scss */
.lead-allocation-info-container i.fa {
  margin-right: 10px;
  color: #41b3f9;
}

/* line 759, ../../css/sass/pages/home/_custom.scss */
.allocation-list-container i.fa {
  margin-right: 10px;
  color: #41b3f9;
}

/* line 763, ../../css/sass/pages/home/_custom.scss */
.panel-heading i.ti-minus {
  color: #333333;
}

/* line 766, ../../css/sass/pages/home/_custom.scss */
.panel-heading i.ti-plus {
  color: #333333;
}

/* line 769, ../../css/sass/pages/home/_custom.scss */
.addoptions, .addsupply {
  background: #41b3f9;
  line-height: 2.8;
  padding: 10px 10px;
  color: #fff;
  border-radius: 0px 0px 10px 10px;
  font-size: 12px;
}

/* line 778, ../../css/sass/pages/home/_custom.scss */
.addoptions:hover, .addsupply:hover {
  background: #41b3f9;
  opacity: 0.8;
  color: #fff;
}

/* line 784, ../../css/sass/pages/home/_custom.scss */
.addoptions:focus, .addsupply:focus {
  color: #fff;
}

/* line 788, ../../css/sass/pages/home/_custom.scss */
a.addoptions:before, a.addsupply:before {
  font-family: FontAwesome;
  content: "\f0c9";
  margin-right: 10px;
}

/* line 793, ../../css/sass/pages/home/_custom.scss */
div#s2id_dbFranchiseType {
  margin-bottom: 7px !important;
}

/* line 796, ../../css/sass/pages/home/_custom.scss */
.addLeads {
  background: #41b3f9;
  padding: 10px 10px;
  color: #fff;
  border-radius: 0px 0px 10px 10px;
  font-size: 12px;
}

/* line 804, ../../css/sass/pages/home/_custom.scss */
.addLeads:hover {
  background: #41b3f9;
  opacity: 0.8;
  color: #fff;
}

/* line 809, ../../css/sass/pages/home/_custom.scss */
.addLeads:focus {
  color: #fff;
}

/* line 812, ../../css/sass/pages/home/_custom.scss */
a.addLeads:before {
  font-family: FontAwesome;
  content: "\f0c9";
  margin-right: 10px;
}

/* line 818, ../../css/sass/pages/home/_custom.scss */
.addDepartment {
  background: #41b3f9;
  line-height: 2.8;
  padding: 10px 10px;
  color: #fff;
  font-size: 12px;
  border-radius: 8px;
}

/* line 827, ../../css/sass/pages/home/_custom.scss */
a.btn.btn-primary.edit-button-icon:before {
  font-family: FontAwesome;
  content: "\f040";
  margin-right: 10px;
  font-size: 13px;
}

/* line 833, ../../css/sass/pages/home/_custom.scss */
a.btn.btn-danger.btn-outline.btnGetUserAction.delete-button-icon:before {
  font-family: FontAwesome;
  content: "\f1f8";
  margin-right: 10px;
  font-size: 13px;
}

/* line 839, ../../css/sass/pages/home/_custom.scss */
.already-converted-button-icon:before {
  font-family: FontAwesome;
  content: "\f00c";
  margin-right: 10px;
  font-size: 13px;
}

/* line 845, ../../css/sass/pages/home/_custom.scss */
.convert-button-icon:before {
  font-family: FontAwesome;
  content: "\f2b5";
  margin-right: 10px;
  font-size: 13px;
}

/* line 852, ../../css/sass/pages/home/_custom.scss */
.delete-button-icon:before {
  font-family: FontAwesome;
  content: "\f1f8";
  margin-right: 10px;
  font-size: 13px;
}

/* line 859, ../../css/sass/pages/home/_custom.scss */
.login-as-button-icon:before {
  font-family: FontAwesome;
  content: "\f21b";
  margin-right: 10px;
  font-size: 13px;
}

/* line 866, ../../css/sass/pages/home/_custom.scss */
.reset-pass-button-icon:before {
  font-family: FontAwesome;
  content: "\f084";
  margin-right: 10px;
  font-size: 13px;
}

/* line 873, ../../css/sass/pages/home/_custom.scss */
.edit-button-icon:before {
  font-family: FontAwesome;
  content: "\f040";
  margin-right: 10px;
  font-size: 13px;
}

/* line 880, ../../css/sass/pages/home/_custom.scss */
.contact-icon-heading:before {
  font-family: FontAwesome;
  content: "\f2a0";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 888, ../../css/sass/pages/home/_custom.scss */
.sms-icon-heading:before {
  font-family: FontAwesome;
  content: "\f10b";
  margin-right: 10px;
  font-size: 20px;
  color: #41b3f9;
}

/* line 896, ../../css/sass/pages/home/_custom.scss */
.sms-button-icon:before {
  font-family: FontAwesome;
  content: "\f10b";
  margin-right: 10px;
  font-size: 14px;
}

/* line 903, ../../css/sass/pages/home/_custom.scss */
.list-icon-heading:before {
  font-family: FontAwesome;
  content: "\f0ca";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 911, ../../css/sass/pages/home/_custom.scss */
.search-icon-heading:before {
  font-family: FontAwesome;
  content: "\f002";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 919, ../../css/sass/pages/home/_custom.scss */
.franchise-icon-heading:before {
  font-family: FontAwesome;
  content: "\f0b1";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 927, ../../css/sass/pages/home/_custom.scss */
.user-icon-heading:before {
  font-family: FontAwesome;
  content: "\f2be";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 935, ../../css/sass/pages/home/_custom.scss */
.payment-icon-heading:before {
  font-family: FontAwesome;
  content: "\f0d6";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 943, ../../css/sass/pages/home/_custom.scss */
.personal-icon-heading:before {
  font-family: FontAwesome;
  content: "\f2c3";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 950, ../../css/sass/pages/home/_custom.scss */
.lead-icon-heading:before {
  font-family: FontAwesome;
  content: "\f2bb";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 957, ../../css/sass/pages/home/_custom.scss */
.nextofkin-icon-heading:before {
  font-family: FontAwesome;
  content: "\f0fa";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 964, ../../css/sass/pages/home/_custom.scss */
.notes-icon-heading:before {
  font-family: FontAwesome;
  content: "\f0f6";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 971, ../../css/sass/pages/home/_custom.scss */
.documents-icon-heading:before {
  font-family: FontAwesome;
  content: "\f0c5";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 979, ../../css/sass/pages/home/_custom.scss */
.employee-icon-heading:before {
  font-family: FontAwesome;
  content: "\f2c3";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 986, ../../css/sass/pages/home/_custom.scss */
div#personal:before {
  font-family: FontAwesome;
  content: "\f007";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 993, ../../css/sass/pages/home/_custom.scss */
div#nextofkin:before {
  font-family: FontAwesome;
  content: "\f0fa";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 1000, ../../css/sass/pages/home/_custom.scss */
div#notes:before {
  font-family: FontAwesome;
  content: "\f0f6";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 1007, ../../css/sass/pages/home/_custom.scss */
div#documents:before {
  font-family: FontAwesome;
  content: "\f0c5";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 1014, ../../css/sass/pages/home/_custom.scss */
div#employee:before {
  font-family: FontAwesome;
  content: "\f2c3";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 1022, ../../css/sass/pages/home/_custom.scss */
.little-menu strong:before {
  font-family: FontAwesome;
  content: "\f050";
  margin-right: 10px;
  font-size: 16px;
  color: #41b3f9;
}

/* line 1029, ../../css/sass/pages/home/_custom.scss */
.addDepartment:hover {
  background: #41b3f9;
  opacity: 0.8;
  color: #fff;
}

/* line 1034, ../../css/sass/pages/home/_custom.scss */
.addDepartment:focus {
  color: #fff;
}

/* line 1037, ../../css/sass/pages/home/_custom.scss */
a.addDepartment:before {
  font-family: FontAwesome;
  content: "\f0c9";
  margin-right: 10px;
}

/* line 1042, ../../css/sass/pages/home/_custom.scss */
button.btn.btn-primary.static-edit-temp {
  color: #fff;
  border-radius: 00px 10px 10px 0px !important;
  font-size: 12px;
  line-height: 1.7;
}

/* line 1048, ../../css/sass/pages/home/_custom.scss */
#blank-departments p {
  display: inline-block;
  width: 49.99999%;
  padding-left: 10px;
  padding-bottom: 20px;
  min-width: 280px;
}

/* line 1055, ../../css/sass/pages/home/_custom.scss */
button.btn.btn-primary.static-edit-temp:before {
  font-family: FontAwesome;
  content: "\f040";
  margin-right: 10px;
}

/* line 1060, ../../css/sass/pages/home/_custom.scss */
#checkboxDepartmentE .radio {
  margin-left: 15px;
}

/* line 1063, ../../css/sass/pages/home/_custom.scss */
a.pull-right.custom-files-button {
  background: #41b3f9;
  border: 1px solid #41b3f9;
  color: #ffffff;
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 1087, ../../css/sass/pages/home/_custom.scss */
a:hover.pull-right.custom-files-button {
  background: #41b3f9;
  opacity: 0.8;
  border: 1px solid #41b3f9;
}

/* line 1093, ../../css/sass/pages/home/_custom.scss */
.custom-notes-button a {
  background: #41b3f9;
  border: 1px solid #41b3f9;
  color: #ffffff;
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 1118, ../../css/sass/pages/home/_custom.scss */
.custom-notes-button a:hover {
  background: #41b3f9;
  opacity: 0.8;
  border: 1px solid #41b3f9;
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  border-radius: 4px;
}

/* line 1128, ../../css/sass/pages/home/_custom.scss */
a.text-danger.pull-left.removeFiles {
  margin-left: 10px;
  margin-right: 15px;
}

/* line 1133, ../../css/sass/pages/home/_custom.scss */
.attach-button-icon:before {
  font-family: FontAwesome;
  content: "\f0c6";
  margin-right: 10px;
  font-size: 13px;
}

/* line 1140, ../../css/sass/pages/home/_custom.scss */
.save-button-icon:before {
  font-family: FontAwesome;
  content: "\f0c7";
  margin-right: 10px;
  font-size: 13px;
}

/* line 1147, ../../css/sass/pages/home/_custom.scss */
.reset-button-icon:before {
  font-family: FontAwesome;
  content: "\f0c4";
  margin-right: 10px;
  font-size: 13px;
}

/* line 1154, ../../css/sass/pages/home/_custom.scss */
.save-new-button-icon:before {
  font-family: FontAwesome;
  content: "\f01e";
  margin-right: 10px;
  font-size: 13px;
}

/* line 1161, ../../css/sass/pages/home/_custom.scss */
.add-postcode-button-icon:before {
  font-family: FontAwesome;
  content: "\f041";
  margin-right: 10px;
  color: #41b3f9;
  font-size: 16px;
}

/* line 1169, ../../css/sass/pages/home/_custom.scss */
.oauth-button-icon:before {
  font-family: FontAwesome;
  content: "\f1a0";
  margin-right: 10px;
  color: #41b3f9;
  font-size: 16px;
}

/* line 1177, ../../css/sass/pages/home/_custom.scss */
button#btnAttachLeadsFL:before {
  font-family: FontAwesome;
  content: "\f0c6";
  margin-right: 10px;
}

/* line 1183, ../../css/sass/pages/home/_custom.scss */
.new-user-button-icon:before {
  font-family: FontAwesome;
  content: "\f234";
  margin-right: 10px;
  font-size: 13px;
}

/* line 1190, ../../css/sass/pages/home/_custom.scss */
.apply-button-icon:before {
  font-family: FontAwesome;
  content: "\f058";
  margin-right: 10px;
  font-size: 13px;
}

/* line 1197, ../../css/sass/pages/home/_custom.scss */
.new-generic-button-icon:before {
  font-family: FontAwesome;
  content: "\f067";
  margin-right: 10px;
  font-size: 13px;
}

/* line 1205, ../../css/sass/pages/home/_custom.scss */
.reset-button-icon:before {
  font-family: FontAwesome;
  content: "\f00d";
  margin-right: 10px;
  font-size: 13px;
}

/* line 1212, ../../css/sass/pages/home/_custom.scss */
.cancel-button-icon:before {
  font-family: FontAwesome;
  content: "\f00d";
  margin-right: 10px;
  font-size: 13px;
}

/* line 1219, ../../css/sass/pages/home/_custom.scss */
.prev-button-icon:before {
  font-family: FontAwesome;
  content: "\f060";
  margin-right: 10px;
  font-size: 13px;
}

/* line 1226, ../../css/sass/pages/home/_custom.scss */
.next-button-icon:before {
  font-family: FontAwesome;
  content: "\f061";
  margin-right: 10px;
  font-size: 13px;
}

/* line 1233, ../../css/sass/pages/home/_custom.scss */
a#prevFS:before {
  font-family: FontAwesome;
  content: "\f060";
  margin-right: 10px;
  font-size: 13px;
}

/* line 1240, ../../css/sass/pages/home/_custom.scss */
a#nextFS:before {
  font-family: FontAwesome;
  content: "\f061";
  margin-right: 10px;
  font-size: 13px;
}

/* line 1247, ../../css/sass/pages/home/_custom.scss */
span.total-count-heading:before {
  font-family: FontAwesome;
  content: "\f00a";
  margin-right: 10px;
  font-size: 13px;
}

/* line 1253, ../../css/sass/pages/home/_custom.scss */
button#btnFilter:before {
  font-family: FontAwesome;
  content: "\f0c7";
  margin-right: 10px;
  font-size: 13px;
}

/* line 1259, ../../css/sass/pages/home/_custom.scss */
.pagination-msg a {
  padding: 6px 13px;
}

/* line 1262, ../../css/sass/pages/home/_custom.scss */
.login-box a#to-recover {
  margin-top: 10px;
}

/* line 1265, ../../css/sass/pages/home/_custom.scss */
.login-sidebar .col-md-12 {
  margin-top: 15px;
}

/* line 1268, ../../css/sass/pages/home/_custom.scss */
.login-sidebar a#from-recover {
  background: #41b3f9;
  opacity: 0.8;
  border: 1px solid #41b3f9;
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  border-radius: 4px;
  color: #fff !important;
}

/* line 1278, ../../css/sass/pages/home/_custom.scss */
.accepted-already {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* line 1282, ../../css/sass/pages/home/_custom.scss */
.accepted-already span.text-danger {
  background: #f33155;
  color: #fff;
  font-size: 22px;
  padding: 10px;
  border-radius: 5px;
}

/* line 1289, ../../css/sass/pages/home/_custom.scss */
.lead-allocations strong {
  font-size: 22px;
  line-height: 3;
}

/* line 1293, ../../css/sass/pages/home/_custom.scss */
.lead-allocations .btn {
  margin-bottom: 15px;
}

/* line 1296, ../../css/sass/pages/home/_custom.scss */
.stateTree {
  margin-left: 20px;
}

/* line 1299, ../../css/sass/pages/home/_custom.scss */
.regionalTree {
  margin-left: 40px;
}

/* line 1302, ../../css/sass/pages/home/_custom.scss */
.list-group-item strong {
  font-size: 22px;
}

/* line 1305, ../../css/sass/pages/home/_custom.scss */
.treeview li {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* line 1309, ../../css/sass/pages/home/_custom.scss */
.wizard-buttons {
  margin-top: -3rem;
  padding: 2rem 2rem;
}

/* line 1313, ../../css/sass/pages/home/_custom.scss */
.clockpicker-popover {
  z-index: 999999;
}

/* line 1316, ../../css/sass/pages/home/_custom.scss */
.calendar-events {
  cursor: pointer;
}

/* line 1319, ../../css/sass/pages/home/_custom.scss */
#calendarTask > div > i {
  text-align: center;
}

/*.fc-list-table > tbody > tr {
    background: #fff!important;
}
.fixed-table-body {
    height: auto;;
} */
/* line 1329, ../../css/sass/pages/home/_custom.scss */
#calendarTask {
  overflow: auto;
  max-height: 500px;
}

/* .table > thead:first-child > tr:first-child > th:first-child {
    position: absolute;
    display: inline-block;
    background-color: red;
    height: 100%;
    width: 100px;
}

.table > tbody > tr > td:first-child {
    position: absolute;
    display: inline-block;
    background-color: red;
    height: 100%;
    width: 100px;
}

.table > thead:first-child > tr:first-child > th:nth-child(2) {
    padding-left: 40px;
}

.table > tbody > tr > td:nth-child(2) {
    padding-left: 50px !important;
} */
/* line 1358, ../../css/sass/pages/home/_custom.scss */
.desktop-add-task-menu {
  display: block;
}

/* line 1361, ../../css/sass/pages/home/_custom.scss */
.mobile-add-task-menu {
  display: none;
}

/* line 1364, ../../css/sass/pages/home/_custom.scss */
.mobile-add-task-menu a:hover {
  color: #fff;
}

/* line 1367, ../../css/sass/pages/home/_custom.scss */
.mobile-add-task-menu a:focus {
  color: #fff;
}

/* line 1370, ../../css/sass/pages/home/_custom.scss */
.desktop-add-task-menu a:focus {
  background: #f33155 !important;
  opacity: 1 !important;
}

/* line 1374, ../../css/sass/pages/home/_custom.scss */
#tableTasks tr {
  cursor: pointer;
}

/* line 1379, ../../css/sass/pages/home/_custom.scss */
#custom-date-filter {
  display: none;
  margin-bottom: 3%;
}

/* line 1384, ../../css/sass/pages/home/_custom.scss */
.content-dropdown {
  max-height: 800%;
}

.padding-bottom-200 {
  padding-bottom: 100px;
}

#search-map {
  display: none;
}

#txtAllocatedPostals {
  width: 75%;
  float: left;
}

.btn-edit-div {
  margin-left: 10px;
}

.btn-inline-div {
  margin-top: 12px;
}


.btn-inline-edit {
  width: 39px;
}

.btn-inline-edit-cancel {
  background: #e4e7ea;
  border-color: #e4e7ea;
}

.colorpicker-div {
  margin-bottom: 10px;
  margin-top: 10px;
}

.vtabs {
  width: 100%;
}

.custom-logo {
  width: 250px;
}

.menu-logo {
  width:80px;
}

.geoLoc.disabled {
  user-select: none;
  opacity: 0.5;
  pointer-events: none;
}

.leaflet-routing-alternatives-container {
  height: 230px;
  overflow: hidden;
}

a.routing-close-btn {
  margin: 0 auto;
  width: 100%!important;
  border: none;
  background: #7ace4c!important;
  color: white!important;
  font-weight: bold;
  font-size: 16px;
}

.leaflet-container .leaflet-control-attribution, 
.mapbox-logo.mapbox-logo-true {
  display:none!important;
}

.well {
  overflow-y: scroll;
  max-height: 500px;
}

#collapseSearchMap .waves-effect {
  max-width: 100px;
  margin-bottom: 3px;
}

.leaflet-popup-tip {
  border-left: 20px solid transparent!important;
  border-right: 20px solid transparent!important;
  border-bottom: 20px solid transparent!important;
  width: 0!important;
  height: 0!important;
  border-top: 20px solid #ffffff!important;
  -webkit-transform: rotate(0)!important;
  -moz-transform: rotate(0)!important;
  -ms-transform: rotate(0)!important;
  transform: rotate(0)!important;
  background: transparent!important;
}

.sweet-alert button {
  padding:10px 25px;
}

.postcodes-list-popup {
  position: absolute;
  background: #ffffff;
  border: 1px solid #cccccc;
  padding: 10px;
  border-radius: 5px;
  top: 85px;
  left: 125px;
  max-width: 300px;
  box-shadow: 0 1px 10px rgba(0,0,0,0.2);
  word-break: break-word;
}

.leaflet-popup-content p {
  margin: 5px 0!important;
}

.check-box-spacing label {
  margin-right: 0rem;
}

#postalcode-area .assignedTo {
  position: absolute;
  background: #ffffff;
  z-index: 999;
  padding: 5px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  top: 30px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
}

.popover-content {
  word-break: break-word;
  color:#444444;
}

.swal-wide {
  width:800px;
  margin-left: 0!important;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.swal-wide input.form-control-sm {
  display: inline-block!important;
    height: auto!important;
    width: 100%!important;
}

.popover {
  max-width: 500px;
  max-height: 350px;
    overflow-y: scroll;
    z-index: 999;
}

.go-to-record {
  background-color: #d9534f!important;
}

.go-to-record a{
  color:#ffffff;
}

.fullscreen-icon { background-image: url(icon-fullscreen.png); }
.leaflet-retina .fullscreen-icon { background-image: url(icon-fullscreen-2x.png); background-size: 26px 26px; }
/* one selector per rule as explained here : http://www.sitepoint.com/html5-full-screen-api/ */
.leaflet-container:-webkit-full-screen { width: 100% !important; height: 100% !important; z-index: 99999; }
.leaflet-container:-ms-fullscreen { width: 100% !important; height: 100% !important; z-index: 99999; }
.leaflet-container:full-screen { width: 100% !important; height: 100% !important; z-index: 99999; }
.leaflet-container:fullscreen { width: 100% !important; height: 100% !important; z-index: 99999; }
.leaflet-pseudo-fullscreen { position: fixed !important; width: 100% !important; height: 100% !important; top: 0px !important; left: 0px !important; z-index: 99999; }

.leaflet-routing-container, .leaflet-routing-error {
  width: 320px;
  background-color: white;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.leaflet-control-container .leaflet-routing-container-hide {
  width: 32px;
  height: 32px;
}

.leaflet-routing-container h2 {
  font-size: 14px;
}

.leaflet-routing-container h3 {
  font-size: 12px;
  font-weight: normal;
}

.leaflet-routing-collapsible .leaflet-routing-geocoders {
  margin-top: 20px;
}

.leaflet-routing-alt, .leaflet-routing-geocoders, .leaflet-routing-error {
  padding: 6px;
  margin-top: 2px;
  margin-bottom: 6px;
  border-bottom: 1px solid #ccc;
  max-height: 320px;
  overflow-y: auto;
  transition: all 0.2s ease;
}

.leaflet-control-container .leaflet-routing-container-hide .leaflet-routing-alt, 
.leaflet-control-container .leaflet-routing-container-hide .leaflet-routing-geocoders {
  display: none;
}

.leaflet-bar .leaflet-routing-alt:last-child {
  border-bottom: none;
}

.leaflet-routing-alt-minimized {
  color: #888;
  max-height: 64px;
  overflow: hidden;
  cursor: pointer;
}

.leaflet-routing-alt table {
  border-collapse: collapse;
}

.leaflet-routing-alt tr:hover {
  background-color: #eee;
  cursor: pointer;
}

.leaflet-routing-alt::-webkit-scrollbar {
  width: 8px;
}

.leaflet-routing-alt::-webkit-scrollbar-track {
  border-radius: 2px;
  background-color: #eee;
}

.leaflet-routing-alt::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #888;
}

.leaflet-routing-icon {
  background-image: url('leaflet.routing.icons.png');
  -webkit-background-size: 240px 20px;
  background-size: 240px 20px;
  background-repeat: no-repeat;
  margin: 0;
  content: '';
  display: inline-block;
  vertical-align: top;
  width: 20px;
  height: 20px;
}

.leaflet-routing-icon-continue         { background-position: 0 0; }
.leaflet-routing-icon-sharp-right      { background-position: -20px 0; }
.leaflet-routing-icon-turn-right       { background-position: -40px 0; }
.leaflet-routing-icon-bear-right       { background-position: -60px 0; }
.leaflet-routing-icon-u-turn           { background-position: -80px 0; }
.leaflet-routing-icon-sharp-left       { background-position: -100px 0; }
.leaflet-routing-icon-turn-left        { background-position: -120px 0; }
.leaflet-routing-icon-bear-left        { background-position: -140px 0; }
.leaflet-routing-icon-depart           { background-position: -160px 0; }
.leaflet-routing-icon-enter-roundabout { background-position: -180px 0; }
.leaflet-routing-icon-arrive           { background-position: -200px 0; }
.leaflet-routing-icon-via              { background-position: -220px 0; }

.leaflet-routing-geocoders div {
  padding: 4px 0px 4px 0px;
}

.leaflet-routing-geocoders input {
  width: 303px;
  width: calc(100% - 4px);
  line-height: 1.67;
  border: 1px solid #ccc;
}

.leaflet-routing-geocoders button {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  margin: 0;
  margin-right: 3px;
  float: right;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.leaflet-routing-add-waypoint:after {
  content: '+';
}

.leaflet-routing-reverse-waypoints:after {
  font-weight: normal;
  content: '\21c5';
}

.leaflet-routing-geocoders button:hover {
  background-color: #eee;
}

.leaflet-routing-geocoders input,.leaflet-routing-remove-waypoint,.leaflet-routing-geocoder {
  position: relative;
}

.leaflet-routing-geocoder-result {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
  position: absolute;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  z-index: 1000; /* Arbitrary, but try to be above "most" things. */
}

.leaflet-routing-geocoder-result table {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 0 0 4px 4px;
  background-color: white;
  cursor: pointer;
}

.leaflet-routing-geocoder-result-open {
  max-height: 800px;
}

.leaflet-routing-geocoder-selected, .leaflet-routing-geocoder-result tr:hover {
  background-color: #eee;
}

.leaflet-routing-geocoder-no-results {
  font-style: italic;
  color: #888;
}

.leaflet-routing-remove-waypoint {
  background-color: transparent;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.leaflet-routing-remove-waypoint:after {
  position: absolute;
  display: block;
  width: 15px;
  height: 1px;
  z-index: 1;
  right: 1px;
  top: 4px;
  bottom: 0;
  margin: auto;
  padding: 2px;
  font-size: 18px;
  font-weight: bold;
  content: "\00d7";
  text-align: center;
  cursor: pointer;
  color: #ccc;
  background: white;
  padding-bottom: 16px;
  margin-top: -16px;
  padding-right: 4px;
  line-height: 1;
}

.leaflet-routing-remove-waypoint:hover {
  color: black;
}

.leaflet-routing-instruction-distance {
  width: 48px;
}

.leaflet-routing-collapse-btn {
  position: absolute;
  top: 0;
  right: 6px;
  font-size: 24px;
  color: #ccc;
  font-weight: bold;
}

.leaflet-routing-collapse-btn:after {
  content: '\00d7';
}

.leaflet-routing-container-hide .leaflet-routing-collapse-btn {
  position: relative;
  left: 4px;
  top: 4px;
  display: block;
  width: 26px;
  height: 23px;
  background-image: url('routing-icon.png');
}

.leaflet-routing-container-hide .leaflet-routing-collapse-btn:after {
  content: none;
}

.leaflet-top .leaflet-routing-container.leaflet-routing-container-hide {
  margin-top: 10px !important;
}
.leaflet-right .leaflet-routing-container.leaflet-routing-container-hide {
  margin-right: 10px !important;
}
.leaflet-bottom .leaflet-routing-container.leaflet-routing-container-hide {
  margin-bottom: 10px !important;
}
.leaflet-left .leaflet-routing-container.leaflet-routing-container-hide {
  margin-left: 10px !important;
}

.allocation-list-container .check-box-spacing label {
  margin-right: 3rem;
}

.leaflet-right .leaflet-routing-container.leaflet-routing-container-hide {
  background-image: url(icon-direction.png);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.leaflet-control-geocoder{border-radius:4px;background:#fff;min-width:26px;min-height:26px}.leaflet-touch .leaflet-control-geocoder{min-width:30px;min-height:30px}.leaflet-control-geocoder .leaflet-control-geocoder-icon,.leaflet-control-geocoder a{border-bottom:none;display:inline-block}.leaflet-control-geocoder .leaflet-control-geocoder-alternatives a{width:inherit;height:inherit;line-height:inherit}.leaflet-control-geocoder .leaflet-control-geocoder-icon:hover,.leaflet-control-geocoder a:hover{border-bottom:none;display:inline-block}.leaflet-control-geocoder-form{display:none;vertical-align:middle}.leaflet-control-geocoder-expanded .leaflet-control-geocoder-form{display:inline-block}.leaflet-control-geocoder-form input{font-size:120%;border:0;background-color:transparent;width:246px}.leaflet-control-geocoder-icon{border-radius:4px;width:26px;height:26px;border:none;background-color:#fff;background-image:url(images/geocoder.png);background-repeat:no-repeat;background-position:center}.leaflet-touch .leaflet-control-geocoder-icon{width:30px;height:30px}.leaflet-control-geocoder-throbber .leaflet-control-geocoder-icon{background-image:url(images/throbber.gif)}.leaflet-control-geocoder-form-no-error{display:none}.leaflet-control-geocoder-form input:focus{outline:0}.leaflet-control-geocoder-form button{display:none}.leaflet-control-geocoder-error{margin-top:8px;margin-left:8px;display:block;color:#444}.leaflet-control-geocoder-alternatives{display:block;width:272px;list-style:none;padding:0;margin:0}.leaflet-control-geocoder-alternatives-minimized{display:none;height:0}.leaflet-control-geocoder-alternatives li{white-space:nowrap;display:block;overflow:hidden;padding:5px 8px;text-overflow:ellipsis;border-bottom:1px solid #ccc;cursor:pointer}.leaflet-control-geocoder-alternatives li a,.leaflet-control-geocoder-alternatives li a:hover{width:inherit;height:inherit;line-height:inherit;background:inherit;border-radius:inherit;text-align:left}.leaflet-control-geocoder-alternatives li:last-child{border-bottom:none}.leaflet-control-geocoder-alternatives li:hover,.leaflet-control-geocoder-selected{background-color:#f5f5f5}.leaflet-control-geocoder-address-context{color:#666}
/*# sourceMappingURL=Control.Geocoder.min.css.map */

.filters.white-box.saved-filter {
  margin-bottom: 0;
}

.mobile-view {
  display:none;
}

.white-box.table-full-width .pull-right:not(.pagination):not(.label-success) {
  margin:10px;
}

.white-box.table-full-width .pull-right:not(.pagination):not(.label-success) .pager {
  display:none;
}

.fixed-table-container {
  height:auto!important;
  border:none!important;
}

.fixed-table-pagination {
  margin: 0 20px;
}


 form.form-horizontal.form-material {
  z-index: 99999;
}

.custom-title {
  width: 100%!important;
    margin: 0 -15px;
}

.fixed-table-container tbody tr:first-child td,
.fixed-table-header-columns tr:first-child .th-inner {
  min-width: 150px;
}

.fixed-table-body {
  padding-bottom: 200px;
}

.fixed-table-body-columns tr .open>.dropdown-menu {
  position: absolute!important;
}

.fixed-table-body-columns {
  z-index: 200;
  height: calc(100% - 100px)!important;
}



.columns.columns-right.btn-group.pull-right .dropdown-menu li:first-child,
.columns.columns-right.btn-group.pull-right .dropdown-menu li:nth-child(2) {
  display:none;
}

.bootstrap-table .table thead>tr>th {
  width:100%!important;
  min-width:150px!important;
  width:150px!important;
}

table.fixedtable {
  table-layout: fixed;
}

.bootstrap-table .table>tbody>tr>td {
  line-height: 17px;
}

.list-unstyled.arrow {
  width: 80%;
  display: block;
  margin: 20px auto;
  list-style: none;
  float: none!important;
}

/* Responsiveness */

@media only screen and (max-width: 640px) {

  .leaflet-routing-container {
      margin: 0 !important;
      padding: 0 !important;
      width: 100%;
      height: 100%;
  }

  .panel .panel-body .col-sm-12 .fixed-table-container {
      margin: 0 -30px;
      border: 1px solid #ddd!important;
      padding-bottom: 0!important;
  }

  .panel.panel-default:last-child .panel-body .col-sm-12.col-md-12.col-xs-12 {
    overflow-x: scroll;
  }

  .tab-pane a {
      display: block;
      margin: 5px 0;
  }

  .control-panel.white-box {
    padding:0;
  }
  .button-heading-container {
      margin: 10px 0;
  }

  table.fixedtable {
    table-layout: auto;
  }
}

@media only screen and (max-width: 480px) {

  .fixed-table-pagination .pagination a {
    padding:5px 9px;
  }

  .fixed-table-header-columns, .fixed-table-body-columns {
    display:none!important;
  }

  .fixed-table-body-columns {
      height: calc(100% - 150px)!important;
  }

  .leaflet-routing-container-hide .leaflet-routing-collapse-btn {
    display:none!important;
  }

  .leaflet-routing-collapse-btn {
      top: -4px;
      left: 6px;
  }

  .navbar-top-links .dropdown-user {
    right:-30px!important;
  }

  .dropdown .mailbox {
    left:-30px!important;
  }

  .vtabs .col-md-12.tab-content {
    padding:0;
  }

  .tab-content>#home3.tab-pane form .col-md-12,
  .tab-content>#home2.tab-pane form .col-md-12 {
      padding: 0;
  }


  .bg-title .btn {
      display: inline-block;
      margin: 5px;
      font-size: 10px;
      float:none!important;
  }

  .saved-filter {
      height: 337px;
      overflow: auto;
      height: auto;
  }

  a.dropdown-toggle.profile-pic {
      font-size: 12px;
      padding: 0 10px;
  }
  
  #page-wrapper .container-fluid {
    padding: 0;
  }

  #allpermissions h2 {
      display: none;
  }

  .little-menu {
    position: relative;
    width: auto!important;
    overflow: hidden;
  }
  
  .panel .panel-heading {
    font-size: 14px!important;
    padding: 10px!important;
    text-align: center;
  }
  
  .panel .panel-heading .pull-right {
    position: absolute;
    right: 30px;
    top: 10px;
  }

  .panel.panel-default .panel-heading .pull-left,
  .panel.panel-default .panel-heading .pull-right {
      display: block;
      float: none!important;
      position: initial;
  }
  
  .leadsinfo1 .white-box.analytics-info {
    min-height: auto!important;
    padding: 10px;
    margin-bottom: 10px;
  }
  
  .bg-title {
    padding:10px!important;
    margin: 0!important;
  }
  
  .bg-title h4 {
    margin: 0 10px!important;
  
  }
  
  .button-heading-container {
    display: block!important;
    margin: 5px 0;
  }
  
  .button-heading-container a.btn.btn-block.btn-info {
    width: 100%;
    display: block;
    margin: 0 auto!important;
  }
  
    .top-left-part {
      display:none;
    }
  
    .navbar-top-links > li > a {
      padding: 0 8px;
    }

    .margin-top {
        margin-top: 150px;
    }

    .fixed-table-container {
      height: auto!important;
      margin: 20px 30px;
      padding-bottom: 60px!important;
      top: 10px;
    }

    .allocatetablefix .fixed-table-container {
        padding-bottom: 0!important;
        border: 1px solid #ddd!important;
        margin: 15px 0;
    }

    #page-wrapper {
      padding-bottom: 20px;
    }

    .panel .panel-heading .panel-title {
      font-size: 14px;
    }

    .bg-title .pull-right {
        float: none!important;
    }

    .bg-title .btn:before {
        display: none;
    }

    

    #txtGlobalEmailSignatureE .input-group-btn {
      display: block;
    }

    .form-group {
        margin-bottom: 10px;
    }

    #page-wrapper .container-fluid {
        padding: 0;
    }

    .minheightfranchisefix .fixed-table-container {
      margin:0!important;
    }

    .minheightfranchisefix .fixed-table-body {
      min-height: auto;
    }

    .fixed-table-container tr .dropdown-menu {
      position: relative;
      z-index: 999999;
      float: none!important;
    }

    #collapseSearchMap {
      width: 50%;
    }

    .desktop-view {
      display:none!important;
    }

    .mobile-view {
      display:block!important;
    }

    .saved-filter {
        height: auto;
    }
  }

  @media only screen and (max-width: 992px) and (min-width: 481px) {

    .fixed-table-body-columns {
        height: calc(100% - 135px)!important;
    }

    .panel-body .fixed-table-container {
      margin:0;
      border: 1px solid #ddd!important;
    }

    .logo b {
      max-height: 100%;
  }

    .mce-panel .input-group-btn {
      display: block;
    }

    .vtabs .tab-content {
      padding:0;
    }

    .panel .panel-heading .panel-title {
      font-size: 14px;
    }

    #page-wrapper {
      padding-bottom: 20px;
    }

    #allpermissions h2 {
      display: none;
  }

  .little-menu {
    position: relative;
    width: auto!important;
    overflow: hidden;
  }
  
  .panel .panel-heading {
    font-size: 14px!important;
    padding: 10px!important;
    text-align: center;
  }
  
  .panel .panel-heading .pull-right {
    position: absolute;
    right: 30px;
    top: 10px;
  }

  .panel.panel-default .panel-heading .pull-left,
  .panel.panel-default .panel-heading .pull-right {
      display: block;
      float: none!important;
      position: initial;
  }

    .fixed-table-container {
      height: auto;
    }

    .bg-title .pull-right {
      float:none!important;
      display: inline-block;
    }

    .bg-title .btn {
        width: auto;
        display: inline-block;
        margin: 5px;
        font-size: 12px;
    }

    .bg-title {
        width: 100%!important;
        margin-left: -15px;
        margin-right: -15px;
    }

    .button-heading-container {
      display:block;
      margin: 10px 0;
    }

    .panel .panel-heading .pull-right {
        position: absolute;
        top: 10px;
        right: 30px;
    }

    .button-heading-container a.btn.btn-block.btn-info {
        max-width: 100%;
        margin-left: 0;
    }

    .leadsinfo1 .white-box.analytics-info {
        min-height: auto;
    }

    .fixed-table-container {
      height: auto!important;
      margin: 0 15px;
      padding-bottom: 60px!important;
    }
  }