a {
    color: #1ab393;
}
a:hover {
    color: #18a689; 
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.flex-end {
  display: flex;
  align-items: end;
}

.display-inline {
  display: inline;
}

.display-block {
  display: block;
}

.display-flex {
  display: flex;
}

.border-rad-25 {
  border-radius: 25px;
}


.align-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.height-100 {
  height: 100%
}

.width-110 {
  width: 110%;
}

.no-padding {
  padding: 0px;
}

.padding-05 {
  padding: .5rem !important;
}

.no-margin {
  margin: 0px;
}

.m-top-05 {
  margin-top: .5rem;
}
.border-bottom {
  border-top: none;
  border-bottom: solid 1px gray;
  border-left: none;
  border-right: none;
}

.border-bottom:focus {
  border-bottom: solid 2px #1ab393 !important  ;
  outline: none !important;
    /*outline: -webkit-focus-ring-color auto 150px !important;*/
}

.width-80 {
  width: 80%;
}

.min-width-50p {
  min-width: 50px;
}

.border-radius-05 {
  border-radius: 5px;
}

.btn-right-radius {
    border-top-right-radius: 3px !important;
    border-bottom-right-radius: 3px !important;
}

.social-shadow {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.h-30 {
  height: 30px;
}

.min-height-44 {
  min-height: 44px;
}

.min-height-33 {
  min-height: 33px;
}

.strong-600 {
  font-weight: 600;
}

.primary-color {
  color: #1ab393 !important;
}

.primary-color:hover {
  color: #18a689 !important;
}

@media (max-width: 768px) {
  .no-padding-top-mobile {
    padding-top: 0px !important;
  }
}

.groups-grid input[type="radio"] {
  display: none !important;
}

label {
  border: none;
  padding: 10px;
  display: block;
  position: relative;
  cursor: pointer;
}

label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: none;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}

label img {
  height: 100px;
  width: 100px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}

:checked + label {
  border-color: #ddd;
}

:checked + label img {
  transform: scale(0.9);
  box-shadow: 0 0 5px #333;
  z-index: -1;
}

.add-icon {
     margin: auto auto 2rem; 
     width: 76px; 
     height: 76px; 
     line-height: 76px; 
     text-align: center; 
     font-size: 32px; 
     border: 2px solid #818a91; 
     color: #55595c; 
}
.ibox-title {
    padding: 10px 10px 8px 15px;
}

.contacts-grid {
  -moz-column-count: 2;
  -moz-column-gap: 20px;
  -webkit-column-count: 2;
  -webkit-column-gap: 20px;
  column-count: 2;
  column-gap: 20px;
  padding: 0; 
}

.contacts-grid > li {
  list-style-type: none;
  -webkit-column-break-inside: avoid;
}

.contacts-grid img {
  width: 32px;
  height: 32px;
}


.bg-transparent {
  background-color: transparent;
}

.sticky-top {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;

}

.mini-navbar .sticky {
  width: 100% !important;
}

.body-small .sticky {
  width: 100% !important;
}


/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: calc(100% - 220px);
  z-index: 65;
}

.hidden {
  display: none;
}


/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + div {
  padding-top: 60px;
}

.p-top-60 {
  padding-top: 73px !important;
}

/* Container needed to position the overlay. Adjust the width as needed */
.profile-image {
  position: relative;
}

/* The overlay effect (full height and width) - lays on top of the container and over the image */
.profile-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 96px;
  width: 96px;
  opacity: 0;
  transition: .3s ease;
  background-color: grey;
  border-radius: 50%;
}

/* When you mouse over the container, fade in the overlay icon*/
.profile-image:hover .profile-overlay {
  opacity: .2;
}

