@import "ionicons.css";

@font-face {
  font-family: Montserrat;
  src: url('../../../assets/backend/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  src: url('../../../assets/backend/fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@keyframes blinkshadow {
  0% { box-shadow: 0 0px 5px 3px var(--project-color); }
  50% { box-shadow: 0 0px 0px 1px var(--project-color); }
  100% { box-shadow: 0 0px 5px 3px var(--project-color); }
}

@-webkit-keyframes blinkshadow {
  0% { box-shadow: 0 0px 5px 3px var(--project-color); }
  50% { box-shadow: 0 0px 0px 1px var(--project-color); }
  100% { box-shadow: 0 0px 5px 3px var(--project-color); }
}

.blink-shadow {
  -webkit-animation: blinkshadow 0.7s linear infinite;
  -moz-animation: blinkshadow 0.7s linear infinite;
  -ms-animation: blinkshadow 0.7s linear infinite;
  -o-animation: blinkshadow 0.7s linear infinite;
  animation: blinkshadow 0.7s linear infinite;
}

@keyframes helpblink {
  0% { width: 40px; height:40px; bottom:20px; left:30px;}
  50% { width: 44px; height:44px; bottom:18px; left:28px;}
  100% { width: 40px; height:40px; bottom:20px; left:30px;}
}

@-webkit-keyframes helpblink {
  0% { width: 40px; height:40px; bottom:20px; left:30px;}
  50% { width: 44px; height:44px; bottom:18px; left:28px;}
  100% { width: 40px; height:40px; bottom:20px; left:30px;}
}

.help-blink {
  -webkit-animation: helpblink 0.7s linear infinite;
  -moz-animation: helpblink 0.7s linear infinite;
  -ms-animation: helpblink 0.7s linear infinite;
  -o-animation: helpblink 0.7s linear infinite;
  animation: helpblink 0.7s linear infinite;
}

.left-side-menu {
  padding-bottom: 50px;
}

.help-btn {
  position: fixed;
  background-color: #444;
  bottom: 20px;
  left: 30px;
  width: 40px;
  height: 40px;
  border: none;
  font-size: 31px;
  color: #fff;
  border-radius: 50%;
  line-height: 100%;
  -webkit-box-shadow: 0 0 8px rgb(0 0 0);
  box-shadow: 0 0 8px 0 rgb(0 0 0);
  z-index: 999;
}

.auth-fluid {
  background: none;
}
.login-logo {
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: #eff0f4;
  background-image: url(../images/gestor_bg.png);
  width: 100%;
  background-position: center;
}
.topnav-navbar-dark {
  background-color: var(--main-bg-color);
}
.title_icon{
  font-size: 25px;
}
.empty_box{
  opacity: .8;
  text-align: center;
  width: 100%;
  padding: 25px;
}
.modal_height{
  height: 100%;
}

.modal-right {
  min-width: 430px;
  width: 430px;
}
@media (max-width: 576px){
  .modal-right {
    min-width: calc(100vw - 40px);
    width: calc(100vw - 40px);
  }
  .popover.wide-popover {
    max-width: 300px;
  }  
}

.modal-right form{
  max-width: 400px;
}

.alignToTitle {
  /* margin-top: 25px; */
  float: right;
}

/* Custom file upload */
@import "compass/css3";

.custom-file-upload-hidden {
  display: none;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}
.custom-file-upload {
  display: block;
  width: auto;
  font-size: 16px;
  label {
    display: block;
    margin-bottom: 5px;
  }
}
.encoding_box {
  width: 200px;
  display: inline-block;
  margin: 2px 20px;
}
.file-upload-wrapper {
  position: relative;
  margin-bottom: 5px;
  //border: 1px solid #ccc;
}
.file-upload-input {
  width: 275px;
  color: #424242;
  font-size: 13px;
  padding: 11px 17px;
  border: none;
  background-color: #EEEEEE;
  @include transition(all 0.2s ease-in);
  float: left; /* IE 9 Fix */
  &:hover, &:focus {
    background-color: #BDBDBD;
    outline: none;
  }
}
.file-upload-button {
  cursor: pointer;
  display: inline-block;
  color: #424242;
  font-size: 12px;
  text-transform: uppercase;
  padding: 11px 20px;
  padding-bottom: 12px;
  border: none;
  margin-left: -1px;
  background-color: #E0E0E0;
  float: left; /* IE 9 Fix */
  @include transition(all 0.2s ease-in);
  &:hover {
    background-color: #BDBDBD;
  }
}

/* JS-Image Previewer CSS STARTS */
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@import url('https://fonts.googleapis.com/css?family=Raleway');

// variables
$base-color: cadetblue;
$base-font: 'Raleway', sans-serif;

.wrapper-image-preview{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.box {
  display: block;
  /* min-width: 300px; */
  height: 245px;
  margin: 10px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  overflow: hidden;
}

.upload-options {
  cursor: pointer;
  position: relative;
  height: 50px;
  background-color: $base-color;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  transition: background-color ease-in-out 150ms;
  &:hover {
    background-color: lighten($base-color, 10%);
  }
  & input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
  }
  & label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    & span {
      display: inline-block;
      width: 50%;
      height: 100%;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
      vertical-align: middle;
      text-align: center;
      &:hover i.material-icons {
        color: lightgray;
      }
    }
  }
}
.js--image-preview {
  height: 200px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-image: url('https://www.l-nutra.com/wp-content/uploads/2018/07/placeholder.png');
  background-color: white;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  &::after {
    content: "";
    font-family: 'Material Icons';
    position: relative;
    font-size: 4.5em;
    color: rgba(230, 230, 230, 1);
    top: calc(50% - 3rem);
    left: calc(50% - 2.25rem);
    z-index: 0;
  }
  &.js--no-default::after {
    display: none;
  }
  &:nth-child(2) {
    background-image: url('http://bastianandre.at/giphy.gif');
  }
}

i.material-icons {
  transition: color 100ms ease-in-out;
  font-size: 2.25em;
  line-height: 55px;
  color: white;
  display: block;
}

.drop {
  display: block;
  position: absolute;
  background: transparentize($base-color, .8);
  border-radius: 100%;
  transform:scale(0);
}

.animate {
  animation: ripple 0.4s linear;
}

.upload-options .btn {
  cursor: pointer;
}

@keyframes ripple {
  100% {opacity: 0; transform: scale(2.5);}
}
/* JS-Image Previewer CSS ENDS */
.readonly {
  pointer-events:none;
  background: none;
}
.visit_website {
  padding: 19px 0 0;
  overflow: hidden;
}

/* FULL SCREEN LOADING CSS ON AJAX CALL */
/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));

  background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  -moz-animation: spinner 150ms infinite linear;
  -ms-animation: spinner 150ms infinite linear;
  -o-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.hidden {
  display: none;
}
.show {
  display: block;
}
/* @media print{
  @page {size: landscape}
} */

@media print {
  @page {
    size: 310mm 215mm; /* landscape */
    /* you can also specify margins here: */
    margin: 5mm;
  }
}

.notice-calendar-section .fc-body {
  cursor: copy;
}
h4.titulo {
  margin: 20px 10px 0 10px;
}
div#painel_engaja {
  position: relative;
  margin-top: -37%;
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
  font-weight: bold;
}
#painel_engaja .principal {
  width: 55%;
  margin: auto;
  border-bottom: 1px solid #ccc;
  padding: 0px 10px;
}
#painel_engaja .secundario {
  width: 25%;
  display: inline-block;
}
#painel_engaja h5, #painel_engaja h6 {
  margin: 5px 0;
}
#painel_engaja h6 {
  margin: 5px 0;
  font-weight: normal;
}
div#info_projetos {
  margin-top: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
  font-weight: bold;
}
#info_projetos .principal {
  width: 70%;
  margin: auto;
  padding: 0px 10px 5px 10px;
}
#info_projetos .secundario {
  width: 30%;
  display: inline-block;
  margin: 0 10px;
  padding: 10px;
  background-color: #eee;
  border-radius: 5px;
}
#info_projetos h5, #info_projetos h6, #info_projetos h4 {
  margin: 5px 0;
}
h1#total_projetos {
    font-size: 4rem;
}
div#painel_avaliacao {
  margin-top: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
  font-weight: bold;
}
#painel_avaliacao .principal {
  width: 100%;
  margin: auto;
  padding: 0px 10px;
}
#painel_avaliacao .secundario {
  width: 100%;
  display: inline-block;
  margin-top: 10px;
  background-color: #eee;
  border-radius: 5px;
  vertical-align: middle;
  min-height: 60px;
  margin: 5px 3px;
  position: relative;
  padding: 5px 5px 18px;
}
#painel_avaliacao h5, #painel_avaliacao h4 {
  margin: 5px 0;
}
h1#total_avalia {
    font-size: 2.3rem;
}
#painel_avaliacao .comp_det {
    width: 47%;
    margin: 6px 1% 10px;
    background-color: #eee;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    min-height: 70px;
    vertical-align: top;
}
#painel_avaliacao p {
    font-size: 12px;
    font-weight: normal;
    margin: 0;
    line-height: 1.2;
}
#painel_avaliacao .progress_bar {
    height: 5px;
    width: 90%;
    background-color: #ccc;
    border-radius: 2px;
    bottom: 8px;
    left: 50%;
    margin-left: -45%;
    position: absolute;
}
#painel_avaliacao .progress_bar div {
    height: 100%;
}
#painel_avaliacao h6 {
    margin: 3px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
h6#l_comp_amax, h6#l_comp_amin, h6#l_comp_max, h6#l_comp_min,
h6#comp_amax, h6#comp_amin, h6#comp_max, h6#comp_min {
    font-weight: bold !important;
    margin-top: 6px;
    white-space: unset;
    font-size: 12px !important;
    color: #6c757d !important;
}
.secundario hr {
  margin: 7px 30%;
}
h4.page-title {
    margin: 0;
}
div.info_conhecimento {
  margin-top: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
  font-weight: bold;
}
.info_conhecimento .principal {
  width: 55%;
  margin: auto;
  padding: 10px 10px 5px 10px;
  display: inline-block;
  vertical-align: top;
  /* border-right: 2px solid #ccc; */
}
.info_conhecimento .secundario {
  width: 40%;
  display: inline-block;
  margin: 0;
  padding: 10px 10px 0;
  border-left: solid 2px #ccc;
  min-height: 110px;
}
.info_conhecimento h5, .info_conhecimento h6, .info_conhecimento h4, .info_conhecimento h3 {
  margin: 5px 0;
}
h1#total_projetos {
    font-size: 3rem;
    display: inline-block;
}
h5#anda_projetos, h5#anda_registros, h5#total_micromundos, h5#perc_micromundos {
  display: inline-block;
  border-left: 1px solid #ccc;
  padding-left: 3px;
}
.info_conhecimento .secundario h3 {
  display: inline-block;
}
.info_conhecimento .secundario h6, .info_conhecimento .principal h6 {
    font-size: 11px;
    font-weight: normal;
    color: #6c757db0;
}
div#info_top_mob {
  margin-top: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
  font-weight: bold;
}
#info_top_mob .top_det {
  width: 47%;
  margin: 6px 2px 10px;
  background-color: #eee;
  padding: 7px;
  border-radius: 5px;
  display: inline-block;
  min-height: 70px;
  vertical-align: top;
  text-align: center;
}
h6#utema_top1, h6#utema_top2, h6#cexp_top1, h6#cexp_top2 {
  font-weight: normal;
  margin-top: 6px;
}
#info_top_mob h6 {
    margin: 5px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#toolTab .nav-link.active {
  background-color: var(--main-bg-color);
  color: #fff;
}
#toolTab .nav-link {
    color: #495057;
    background-color: var(--unfocus-color);
    border-color: #dee2e6 #dee2e6 #dee2e6;
}
#goto-coord-panel {
  float: left;
}
.btn.btn-goto-panel.btn-materiais {
  margin-left: 0;
}
#refresh-status {
  float: right;
  margin: 0;
  padding: 0;
  text-align: right;
}
.btn.btn-refresh-sts.btn-materiais {
  margin-right: -8px;
  margin-left: 10px;
}
#refresh-status .mdi-refresh {
  font-size: 14px;
  padding: 0;
  /* line-height: 14px; */
}
.coord_sts-item {
  border-radius: 5px;
  padding: 3px;
}
.media-title {
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 10px 5px 0px;
}
.media-data {
  color: #fff;
  font-size: 25px;
  text-align: center;
  padding: 5px;
}
.evals-status {
  color: #fff;
  font-size: 30px;
  text-align: center;
  padding: 0px 5px;
}
.evals-status small {
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 0px;
  display:block;
}
.teacher-card {
  width: 100%;
  display: block;
  margin: 5px 1%;
  padding: 10px 5px;
  background-color: #eee;
  border-radius: 6px;
  position: relative;
  text-align: center;
}
.teacher-name {
  color: #888;
  font-size: 13px;
  text-align: center;
}
.teacher-status {
  width: 24%;
  margin: 3px 0.5%;
  display: inline-block;
  font-size: 11px;
  text-align: center;
  color: #eee;
  padding: 2px;
  border-radius: 3px;
  padding: 9px 0;
}
#pending-evals {
  text-align: inherit;
}
#pending-evals h4 {
  text-align: left;
}
.evals-card, .media-card, .device-card {
  width: 31%;
  display: inline-block;
  margin: 5px 1%;
  padding: 10px;
  background-color: #eee;
  border-radius: 6px;
  position: relative;
}
.evals-card,.media-card {
  cursor: pointer;
}
.device-card .drop-reg {
  width: 20px;
  height: 20px;
  font-size: 11px;
  padding: 1px;
}
.device-name {
  color: #888;
  font-size: 13px;
  text-align: center;
  min-height: 45px;
}
.evals-name {
  color: #fff;
  font-size: 15px;
  text-align: center;
  line-height: 45px;
}
.evals-name span {
  vertical-align: middle;
  display: inline-block;
  line-height: 150%;
}
.device-status {
  width: 30%;
  margin: 2px 1%;
  display: inline-block;
  font-size: 11px;
  text-align: center;
  color: #eee;
  padding: 2px;
  border-radius: 3px;
  cursor: pointer;
}
#delete-unlock {
  width: auto;
  padding: 3px 10px;
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 13px;
}
a.up-item-link {
  font-size: 18px;
}
.up-item-delete i.icon {
  font-size: 25px;
}
.up-item {
  display: block;
  width: 90%;
  margin: auto;
}
.up-item div {
  display: inline-block;
  margin: 2px;
  padding: 2px 5px;
}
.up-item-file {
  width: 40%;
}
.up-item-section {
  width: 25%;
}
.up-item-project {
  width: 15%;
}
.up-item-status {
  width: 5%;
}
.up-item-elapsed {
  width: 5%;
  text-align: center;
}
.popover-dev {
  text-align:center;
  color:#888;
  font-size:12px;
}
#dashTab .nav-link.active {
  background-color: var(--main-bg-color);
  color: #fff;
}
#dashTab .nav-link {
    color: #495057;
    background-color: var(--unfocus-color);
    border-color: #dee2e6 #dee2e6 #dee2e6;
}
body[data-layout=detached] .wrapper {
  padding-top: 20px;
}
#dashTab .nav-item {
    width: 33.33%;
    text-align: center;
}

