/*
Theme Name: Movement RX Patient Dashboard V2
Author: CH 02.2023 | Prosoft Phils
Author URL: http://prosoft-phils.com/
Description: Main CSS for Global Partials
*/

/*--------------------------------------------------------------
DASHBOARD
--------------------------------------------------------------*/
#main-wrapper {
  padding: 20px 30px;
}

#main-wrapper,
footer {
  background: #ECECEC;
}

/*--------------------------------------------------------------
HEADER
--------------------------------------------------------------*/
.desktop-header {
  padding: 15px 30px;
  width: 100%;
  top: 0;
  z-index: 200;
  background: var(--color1);
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-topright: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.header {
  -webkit-transition: all 300ms ;
  -moz-transition: all 300ms ;
  -ms-transition: all 300ms ;
  -o-transition: all 300ms ;
  transition: all 300ms ;
}

/*NAV MENU*/
.header-menu ul.menu-nav {
  list-style: none;
  text-align: right;
  padding-left: 0;
  width: 100%;
  padding-right: 23px;
  margin: 0;
}

  .header-menu ul.menu-nav li {
    display: none;
  }

    .header-menu ul.menu-nav li:last-child {
      display: inline-block;
    }

    .logout-link i {
      display: none;
    }

  .header-menu ul.menu-nav li a {
    color: #fff;
    display: inline-block;
    line-height: 53px;
  }

  .logout-link {
    text-decoration: underline;
  }

  .disable-page{
    opacity: 0.6;
  }
  .disable-function{
    pointer-events: none;
    opacity: 0.6;
  }

/*--------------------------------------------------------------
CONTENT
--------------------------------------------------------------*/
.dashboard-content {
  display: flex;
  min-height: 85vh;

}

  .left-sidebar {
    padding: 60px 40px;
    width: 400px;
    background: #fff;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }

/*DYNAMIC CONTENT*/
.dynamic-nav {
  line-height: 33px;
}

.dynamic-content {
  width: 100%;
  padding-left: 20px;
  
}

.dynamic-content-card {
  border-radius: 10px;
  margin-top: 20px;
  background: #fff;
  padding: 20px 40px;
}

/*ASSIGNMENT LIST*/
ul.assign-list {
  padding-left: 0;
  display: flex;
}

  ul.assign-list li {
    list-style: none;
  }

.assign-list-content {
  display: flex;
}

.thumb-cont {
  position: relative;
  background: #aeb4b7;
}

  .thumb-cont .tc-icon {
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .thumb-cont img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
  }

    .thumb-cont:hover img {
      opacity: 0.7;
    }

  .thumb-cont i {
    color: #68ccfd;
  }

    .thumb-cont:hover i {
      color: var(--color1);
    }

.thumb-cont a {
  display: block;
  width: 100%;
  height: 100%;
}

.assign-list-details {
  padding: 7px 10px;
  overflow: hidden;
  white-space: nowrap;
  flex-grow: 1;
}

  .assign-list-details p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }


.btn-complete {
  border: none;
  padding-left: 0;
}

  .btn-complete:focus {
    border: none !important;
  }

.btn-complete i,
.btn-complete span {
  display: inline-block;
  vertical-align: middle;
}

  .btn-complete i {
    font-size: 28px;
    padding-right: 7px;
    color: #BCBCBC;
  }

  .btn-complete:hover i,
  .btn-complete-active i{
    color: var(--color2);
  }

/*--------------------------------------------------------------
SIDEBAR
--------------------------------------------------------------*/
.left-sidebar ul.menu-nav {
  list-style: none;
  padding-left: 0;
  width: 100%;
}

.left-sidebar ul.menu-nav li a {
  color: #575757;
  padding: 13px 10px;
  display: block;
  margin-bottom: 7px;
}

  .left-sidebar ul.menu-nav li a i {
    padding-right: 12px;
  }

  .left-sidebar ul.menu-nav li a:hover,
  .left-sidebar ul.menu-nav li a.active {
    background: var(--color1);
    color: #fff;
  }

  .left-sidebar ul.menu-nav li:last-child {
    display: none;
  }

.sidebar-icon,
.sidebar-label {
  display: inline-block;
}

/*--------------------------------------------------------------
FOOTER
--------------------------------------------------------------*/
.copyright {
  font-size: 12px;
  text-align: center;
  padding: 5px 15px;
}

/*--------------------------------------------------------------
SIDEBAR
--------------------------------------------------------------*/

/*--------------------------------------------------------------
404 PAGE NOT FOUND
--------------------------------------------------------------*/

  