/* The icon inside the overlay is positioned in the middle vertically and horizontally */
.overlay-icon {
  color: white;
  font-size: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

/* When you move the mouse over the icon, change color */
.fa-edit:hover {
  color: #eee;
}

.color-black {
  color: black;
}
@media (min-width: 992px) {
  .modal-xl {
    max-width: 992px !important;
  }
  .modal-xl .modal-content {
    min-width: 992px !important;
  }
}

img {
  max-width: 100% !important; /* This rule is very important, please do not ignore this! */
}
@media (min-width: 768px) {
  .float-right-md {
      float:  right;
  }
}

.profile-image {
  width: 96px;
  height: 96px;
  border-radius: 50%;
}

.hover-cursor:hover {
  cursor: pointer;
}

.border-collapse {
  border-collapse: collapse !important;
}

@media (max-width: 768px) {
  .hide-sm {
      display: none;
  }
}

.editMode-bg {
  background-color: #e7f1ef;
}

.primary-bg {
  background-color: #1ab393;
  color: #fff !important; 
}
.hidden {
  display: none;
}

/*.wizard .content {
  min-height: 320px !important;
}

.wizard > .content > .body label {
  display: block !important;
}
*/
.note-editor {
  /*max-height: 320px !important;*/
  border-radius: 5px;
}

.note-editing-area {
  /*height: 268px;*/
}

.note-editable {
  margin-top: 6px;
  padding: 0;
  height: 122px;
}

.actions > ul .display-inline {
  vertical-align: -webkit-baseline-middle;
}
.actions > ul {
    justify-content: flex-end;
    display: flex;
}

.active-border {
  border: 1px solid #dee2e6 !important; 
}

.note-toolbar {
    /*position: relative;*/
     z-index: 0 !important; 
}

.wizard > .content > .body {
    position: relative !important;
}

.middle-box {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;    
}

.img-md {
  width: 80px;
  height: 80px;
}

@media (min-width: 768px) {
  .md-float-left {
      float: left;
      text-align: center;
      display: block;
  }
}
@media (min-width: 768px) {
  .group-profile {
      border: solid 1px #a7b1c2;
      border-radius: 5px;
      margin-right: 12px;
  }
}

.m-top-25 {
  margin-top: 25px;
}

.m-bot-5 {
  margin-bottom: 5px;
}

.font-weight-400{
  font-weight: 400;
}

.m-left-05 {
  margin-left: 5px;
}
.p-left-20 {
  padding-left: 20px;
}
.p-left-10 {
  padding-left: 10px;
}

.p-1-rem {
  padding: 1rem;
  padding-bottom: 43px;
}

.justify-center {
      display: flex;
    justify-content: center;
}

.m-top-2 {
  margin-top: 2rem;
}

.m-top-30px {
  margin-top: 30px;
}

.nav-link {
  color: #989898;
} 
.clients-selection .nav-tabs {
  padding-left: 12px;
}
.clients-selection .nav-tabs .nav-link.active {
  color: #fff !important;
  background-color: #1ab393;
}

.tabs-container .nav-tabs{
  border-bottom: none;
}

.m-bot-25 {
  margin-bottom: 25px;
}

.align-items-center{
  align-items: center;
}

.width-100 {
  width: 100%;
}

.m-bot-0 {
  margin-bottom: 0;
}

.m-top-0 {
  margin-top: 0;
}

.justify-space-between {
  justify-content: space-between;
}

.filter-input {
  height: 41px;
  width: 155px;
  display: inline;
}

.heading-light {
  color: #DFE4ED;
}

.heading-lg {
  font-size: 1.2rem;
}

.sidebar-profile-picture {
  width: 48px;
  height: 48px;
}

.col-white {
  color: #fff;
}

.md-skin .page-heading {
  padding: 12px;
}

.page-heading h2 {
  margin-top: 12px;
  margin-bottom: 10px;
  float: left;
}

@media (max-width: 425px) {
  .hide-mobile {
      display: none;
  }
}

.float-r {
  float: right;
}

.actions-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  float: right;
}

.dropdown-menu > li > a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1ab393;
}

/*@media (max-width: 768px) {
  .actions-container span {
      display: none;
  }
}
*/
@media (max-width: 768px) {
  .md-skin .wrapper-content {
      padding: 18px 0 40px;
  }
}

.page-title {
  color: #fff;
  margin: 8px 0 0 6px;
  position: absolute;
  font-size: 22px;
  font-weight: 300;
}

.navbar-fixed-top {
  min-height: 61px;
}

.profile-pic-rounded{
  width:30px; 
  height: 30px;
  border-radius: 50%;
}

.navbar-top-links .dropdown-alerts {
    margin-left: auto;
}