.painel-feed .card {-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);margin-bottom: 10px;}

.card {-webkit-box-shadow: 0 0 20px 0 rgba(160,160,160,.30);box-shadow: 0 0 20px 0 rgba(160,160,160,.30);margin-bottom: 10px;}

.full-screen {
  position: absolute;
  top: 60px;
  right: 20px;
  z-index: 99;
}
#graph_time a:not([href]):not([tabindex]) {
  color: var(--highlight-color);
  text-decoration: underline;
  cursor:pointer;
}
#dashTabContent .col-lg-4, #dashTabContent .col-lg-6, .row-subcols {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
#dashTabContent .col-lg-12 {
    -webkit-box-shadow: 0 0 20px 0 rgb(160 160 160 / 20%);
    box-shadow: 0 0 20px 0 rgb(160 160 160 / 20%);
    padding-bottom: 20px;
    padding-top: 10px;
    background-color: #ffffff;
    margin-top: 5px;
    margin-bottom: 10px;
}
#admin-panel .col-lg-12 {
  min-height: 660px;
}
h5.filter-title {
    font-weight: normal;
    padding-top: 10px;
}
#dashTabContent .form-group.row.mb-3 {
    margin-bottom: 0 !important;
}
.logo-menu {
    width: 65%;
    min-height: 100px;
    background-size: contain;
    background-image: url("../../../uploads/system/logo/logo.png");
    background-repeat: no-repeat;
    background-position: center;
    margin: auto;
}
li.side-nav-title.side-nav-item {
    font-size: 14px;
    text-align: center;
    margin: 10px 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
button.btn.btn-secondary.btn-legend {
  position: absolute;
  top: 60px;
  max-width: 120px;
  right: 10px;
  background-color: #9ACB47;
  border-color: #9ACB47;
}
.leg-bncc {
  position: absolute;
  background: #c0c0c0;
  padding: 5px 10px;
  color: #444;
  font-weight: bold;
  font-size: 12px;
  border-radius: 5px;
  right: 20px;
}

.leg-bncc-tab {
  position: absolute;
  background-color: #fafafa;
  padding: 10px;
  border-radius: 5px;
  border: 2px solid #e0e0e0;
  font-size: 12px;
  max-width: 163px;
  right: 5px;
  margin-top: 29px;
}
div#radar-graph {
    width: 65%;
    position: relative;
    float: right;
}
div#radar-legend {
    position: relative;
    display: inline-block;
    width: 32%;
    font-size: 12px;
    padding: 15px 15px;
    background-color: #eee;
    border-radius: 5px;
    margin: 10px 0 0 5px;
}
div#section-tab-no-conhecimentos, div#emcasa-tab-no-conhecimentos, 
div#section-tab-no-tag0, div#emcasa-tab-no-tag0,
div#section-tab-no-tag1, div#emcasa-tab-no-tag1,
div#section-tab-no-tag2, div#emcasa-tab-no-tag2 {
    text-align: center;
    position: absolute;
    background-color: #fff;
    width: 95%;
    height: 80%;
    vertical-align: middle;
    padding: 25%;
}
.leftbar-user {
  padding: 30px 20px 0px;
}
.item-aluno div.des-tech-item {
  color: #fff;
  width: 80%;
  height: auto;
  border-radius: 5px;
  padding: 3px;
  font-size: 11px;
  margin: 2px 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: uppercase;
  cursor:pointer;
  overflow: hidden; 
}
.item-aluno div.des-tech-item.des-tec-notsel {
  color: #fff;
  background-color: #e0e0e0;
}
.des-tech-item span{
  vertical-align: middle;
  line-height: 100%;
}
.item-aluno {
  text-align: center;
  padding: 15px 10px;
  cursor: pointer;
  padding-bottom: 32px;
}
.item-aluno > div {
  display: inline-block;
  text-align: center;
  position: relative;
  justify-content: center !important;
  width: 95%;
  height: 110px;
  vertical-align: middle;
}
.item-aluno div.aluno-round {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
}
span.helper {
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  width: 0px;
}
.item-aluno .aluno-nome {
  height: 40px;
  padding: 0;
  overflow: hidden;
}
.card-aluno .item-aluno .aluno-nome {
  width: 90%;
  margin: auto;
  line-height: 14px;
  font-size: 12px;
}
#mm-list .card-body {
  text-align: center;
}
.middle {
  display: flex !important;
  /*justify-content: center !important;*/
  align-items: center !important;
}
.aluno-avatar {
  width: 100%;
  display: inline-block;
  margin: auto;
  left: unset;
  top: unset;
  position: relative;
  text-align: center;
  height: 100%;
}
.badge-basic-gray {
  color: #888;
  background-color: #ddd;
  font-weight: normal;
}
.badge-success-lighten {
  color: #282;
  background-color: #ddd;
  font-weight: normal;
}
.badge-danger-lighten {
  color: #822;
  background-color: #ddd;
  font-weight: normal;
}
.button-clear, .button-fab, .button-flat, .button-raised, .ink, .popup .button {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.desc-card .card.stable-bg.ink.ink-dark {
  background-color: #f8f8f8;
  box-shadow: none;
  color: #888;
}
.desc-card.card-concluido .card.stable-bg.ink.ink-dark {
  background-color: #d8d8d8;
}
.desc-card.card-andamento .card.stable-bg.ink.ink-dark {
  background-color: #d8d8d8;
}
.card-andamento span.badge.badge-basic-gray {
  background-color: var(--project-color);
  color: #fff;
}
.card-inativo .mm-icon-card {
  opacity: 0.4;
}
.card-inativo .mm-icon-card:hover {
  opacity: 1;
}
#painel-titulo {
  height: 45px;
  padding: 5px;
  margin-bottom: 8px;
  margin-top: 5px;
  border-radius: 4px 4px 0 0;
  background-color: var(--main-bg-color);
  font-size: 20px;
  border-bottom: solid 3px;
}
#painel-titulo .prj-id-icon {
  margin: 0 10px;
  width: 35px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  background-position: center;
}
#painel-titulo h3 {
  display: inline-block;
  margin: 7px 0px 0px 0px;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  font-weight: bold;
  position: relative;
  vertical-align: top;
  opacity: 0.8;
}
.cover-audio {
  background: url(../../../assets/backend/images/audio.png) center no-repeat;
  width: 100%;
  height: 100%;
  background-size: 60px;
  margin: auto;
  background-color: #000;
  opacity: 0.5;
}
.cover-video {
  background: url(../../../assets/backend/images/play.png) center no-repeat;
  width: 100%;
  height: 100%;
  background-size: 60px;
  margin: auto;
  background-color: #000;
  opacity: 0.5;
}
.cover-url {
  background-color: #000;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  color: #fff;
  font-size: 45px;
  padding: 55px 120px;
}
.cover-url::after {
  content: "\f1fe";
  font-family: Ionicons;
}
.cover-texto {
  background-color: #000;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  color: #fff;
  font-size: 45px;
  padding: 55px 120px;
  position: absolute;
  top: 0;
  text-align: center;
}
.cover-texto::after {
  content: "\f12e";
  font-family: Ionicons;
}

.btn-materiais {
  margin-right: 10px;
}
.btn-materiais img {
  margin-right: 5px;
  height: 19px;
}
.desc-card-top {
  padding: 0px 0px 2px 0px;
  background-color: #f3f3f3;
  position: relative;
}

.desc-image-container img{
  height: 100%;
  max-width: inherit;
  box-shadow: none;
}
.desc-image-container {
  position: relative;
  display: inline-block;
  clear: both;
  overflow: hidden;
  width: 100%;
  height: 170px;
  background-position: center;
  background-size: cover;
}
.desc-image-container.container-audio {
  background-color: #aaa;
  background-size: contain;
}
.ui-tooltip {
  padding: 5px 8px;
}
.ui-widget {
  font-family: 'droid-sans';
  font-size: 12px;
}
.ui-widget-content {
  color: #888;
}
.ui-autocomplete.ui-widget-content {
  padding: 2px 5px;
  max-height: 250px;
  overflow: auto;
  max-width: 370px;
}
.avalia-modal .nav-link {
  padding: 0.5rem 0.5rem;
}
.item-aluno div.avalia-check,
.item-aluno div.autoavalia-check {
  position: absolute;
  width: 50px;
  height: 22px;
  bottom: 5px;
  border-radius: 10px;
  padding: 0px;
  font-size: 13px;
  color: #888;
  background-color: #ddd;
  border: #888 solid 1px;
}
.item-aluno div.avalia-check {
  right: 14px;
}
.item-aluno div.autoavalia-check {
  left: 14px;
}
.item-aluno div.avalia-check.aval-done,
.item-aluno div.autoavalia-check.aval-done{
  color: #fff;
  background-color: #888;
}

.item.card-item.desc-card.equipe.avalia-equipe {
  width: 18%;
}
.item.card-item.desc-card.equipe.avalia-equipe.card-aluno {
  width: 160px;
}
#mm-list .item.card-item.desc-card {
  margin: 0px 5px;
  width: 18%;
}
.item.card-item.desc-card {
  padding: 0;
  margin: 0px 5px;
  display: inline-block;
  position: relative;
  width: 284px;
}
.desc-card .card {
  background-color: #E0E0E0;
}
.chat-counter {
  font-size: 9px;
  background-color: #888;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  color: #fff;
  text-align: center;
  padding: 0;
  line-height: 18px;
  bottom: 7px;
  position: absolute;
  right: -1px;
}
.cloud-done {
  font-size: 14px;
  position: absolute;
  left: 25px;
  top: 13px;
  color: #fff;
}
.desc-icons {
  margin-top: -5px;
  width: 100%;
  text-align: right;
  padding: 0 15px;
  line-height: 40px;
}
.desc-icon.desc-icon-error {
  color: #ff7070 !important;
}
.desc-icon.desc-icon-cloud {
  margin-top: -5px;
  font-size: 26px;
  padding: 3px 90px 0 20px;
  position: absolute;
  color: #888;
}
.desc-icon.desc-icon-chat {
  font-size: 27px;
  color: #888;
  position: relative;
  width: 30px;
  margin: 0 0 0 0px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}
.desc-icon-autor {
  display: inline-block;
  font-size: 25px;
}
.desc-icon-autor .avatar {
  height: 25px;
  width: 25px;
  top: 0;
  position: relative;
  left: 0;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  margin-left: 15px;
}
.desc-icon-autor .dripicons-user-group {
  width: 25px;
  height: 30px;
  margin-left: 15px;
  line-height: 21px;
  font-size: 22px;
  color: #888;
}
.desc-icon-autor .icon {
  vertical-align: top;
  margin-left: 15px;
  color: #888;
  line-height: 25px;
}