.profile-pic-dropdown {
  padding: 15px 10px !important;
}

.navbar-top-links .dropdown-alerts i {
      color: #1ab393;
}

.contact-box {
  border-radius: 5px;
}

.contact-box .contact-box-footer {
  border-radius: 0 0 5px 5px;
}

.md-skin .contact-box {
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.dropzone {
  min-height: 140px !important;
  border: 1px dashed #1ab393 !important;
  background: white !important;
  padding: 20px 20px !important;
}
.text-start {
  text-align: start;
}

.media-header {
  text-align: start;
}

.media-header >* {
  display: inline;
}

.btn-upload {
    padding: 3px 8px;
    margin: 0 0 8px 8px;
}

.title-upload {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.2rem;
    margin-top: 5px;
    font-weight: 600;
}
.images-container {
    margin: 0px;
    padding: 15px;
    background-color: #e7f1ef;
    text-align: center;
}

.image-item {
}
.image-item > div {
    display: inline-block;
    margin: 5px;
}

.editor-heading {
    text-align: center;
    max-width: 420px;
    background-color: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    margin: 0 auto 30px auto;
    padding-top: 12px;

}

.editor-selection {
    margin: 0 auto;
}

.editor-select-item {
    display: inline-block;
    margin:10px;
}

.editor-heading .image-holder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-size: cover;
    margin: 0 auto;
}

.post-heading{
    padding: 5px;
    background-color: #fff;
    border: 1px solid #ccc;
}

.post-heading .fa-window-minimize {
    border: solid 1px grey;
    border-radius: 5px;
    padding: 1px 2px 1px 2px;
    float: right;        
}

.post-heading .fa-plus {
    border: solid 1px grey;
    border-radius: 5px;
    padding: 2px 2px 1px 2px;
    float: right;        
}

.editor-body {
    border-radius: 5px;
    border: solid 1px #1ab393 !important;
}

.editor-body .ibox-content {
    padding: 0;
    border-bottom-left-radius: 5px; 
    border-bottom-right-radius: 5px; 

}
.clients-selection .tox-tinymce {
  border: none;
}

.border-bottom .ibox-title {
    border-radius: 5px;
}

.ibox-title.active {
    border-top-color: #1ab393;
    border-right-color: #1ab393;
    border-left-color: #1ab393;
}

.tox-tinymce.active {
    border-bottom-color: #1ab393;
    border-right-color: #1ab393;
    border-left-color: #1ab393;
}

.post-title.minimized {
    border-radius: 5px;
}
.concept-post {
    border: solid 5px #f8ac59;
}
.saved-icon {
    border: solid 3px #f8ac59;
    border-radius: 25px;
    padding: 3px;
}

.group-btns{
    align-items: center;
}

.grid .ibox {
    margin-bottom: 0;
}

.grid-item {
    margin-bottom: 25px;
    width: 300px;
}   

.mce-content-body img {
    width: 100% !important;
} 

.post-content .loading {
  margin-top: -44px; 
  padding-bottom: 4px;
}
.social-footer .social-comment img {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
}
.social-avatar img {
    border-radius: 50%;
}

@media (min-width: 768px) {
  .navbar-static-side {
      z-index: 1001;
      width: 220px;
  }
}
.scroll-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.scroll-item {
    display: inline-block;
    min-width: 80px;
}

.clients-selection {
    padding-top: 8px;
    background-color: #f3f3f4;
}

.clients-selection .nav-tabs .nav-link {
    border: none; 
}

.clients-selection .panel-body {
    padding: 0;
    border:none;
    border-top: solid 12px #1ab393 !important;
    border-radius: 0 !important;
}

.editor-body {
    overflow: hidden;
}

.post-content .content .tox-tinymce {
  border-left: none;
  border-right: none;
}

.btn-publish {
    padding: 3px 8px;
    margin: 2px 0 2px 2px;
}

.minimize {
  margin-top: 3px;
  margin-left: 5px;
}

.navbar-static-side {
  background-color: #fff;

}
.swal2-icon.swal2-info {
    border-color: #19c09f !important;
    color: #009284 !important;
}

.post-title .profile-pic-rounded {
  width: 36px;
  height: 36px;
}