.desc-autor-name {
  display: inline-block;
  color: #888;
  vertical-align: top;
  padding: 2px 3px;
  max-height: 30px;
  overflow: hidden;
  font-size: 13px;
  width: 150px;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: bold;
}
.desc-message {
  color: #888;
  text-align: left;
  margin: 0 10px 3px;
  padding: 0 5px;
  height: auto;
  display: block;
  font-size: 12px;
  max-height: unset;
  border-top: solid 1px #f8f8f8;
  white-space: normal;
} 
.comment-item {
  background-color: #fff;
  padding: 5px 0;
  border-bottom: solid 1px #ddd;
}
#rec-clock {
  font-size: 30px;
}
.audio-player {
  outline: 0px;
  max-width: 100%;
  max-height: 28px;
}
audio::-webkit-media-controls-panel {
  background-color:#e0e0e0;
  color:#666;
}
.msg-link {
  color: #fff;
  background-color: #888;
  padding: 5px 25px;
  border-radius: 12px;
  line-height: 25px;
}
a.msg-link:hover {
  color: #fff;
}
.cursor-pointer {
  cursor: pointer;
}
.comment-item.add-comment {
  padding: 15px 0px 10px;
}
.add-comment .desc-autor-name {
  font-weight: normal;
}
.ebook-chk-pub {
  margin: 4px 0 0;
}
input[data-switch=success]:checked+label {
  background-color: #63960a;
}
#createEbook-modal .modal-dialog.modal-md {
  max-width: 750px;
}
.ebook-terms {
  text-align: left !important;
  font-size: 12px;
  margin-bottom: 5px;
}
.ebook-terms .col-md-1 {
  text-align: right;
  padding-right: 0;
  padding-top: 2px;
}
.ebook-terms label {
  text-align: left !important;
  font-weight: normal;
  margin: 0;
}
#ebk_description {
  height: 100px;
  width: 100%;
  color: #888;
  padding: 5px;
  font-size: 13px;
}
#link_url {
  height: 75px;
  width: 100%;
  color: #888;
  padding: 5px;
  font-size: 13px;
}
#comment-link,
#comment-area {
  height: 75px;
  width: 100%;
  color: #888;
  padding: 5px;
  font-size: 13px;
}
#area-count {
  display: inline-block;
}
#desc-count {
  display: inline-block;
}
div#comment-count {
  font-size: 10px;
  display: inline-block;
  width: 100%;
  text-align: right;
  margin: 0 0 10px;
}
.popup-container.pop-comment .popup {
  width: 300px;
}
img.mm-icon-card {
  max-width: 95%;
  max-height: 100px;
  vertical-align: middle;
  display: inline-block;
}
.mod-mm-panel .nav-tabs .nav-item {
  font-size: 13px;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-link.active2 {
  color: #495057;
  background-color: #f0f0f0;
  border-color: #dee2e6 #dee2e6 #fff;
}
.mod-mm-panel .col-md-8 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.cad_tags {
  font-size: 10px;
  display: inline-block;
  margin: 0 3px;
  background-color: var(--highlight-color);
  color: #fff;
  padding: 1px 3px 0px;
  border-radius: 4px;
  text-transform: uppercase;
}
.desc-tags {
  position: relative;
  bottom: 0px;
  width: 100%;
  left: 0;
  display: inline-block;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  overflow: hidden;
}
.desc-data {
  display: inline-block;
  padding: 0px 16px 5px 16px;
  color: #888;
  vertical-align: top;
  padding: 3px 0 0;
  max-height: 30px;
  overflow: hidden;
  font-size: 11px;
  text-align: right;
  width: 70px;
}
.desc-registro {
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding: 9px 30px 7px 12px;
  color: #888;
  text-align: left;
  overflow: hidden;
}
button.button.button-calm.prj-actions {
  border-radius: 50%;
  padding: 0;
  font-size: 10px;
  position: absolute;
  z-index: 999;
  top: 17px;
  right: 17px;
  background-color: #aaa !important;
  min-height: 20px;
  min-width: 20px;
  height: 35px;
  width: 35px;
}
.button.prj-actions i.icon:before {
  font-size: 15px;
  line-height: 36px;
}

.item-fixed-width {
  width: 430px;
  white-space: normal;
}
span#link_error, span#video_error {
  max-width: 350px;
  color: #822;
  margin: 20px;
}
#img_loading {
  background-color: #d0d0d0;
  height: 170px;
  padding: 55px 110px;
  margin: 0px auto;
  display: inline-block;
}
#video_loading {
  background-color: #d0d0d0;
  height: 170px;
  padding: 55px 110px;
  margin: 0px auto;
  display: inline-block;
}
.loading-cover {
  position: absolute;
  width: 96%;
  height: 96%;
  background-color: #fff;
  z-index: 100;
  margin: 2%;
  padding: 0px;
  background: #ddd url(../images/loader.gif) no-repeat center;
  background-size: 13%;
}
.type-container {
  min-height: 20px;
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 15px;
}
.type-fields {
  text-align: center;
  padding: 0 20px 20px;
}
.typec-container {
  min-height: 20px;
}
.typec-fields {
  text-align: center;
}
#url-link-open {
  border-top: 1px solid #dee2e6;
  padding-top: 5px;
  width: 100%;
}
#url-preview {
  max-width: 280px;
  margin: auto;
  max-height: 170px;
}
.modal-footer-btn-avalia {
  margin: 0;
  text-align: center;
  min-height: 60px;
}
.modal-footer-btn-avalia-mass {
  position: absolute;
  top: -58px ;
  right: 50px;
  margin: 0;
  text-align: center;
  min-height: 60px;
}
button.modal-on-top {
  position: absolute;
  top: -58px;
  right: 35px;
}
div#content-expand {
  height: calc(100% + 1rem);
  margin: -0.5rem -0.5rem;
}
.analysis_msgs b {
  color: var(--highlight-color);
}
.btn-close-alert:hover,
.btn-close-alert {
  color: #fff;
  border-radius: 50%;
  border: solid 1px #fff;
  padding: 3px 8px;
  position: absolute;
  right: 30px;
  top: calc( 50% - 15px );
}
.alert-bar {
  padding: 15px;
  cursor: pointer;
  position: relative;
}
.mod-content #dashTabContent {
  overflow-y: auto;
  width: 100%;
  height: 80vh;
  background-color: #fafbfe;
}
#status-panel-preview {
  background-color: var(--main-bg-color);
  padding: 5px 5px 5px 5px;
  text-align: center;
  color: #fff;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
.status-icon {
  max-width: 80%;
  width: auto;
  max-height: 170px;
}
.show-false,
.show-0 {
    display:none !important;
}
.show-true,
.show-1 {
    display:inline-block !important;
}
.show-sts-false,
.show-sts-0 {
    display:none !important;
}
.show-sts-true,
.show-sts-1 {
    display:block !important;
}

.mm_icon_preview {
  width: 80%;
  text-align: center;
  left: 0;
  margin-left: 10%;
  margin-top: 10%;
  position: relative;
  margin-bottom: 5%;
}

.mm_status_preview {
  margin-top: 20px;
  margin-bottom: 20px;
}
.mm_define_preview h4 {
  font-size: 16px;
}
.mm_define_preview {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  text-align: center;
  display: inline-block;
}
.mm_icon_preview h3 {
  font-size: 20px;
}
.mm_running_preview {
  width: 80%;
  max-width: 180px;
  margin: auto;
}
.mod-mm-panel .nav-tabs {
  background-color: rgba(255,255,255,0.75);
}
table.dataTable tbody td.focus, table.dataTable tbody th.focus {
  outline: 0!important;
  outline-offset: 0;
  background-color: unset;
}
.drop-reg {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 9;
    width: 30px;
    height: 30px;
    padding: 4px;
    border: solid 2px #888 !important;
    background-color: #888;
    color:#fff !important;
    -webkit-box-shadow: 0 0 8px 2px rgb(0 0 0 / 10%) !important;
    box-shadow: 0 0 8px 2px rgb(0 0 0 / 10%) !important;
}
.prj-card .drop-reg {
  top: 5px;
  right: 1px;
}
.ava-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 1px #aaa;
  background-size: contain;
  transition: all .2s ease-in-out; 
}
.ava-photo:hover {
  transform: scale(3) translate(33%, 33%);
}
#mass-ava-tabcontent {
  border: solid 1px;
  border-color: #f0f0f0 #dee2e6 #dee2e6;
  background-color: #f0f0f0;
  max-height: 65vh;
}
.nav-item {
  display: flex;
  flex-direction: column;
  width: 20%;
  max-height: 14vh;
  overflow-y: auto;
}
.nav-group-title small {
  display: block;
  font-size: 11px;
}
.nav-tabs .nav-link.active {
  background-color: #f0f0f0;
}
.nav-tabs .nav-link {
  padding: 3px 2px;
  border: 1px solid #f0f0f0;
}
.nav-group-title {
  padding: 5px 5px 0px;
  font-weight: bold;
  border-bottom: solid 1px #ccc;
}
.table th {
  color:#ffffffd0;
}
.table-scroll thead {
  text-align: center;
  background-color: #fff;
  border-bottom: solid 3px #ddd;
}
.table-scroll thead th {
  background-color: #fff;
  border-bottom: solid 3px #ddd;
  position: sticky; /* make the table heads sticky */
  top: 0px; /* table head will be placed from the top of the table and sticks to it */
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.dropdown-item.ellipsis {
  width: 100%;
  padding: 5px 3px 0px 10px;
}
.dropdown-item.done::before {
  color:#0a0;
  font-size:14px;
  font-weight:bold;
}
.dropdown-item.undone::before {
  color:#ccc;
  font-size:14px;
}
.dropdown-item.secondary {
  background-color: #666;
  color: #fff;
  border: solid 2px #666;
  margin-bottom: 5px;
  text-align: center;
}
.dropdown-item.secondary:focus, .dropdown-item.secondary:hover {
  background-color: #fff;
  color: #666;
}
.dropdown-item {
  color: #666;
  font-size: 13px;
  font-family: 'droid-sans';
}
.dropdown-item:focus, .dropdown-item:hover {
  color: #666;
  background-color: #f8f8f8;
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--highlight-color);
  background-color: #f0f0f0;
}
.ava-comp h5 {
  color: var(--highlight-color);
}
.close.delete {
  background: #aaa;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #fff;
  text-shadow: 0 0 10px #fff;
  position: absolute;
  top: -2px;
  right: -2px;
  z-index: 10;
  opacity: 1;
  padding: 1px 7px;
  font-weight: normal;
}
.desc-tags > div {
  margin: 5px 5px 0px !important;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 14px;
}
#feed-modal .modal-dialog {
  width: fit-content;
  min-width: 350px;
}
.table-scroll {
  height: 45vh;
  overflow-y: auto;
  border: solid 1px;
  border-color: #dee2e6 #fff;
}
/* .ava-det {
  font-size: 13px;
  color: #aaa;
  margin-top: -5px;
  min-height: 40px;
} */

.ava-det {
  font-size: 13px;
  color: #aaa;
  margin-top: -5px;
  min-height: 40px;
  max-height: 70px;
  overflow-y: auto;
  white-space: normal;
  word-wrap: break-word;
}


.ava-comp {
  margin: 10px 10px 0;
  max-height: 20vh;
}
.ava-team {
  background-color: var(--main-bg-color);
  color:#fff;
}
.ava-std-0 {
  background-color: #fff;
}
.ava-std-1 {
  background-color: #eee;
}
.ava-std-0 td, .ava-std-1 td {
  padding: 2px 3px;
}
.ava-legenda {
  display: inline-block;
    margin-bottom: 20px;
    margin-right: 5px;
    margin-left: 5px;
    text-transform: uppercase;
    color: #888;
    font-size: 11px;
}
.ava-legenda-mass {
  display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
    text-transform: uppercase;
    color: #888;
    font-size: 11px;
}
input.form-control.aval {
  vertical-align: middle;
  width: 65%;
  display: inline-block;
}

.form-control.eval_slider {
  -webkit-appearance: none;
  width: 100%;
  height: 3px;
  background: #e0e0e0;
  outline: none;
  opacity: 1;
  -webkit-transition: .2s;
  transition: opacity .2s;
  border: none;
  border-radius: 0;
  min-height: 1px !important;
}

.eval_slider:hover {
  opacity: 1;
}

.eval_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 13px;
  height: 13px;
  border-radius:50%;
  background: var(--highlight-color);
  cursor: pointer;
}

.eval_slider_disabled::-webkit-slider-thumb {
  background: #6c757d !important;
  cursor: default;
}

.eval_slider::-moz-range-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius:50%;
  background: var(--highlight-color);
  cursor: pointer;
}

.eval_slider_disabled::-moz-range-thumb {
  background: #6c757d !important;
  cursor: default;
}

#aula-modal .flickity-prev-next-button.previous {
  left: -10px;
}
#aula-modal .flickity-prev-next-button.next {
  right: -10px;
}
.mm-all-content {
  position: relative;
  height: 100%;
  width: 100%;
}
#mm-tabs .nav-item {
  display: inline;
  padding: 4px 10px;
  color: #888;
}
#mm-tabs .nav-item.active {
  background-color: var(--main-bg-color);
  color: #fff;
}
#mm-tabs-content .tab-pane {
}
#mm-tabs {
  height: 30px;
}
#mm-tabs-content {
  height: calc( 100% - 30px );
  border: solid 1px #f0f0f0;
  border-width: 0 1px 1px;
  overflow-y: auto;
}
.mod-mm-panel {
  height: 80vh;
}
.mod-mm-panel .col-md-2, .mod-mm-panel .col-md-10 {
  height: 80vh;
}
/* carousel height */
.main-carousel-cri {
  height: 530px;
  width: 100%;
}
/* carousel height */
.main-carousel-ino {
  height: 530px;
  width: 100%;
}
/* carousel height */
.main-carousel-exp {
  height: 530px;
  width: 100%;
}
/* carousel height */
.main-carousel-tra {
  height: 530px;
  width: 100%;
}

/* cell inherit height from carousel */
.carousel-cell {
  height: 530px;
  width: 100%;
  margin-right: 10px;
}

.carousel-cell:before {
  display: block;
  line-height: 200px;
  color: white;
}
.mod-mm-panel .apre-top-pills .tab-pane b {
  font-family: Riffic;
  font-size: 15px;
}
.apre-top-pills .nav-pills .nav-link {
  height: 30px;
  padding: 5px;
  font-size: 13px;
  background-color: #ddd;
  margin: 0;
  border-radius: 3px;
}

.apre-top-pills .nav-pills .nav-link.active {
  background-color:#666;
}

.apre-top-pills {
  background-color: #F6F6F6;
  padding: 10px;
  margin: 0 -30px;
}

#mm-pills-content {
  font-size: 14px;
}

#mm-pills-content .tab-pane {
  padding: 10px;
}

.apre-top-pills .nav.nav-pills {
  justify-content: space-evenly;
  text-align: center;
}
.apre-reg-type {
  padding: 0px 10px 5px;
  font-weight: bold;
  color: #222;
}
.apre-reg-tags_title {
  padding: 0px 10px 5px;
  color: #222;
}
.apre-reg-tags {
  padding: 0px 20px 5px;
}
.apre-reg-tags span {
  background-color: #ddd;
  padding: 2px 5px;
}
.apre-orienta-etapa {
  background-color: #fff;
  border: solid 1px #ddd;
  padding: 0 10px 10px;
  margin: 10px 0;
}
.apre-avalia {
  padding: 10px 10px 5px;
  font-weight: bold;
  color: #222;
}
.apre-avalia-componente {
  padding: 0px 10px 5px;
  color: #222;
}
.apre-avalia-componente-det {
  padding: 0px 20px 15px;
  font-weight: normal;
}
#aula-modal input[type="checkbox"] {
  margin-top: 3px;
}
.apre-mm-exp-cap b, .apre-mm-historia b, .apre-hist b {
  color: var(--main-bg-color);
}
.apre-text-box {
  width: 100%;
  display: inline-block;
  background-color: rgba(255,255,255,0.9);
  border-radius: 12px;
}
.apre-text-box.apre-hist {
  width: 100%;
}
.apre-text-box.apre-int, .apre-text-box.apre-refl {
  width: 100%;
}
.maquina-mm {
  margin-top: 10px;
  display: inline-block;
  vertical-align: top;
  width: 23%;
  margin-right: 1%;
}
.maquina-text {
  width: 75%;
  display:inline-block
}
.seleixo-card {
  display: flex;
  padding:10px 10px 10px 30px;
  margin-bottom:20px;
  border: solid 2px #ddd;
  border-radius: 5px;
}
#refl_list1,#refl_list2 {
  border-top: solid 2px #ccc;
  padding-top: 10px;
}
.apre-refl-cri div {
  border-bottom: solid 2px #ddd;
  margin-bottom: 15px;
}
#apre-mm-eixos-card {
  border: solid 2px #ddd;
  padding:10px 40px;
  margin: 0px 50px
}
.main-carousel-tra .maquina-mm {
  margin-top: 20px;
}
.popover.wide-popover {
  max-width: 500px;
}
.popover-maq-mm{
  max-width: 100%;
}
.popover-body {
  color: #666;
}
.popover {
  border-color: #ccc;    
}
.apre-refl b {
  color: #222;
  font-size: 15px;
}

a.item-desafio {
  width: 20%;
  min-width: 100px;
  display: inline-block;
  padding: 10px 2px;
  height: 145px;
  vertical-align: top;
  margin: 10px 3%;
}

a.item-desafio.show-true.d_active-true {
  background-color: #c0c0c0;
  border-radius: 10px;
}


#prj-novo-form.list-des-hab {
  margin-bottom: 5px;
}

.des_col_title {
  background-color: var(--main-bg-color);
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  height: 25px;
  margin-bottom: 2px;
  padding-top: 3px;
  font-size: 12px;
}
.des_hab_col {
  width: 30%;
  display: inline-block;
  height: 345px;
  vertical-align: top;
}
.des_cat_col {
  width: 30%;
  display: inline-block;
  height: 345px;
  vertical-align: top;
}
.des_des_col {
  width: 38%;
  display: inline-block;
  height: 345px;
  vertical-align: top;
}
.des_hab_col a.hab-btn,
.des_cat_col a.cat-btn,
.des_des_col a.des-btn,
.des_des_col a.des-btn-sel{
    width: 100%;
  font-size: 13px;
  margin-bottom: 1px;
  padding: 0px 5px;
  display: inline-block;
  background-color:#e0e0e0;
  text-transform: uppercase;
  cursor:pointer;
}
.des-items-1 {
  height: 319px;
  line-height: 319px;
}
.des-items-2 {
  height: 159px;
  line-height: 159px;
}
.des-items-3 {
  height: 105.66px;
  line-height: 105.66px;
}
.des-items-4 {
  height: 79px;
  line-height: 79px;
}
.des-items-5 {
  height: 63px;
  line-height: 63px;
}
.des-items-6 {
  height: 52.33px;
  line-height: 52.33px;
}
.des-items-7 {
  height: 44.71px;
  line-height: 44.71px;
}
.des-items-8 {
  height: 39px;
  line-height: 39px;
}
.des-items-9 {
  height: 34.55px;
  line-height: 34.55px;
}
.des-items-10 {
  height: 31px;
  line-height: 31px;
}
.des-items-11 {
  height: 28.09px;
  line-height: 28.09px;
}
.des-items-12 {
  height: 25.66px;
  line-height: 25.66px;
}
.des-items-13 {
  height: 23.61px;
  line-height: 23.61px;
}
.des-items-14 {
  height: 21.86px;
  line-height: 21.86px;
}
.des-items-15 {
  height: 20.33px;
  line-height: 20.33px;
}
.des-items-16 {
  height: 19px;
  line-height: 19px;
}
.hab-btn span,
.cat-btn span,
.des-btn span,
.des-btn-sel span {
  vertical-align: middle;
  display: inline-block;
  line-height: normal;
}
.tec_list a.des-btn:hover,
.tec_list a.des-btn {
  margin: 5px 5px;
  padding: 10px 32px 10px 7px;
  line-height: 210%;
  width: 30%;
  border-radius: 5px;
  text-align: center;
  position: relative;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
}
.tec_list .des-btn span{
  margin: 0;
  padding: 0;
  font-size: 12px;
}
.desafio_ori {
  width: 100%;
  text-align: center;
  padding: 0 0 15px;
  color: #666;
  font-weight: bold;
}
.tec-remove {
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 6px;
  top: calc(50% - 10px);
  border: solid 2px #fff;
  text-align: center;
  line-height: 17px;
  vertical-align: middle;
  border-radius: 50%;
}
.tec_list {
  width: 95%;
  padding: 0px;
  border: 1px solid #c0c0c0;
  color: #666;
  margin: 20px auto 0;
  min-width: 350px;
  text-align: center;
  height: 60px;
  line-height: 57px;
}

.apre-mm {
  padding: 0 30px 0 30px;
  height: 100%;
}
.mod-mm-panel h1, .mod-mm-panel h2, .mod-mm-panel h3, .mod-mm-panel h4, .mod-mm-panel h5 {
  font-family: 'Riffic-bold';
}
.mod-mm-panel .carousel-cell h1, .mod-mm-panel .carousel-cell h2, .mod-mm-panel .carousel-cell h3, .mod-mm-panel .carousel-cell h4, .mod-mm-panel .carousel-cell h5 {
  text-shadow: -2px 0 #fff, 0 2px #fff, 2px 0 #fff, 0 -2px #fff;
}
.apre-text-box {
  padding: 7px 20px;
  margin: 10px 0;
}
.bg-mm-watermak {
  width: 100%;
  height: 100%;
  max-height: 530px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 1;
}
.apre-mm img {
  background-color: #ffffffe0;
  padding: 10px;
  border-radius: 10px;
  max-width: 100%;
}
.apre-text-box p, .apre-text-box-eixo1-tra p, .apre-text-box-eixo2-tra p {
  padding-left: 15px;
}
.apre-text-box-exp-cap8 {
  width: 98%;
  display: inline-block;
  background-color: rgba(255,255,255,0.9);
  padding-bottom: 30px;
  border-radius: 20px;
  padding-top: 10px;
  margin: 10px 0;
  overflow-y: auto;
  max-height: 88%;
}
.apre-text-box-exp-capr {
  max-width: 45%;
  display: inline-block;
  background-color: rgba(255,255,255,0.9);
  padding-bottom: 0px;
  border-radius: 20px;
  margin: 10px;
  float: left;
  overflow: hidden;
  box-sizing: inherit;
  padding-top: 10px;
  overflow-y: auto;
  max-height: 88%;
}
.apre-text-box-exp-capl {
  max-width: 45%;
  display: inline-block;
  background-color: rgba(255,255,255,0.9);
  padding-bottom: 0px;
  border-radius: 20px;
  margin: 10px;
  float: right;
  overflow: hidden;
  box-sizing: inherit;
  padding-top: 10px;
  overflow-y: auto;
  max-height: 88%;
}
.apre-text-box-exp-cap-texto{
 display: flex;
 justify-content: center;
 align-items: start;
 margin: auto;
 font-size: 14px;
 line-height: 135%;
 padding: 10px 20px;
 overflow-y: auto;
 max-height: 88%;
}
.apre-mm-adversidades .apre-text-box {
  width:100%;
  color:var(--main-bg-color);
}
.apre-text-box-ino {
  width: 85%;
  display: inline-block;
  background-color: rgba(255,255,255,0.9);
  padding-bottom: 30px;
  border-radius: 20px;
  overflow-y: auto;
  max-height: 88%;
  padding: 20px;
}
.apre-text-box-vs-ino {
  width: 95%;
  display: inline-block;
  background-color: rgba(255,255,255,0.9);
  border-radius: 20px;
  font-size: 13.5px;
  padding: 0 0 0 10px;
  overflow-y: auto;
  max-height: 88%;
}
.apre-text-box-amigo-ino {
  width: 85%;
  display: inline-block;
  background-color: rgba(255,255,255,0.9);
  border-radius: 20px;
  padding: 20px;
}
.provoca-cards {
  display:flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.apre-text-box-provoc1-ino {
  width: 45%;
  display: inline-block;
  background-color: rgba(255,255,255,0.9);
  border-radius: 20px;
  margin: 10px 2%;
  padding: 15px 5px 0;
  min-height: 180px;
  text-align: center;
}
.apre-text-box-provoc2-ino {
  width: 45%;
  display: inline-block;
  background-color: rgba(255,255,255,0.9);
  border-radius: 20px;
  margin: 10px 2%;
  padding: 15px 5px 0;
  min-height: 180px;
  text-align: center;
}
.apre-text-box-provoc3-ino {
  width: 45%;
  display: inline-block;
  background-color: rgba(255,255,255,0.9);
  border-radius: 20px;
  margin: 10px 2%;
  padding: 15px 5px 0;
  min-height: 180px;
  text-align: center;
}
.apre-text-box-provoc4-ino {
  width: 45%;
  display: inline-block;
  background-color: rgba(255,255,255,0.9);
  border-radius: 20px;
  margin: 10px 2%;
  padding: 15px 5px 0;
  min-height: 180px;
  text-align: center;
}
.apre-text-box-amigo-ino div {
  margin-left: 160px;
}

.apre-text-box-eixo1-tra {
  width: 47%;
  display: inline-block;
  background-color: rgba(255,255,255,0.9);
  padding-bottom: 400px;
  border-radius: 20px;
  margin: 10px;
  float: left;
  overflow: hidden;
  box-sizing: inherit;
  height: 370px;
  padding-top: 10px;
}
.apre-text-box-eixo2-tra {
  width: 47%;
  display: inline-block;
  background-color: rgba(255,255,255,0.9);
  padding-bottom: 400px;
  border-radius: 20px;
  margin: 10px;
  float: left;
  overflow: hidden;
  box-sizing: inherit;
  height: 370px;
  padding-top: 10px;
}
.apre-refl-lista {
  padding: 10px;
}
.apre-refl-check {
  margin-right: 10px;
}
.apre-refl-item{
  width: 600px;
}
.apre-mm-intencionalidade {
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 50%;
}
.apre-mm-historia {
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 50%;
}
.btn-share-prj{
  position: absolute;
  margin: 17px;
  display: flex;
}
.body-live .footer,
.body-live #classes-panel,
.body-live .topnav-navbar,
.body-live .left-side-menu {
  display: none !important;
}
.body-live .container-fluid {
  max-width: 100% !important;
  height: 100%;
}
.body-live .content-page {
  padding: 0 15px 5px 15px!important;
}
.body-live .card-body {
  padding: 5px 10px;
  vertical-align: middle;
}
.body-live .btn-primary {
  background-color: var(--class-color);
  border-color: var(--class-color);
}
#mm-list .mm-list-live .item.card-item.desc-card {
  width: 105px;
  margin: 0 2px;
}
.mm-list-live .item-aluno > div {
  height: 55px;
}
.mm-list-live img.mm-icon-card {
  max-height: 55px;
}
.mm-list-live .item-aluno .aluno-nome {
  font-size: 11px;
  height: 32px;
  margin-bottom: 0px !important;
}
.mm-list-live .item-aluno {
  padding: 10px 3px 5px;
}
.card-body.mm-list-live {
  max-width: 1150px;
  overflow-y: hidden;
  overflow-x: hidden;
  padding-top: 13px;
}
div#collapseMM {
  position: absolute;
  z-index: 99;
  right: 0;
  margin: -12px 30px;
}
div#collapseAlu {
  position: absolute;
  z-index: 99;
  right: 0;
  margin: -12px 30px;
}
body.body-live {
  background-color: var(--main-bg-color);
  background-image: url(../../../uploads/system/logo/favicon_transp.png);
  background-repeat: no-repeat;
  background-position: right 25px bottom 15px;
}
.card-body.live-panel,
#live-main-panel > .card {
  height: 100%;
}
.body-live {
  color: #666;
}
.body-live .btn-materiais.btn-secondary {
  background-color: var(--project-color);
}
.body-live .btn-materiais.btn-secondary.collapsed {
  background-color: #666;
  border-color: #666;
}

.body-live .btn-secondary {
  background-color: #666;
  border-color: #666;
}
.body-live .btn-secondary:not(:disabled):not(.disabled):active {
  background-color: #888;
  border-color: #888;
}
.body-live .btn-outline-primary {
  color: var(--project-color);
  border-color: var(--project-color);
}
.body-live .btn-outline-primary:not(:disabled):not(.disabled):active,
.body-live .btn-outline-primary:hover {
    color:#fff;
  background-color: var(--project-color);
  border-color: var(--project-color);
}
.prj-card {
  padding: 0;
  width: 240px;
  position: relative;
  /* height: 280px; */
}
.prj-card .card {
  border-radius: 5px;
  margin: 10px 6px;
  padding: 5px 5px 0 5px;
  height: 280px;
  background-color: var(--main-bg-color);
  -webkit-box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.35);
  box-shadow: 2px 2px 7px 0 rgba(0,0,0,0.35);
}
.prj-card button.button.button-calm.prj-actions {
  border-radius: 50%;
  padding-top: 0px;
  font-size: 16px;
  position: absolute;
  z-index: 9;
  top: 6px;
  right: 2px;
  background-color: #888 !important;
  height: 30px;
  width: 30px;
  border: none;
  color: #fff;
  text-shadow: 0 0 10px #fff;
  opacity: 1;
}
.prj-card h3 {
  font-family: 'droid-sans';
  font-size: 16px;
  color: #ffffffc0;
  text-align: left;
  margin: 5px;
  height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 200px;
  overflow: hidden;
}
.prj-card p {
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
.info-lbl {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  width: 95px;
  text-align: left;
  display: inline-block;
}
.info-dat {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  width: 25px;
  display: inline-block;
  text-align: right;
}
.prj-card .item.item-body.item-text-wrap {
  width: 100%;
}
.prj-image {
  height: 180px;
  margin:auto;
  box-shadow:none !important;
}
.prj-image-container {
  height: 145px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-top: solid 3px;
}
.prj-mm-icon {
  width: 95px;
  height: 88px;
  position: absolute;
  bottom: 5px;
  right: 5px;
  text-align: right;
}
.prj-mm-icon-botton {
  width:60px;
  height:60px;
  position: absolute;
  bottom: -5px;
  right: 0px;
  border-radius: 50%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.prj-mm-icon img {
  box-shadow: none !important;
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
}
.prj-last-reg {
  position: absolute;
  width: 78px;
  height: 61px;
  background-size: cover;
  background-position: center;
  bottom: 9px;
  right: 7px;
  background-color: #ccc;
  opacity: 0.7;
  border-radius: 3px;
}
.bg-watermaker {
  background-position: bottom 0px right 0px;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.25;
  z-index: 0;
  position: absolute;
  top: 0;
  right: 11px;
  left: 0;
  bottom: 0;
}
img.mm-icon-display {
  max-width: 95%;
  max-height: 29vh;
  margin-top: 15px;
}
.mm-live-display {
  cursor: pointer;
  text-align: center;
  height: 65%;
  /* vertical-align: bottom; */
}
#live-panel-content {
  padding: 0;
}
.disp-concluido {
  background-color: #ffffffb0;
}
.disp-andamento {
  background-color: #ffffffb0;
}
.disp-andamento span.badge.badge-basic-gray {
  background-color: var(--project-color);
  color: #fff;
}

.disp-inativo {
  background-color: #ffffffb0;
}
.mm-live-display.mm-display-se {
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
#live-panel-content .mm-title {
  font-size: 18px;
  padding: 30px 10px 5px;
}
#live-panel-content .badge-basic-gray {
  font-size: 14px;
  padding: 5px 10px;
  margin: 5px 30px 10px;
}
#live-panel-content .badge-success-lighten {
  font-size: 14px;
  padding: 5px 10px;
  margin: 5px 0px 10px;
}
#live-panel-content .badge-danger-lighten {
  font-size: 14px;
  padding: 5px 10px;
  margin: 5px 0px 10px;
}
#live-panel-content span.helper {
  vertical-align: bottom;
}
#live-panel-content .mm-image-container {
  height: 50%;
}
#live-panel-content .btn-materiais {
  margin: auto;
  display: block;
  margin-bottom: 15px;
}
.prj-info {
  margin: 5px 0;
  padding: 5px;
  height: 90px;
  font-size: 12px;
}
.prj-info.prj-info-view {
  background: none;
  position: absolute;
  bottom: 10px;
  right: 30px;
  height: 50px;
}
.prj-info-icon {
  width: 53px;
  display: inline-block;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin: 0 0 0 6px;
  color: #ffffff80;
  position: relative;
}
.prj-info-icon .chat-counter {
  bottom: 0;
  right: 7px;
  height: 20px;
  width: 20px;
  line-height: 20px;
  font-size: 10px;
  background-color: #ffffffc0;
  color: var(--main-bg-color);
}
.prj-info-icon i.icon {
  font-size: 40px;
}
.prj-add-reg {
  float: right;
  width: 32px;
  height: 32px;
  border: none;
  font-size: 31px;
  color: #fff;
  border-radius: 50%;
  line-height: 100%;
  -webkit-box-shadow: 0 0 8px rgb(0 0 0);
  box-shadow: 0 0 8px 0 rgb(0 0 0);
  margin-right: 5px;
}
.prj-add-new {
  position: fixed;
  background-color: var(--main-bg-color);
  bottom: 20px;
  right: 40px;
  width: 40px;
  height: 40px;
  border: none;
  font-size: 31px;
  color: #fff;
  border-radius: 50%;
  line-height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 1);
  box-shadow: 0 0 8px 0 rgba(0,0,0,1);
  z-index: 999;
}
div#scroll-panel {
  overflow-y: auto;
  overflow-x: hidden;
  margin-right: -1px;
  height: calc(100% - 90px);
  position: relative;
}
div#scroll-panel:has(#live_project)  {
  height: calc(100% - 10px);
}
div#live_project {
  padding: 15px;
}