.editor-heading #clients-selection {
  min-height: 12px;
}

.loading-comment .sk-spinner {
  display: inline-block !important;
  z-index: 1;
  position: absolute;
  left: 40%;
}

.loading-comment .input-group  * {
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
  pointer-events: none;
}

/*.social-body {
  max-height: 140px;
  overflow:hidden;
}
*/
.grid-item {
  display: inline-block;
}

.anchor {
    display: block;
    position: relative;
    top: -65px;
    visibility: hidden;
}
.pairingsmodal .nav > li > a {
  border: none;
}
.pairingsmodal .nav > li > a.active {
  background-color: #1ab393;
  color: #fff;
}
.pairingsmodal .nav > li > a.active > i {
  color: #fff;
}

.groups-list {
  list-style: none;
  text-align: center;
}

.groups-list > li {
  display: inline-block;
}

.icon-error {
  color: #f27474;
}

.icon-success {
  color: #1ab393;
}

.mini-navbar .notebook-name {
  display: none;
}

.ibox, .ibox-content, .ibox-title {
  border-radius: 5px;
}

.social-feed-box, .social-footer {
  border-radius: 5px;
}

.slimtext{
  font-weight: 400;
}

.group-client-name {
  margin-top: 10px;
  color:#1ab393;
  font-weight: 600;
  display: inline-block !important;
}
.group-client-name:hover {
  color:#18a689;
}

.m-l-xs {
  margin-left: 5px;
}
.post-modal {
  background-color: #f3f3f4; 
}

.post-modal .read-group-post {
  display: none;
}

.modal-body {
  padding: 1rem;
}
.swal2-container {
    z-index: 2600 !important;
}

.col-4 .post-body {
  overflow-y: hidden;
  max-height: 260px;
  position: relative;
}

.post-body-overflow:hover {
  cursor: pointer;
}

.col-4 .post-body-overflow:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient( rgba(255, 255, 255, 0) 85%, rgba(255, 255, 255, 1) 100% );
}

#postModal .modal-content {
  border:none;
  background-color: #ffffff00;
  box-shadow: none;
}

#postModal .modal-body {
  border:none;
  background-color: #ffffff00;
}

#writeReportModal {
  overflow-y: auto;
}

.min-height-100 {
  min-height: 100px;
}

.text-end {
  text-align: end;
}

.empty-posts{
  text-align: center;
}

@media (min-width: 769px) {
  .empty-posts{
    margin-top: 170px;
  }
}

.h-32 {
  height: 32px;
}

.rounded-circle-sm {
  width: 42px;
  height: 42px;
}

.team-members > .col > a {
    display: table;
    text-align: center;
    min-width: 48px;
    margin: 0 auto;
}

.team-members > .col > a > img{
    margin: 0 auto 5px auto;
}

.team-members > .col > a >* {
    display: table-footer-group;
    vertical-align: middle;
}

.team-members {
    display: flex;
    overflow-x: auto;
}
.team-members::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.team-members::-webkit-scrollbar
{
    height: 9px;
    background-color: #F5F5F5;
    border-radius: 10px;
}

.team-members::-webkit-scrollbar-thumb
{
    border-radius: 5px;
    background-color: #11c2a0;
}

.group-title {
    padding: 15px 30px 25px 30px;
    text-align: center;
}
.group-title > h5 {
    /*margin: 8px 0 0 35px !important;*/
    font-size: 28px !important;
    font-weight: 300 !important;
}
.group-content {
    padding-top: 0;
}
.group-content > .team-members {
    margin-top: 0;
}

.margin-0-auto {
  margin: 0 auto;
}

@media (min-width: 426px) {
    .footer{
        display: none;
    }
}
.footer-styled {
    padding-top: 4px !important;
    height: 45px !important;
}

.footer-styled .col-4 {
    height: 29px;
    text-align: center;
    font-size: 26px;
    color:  #1ab393 !important;
}

#search-input {
    position: absolute;
    top: -60px;
    left: 26px;
    display: none;
    box-shadow: 0px 2px 10px -1px grey;
    width: 85%;
}

.btn-dark {
  color: inherit;
  background: white;
  border: 1px solid #afafaf;
}

.btn-dark:hover {
  color: #fff;
  background-color: #464646;
  border-color: #464646;
}

.contact-box.center-version > a img {
    width: 120px;
    height: 120px;
}

.md-skin .nav > li > a {
    padding: 14px 20px 14px 12px;
}
.md-skin .nav-second-level li a {
    padding: 7px 10px 7px 16px;
}

.page-warning  {
  text-align: center;
  margin: 150px auto;
}

.text-dark {
  color:#676a6c;
}
.text-dark:hover {
  color:#000;
}

.dark-bg {
  background-color: #18a689;
  color: #fff !important;
}


.warning-color {
  color: #f27474;
}

.clients-selection .nav-link .rounded-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}
.group-client-name {
    font-size: 16px !important;
    font-weight: 500;
}
.delete-comment {
    font-size: 14px;
}

.concept-post-active {
  border: solid 1px #f8ac59;
}

.a.text-primary:focus, a.text-primary:hover {
    color: #333333!important;
}

.group-photo {
  height: 52px;
  width: 52px;
}

.m-b-xs {
  margin-bottom: 5px;
}

.menu-icon {
  width: 28px;
  height: 28px;
  margin: 0 2px;
}
.menu-icon:hover {
  cursor: pointer;
}

.posts-columns-icons {
  margin-top: 3px;
  margin-right: 10px;
}

.padding-15 {
  padding: 15px;
}

.stripe {
  border-width: 4px;
  border-color: #1ab393;
  width: 90%;
}

.md-skin .social-feed-box {
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);  
}

.social-avatar {
    padding: 8px 15px 8px 15px;
}

.group-post-bg {
    background: #e7f1ef !important;
}

.boxed-layout > #wrapper {
  box-shadow: none !important;
}

.color-white {
  color: #fff;
}

.m-t-10 {
  margin-top: 10px !important;
}

.md-skin .nav-third-level li a {
  padding-left: 28px; 
}

.header-search {
    position: absolute;
    margin-left: -35px;
    margin-top: 10px;
    font-size: 20px;
}

.recipient > .media-body {
  display: inline-block;
}

@media (max-width: 1200px) {
  .toggle-boxed {
    display: none;
  }
}

.error-color {
  color: #f27474;
  border-color: #f27474;
}
.error-color:hover {
  color: #fff;
  background-color: #f27474;
}

.form-control-sm {
    background-color: #FFFFFF;
    background-image: none;
    border: 1px solid #e5e6e7;
    border-radius: 1px;
    color: inherit;
    padding: 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}
.form-control-sm:focus {
    border-color: #1ab393;
}

.rounded-image {
    height: 60px;
    width: 60px;
    margin-right: 10px;
    border-radius: 50%;
}

.session-bg {
  background-color: #e7f1ef !important;
}

.fc-today {
  background-color: #e7f1ef !important;
}


.session-bg > .ibox-title {
  background-color: inherit;
}

.session-bg > .ibox-content {
  background-color: inherit;  
}

.upload-btn {
  padding: 10px 14px;
}

.post-image-item {
  border: solid 1px #1ab393;
  border-radius: 5px;
}

.image-selected {
   -moz-box-shadow:    inset 0 0 6px #009688;
   -webkit-box-shadow: inset 0 0 6px #009688;
   box-shadow:         inset 0 0 6px #009688;
}

.lightBoxGallery > a > img {
  height: 100px;
  width: 100px;
  border-radius: 5px;
}

.lightBoxGallery > a > img:before,.lightBoxGallery > a > img:after{
    content:'';
    position:absolute;
    width:36px;
    height:4px;
    background-color:white;
    border-radius:2px;
    top:16px;
    box-shadow:0 0 2px 0 #ccc;
}

.lightBoxGallery > a > img:before{
    -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    transform:rotate(45deg);
    left:2px;
}
.lightBoxGallery > a > img:after{
    -webkit-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    transform:rotate(-45deg);
    right:2px;
}
.center-center {
    position: absolute !important;
    top: calc(50% - 100px);
    left: calc(50% - 100px);  
}

.group-attachments {
/*  padding: 10px;
  display: none;
*/}