.scrollbar-gray::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #EEE;
border-radius: 10px; }

.scrollbar-gray::-webkit-scrollbar {
width: 12px;
background-color: #EEE; }

.scrollbar-gray::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #888; }

.scrollbar-gray {
scrollbar-color: #888 #EEE;
}

.bordered-gray::-webkit-scrollbar-track {
-webkit-box-shadow: none;
border: 1px solid #888; }

.bordered-gray::-webkit-scrollbar-thumb {
-webkit-box-shadow: none; }

.square::-webkit-scrollbar-track {
border-radius: 0 !important; }

.square::-webkit-scrollbar-thumb {
border-radius: 0 !important; }

.thin::-webkit-scrollbar {
width: 7px; 
}

.alu-list-live .item.card-item.desc-card.equipe.avalia-equipe.card-aluno {
  width: 90px;
  margin: 0 0px 2px;
}
.alu-list-live .item-aluno {
  padding: 3px;
}
.alu-list-live .item-aluno div.aluno-round {
  height: 60px;
  width: 60px;
  margin-bottom: 5px;
}
.alu-list-live .card-aluno .item-aluno .aluno-nome {
  font-size: 12px;
  height: 35px;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  /* white-space: nowrap; */
  width: 100%;
  margin-bottom: 0px !important;
}
.alu-list-live .desc-card .card.stable-bg.ink.ink-dark {
  margin: 0;
}
#liveAddPrj-modal .modal-dialog.modal-sm {
  max-width: 400px;
}
#liveAddPrj-modal .select2-container .select2-selection--multiple {
  /* height: 150px; */
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  padding: 1px 5px;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  color: var(--highlight-color);
}
.disp-aluno .item.card-item.desc-card.equipe.avalia-equipe.card-aluno {
  width: 100%;
  margin: 70px 0 0;
}
.disp-aluno {
  background-color: #f0f0f0;
}
.info-std {
  padding: 0 10px;
  text-align: -webkit-center;
}
.info-std .info-lbl, .info-std .info-dat {
  color: #666;
}
.alunos-cover {
  display: block;
  background-color: rgba(0, 0, 0, .3);
  color:#fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top:0;
  left:0;
  z-index: 9;
  padding: 15px;
  opacity: 1;
  font-size: 13px;
}
.alunos-cover:hover {
  opacity: 0;
}
.mm-disp-info {
  height: 100%;
  width: 100%;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: bottom 10px center;
  background-color: #ffffffb0;
}
.mm-disp-list {
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.mm-disp-panel {
  padding-left: 0;
}
.mm-disp-sidemenu {
  padding-right: 10px;
}
.alu-disp-info {
  height: 100%;
  width: 100%;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: bottom 10px center;
}
.alu-disp-list {
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.alu-disp-panel {
  padding-left: 0;
}
.alu-disp-sidemenu {
  padding-right: 10px;
}
.alu-disp-list .bg-watermaker {
  background-size: 40%;
}
.graph-bncc {
  background-color: #fff;
  margin: 0 0 10px 0;
  border-radius: 5px;
  padding: 10px 20px;
  height: 50%;
  max-height: 50%;
}

.graph-col1 {
  height: 100%;
  padding-right: 0px;
  padding-left: 10px;
}

.graph-col2 {
  height: 100%;
  padding-right: 0px;
  padding-left: 10px;
}

.graph-know {
  background-color: #fff;
  margin: 0 0 10px 0;
  border-radius: 5px;
  padding: 10px 20px;
  height: 50%;
}

.graph-col3 {
  height: 100%;
  padding-right: 15px;
  padding-left: 10px;
}

.graph-tag0, .graph-tag1, .graph-tag2 {
  background-color: #fff;
  margin: 0 0 10px 0;
  border-radius: 5px;
  padding: 10px 20px;
  height: 50%;
  position: relative;
}

#chart-tab-no-tag0, #chart-tab-no-tag1, #chart-tab-no-tag2 {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  padding: 25%;
}

.info-tab-0 {
  background-color: #fff;
  margin: 0 0 10px 0;
  border-radius: 5px;
  padding: 10px 20px;
  height: 50%;
  max-height: 50%;
}

.graph-col0 {
  height: 100%;
  padding-right: 0px;
}
.graph-col0 h4, .graph-col1 h4, .graph-col2 h4, .graph-col3 h4 {
  margin: 10px 0 0 0;
  font-size: 16px;
}
.prjs_data {
  font-size: 13px;
  color: #666;
  margin-left: 10px;
}
.prj-view-id .prj-image-container {
  width: 180px;
  display: inline-block;
  height: 140px;
}

.prj-view-title {
  display: inline-block;
  vertical-align: top;
  padding: 10px 0 0 20px;
  color: #fff;
}

.card.prj-view-id {
  padding: 15px 15px 10px;
  background-color: var(--main-bg-color);
}

.prj-view-id .btn-rounded.alignToTitle {
  margin: 15px;
}

.prj-view-title .page-title {
  opacity: 0.8;
}

.card-body.std-content h4 {padding-left: 15px;}

.btn-menor {
  padding: .2rem .4rem;
}
.form-group.compact-list {
  margin-bottom:0;
}
.form-group.g_disabled input{
background-color: #f0f0f0;
border-width: 1px;
}
.map_table .error {
  display: block;
  text-align: right;
  width: 100%;
  color: darkred;
}
.json-table {
  padding-top:15px;
  min-height: 30px;
  border: solid 1px #e0e0e0;
  border-radius: 3px;
  background-color: #f8f8f8;
}
.premium {
  color: #ccc !important;
}
/*
.premium:after {
  content: "\f349";
  font-family: 'ionicons';
  font-size: 24px;
  position: absolute;
  margin: -6px 5px;
  color: var(--highlight-color);
}
*/
.cpy-icon {
  margin: -5px 7px;
  font-size: 20px;
  position: absolute;
}
#help-modal .close {
  background-color: #fff;
  opacity: 1;
  width: 25px;
  height: 25px;
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 999;
  border-radius: 50%;
  border: 1px solid #888;
  line-height: 25px;
  text-align: center;
}

.mod-academic h6 {
  padding-left:15px;
}
.mod-academic .m-sel {
  color:var(--highlight-color);
}
.modal-content.modal-loading {
  padding: 50px 0 25px;
  margin: 0 70px;
}
#genric-wide-modal .modal-body {
  padding: 0.5rem;
}
#help-modal .modal-xl,
#genric-wide-modal .modal-xl {
  height :90%;
}
.loading-bg {
  background: #E5E7E8 url(../images/loader.gif) no-repeat center;
  background-size: 10%;
}
.mod-academic .module-content {
  border-left: solid 1px #ddd;
}
.mod-academic h5, .mod-academic h6 {
  cursor: pointer;
}
.mod-academic .btn.btn-rounded {
  margin: 0 5%;
}
.mod-academic #progress_panel {
  text-align: center;
  position: absolute;
  width: 90%;
  left: 0px;
  bottom: 0px;
  padding-bottom: 10px;
}
.undone::before {
  content: "\f372";
  font-family: Ionicons;
  padding-right: 3px;

}
.done::before {
  content: "\f373";
  font-family: Ionicons;
  padding-right: 3px;
}