.remove-uploaded-image {
    position: absolute;
    right: 5px;
    top: 5px;  
    border: solid 1px #cccccc;
    padding: 0px 5px;
    border-radius: 130px;    
}
.remove-uploaded-image:hover {
  color: white;
  background-color: rgb(242, 116, 116);
}
.remove-uploaded-image:hover {
  cursor: pointer;
}
.remove-uploaded-file {
    border: solid 1px #cccccc;
    padding: 0px 5px;
    border-radius: 130px;  
    margin-left: 5px;  
}
.remove-uploaded-file:hover {
  color: white;
  background-color: rgb(242, 116, 116);
}
.remove-uploaded-file:hover {
  cursor: pointer;
}
.upload-post-image {
  background-size: cover; 
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  margin: 0 auto;
}
.upload-session-image {
  background-size: cover; 
  border-radius: 5px;
  overflow: hidden;
  width: 60px;
  height: 60px;
  position: relative;
  display: block;
}
.border-radius-5 {
  border-radius: 5px;
}
.cstm-profile-pic {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    margin-right: 10px;
}
.starred {
    background:#1ab393;
    color: white;
}
.starred:hover {
    color: #18a689;
}
.side-menu li {
  display: block;
}

@media (max-width: 768px) {
  .tab-hide {
    display: none;
  }
}
@media (max-width: 1024px) {
  .lap-hide {
    display: none;
  }
}

@media (min-width: 769px) {
  .tab-show {
    display: none;
  }
}

@media (min-width: 426px) {
  .md-hide {
    display: none;
  }
  .footer-create {
    display: none;    
  }
  #open-post {
    display: none;
  }

}
#open-post {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.open-post {
    height: 50px;
    width: 50px;
    display: block;
    background: #1ab393;
    padding: 15px 8px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    border-radius: 50%;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    }
#footer-write-post {
    position: fixed;
    bottom: 20px;
    right: 81px;
    z-index: 1000;                
    display: none;
}
#footer-post-gallery {
  position: fixed;
  bottom: 20px;
  right: 135px;
  z-index: 1000;
  display: none;
}

#footer-post-video {
  position: fixed;
  bottom: 20px;
  right: 189px;
  z-index: 1000;
  display: none;
}
#footer-open-gallery {
  position: fixed;
  bottom: 20px;
  right: 243px;
  z-index: 1000;
  display: none;
}
#footer-open-incidents {
  position: fixed;
  bottom: 20px;
  right: 298px;
  z-index: 1000;
  display: none;
}
.footer-add {
    height: 45px;
    width: 45px;
    display: block;
    background: #1ab393;
    padding: 7px 9px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.modal{
    overflow: auto;
}
/*.body-small .sidebar-collapse li {
  background:#2f404f;
    color: #a7b1c2;
    font-weight: 600;
    display: block;  
}
.body-small .sidebar-collapse li.active {
  background:#293846;
}
.body-small .sidebar-collapse li.active > a {
  color: #fff;
}
.body-small .sidebar-collapse li > a {
    color: #a7b1c2;
}
.body-small .sidebar-collapse li > a:focus {
    color: #fff !important;
}
.body-small .nav-second-level {
    background-color: #293846 !important;
}
.body-small .sidebar-collapse .nav-second-level li {
    background:#293846;
    color: #a7b1c2;
    font-weight: 600;
    display: block;  
}
.body-small .navbar-default .nav > li > a:hover, .body-small .navbar-default .nav > li > a:focus {
    font-weight: 700;
    color: #a7b1c2;
}
.body-small .navbar-static-side {
  background-color: #4e5963;
}
/*.body-small .navbar-static-side, .body-small #wrapper #page-wrapper {
    margin-top: 61px !important;
}
*/
*/.body-small .count-info {
      padding: 14px 0px 14px 12px !important;
}
.modal-content > div >div > div > .dismiss-modal {
  display: block !important;
}
button.bg-primary:hover,button.bg-primary:focus {
      background-color: #18a689!important;
}

.form-control-title {
  width: 100%;
  border:none;
  font-size: 18px;
  text-align: center;  
}


.form-control-title:focus {
  outline: none;
  /*border-bottom: 2px solid #1ab393;*/
  /*transition: border-bottom 2s;*/
}

.calendar .form-control {
  border-radius: 5px;
}

.calendar-i  {
  font-size: 25px;
  float: right;
  margin-top: 5px;
}

.calendar-body textarea {
  min-height: 35px;
  height: 35px;
}

.calendar-body textarea:focus {
  min-height: 70px;
  background-color: #f1f1f1;
}

.calendar-body input:focus {
  background-color: #f1f1f1;
}

.form-control-title-span {
  position: absolute;
  content: '';
  height: 40px;
  height: 3px;
  background: #1ab393;
  transition: all 0.5s linear;
  width: 0;
  bottom: -5px;  
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  left: 50%; /*Add this*/
  transform: translate(-50%, 0); /*Add this*/
}

.form-control-title:focus ~ .form-control-title-span {
  width: 100%;
}

.selected-user {
  display: inline-block;
  border-radius: 2px;
  background-color: #f1f1f1;
  padding: 4px;
  margin: 4px;
}

.remove-user {
  padding: 1px 4px;
  border: 1px solid grey;
  border-radius: 10px;
  font-size: 10px;
}
.remove-user:hover {
    color: white;
    background-color: rgb(242, 116, 116);
    cursor: pointer;
}
.swal2-content a:focus {
  outline: none;
}
.event-title {
    color: #595959;
    font-size: 1.875em;
    font-weight: 600;  
}
.customSwalBtn{
    border: 0;
    border-radius: 3px;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
    margin: .25em;
}
.customCancelBtn {
    background-color: #aaaaaa;
}    
.customCancelBtn:hover {
    background-color: #9e9e9e;
}    
.client-event {
  border-color: #18a689 !important;
  background-color: #18a689 !important;
}

.spacer-10  {
  padding: 10px;
}

.post-type-bg:hover {
  cursor: pointer;
  background-color: #e7f1ef !important;
}

.str-ta {
    width: 100%;
    border-radius: 5px;
}

.str-container {
  padding: 20px;
}

.export-form-post {
  float: right; 
  margin: 10px 5px 0 2px;  
}

.m-top-10 {
  margin-top: 10px;
}

#uploadImageModal {
    z-index: 2060 !important;
}

.active-alert {
  border: solid 3px #f8ac59;
}

.careplan-input {
  margin-bottom: 35px;
  border-radius: 5px;
}

.careplan-input > h3 {
  margin-top: 10px;
}

.careplan-input > textarea {
  margin-bottom: 10px;
}
.careplan-feedback > textarea {
  margin-bottom: 10px;
}

@media (min-width: 769px) {
  .careplan-feedback {
    margin-left: 40px;
  }
}

.careplan-feedback {
  background: #ececec;
  margin-bottom: 35px;
  border-radius: 5px;  
}

.careplan-card {
    background-color: #1ab393 !important;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    padding: 20px;
}

@media (min-width: 1400px) {
  .modal-xxl {
    max-width: 1240px !important;
  }
}

#postModal {
  z-index: 2051 !important;
}

textarea {
  min-height: 45px;
}

.post-goal {
  display: inline-block;
}

.post-goal > div {
  width: 100%;
  border: solid 1px #b5b5b5;
  border-radius: 5px;
  background: white;
  display: inline-block; 
  padding: 5px;
}

.post-goal-img {
  width: 75px; 
  height: 75px; 
  background-size: cover; 
  display: inline-block;
}

.post-goal-text {
  display: inline-block;
}

.modal .editor-body {
  border: none !important;
  box-shadow: none;
  margin-bottom: 0 !important;
} 

#uploadStrPostFileModal {
  z-index: 2052 !important;
}

.dd-empty {
  min-height: 42px;
}

.hide {
  display: none;
}
.m-b-md {
  margin-bottom: 15px;
}
.onoffswitch-switch {
  right: 79px;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0;
}
.onoffswitch-inner:before {
    content: "Actief";
}
.onoffswitch-inner:after {
    content: "Niet actief";
}

.onoffswitch {
  width: 100px;
}