.mod-eval-done {
  text-align: center;
  padding: 25% 0;
  background-color: #efefef;
  margin-bottom: 5px;
  font-size: 24px;
}
.mod-academic #float-menu {
  height: 100% !important;
  background-color: #ffffff;
  margin-top: -0.5rem;
  padding-top: 0.5rem;
  overflow: hidden;
  border-right: solid 1px #ddd;
  position: relative;
  -webkit-mask-image: -webkit-gradient(linear, 85% top, right top, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
}
.mod-academic #float-menu:hover {
  border-right: solid 1px #ddd;
  width: 230px;
  -webkit-mask-image: none;
}
.mod-academic #scroll-menu {
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  width: 230px;
}
#popup-terms {
  width: 400px;
  height: 400px;
  background-color: #ffffff;
  text-align:center;
  padding:20px;
}
#popup-terms h1 {
  font-size:20px;
}
#popup-terms .btn{
  width:100px;
  margin:10px;
  display: inline-block;
}
#popup-terms .terms{
  border: solid 1px #888;
  padding: 10px;
  width: 100%;
  height: 225px;
  overflow-y: auto;
  text-align: left;
  background-color: #eeeeee;
}
#mm_preview {
  width: 100%;
  max-width: 1024px;
  margin:auto;
  overflow-x: hidden;
  padding-bottom: 0;
}
#mm_preview .mod-mm-panel {
  overflow-x: hidden;
  padding-bottom: 60px;
}
#mm_preview #status-panel-preview {
  min-height: unset;
}
#mm_preview .mm-preview-top {
  background-color: var(--main-bg-color);
}
#mm_preview .mm-data-info {
  color:#fff; 
  margin-top: 10px;
  text-align:center;
}
#mm_preview .mm-data-info p {
  font-family:'droid-sans'
}
#mm_preview .mm-data-info h4 {
  font-family:'droid-sans'
}
#mm_preview .mm-data-info h3 {
  font-family:'droid-sans'
}
#mm_preview .mm_icon_preview {
  margin: 0;
  text-align:right;
  padding-top: 25px;
}
#mm_preview .mm_status_preview {
  color: #fff;
  margin-top: 30px;
  margin:auto;
}
#mm_preview .bg-mm-watermak {
  z-index: -1;
  position: fixed;
  max-height: 100vh;
}
#mm_preview .carousel-cell {
  height: auto;
  margin: 0;
}
#mm_preview .bg-mm-watermak {
  z-index: -1;
  position: fixed;
  max-height: 100vh;
}
#mm_preview .carousel-cell {
  height: auto;
  margin: 0;
}
#mm_preview .maquina-mm {
  display: block;
  margin: auto;
  width: 50%;
  max-width: 250px;
  margin-bottom: 10px;
}
#mm_preview .apre-text-box {
  width: 100%;
}
#mm_preview .apre-text-box-ino {
  width: 100%;
}
#mm_preview .apre-text-box-amigo-ino {
  width: 100%;
}
#mm_preview .apre-text-box-vs-ino {
  width: 100%;
}
#mm_preview .apre-text-box-amigo-ino div {
  margin: 0;
}
#mm_preview .carousel-cell h3 {
  text-shadow: -2px 0 #fff, 0 2px #fff, 2px 0 #fff, 0 -2px #fff;
}
#mm_preview input[type="checkbox"] {
  margin-top: 3px;
}
#qrcode {
  margin: 20px auto;
  width: 200px;
}
#mm_preview .background-sts {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.4;
  background-position: bottom right;
  background-repeat: no-repeat;
}
#mm_preview .data-layer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index:2;
  padding: 10px 20px;
}
#mm_preview .mob-select {
  padding: 0 35px;
}
#mm_preview .apre-mm {
  padding: 0 35px 0 35px;
  height: 100%;
}
#mm_preview .apre-text-box-eixo1-tra,
#mm_preview .apre-text-box-eixo2-tra {
  width: 100%;
  margin: 20px 0;
  height: unset;
}
#mm_preview .apre-text-box-exp-cap-texto {
  padding: 5px;  
}
#mm_preview .apre-text-box-exp-cap8 {
  padding-bottom: 5px;  
}
#mm_preview .main-slides-container {
  padding: 0 15px;
}
.mobile-alert {
  text-align: center;
  padding: 5% 10% 10%;
}
.down-icon {
  background: url(../../../assets/backend/images/download_icon.png) center;
  background-size: contain;
  height: 55px;
  width: 55px;
  position: absolute;
  bottom: 9%;
  right: calc(50% - 105px);
  background-repeat: no-repeat;
}
.desc-image-container.container-att,.desc-image-container.container-pdf {
  background-size: 55%;
  background-color: #fff;
  background-repeat: no-repeat;
  opacity: 0.75;
}
.cover-att,.cover-pdf {
  color: #000;
  font-weight: bold;
  width: 100%;
  padding: 20% 10px;
  height: 100%;
  background-color: #ffffffd0;
  text-align: center;
}
.file-name {
  position: absolute;
  top: 3px;
  width: 100%;
  text-align: center;
  color: #222;
}
.planner-mms-tab {
  background-color: #ffffff;
  margin: 0 0 0 10px;
  border-radius: 5px;
  padding: 10px 20px;
  height: 100%;
}
.col-left {
  height: 100%;
  padding-right: 0px;
}
.col-right {
  height: 100%;
  padding-left: 0px;
}
.col-planner-left {
  max-width: 18%;
  flex: 0 0 18%;
}
.col-planner-right {
  max-width: 82%;
  flex: 0 0 82%;
}
.live-full-height.live-planner .row {
  height: 100%;
}
.live-planner h4.titulo{
  text-transform: uppercase;
  font-size: 15px;
  margin: 10px 5px;
  text-align: center;
}
.live-planner h5.titulo{
  text-transform: uppercase;
  font-size: 13px;
  margin: 5px 5px;
  text-align: center;
}
.live-planner h6.titulo{
  text-transform: uppercase;
  font-size: 11px;
  margin: 5px 5px;
  text-align: center;
}
.live-planner h5.nbr {
  text-transform: uppercase;
  font-size: 24px;
  margin: 5px 5px 0;
  text-align: center;
}
.live-planner .mm-titulo {
  height: 20px;
}
.planner-mms-tab .nav-right, .planner-mms-tab .nav-left {
  width: 25px;
  height: 100%;
  background-color: #ccc;
  color: #fff;
  font-size: 25px;
  padding-top: 25%;
  z-index:999;
}
.planner-mms-tab .nav-right.over, .planner-mms-tab .nav-left.over {
  background-color: #888;
}
.planner-mms-tab .nav-left {
  border-radius: 5px 0 0 5px;
}
.planner-mms-tab .nav-right {
  border-radius: 0 5px 5px 0;
}
.planner-mms-tab .nav-content {
  width: calc( 100% - 20px );
  padding: 0 15px;
}
.planner-mms-tab .mm-panel {
  padding-left: 10px;
  padding-right: 10px;
  height: 100%;
}
.planner-mms-tab .mm-panel.first {
  border-left: none;
}
.planner-mms-tab .mm-icon {
  height: 15vh;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 70%;
  margin: auto;
}
.planner-mms-tab .mm-icon.add-mm {
  font-size: 70px;
  text-align: center;
}
.planner-mms-tab .mm-sel-panel {
  border: solid 1px #ccc;
  padding: 10px;
  height: calc( 100% - 45px );
  border-radius: 3px;
  cursor: -webkit-grab;
  cursor: grab;
}
.planner-mms-tab .mm-sel-panel.over{
  background-color: #eee;
}
.planner-mms-tab .mm-sel-panel .disp-items.over,
.planner-mms-tab .mm-sel-panel .pi-items.over{
  background-color: #eee;
}
.planner-mms-tab .mm-sel-panel.candrop{
  border: dashed 1px #888;
}
.planner-mms-tab .mm-sel-panel.cantdrop{
  opacity:0.3;
}
.planner-mms-tab .mm-sel-panel.dragging{
  border: solid 1px #222;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.planner-mms-tab .mm-sense {
  padding: 0px 15px;
  border-top: solid 1px #ccc;
  margin: 10px 25px 0;
}
.planner-mms-tab .pi-sense {
  padding: 0px 15px;
  border-top: solid 1px #ccc;
  margin: 0px 25px 0;
}
.planner-mms-tab .pi-list {
  padding: 0px 15px;
  border-top: solid 1px #ccc;
  margin: 0px 25px 0;
}
.live-planner .mm-preview h5.titulo {
  line-height: 30px;
}
.live-planner .mm-preview h5.titulo span {
  line-height: 15px;
  display: inline-block;
  vertical-align: middle;
}
.live-planner .planner-pis-tab h4.titulo{
  margin: 10px 5px;
}
.live-planner .disp-card h5.titulo,
.live-planner .pis-card h5.titulo{
  margin: 2px 5px;
}
.live-planner .disp-card h6.titulo,
.live-planner .pis-card h6.titulo{
  margin: 2px 3px;
}
.planner-pis-tab {
  background-color: #ffffff;
  margin: 0 0 10px 0;
  border-radius: 5px;
  padding: 10px 8px;
  height: 100%;
  position: relative;
  overflow-y: auto;
}
.planner-pis-tab.candrop {
  background-color: #ffcdcd;
}
.planner-pis-tab.candrop:after {
  content: "\e053";
  text-align: center;
  width: 100%;
  font-size: 30px;
  line-height: 40px;
  font-family: dripicons-v2!important;
  font-style: normal!important;
  font-weight: 400!important;
  font-variant: normal!important;
  text-transform: none!important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  position: absolute;
  bottom: 30px;
  left: 0;
}
.live-planner .disp-card,
.live-planner .pis-card {
  background-color: #4A2B50;
  border-radius: 5px;
  box-shadow: 2px 2px 6px 1px #00000050;
  color: #fff;
  text-align: center;
  position:relative;
  margin-bottom: 8px;
  cursor: -webkit-grab;
  cursor: grab;
}
.live-planner .disp-card.dragging,
.live-planner .pis-card.dragging{
  box-shadow: 2px 2px 6px 1px #4A2B50;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.live-planner .pis-card .pis-habs div {
  display: inline-block;
  background-color: #D4BCDB;
  padding: 0px 5px 0;
  font-size: 10px;
  border-radius: 3px;
  margin: 0 0 0 5px;
  color: #000;
}
.live-planner .pis-card .pis-habs {
  position: absolute;
  bottom: 0px;
  right: 10px;
}
.live-planner .pis-card .disc-icon-bg {
  background-size: 95px;
  background-repeat: no-repeat;
  background-position: bottom -15px right -5px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.4;
}
.live-planner #pis-list{
  margin-top: 20px;
  height: calc(100% - 120px);
  overflow-y: auto;
}
.live-planner #pis-info {
  margin-top: 20px;
}
.live-planner .disp-card .pis-data,
.live-planner .pis-card .pis-data {
  position: relative;
  padding: 4px 8px 18px;
}
.live-planner .disp-card .pis-data h6.titulo,
.live-planner .pis-card .pis-data h6.titulo {
  line-height: 30px;
}
.live-planner .disp-card .pis-data h6.titulo span,
.live-planner .pis-card .pis-data h6.titulo span {
  line-height: 15px;
  display: inline-block;
  vertical-align: middle;
  font-size:12px;
}
.live-planner .disp-card .pis-data h6.titulo span.translated,
.live-planner .pis-card .pis-data h6.titulo span.translated {
  display: inline;
}
.live-planner .disp-card .pis-disc,
.live-planner .pis-card .pis-disc {
  text-transform: uppercase;
  font-size: 10px;
  position: absolute;
  bottom: 2px;
  left: 10px;
  color: #ffffffc0;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 60%;
  overflow: hidden;
}
.planner-mms-tab .mm-sel-panel .disp-items,
.planner-mms-tab .mm-sel-panel .pi-items {
  border: solid 1px #fff;
  width: 100%;
  height: calc(50% - 25px);
  overflow-y: auto;
}
.planner-mms-tab .mm-sel-panel .disp-items.candrop,
.planner-mms-tab .mm-sel-panel .pi-items.candrop {
  border: dashed 1px #888;
  text-align: center;
}
.planner-mms-tab .mm-sel-panel .disp-items.candrop:after,
.planner-mms-tab .mm-sel-panel .pi-items.candrop:after {
  content: "\e035";
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 30px;
  line-height: 40px;
  font-family: dripicons-v2!important;
  font-style: normal!important;
  font-weight: 400!important;
  font-variant: normal!important;
  text-transform: none!important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  display: block;
}
.planner-pis-tab .ui-menu-item b {
  color:#000;
}
.planner-pis-tab .ano-content {
  text-align: center;
  width: 100%;
}
.planner-pis-tab .ano-filter {
  display: inline-block;
  padding: 0px 4px;
  margin: 0px 1px 5px;
  background-color: #fff;
  border: solid 1px #ccc;
  font-size: 12px;
  border-radius: 3px;
  cursor: pointer;
}
.planner-pis-tab .ano-filter.ano-sel {
  color: #fff;
  background-color: #4A2B50;
  border-color: #4A2B50;
}
.planner-pis-tab #pis-search .ui-autocomplete {
  display: block !important;
  border: none;
  width: 95% !important;
  position: inherit;
  margin: auto;
  max-height: unset;
  left: 0 !important;
  top: 0 !important;
}
.planner-pis-tab #pis-search {
  width: 100%;
  position: relative;
  min-height: 30%;
}
.planner-pis-tab #pis-search .ui-menu-item div.main-item {
  background-color: #4A2B50;
  text-transform: uppercase;
  font-size: 14px;
  margin: 7px 0 2px 0px;
  width: 100%;
}
.planner-pis-tab #pis-search .ui-menu-item div {
  background-color: #bbb;
  border-radius: 3px;
  color: #fff;
  padding: 1px 5px;
  margin: 2px auto;
  width: 95%;
}
.planner-pis-tab #pis-search .ui-state-focus.ui-menu-item div {
  background-color: var(--highlight-color);
}
.planner-pis-tab .ui-state-focus,
.planner-pis-tab .ui-widget-content .ui-state-focus {
  border: none !important;
  border-color: transparent !important;
  background-color:unset !important;
  margin: 0;
}
.planner-pis-tab #pis-search.pis-loading::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #000 url(../images/loader.gif) no-repeat center;
  filter:invert();
  background-size: 45px;
  opacity: 0.3;
}
.planner-main-data .mm-total,
.planner-main-data .pi-total {
  display: inline-block;
  font-size: 15px;
  vertical-align: middle;
}
.planner-main-data .mm-sense,
.planner-main-data .pi-sense {
    display: inline-block;
    padding: 0 12px 0 3px;
    border-left: 1px solid #ccc;
}
.planner-main-data h5.nbr {
  display: inline-block;
  font-size: 28px;
  margin: 6px 0;
  width: 60px;
  text-align: right;
}
.planner-main-data h6.titulo {
  display: inline-block;
  margin: 5px 0px 0 3px;
  font-size: 10px;
}
.page-title.planner-page-title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #222;
}
.page-title.planner-page-title h4{
  margin: 0;
}
#pis-data {
  padding: 20px 10px;
  background-color: #4A2B50;
  color: #fff;
  border-radius: 15px;
}
.live-planner #pis-data h4.titulo {
  font-size: 14px;
}
.live-planner #pis-data .fi-pi-habs {
  display: inline-block;
  font-size: 45px;
}
.live-planner #pis-data .fi-pi-total {
  display: inline-block;
  font-size: 67px;
}
.live-planner #filter-help {
  font-size: 13px;
  padding: 7px 12px;
  text-align: center;
  position: absolute;
  background: #fff;
  border: solid 1px #ccc;
  width: 94%;
  margin-top: 0px;
  color: #888;
  z-index: 999;
}
.hab-titulo {
  display: inline-block;
  padding: 2px 10px;
  background-color: #666;
  border-radius: 5px;
  color: #fff;
  margin: 0 5px;
  vertical-align: bottom;
  font-size: 14px;
  cursor: pointer;
}
.hab-desc b{
  color: #222;
  text-transform: uppercase;
}
.hab-desc u {
  color: var(--highlight-color);
}
.hab-desc {
  padding-top:5px;
  color: #888;
  font-size: 12px;
}
#planner-modal .modal-title,
#planner-modal-f1 .modal-title {
  text-transform: uppercase;
}
#planner-modal .disc-icon-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-position: bottom -20px left -10px;
  background-size: 40%;
  opacity: 0.3;
  top: 0;
  left: 0;
}
#planner-modal-f1 .disc-icon-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-position: bottom 20px right 10px;
  background-size: 40%;
  opacity: 0.3;
  top: 0;
  left: 0;
}
#planner-modal .modal-habs-over,
#planner-modal-f1 .modal-habs-over {
  position: relative;
}
#planner-modal .pis-etapa {
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  background-color: #4A2B50;
  color: #ffffffe0;
}
#planner-modal .pis-crono .row {
  padding-right: 15px;
}
#planner-modal .pis-alu,
#planner-modal .pis-prof, 
#planner-modal .pis-etapa {
  border: none;
  text-align:center;
}
#planner-modal .pis-alu,
#planner-modal .pis-prof {
  padding: 0px 0 2px;
  font-size: 12px;
  line-height: 120%;
}
#planner-modal .pis-act {
}
#planner-modal .pis-sugest {
  width: 100px;
  text-align: center;
  padding: 4px;
  margin: 30px auto;
  text-transform: uppercase;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  background-color: var(--main-bg-color);
}
#planner-modal .pis-prof div, 
#planner-modal .pis-alu div {
  margin: 2px;
  padding: 5px;
  border-radius: 5px;
  text-align: left;
}
#planner-modal .pis-crono .pis-alu div {
  background-color: #00000005;
  /*border: solid 2px #4A2B50;*/
}
#planner-modal .pis-crono .pis-prof div {
  background-color: #00000010;
  /*border: solid 2px #4A2B50;*/
}
#planner-modal .pis-alu b, 
#planner-modal .pis-prof b {
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
}
#planner-modal .pis-prof b {
  color: #4A2B50;
}
#planner-modal .pis-alu b {
  color: #4A2B50;
}
#planner-modal .pis-crono-titulo {
  text-align: center;
  font-size: 17px;
  margin-bottom: 5px;
}
#planner-modal .pis-orienta {
  margin: 2px;
  background-color: #fff;
  padding: 5px;
  border-radius: 5px;
  border: solid 2px #AF98C7;
}
#planner-modal .pis-orienta b {
  text-align: center;
  font-size: 17px;
  display: block;
}
#planner-modal .modal-mm-over {
  position: relative;
}

element.style {
  background-image: url(https://gestor.significa.app/ws/files/assets/mm/faroe.png);
}
#planner-modal .mm-icon {
  width: 100%;
  height: 180px;
  background-repeat: no-repeat;
  background-position: center;
  margin: 20px auto;
  background-size: contain;
}
#planner-modal .mm-intent b {
  font-size: 17px;
  display: contents;
  color: #4A2B50;
}
#planner-modal .mm-uni-titulo {
  text-align: center;
  font-size: 18px;
  display: block;
  font-weight: bold;
  color: #4A2B50;
  margin: 20px 0 5px;
}
#planner-modal .mm-uni-subtitulo {
  text-align: center;
  font-size: 16px;
  color: #4A2B50;
  margin: 10px 0 5px;
  font-weight: bold;
}
#planner-modal .uni-icon {
  width: 100%;
  height: 80px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#prov_list input[type="checkbox"] {
  margin-right: 10px;
}
#planner-modal-f1 .modal-body {
  overflow-y: auto;
}
#planner-modal .uni-desc {
  text-align: center;
  margin-bottom: 15px;
}
.body-live .btn-planner.btn-primary.collapsed {
  background-color: var(--highlight-color);
  border-color: var(--highlight-color);
}
.body-live .btn-planner.collapsed {
  background-color: #666;
  border-color: #666;
}
#planner-modal .modal-body {
  overflow-y: auto;
}
#planner-modal .pis-obj {
  margin: 10px auto;
}
#planner-modal .pis-obj b {
  display: block;
}
#planner-modal .row.pis-hdr,
#planner-modal .row.pis-hdr .pis-maker{
  background-color: #4A2B50;
  color: #fff;
  padding: 0;
  text-align: center;
}
#planner-modal .row.pis-hdr{
  padding: 10px 0;
}
#planner-modal .mm-pissel .row {
  border: solid 1px #666;
  border-right: none;
  /* padding-bottom: 20px; */
}
#planner-modal .pis-overview {
  border: solid 1px #666;
  border-left:none;
  padding-bottom: 5px;
  max-width: 100%;
  line-height: 120%;
  font-size: 13px;
}
#planner-modal .pis-all {
  display: flex;
  width: 1090px;
  margin: 0 auto 15px;
}
#planner-modal .pis-overview.pis-first {
  border-left: solid 1px #666;
}
#planner-modal .mm-plan-info {
  padding: 10px;
}
#planner-modal .row.pis-hdr .pis-col,
#planner-modal .row.pis-hdr .pis-maker{
  padding: 0px 10px;
}
#planner-modal .row.pis-even, 
#planner-modal .row.pis-odd {
  /*border-bottom: 2px solid #4A2B50;*/
  padding: 2px 2px;
}
#planner-modal .row.pis-odd {
  background-color: #f2e3f5;
}
#planner-modal .pis-line {
  display: flex;
}
#planner-modal .row.pis-plan-info {
  border: 2px solid #4A2B50;
  /*border-bottom: none;*/
  margin: -5px auto;
  width:1090px;
}
#planner-modal .row.pis-even .pis-maker,
#planner-modal .row.pis-odd .pis-maker {
  padding: 0 10px;
  line-height: 120%;
}
#planner-modal .pis-maker {
  color: #666;
  font-size:12px;
}
#planner-modal .pis-maker b {
  color: #4A2B50;
  display: block;
  padding: 5px 0;
  font-size:13px;
}
#planner-modal .mm-title-ord {
  color: #4A2B50;
  font-weight:normal;
  font-size: 18px;
  text-align: left;
  padding: 5px 0 0;
  text-transform: uppercase;
}
#planner-modal .mm-title {
  color: #4A2B50;
  font-weight:bold;
  font-size: 24px;
  text-align: left;
  padding: 0 0 20px;
  text-transform: uppercase;
}
#planner-modal .mm-intent {
  padding: 20px;
  display: flex;
}
#planner-modal .modal-title .btn.btn-secondary.collapsed {
  position: absolute;
  right: 40px;
  top: 10px;
}
#planner-modal .mm-sel-item .mm-icon {
  height: 70px;
  background-size: contain;
  margin: 0px auto;
}
#planner-modal .mm-sel-item {
  text-align: center;
  position: relative;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.1;
}
#planner-modal .mm-sel-item.mm-sel-inactive {
  cursor: default !important;
}
#planner-modal .mm-sel-item.mm-sel-inactive .mm-icon {
  opacity: 0.4;
}
#planner-modal .mm-sel-serie {
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 15px;
  margin-top: 35px;
}
#planner-modal .mm-sel-serie span{
  vertical-align: middle;
}
#planner-modal .mm-sel-ano {
  background-color: #f2e3f5;
  padding: 10px 0;
}
#planner-modal .mm-stamp {
  position: absolute;
  top: 35px;
  width: 90%;
  text-transform: uppercase;
  margin: 0 -15px;
  line-height: 1.2;
  background: #FFFFFFC0;
}
#planner-modal .mm-stamp.mm-change-me {
  color:var(--highlight-color);
} 
#planner-modal .class-plan-info {
  padding: 10px;
  text-align: center;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 50%;
}
#planner-modal .class-plan-info .class-top-bar {
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  background-color: #4A2B50;
  color: #fff;
  padding: 15px 0;
  margin: 0;
}
#planner-modal .class-plan-info .class-title h1 {
  text-transform: uppercase;
  margin-bottom: 27px;
  font-size: 36px;
  color: #4A2B50;
  font-weight: 900;
  text-align: left;
  padding: 0 30px;
}
#planner-modal .class-plan-info .class-title h2 {
  text-transform: uppercase;
  font-size: 30px;
}
#planner-modal .class-plan-info .class-title h3 {
  font-size: 24px;
}
#planner-modal .class-plan-info .class-maker h3 {
  text-transform: uppercase;
  text-align: left;
  font-size: 20px;
  font-weight: normal;
  padding: 0 30px;
  margin:0;
  color: #4A2B50;
}
#planner-modal .class-plan-info .class-title {
  margin: 30px 0;
}
#planner-modal .mm-icon.mm-transp-icon {
  background-size: contain;
}
#planner-modal .class-plan-info .mm-transp {
  font-size: 25px;
  text-align: left;
  padding: 0 30px;
  margin: 0 0 20px;
  text-transform: uppercase;
  color: #4A2B50;
  font-weight: 900;
  border-bottom: dashed 2px #ccc;
}
#planner-modal .class-plan-info .mm-trasnp-intent {
  font-size: 14px;
  max-width: 400px;
  margin: 10px 0px 0 30px;
  text-align: left;
  background-color: #f2e3f5;
  padding: 30px;
  border-radius: 30px;
}
#planner-modal .modal-xl {
  max-width: 95%;
}
.mm-geral {
    padding: 10px 55px;
}
#sections_grp a {
  text-decoration: underline;
}

.planner-side-menu {
  flex: 1;
  background-color: #ffffff80;
  margin: -10px 0px 0 -20px;
  border-radius: 5px 0 0 5px;
  height: calc( 100% + 20px );
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
  row-gap: 20px;
  padding-top: 20px;
}

.col-plannerse-left {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  margin: 0 0 0 15px;
  border-radius: 5px;
  padding: 10px;
  height: 100%;
  max-width: calc( 25% - 15px);
  background: #fff;
  overflow-y: auto;
}

.planner-tabs {
  margin: 40px 0 0;
  padding: 0px 10px;
  width: 100%;
}

.planner-tabs.candrop {
  height: 0;
}

.planner-side-menu-item {
  cursor: pointer;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.tab-nav {
  cursor: pointer;
  color: #fff;
}

.tab-nav.active {
  background: #fff;
  border-radius: 5px 5px 0 0;
  color: var(--main-bg-color);
}

.planner-top-menu.planner-main-data div.tab-nav.active {
  color: var(--main-bg-color);
}

.planner-side-menu-item i {
  font-size: 25px;
}

.planner-top-menu.planner-main-data {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  gap: 11px;
  margin: -10px -20px 0 -20px;
  padding: 5px 10px 0;
  background: #ffffff20;
  justify-content: center;
  z-index: 1;
  border-radius: 5px 5px 0 0;
  height: 36px;
  width: 100%;
  position: absolute;
}

.header-info{
  text-transform: capitalize;
  align-items: center;
  flex-direction: row;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.page-title.plannerse-page-title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #222;
  flex: 10;
  padding-left: 20px;
}

.header-info .buttons {
  flex: 8;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10px;
}

.planner-top-menu.planner-main-data div {
  padding: 0 4px;
  display: flex;
  gap: 3px;
  flex: 1;
  align-items: center;
  flex-direction: row;
  color: #fff;
  height: 40px;
  justify-content: center;
}

#live-panel .warn {
  border-color: #fd7e14;
  background-color: #fd7e1420;
}

#live-panel .danger {
  border-color: #FF4B4B;
  background-color: #FF4B4B20;
}

#live-panel .good {
  border-color: #9ACB47;
  background-color: #9ACB4720;
}

#live-panel .almost {
  border-color: #ffbc00;
  background-color: #ffbc0020;
}

.planner-mms-tab .disp-list {
  padding: 0px 15px;
  margin: 0px 25px 0;
}

.area-hab-sts,
.area-sts {
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: solid 2px #fff;
  margin: 0 5px 5px;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  cursor: pointer;
  border-color: #808080;
  background-color: #80808020;
}

.live-planner .area-sts i {
  flex: 1;
}

.live-planner .area-hab-sts h5.nbr,
.live-planner .area-sts h5.nbr {
  margin: 3px;
  font-size: 14px;
  flex: 3;
}

.live-planner .area-hab-sts h6.titulo {
  font-size: 10px;
  text-align: left;
  color: #888;
  flex: 25;
}
.live-planner .area-hab-sts h6.titulo span {
  font-size: 12px;
  color: #444;
}

.live-planner .area-sts h6.titulo {
  font-size: 13px;
  text-align: left;
  flex: 20;
}

.planner-mms-tab .disp-list.trimestre {
  min-height: unset;
}

.planner-top-menu-bg {
  background: var(--main-bg-color);
  height: 40px;
  width: 100%;
  position: absolute;
  top:  0;
  z-index: 0;
}

div#main-data {
  display: none;
}

.type {
  flex: 1;
  text-transform: uppercase;
  font-size: 12px;
  height: 20px;
  border-radius: 5px;
  line-height: 20px;
  border: solid 1px #ccc;
  cursor: pointer;
}

.filter-types {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 3px;
  flex-wrap: wrap;
  margin: 15px 0 10px;
}

.type.active {
  background: var(--main-bg-color);
  color: #fff;
  border-color: var(--main-bg-color);
}

.planner-search-activities {
  margin: 0;
  height: calc(100% - 90px);
  width: 100%;
}

.planner-top-menu.planner-main-data .tab-nav h6.titulo {
  font-size: 14px;
}

.live-planner .planner-tabs h4.titulo {
  font-size: 16px;
  margin: 15px;
}

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

.danger {
  color: #FF4B4B;
}

#live-panel h4.titulo.danger {
  color: #FF4B4B;
  background-color: #fff;
}

#live-panel h4.titulo.warn {
  color: #fd7e14;
  background-color: #fff;
}

#live-panel h4.titulo.almost {
  color: #ffbc00;
  background-color: #fff;
}

#live-panel h4.titulo.good {
  color: #9ACB47;
  background-color: #fff;
}

.col-plannerse-right .planner-mms-tab .nav-content {
  width: calc(100% + 30px);
}

.col-lg-10.col-plannerse-right {
  max-width: 75%;
}

.live-planner .disp-card.plannerse,
.live-planner .pis-card.plannerse {
  background-color: var(--main-bg-color);
}

.live-planner .planner-pis-tab.candrop .pis-card.plannerse,
.live-planner .planner-pis-tab.candrop .disp-card.plannerse {
    display: none;
}

.live-planner .disp-card.plannerse .pis-habs,
.live-planner .pis-card.plannerse .pis-habs {
  position: absolute;
  top: 5px;
  right: 13px;
}

.live-planner .disp-card.plannerse .pis-data, 
.live-planner .pis-card.plannerse .pis-data {
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.live-planner .disp-card.plannerse .pis-data h6.titulo, 
.live-planner .pis-card.plannerse .pis-data h6.titulo {
  line-height: 15px;
  width: 87%;
  margin: 5px auto 0;
}

.live-planner .disp-card.plannerse .pis-data h7.teacher,
.live-planner .pis-card.plannerse .pis-data h7.teacher {
  text-transform: uppercase;
  font-size: 10px;
  margin: 0px;
  text-align: center;
  color: #ffffff80;
}

.col-plannerse-right .planner-mms-tab .pi-list {
  text-transform: uppercase;
}

.planner-mms-tab .mm-sel-panel .disp-items.trimestre {
  height: calc( 100% - 38px);
}

.live-planner #pis-list.planner-pis-tab {
  height: 100%;
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.col-plannerse-right .planner-mms-tab .mm-sel-panel {
  cursor: unset;
}

.highlighted {
  background-color: #fb7f1a !important;
}

.trimester-selected{
  background-color: #666;
  border-color: #666;
  color: white;
}

.filter-main-menu {
  width: 100%;
  width: 100%;
  display: block;
  z-index: 1000;
  position: relative;
}

.menu {
  display: flex;
  margin: 5px 5px 0;
}

.assignment-selected{
  width: 100%;
  color: #fff;
  background: var(--main-bg-color);
  border: solid 1px #fff;
}

.submenu {
  display: flex;
  flex-direction: row;
  margin: 0 5px;
}

.submenu > button {
  flex: 1;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  color: #fff;
  text-align: center;
  width: 100%;
  background: var(--main-bg-color);
  border: solid 1px #fff;
}

.preview-period {
  width: 100%;
  display: block;
  text-align: center;
  height: 30px;
  font-size: 15px;
  background: none;
  color: var(--main-bg-color);
}

#live-panel-content .btn-materiais.trimester-selected {
  margin-bottom: 9px;
  width: 70%;
  border: none;
  background: var(--main-bg-color);
}

.live-planner .disp-card .pis-type,
.live-planner .pis-card .pis-type {
  position: absolute;
  bottom: 3px;
  right: 15px;
  font-size: 10px;
  text-transform: uppercase;
}

.planner-mms-tab .mm-panel.mm-panel-single {
  margin: auto;
  text-align: center;
}

.live-planner .mm-panel-single .disp-card.plannerse, 
.live-planner .mm-panel-single .pis-card.plannerse {
  width: 48%;
  display: inline-block;
  margin: 0 1% 10px;
}

#pis-search {
  position: relative;
}

#pis-search.planner-loading {
  min-height: 50px;
  border: solid 1px #ccc;
  width: 91%;
  margin-top: 0px;
}

.period-selector {
  flex: 10;
  display: flex;
  font-size: 18px;
  text-transform: uppercase;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  /* gap: 20px; */
}

.nav-arrow {
  margin: 0 15px;
  color: #fff;
  background: #ccc;
  width: 27px;
  height: 27px;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 20px;
  line-height: 27px;
  cursor: pointer;
}

.nav-arrow.active {
  background: var(--highlight-color);
}

.modal-act-type {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
  margin: 0 10px 15px;
  background: var(--highlight-color);
  color: #fff;
  padding: 10px;
  width: fit-content;
  border-radius: 10px;
}

.modal-subtitle1 span {
  text-decoration:underline
}

.modal-subtitle1 {
  font-size: 16px;
  margin: 20px 10px 10px;
}

.modal-subtitle2 span {
  text-decoration:underline
}

.modal-subtitle2 {
  font-size: 13px;
  margin: 20px 10px 10px;
}

.view-content {
  margin: 10px 20px;
  border: solid 1px #ccc;
  background: #eee;
  padding: 10px;
}

#view-geekie {
  max-height: 150px;
  overflow-y: auto;
}