.invoice-header {
  margin-bottom: 30px;
}
.add-customer {
  display: inline;
  margin-left: -25px;
}
.autocomplete-customers {
  margin-top: 18px;
  display: inline-block;
}
.address {
  margin-top: 18px;
}
.autocomplete-customers:focus {
  border: solid 2px #1ab393;
  border-radius: 5px;
}
#edit-customer {
  padding: 8px;
}
.modal-loader {
  display: none;
}
.modal-loading .modal-loader {
  display: block;
}
.modal-loading .modal-loaded {
  display: none;
}
.invoice-input {
  color: #676a6c;
  padding: 5px;
  border: none;
}

.invoice-quantity, .invoice-price, .invoice-total {
  text-align: right;
}
.invoice-total-holder {
  padding-top: 12px;
}

.col-red {
  color: red;
}

.hov-show-container {
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -ms-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease;
    padding: 0;
}

.hov-show {
    overflow: hidden;
    height: 0;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}


.hov-show-container > li {
  list-style: none;
}

.ibox:hover .hov-show {
    height: 19px;
  display: list-item;
}
.btn-rounded {
  border-radius: 50px !important;
}
.testclass  {
  width: 100%;
  border: solid 1px #dcdcdc;
  background-color: #fff;
  border-radius: 5px;
      padding: 3px;
}

.testclass:hover  {
    background-color: #dcdcdc;
}
.testclass-active {
    border: solid 2px #1ab393  !important;
}

.close {
  position: absolute;
  top: 9px;
  right: 15px;
}

#parent_node .dissmiss-wrtie-post-btn {
  display: none;
}

.top-header {
  font-size: 16px;
}

.top-header button {
  min-width: 48px;
}

.nav-header {
  padding: 25px 25px;
}
.md-skin .nav-second-level li a {
    padding-top: 5px;
    padding-bottom: 5px;
}
.tox-dialog {
  border-radius: 10px !important;
}

.tox .tox-tbtn--bespoke .tox-tbtn__select-label {
  width: 3em !important;
}
.popover[class*="tour-"] {
    z-index: 2601 !important;
}
.post-body .embed-responsive-item {
    width: 100%;
    min-height: 320px;
}
.hover-session-bg {
  transition: background-color 0.2s ease;
  border-radius: 5px;
}
.hover-session-bg:hover {
  background-color: #e7f1ef; 
}
#view-post-modal > .social-feed-box {
  margin-bottom: 0;
}
.dropdown-content {
  position: absolute;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  padding: 10px;
  background-color:white;
  border-radius:5px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);  
  -webkit-transition: opacity 600ms, visibility 600ms;
  transition: opacity 600ms, visibility 600ms;
  z-index: 10;
  margin-right: 20px;

}
.dropdown-hover:hover > .dropdown-content {
  visibility: visible;
  opacity: 1;
}

#view-post-modal > div > .social-feed-box {
  margin-bottom: 0;
}
.alerts-dropdown {
  max-height: 360px;
  overflow-y:auto;
}
.alerts-dropdown::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.alerts-dropdown::-webkit-scrollbar
{
  width: 9px;
    background-color: #F5F5F5;
    border-radius: 10px;
}

.alerts-dropdown::-webkit-scrollbar-thumb
{
    border-radius: 5px;
    background-color: #11c2a0;
}
.starred-blue-bg {
  border: solid 4px;
  border-color:#1c84c6 !important;
}
.starred-lazur-bg {
  border: solid 4px;
  border-color:#23c6c8  !important;
}
.starred-navy-bg {
  border: solid 4px;
  border-color:#1ab393  !important;
}
.starred-yellow-bg {
  border: solid 4px;
  border-color:#f8ac59  !important;
}
.avatar {
  padding:20px;
  width: 100%;
  border-radius: 50%;
  transition: transform .5s;  
}
.client-avatar {
  padding:6px;
}
.avatar:hover {
  cursor: pointer;
  transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.cstm-background-image-holder {
    width: 100px; 
    height: 100px;         
    display: inline-block;
    margin-top: 10px;
    background-size: cover;
}
/*AANVRAAGSTRAAT*/

.indicent {
    border: 3px solid lightgrey;
    border-width: 3px !important;

}
.border-custom-success {
    border-color: #1ab393!important;
}

.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}