#view-description b,
#view-expectations b{
    color: var(--highlight-color);
}

.modal-view-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  width: 50%;
  margin:auto
}

.modal-view-buttons button {
  flex: 1;
}

textarea#edit_observation {
  margin: auto;
  display: block;
  resize: none;
}

.checkbox-group {
  display: flex;
}

.checkbox-group .col-md-1 {
  width: 30px;
  flex: 0 0 30px;
}

#edit_habs_list {
  display: flex;
  column-gap: 15px;
  max-width: 100%;
  flex-wrap: wrap;
  flex-direction: row;  
}

#edit_habs_list > div > div.remove-hab {
  display: inline-block;
  width: 16px;
  border: solid 1px #fff;
  border-radius: 50%;
  margin-left: 10px;
  height: 16px;
  padding: 0px 0px;
  text-align: center;
  line-height: 13px;
  font-size: 11px;
  cursor: pointer;
  position: absolute;
  right: 10px;
}

#edit_habs_list > div {
  background-color: var(--highlight-color);
  color: #fff;
  padding: 6px 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 350px;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  padding-right: 30px;
}

#edit_habs_list > div.cur-default {
  background-color: #aaa;
  padding-right: 10px;
}

#edit_habs_list > div > div {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.ui-autocomplete {
  z-index: 10000;
}

.list-habhigh {
  background: var(--main-bg-color);
  color: #fff;
  padding: 3px 0 3px 10px;
}

.list-hab {
  background: #eee;
  color: #444;
  padding: 3px 0 3px 10px;
}

.planner-loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.planner-loading:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* :not(:required) hides these rules from IE9 and below */
.planner-loading:not(:required) {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.planner-loading:not(:required):after {
  content: '';
  display: block;
  position: absolute;
  top: calc(25% + 7px);
  left: calc( 50% - 0.5em);
  font-size: 10px;
  width: 1em;
  height: 1em;
  filter: invert(0.3);
  -webkit-animation: spinner 2000ms infinite linear;
  -moz-animation: spinner 2000ms infinite linear;
  -ms-animation: spinner 2000ms infinite linear;
  -o-animation: spinner 2000ms infinite linear;
  animation: spinner 2000ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
}

.live-planner .pis-card.plannerse.type-pi {
  background-color: #554596;
}

.live-planner .pis-card.plannerse.type-mod {
  background-color: #F3943D;
}

.live-planner .disp-card.plannerse.type-ofic {
  background-color: #A84D97;
}

.live-planner .disp-card.plannerse.type-leitura {
  background-color: #0c92cf;
}

.live-planner .pis-card.plannerse.type-select,
.live-planner .disp-card.plannerse.type-select {
  background-color: #808080;
}

li.ui-menu-item {
  border-bottom: solid 5px #fff;
}

.ui-autocomplete.ui-widget-content.edit-habs-list {
  max-width: 67%;
  max-height: 40vh;
}

.ui-widget-content li.ui-menu-item.ui-state-focus {
  border-bottom: solid 5px #fff;
}

.ui-widget-content li.ui-menu-item.ui-state-focus .list-habhigh,
.ui-widget-content li.ui-menu-item.ui-state-focus .list-hab {
  background: var(--highlight-color);
}

#status-panel-select {
  background-color: var(--main-bg-color);
  padding: 50px;
  text-align: center;
  color: #fff;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  width: 80%;
  margin: auto;
}

#status-panel-select .mm-item {
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  row-gap: 10px;
  column-gap: 15px;
  align-items: center;
  border: solid 1px #ffffff40;
  height: 45px;
  padding: 30px;
}

#status-panel-select .options {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex: 2;
  column-gap: 10px;
}

#status-panel-select .option {
  flex: 1;
  background: #808080;
  height: 25px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#status-panel-select .title {
  flex: 1;
  font-size: 15px;
}

#status-panel-select h4 {
  font-family: 'droid-sans';
  margin-bottom: 3px;
}

#status-panel-select small {
  padding-bottom: 15px;
  display: block;
}

#status-panel-select .mm-item.active {
  background: #F3943D30;
}

#status-panel-select .mm-item.completed {
  background: #00FF0030;
}

.prj-card.card-practice {
  width: 340px;
}

.prj-card.card-practice .card {
  height: unset;
}

.prj-card.card-practice h3 {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  color: #ffffff;
  margin: 5px 0;
}

.prj-card.card-practice h4 {
  color: #ffffffc0;
  text-transform: uppercase;
  font-size: 11.6px;
  text-align: left;
  font-weight: normal;
  margin: 0;
}

.prj-card.card-practice h5 {
  margin: 8px 0;
  text-transform: uppercase;
  color: #ffffff80;
  font-size: 11px;
  max-width: 200px;
}

.prj-card.card-practice .prj-info {
  height: 75px;
  padding: 5px 15px;
}

.prj-card.card-practice  .prj-info-icon {
  margin: 0px 0 0 20px;
}

.prj-card.card-practice .prj-last-reg {
  right: 20px;
}

.badge-inativo {
  color: #888;
  background-color: #ddd;
  font-weight: normal;
  font-size: 14px;
  padding: 5px 10px;
  margin: 5px 30px 10px;
}
.badge-andamento {
  color: #fff;
  background-color: var(--main-bg-color);
  font-weight: normal;
  font-size: 14px;
  padding: 5px 10px;
  margin: 5px 30px 10px;
}
.badge-concluido {
  color: #fff;
  background-color: #0e3d0e;
  font-weight: normal;
  font-size: 14px;
  padding: 5px 10px;
  margin: 5px 30px 10px;
}

.view-practice .card.prj-view-id {
  background-color: var(--project-color);
}

.view-practice .page-title h3 {
  text-transform: uppercase;
  font-size: 20px;
  margin: 5px 0;
}

.view-practice .page-title h4 {
  text-transform: uppercase;
  font-size: 17px;
  color: #ffffffa0;
}

.view-practice .prj-view-title {
  padding: 0 0 0 20px;
}

.planner-curr-list-item {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
  border: solid 1px;
  padding: 5px;
}

.planner-curr-list-item .sub1 {
  flex: 4;
}

.planner-curr-list-item .sub2 {
  flex: 4;
}

.planner-curr-list-item .title {
  flex: 10;
}

.planner-curr-list-item .expectations {
  flex: 10;
  overflow-y: auto;
  max-height: 65px;
}

.cur-list-area {
  text-align: center;
  font-size: 20px;
  margin: 10px 0 30px;
  color: var(--highlight-color);
}

.planner-curr-list-item.odd {
  background: #e0e0e0;
}

.planner-curr-list-item.even {
  background: #f8f8f8;
}

.planner-curr-list-item.header {
  background: var(--main-bg-color);
  color: #fff;
  border: solid 1px var(--main-bg-color);
  padding: 10px;
}

.planner-curr-list-item div {
  padding: 5px;
}

.tippy-box[data-theme~='custom'] {
    background-color: #fff; 
    color: #888888; 
    padding: 10px;
    font-size: 14px; 
    border: 1px solid #c5c5c5; 
    border-radius: 5px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    max-width: 600px;
  }

.fingers-rating {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    /* margin-top: 20px; */
    max-width: 450px;
    margin: 20px auto;
}

.fingers-rating div {
    max-height: 65px;
    overflow: hidden;
    border: solid 1px #ffffff;
    border-radius: 5px;
    display: flex;
    align-content: center;
    align-items: center;
    /* text-align: center; */
    width: 55px;
    justify-content: center;
}

.fingers-rating div img {
    max-height: 80px;
    opacity: 0.25;
    transition: opacity 0.3s;
}

.fingers-rating div.selected {
    border-color: var(--highlight-color);
}

.fingers-rating.autoavaliacao div.selected {
  border-color: #ccc;
}

.fingers-rating div.selected img {
    opacity: 1;
}

.mod-aval-fingers .nav-tabs .nav-item {
    max-height: 150px;
}

.mod-aval-fingers .nav-tabs .nav-link {
    height: -webkit-fill-available;
}

.mod-aval-fingers #mass-ava-tabcontent {
    max-height: unset;
    height: 100%;
}

.mod-aval-fingers #avalMassForm {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.col-md-12.h-100 {
    position: relative;
}

.mod-aval-fingers .tab-content>.active {
    height: 100%;
    display: flex;
}

.mod-aval-fingers .eixo-content {
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    flex: 0 0 100%;
}

.mod-aval-fingers .ava-comp {
    max-height: 150px;
    margin: 0;
    padding: 10px;
}

.mod-aval-fingers .table-scroll {
    max-height: unset;
    height: calc(90vh - 330px);
}

.mod-aval-fingers .table-scroll thead {
    background-color: var(--main-bg-color);
    border-color: var(--main-bg-color);
}

.mod-aval-fingers .table-scroll thead th {
    background-color: var(--main-bg-color);
    border-color: var(--main-bg-color);
    font-weight: bold;
    z-index: 10;
    vertical-align: top;
}

.fingers-rating.aval-table {
  margin: 6px 25px;
  padding: 3px 10px;
  background: #fff;
  border-radius: 5px;
  border: solid 1px #f0f0f0;
}

.mod-aval-fingers .ava-photo {
  width: 60px;
  height: 60px;
  margin: 5px;
}

.mod-aval-fingers .ava-photo:hover {
  transform: scale(2) translate(20%, 15%);
}

.fingers-group {
  display: flex;
  height: 15px;
  width: 90%;
  margin: auto;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin-top: 4px;
}

.fingers-group div {
  height: 13px;
  width: 13px;
  background: #fff;
  border-radius: 50%;
  border: solid 3px #ffff;
}

.fingers-group div.selected {
  background-color: var(--highlight-color);
}

.rating_mass img{
  opacity: 0.5;
  width: 50px;
  height: auto;
}

.rating_mass img.selected {
  opacity: 1;
}

.image-slider img {
  width: 50px;
  cursor: pointer;
  opacity: 0.5;
}
.image-slider img.selected {
  opacity: 1;
}

.observation{
  width: 100%;
  overflow-y: auto;
  border: solid 1px #ccc;
  margin-top: 10px;
  height:auto;
  margin: 0 auto;
}

.observation-texto {
  color:#444;
}


.body-live .view-practice .btn-outline-primary {
  border-color: var(--main-bg-color);
  color: var(--main-bg-color);
  background: #fff;
}

.body-live .view-practice .btn-outline-primary:hover {
  color: var(--project-color);
}

.body-live .view-practice .btn-outline-primary:not(:disabled):not(.disabled):active, .body-live .view-practice .btn-outline-primary:hover {
  border-color: #fff;
}

.nav-arrow.addActivity {
  position: absolute;
  top: 5px;
  right: 15%;
}

.desc-buttons{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.desc-buttons button {
  margin-right: 10px;
}  


.highlight-students{
  color: var(--highlight-color) !important;
  text-decoration: underline !important;
}

.drag-item.over {
  border: 3px dotted #666;
}

.planner-curr-list-item.even.item-done {
  background: #d5ffd5;
}

.planner-curr-list-item.item-done {
  background: #afedaf;
}

.planner-curr-list-item .sub1 i.dripicons-checkmark,
.planner-curr-list-item .sub2 i.dripicons-checkmark {
  display: inline-block;
  height: 20px;
  width: 20px;
  border: solid 2px #888;
  border-radius: 50%;
  text-align: center;
  padding: 0px;
  font-size: 13px;
  line-height: 14px;
}

.planner-curr-list-item.item-done .sub1,
.planner-curr-list-item.item-done .sub2 {
  display: flex;
  align-items: center;
  flex: 5;
}

.planner-curr-list-item.item-done .sub1 .icon,
.planner-curr-list-item.item-done .sub2 .icon {
  padding: 0 3px 0;
  margin: 0 0 0 -3px;
}

.ui-tooltip {
  max-width: 600px;
}

.btn-cur {
  position: absolute;
  top: 0;
  right: 20px;
  padding: 0px 10px;
}


.sel-area-item,
.sel-con-hab {
  max-width: 600px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-size: 13px;
  text-transform: uppercase;
}

.sel-area-item {
    max-width: 90%;
}

.sel-area-item div,
.sel-con-hab div {
  flex: 1;
  text-align: center;
  background: #eee;
  margin: 5px;
  padding: 5px 0;
  border-radius: 5px;
  cursor: pointer;
}

.sel-area-item div.active,
.sel-con-hab div.active {
  background: var(--highlight-color);
  color: #fff;
}

.sel-area-item small {
  display: block;
  font-size: 10px;
}

.planner-curr-list-item.link:hover {
  background: var(--highlight-color);
}

.planner-curr-list-item.link {
  cursor: pointer;
}

textarea.observation:disabled {
  background-color: #ffffff;
  width: auto;
  padding: .45rem .9rem;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6c757d;
  display: block;
}

.container-texto {
  overflow: hidden;
}

textarea#edit-observation-textarea {
  width: auto;
  margin: auto;
}

#observation-popup {
  position: absolute;
  background: #f0f0f0;
  bottom: 55px;
  left: calc( 50% - 313px );
  padding: 5px 10px;
  overflow-y: auto;
}

#pi-collection {
  text-transform: uppercase;
  font-size: 15px;
  margin: 10px 5px;
  text-align: center;
}

#edit-date-group{
  margin-left: 8%;
}

#edit_date{
  width: 84%;
}

#observation_lbl{
  margin-left: 10%;
}

.device-responsible {
    color: #888;
    font-size: 13px;
    text-align: center;
    min-height: 10px;
}

.planner-curr-list-item .bncc {
  flex: 3;
}

.planner-curr-list-item div {
  word-wrap: break-word; 
  word-break: break-word; 
  white-space: normal; 
  overflow-wrap: break-word; 
}

.desc-data-activities {
  display: inline-block;
  padding: 0px 16px 5px 16px;
  color: #ffffff80;
  vertical-align: top;
  padding: 3px 13px 0;
  max-height: 30px;
  overflow: hidden;
  font-size: 11px;
  text-align: right;
}

.desc-areas-activities-name {
  color: #ffffffc0;
  vertical-align: top;
  padding: 2px 13px;
  max-height: 30px;
  overflow: hidden;
  font-size: 14px;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: bold;
}

.desc-registro-module{
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding: 9px 30px 7px 12px;
  color: #fff;
  text-align: left;
  overflow: hidden;
}

.btn-evaluation{
  margin-top: 5px;
}

.score-level-card{
  width: 31%;
  display: inline-block;
  margin: 5px 1%;
  background-color: #eee;
  border-radius: 6px;
  position: relative;
}

.score-level-title{
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 10px 5px 0px;
}