body {
  font-family: 'Poppins', sans-serif !important;
  background: #f8f8f8;
  /*#e0deeb*/
  color: #2b044d !important; }

body {
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: 20px;
  right: 20px;
  padding: 30px;
  overflow-y: auto;
  overflow-x: hidden; }

/* Let's get this party started */
::-webkit-scrollbar {
  width: 10px; }

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 10px;
  border-radius: 10px; }

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #cccccc;
  -webkit-box-shadow: none; }

::-webkit-scrollbar-thumb:window-inactive {
  background: transparent; }

.jhd-cardProducts {
  display: -ms-grid;
  display: grid; }
  .jhd-cardProducts .card {
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 2;
    grid-row-end: 3; }
    .jhd-cardProducts .card .card-body {
      padding: 0 !important;
      -webkit-box-align: start !important;
      -ms-flex-align: start !important;
      align-items: start !important; }
      .jhd-cardProducts .card .card-body .jhd-productFoto, .jhd-cardProducts .card .card-body .jhd-areaFoto {
        width: 100%;
        height: 10rem;
        overflow: hidden;
        margin: 0 !important;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        border-radius: .3rem; }
        .jhd-cardProducts .card .card-body .jhd-productFoto img, .jhd-cardProducts .card .card-body .jhd-areaFoto img {
          width: 100% !important;
          max-height: 10rem; }
      .jhd-cardProducts .card .card-body .jhd-descrition {
        padding: 1rem;
        width: 100% !important;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start; }
        .jhd-cardProducts .card .card-body .jhd-descrition p {
          display: none;
          text-align: left;
          padding: 1rem !important; }
          .jhd-cardProducts .card .card-body .jhd-descrition p.jhd-price {
            color: #0070c0;
            font-weight: 600; }

.jhd-cardGrid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-gap: 1.3rem 1rem;
  max-width: 100vw;
  max-height: 75vh;
  overflow: auto; }
  .jhd-cardGrid .card {
    min-height: 10rem;
    -webkit-box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.08);
    border-radius: .5rem;
    border: none; }
    .jhd-cardGrid .card .card-body {
      width: 100%;
      position: relative; }
      .jhd-cardGrid .card .card-body .jhd-areaControls {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: absolute;
        top: -1rem;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: .5rem;
        z-index: 1; }
        .jhd-cardGrid .card .card-body .jhd-areaControls article {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
          .jhd-cardGrid .card .card-body .jhd-areaControls article span {
            cursor: pointer;
            width: 2rem;
            height: 2rem;
            padding: .5rem;
            font-size: .7rem;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            opacity: 0;
            margin: 0 .1rem;
            -webkit-transition: all .5s;
            -o-transition: all .5s;
            transition: all .5s; }
          .jhd-cardGrid .card .card-body .jhd-areaControls article:last-child {
            text-align: right; }
      .jhd-cardGrid .card .card-body .jhd-control-fixed {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end; }
        .jhd-cardGrid .card .card-body .jhd-control-fixed article span {
          opacity: 1;
          width: auto;
          border-radius: .3rem;
          height: 1.5rem;
          padding: .2rem .5rem;
          background: #f8f8f8; }
      .jhd-cardGrid .card .card-body:hover .jhd-areaControls article span {
        opacity: 1; }
      .jhd-cardGrid .card .card-body p {
        width: 11rem;
        white-space: nowrap;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        font-weight: 500 !important;
        letter-spacing: 1px;
        margin: 0;
        overflow: hidden; }
    .jhd-cardGrid .card.jhd-cardAdd {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      width: 100%; }
      .jhd-cardGrid .card.jhd-cardAdd label {
        border: 1.2px dashed #c58af9;
        border-radius: 5rem;
        margin-bottom: 1rem;
        cursor: pointer; }
        .jhd-cardGrid .card.jhd-cardAdd label i {
          background: -webkit-linear-gradient(3deg, #2b044d 0, #c3bfd7 100%) !important;
          background: -o-linear-gradient(3deg, #2b044d 0, #c3bfd7 100%) !important;
          background: linear-gradient(87deg, #2b044d 0, #c3bfd7 100%) !important;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          color: #ffffff;
          padding: 1rem;
          font-size: 1.2rem;
          width: 5rem;
          height: 5rem;
          border-radius: 5rem;
          margin: 1rem; }
  .jhd-cardGrid .jhd-card-Product .card-body {
    padding: 0; }
    .jhd-cardGrid .jhd-card-Product .card-body p {
      padding: 1rem;
      font-size: .7rem !important;
      text-transform: uppercase; }
      .jhd-cardGrid .jhd-card-Product .card-body p.jhd-my-padding {
        padding-bottom: 0; }
    .jhd-cardGrid .jhd-card-Product .card-body small {
      color: #707b8e;
      padding: .5rem 1rem 1rem;
      display: block;
      font-size: .7rem !important; }
    .jhd-cardGrid .jhd-card-Product .card-body .jhd-areaControls {
      top: 0 !important; }
    .jhd-cardGrid .jhd-card-Product .card-body .jhd-areaFoto {
      padding: 0;
      height: 10rem;
      width: 100%;
      border-radius: .5rem;
      background: #a59fc4;
      overflow: hidden; }
      .jhd-cardGrid .jhd-card-Product .card-body .jhd-areaFoto img {
        width: 100% !important;
        min-height: 100%;
        display: block;
        margin: 0; }
      .jhd-cardGrid .jhd-card-Product .card-body .jhd-areaFoto.no-foto:before {
        content: 'SEM FOTO';
        font-size: .8rem;
        color: #EEEEEE;
        letter-spacing: 1px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 80%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
  .jhd-cardGrid .jhd-cardUser {
    padding: 1rem 0; }
    .jhd-cardGrid .jhd-cardUser .card-body {
      padding: .5rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .jhd-cardGrid .jhd-cardUser .card-body .jhd-areaFoto {
        -webkit-box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07) !important;
        box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07) !important; }
      .jhd-cardGrid .jhd-cardUser .card-body .jhd-areaFoto, .jhd-cardGrid .jhd-cardUser .card-body .no-foto {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 1rem !important;
        max-height: 6rem;
        border-radius: 5rem !important;
        overflow: hidden; }
        .jhd-cardGrid .jhd-cardUser .card-body .jhd-areaFoto img, .jhd-cardGrid .jhd-cardUser .card-body .jhd-areaFoto span, .jhd-cardGrid .jhd-cardUser .card-body .no-foto img, .jhd-cardGrid .jhd-cardUser .card-body .no-foto span {
          width: 6rem;
          min-height: 6rem;
          border-radius: 5rem !important; }
        .jhd-cardGrid .jhd-cardUser .card-body .jhd-areaFoto aside, .jhd-cardGrid .jhd-cardUser .card-body .no-foto aside {
          position: absolute;
          right: 26%;
          top: 50%;
          padding: .5rem;
          border-radius: 5rem;
          border: 2px solid #FFFFFF;
          cursor: pointer; }
      .jhd-cardGrid .jhd-cardUser .card-body .no-foto span {
        background: #e0deeb;
        color: #6109ae;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 2rem; }
      .jhd-cardGrid .jhd-cardUser .card-body .estado {
        position: absolute;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        top: -1rem !important;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding: 1rem; }
        .jhd-cardGrid .jhd-cardUser .card-body .estado span {
          -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          transform: rotate(45deg);
          -webkit-animation: rolate 2s;
          animation: rolate 2s infinite; }
          .jhd-cardGrid .jhd-cardUser .card-body .estado span i {
            color: #ffc107;
            font-size: .9rem; }

@-webkit-keyframes rolate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); } }
      .jhd-cardGrid .jhd-cardUser .card-body p {
        text-align: center !important; }
      .jhd-cardGrid .jhd-cardUser .card-body .name {
        margin-top: 1rem;
        font-size: .8rem !important;
        cursor: pointer; }
      .jhd-cardGrid .jhd-cardUser .card-body .small {
        font-size: .7rem !important;
        color: #707b8e; }

.jhd-btInfo {
  background: #e0deeb; }
  .jhd-btInfo i {
    color: #2b044d; }

.jhd-btWarning i {
  color: #F12B2C;
  padding: 0 1rem; }

.jhd-btSucess {
  background: #DAEDFE; }
  .jhd-btSucess i {
    color: #0183FD; }

.badge-dot {
  text-transform: none;
  font-size: .8rem;
  font-weight: 500; }
  .badge-dot i {
    display: inline-block;
    width: .5rem;
    height: .5rem;
    margin-right: .375rem;
    vertical-align: middle;
    border-radius: 50%; }

.jhd-geral .jhd-MenuTop {
  position: fixed;
  top: 0;
  right: 0;
  width: 98%;
  padding: .5rem;
  padding-left: 4rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
  z-index: 2; }
  .jhd-geral .jhd-MenuTop .form-group {
    margin-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none; }
    .jhd-geral .jhd-MenuTop .form-group .input-group {
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      border: none; }
      .jhd-geral .jhd-MenuTop .form-group .input-group span, .jhd-geral .jhd-MenuTop .form-group .input-group input {
        color: #9DB2C5 !important; }
  .jhd-geral .jhd-MenuTop .jhd-AreaNotifi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0 2rem; }
    .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-areaUser {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      cursor: pointer; }
      .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-areaUser p {
        padding: 0 .5rem;
        margin: 0; }
      .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-areaUser img {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 5rem;
        cursor: pointer; }
    .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-Notifi {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding: 0 1rem; }
      .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-Notifi .icon {
        margin: 0 .3rem;
        position: relative; }
      .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-Notifi .notify {
        position: relative;
        top: -10px;
        right: -12px; }
        .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-Notifi .notify .point {
          width: 8px;
          height: 8px;
          border-radius: 30px;
          background-color: #ff5050;
          position: absolute;
          right: 6px;
          top: -10px;
          cursor: pointer;
          -webkit-box-shadow: 0 0 0 #ff5050;
          box-shadow: 0 0 0 #ff5050;
          -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite; }
          .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-Notifi .notify .point:hover {
            -webkit-animation: none;
            animation: none; }

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #cca92c;
    box-shadow: 0 0 0 0 #cca92c; }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0); }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0); } }

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #cca92c;
    box-shadow: 0 0 0 0 #cca92c; }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0); }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0); } }
    .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropUser {
      padding: 0; }
      .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropUser .jhd-areaTop {
        background: #F9FAFE;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 2rem 1rem; }
        .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropUser .jhd-areaTop h6 {
          font-weight: 600;
          font-size: 1rem;
          margin: 0; }
        .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropUser .jhd-areaTop img {
          width: 3rem;
          height: 3rem;
          border-radius: 5px;
          margin-right: 1rem; }
      .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropUser .jhd-areaBody {
        background: #FFFFFF;
        display: block;
        padding: 0; }
        .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropUser .jhd-areaBody article {
          width: 25rem;
          padding: 1rem;
          cursor: pointer;
          border-bottom: 1px solid #eeeeee;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropUser .jhd-areaBody article section {
            display: block; }
            .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropUser .jhd-areaBody article section h6 {
              font-weight: 500;
              font-size: .8rem;
              margin: 0; }
            .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropUser .jhd-areaBody article section small {
              font-weight: lighter; }
            .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropUser .jhd-areaBody article section i {
              font-size: 1.5rem;
              font-weight: lighter;
              padding: .3rem 1rem; }
          .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropUser .jhd-areaBody article:hover {
            background: #eeeeee; }
    .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropNotify {
      width: 20rem; }
      .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropNotify .jhd-areaBody h4 {
        font-size: 1rem;
        font-weight: 600;
        padding: .5rem;
        margin: 0 1rem; }
      .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropNotify .jhd-areaBody .content {
        max-height: 50vh;
        overflow: auto; }
        .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropNotify .jhd-areaBody .content > article {
          width: 100%;
          padding: 1rem;
          cursor: pointer;
          border-top: 1px dashed #eeeeee;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropNotify .jhd-areaBody .content > article section {
            display: block;
            width: 100%;
            margin-left: .5rem; }
            .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropNotify .jhd-areaBody .content > article section article {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: justify;
              -ms-flex-pack: justify;
              justify-content: space-between; }
            .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropNotify .jhd-areaBody .content > article section h6 {
              font-weight: 600;
              font-size: .8rem;
              margin: 0; }
            .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropNotify .jhd-areaBody .content > article section small {
              font-weight: lighter;
              font-size: .8rem;
              color: #707b8e; }
          .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropNotify .jhd-areaBody .content > article .jhd-icone {
            width: 3.3rem;
            height: 2.5rem;
            border-radius: 5rem;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            margin-right: 1rem; }
            .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropNotify .jhd-areaBody .content > article .jhd-icone i {
              font-size: 1rem;
              color: #ffffff; }
          .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropNotify .jhd-areaBody .content > article:hover {
            background: #eeeeee; }
          .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropNotify .jhd-areaBody .content > article.cliente .jhd-icone {
            background: #ff8383; }
          .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropNotify .jhd-areaBody .content > article.encomenda .jhd-icone {
            background: #36b0e5; }
      .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropNotify .jhd-areaBody .no-search {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropNotify .jhd-areaBody .no-search img {
          width: 5rem; }
        .jhd-geral .jhd-MenuTop .jhd-AreaNotifi .jhd-dropNotify .jhd-areaBody .no-search h6 {
          font-weight: 500;
          font-size: .8rem; }

.jhd-geral .jhd-MenuLeft {
  position: fixed;
  width: 6%;
  min-width: 5rem;
  overflow: hidden;
  height: 100%;
  background: #2a263e;
  border-right: 1px solid #eeeeee;
  left: 0;
  top: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  z-index: 3;
  border-top-right-radius: 2rem; }
  .jhd-geral .jhd-MenuLeft nav ul {
    padding: 0;
    margin: 0; }
    .jhd-geral .jhd-MenuLeft nav ul li {
      list-style: none;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      white-space: nowrap; }
      .jhd-geral .jhd-MenuLeft nav ul li a {
        color: #EEEEEE;
        font-weight: 400;
        font-size: .9rem;
        width: 100%;
        opacity: 0;
        -webkit-transition: all 1s;
        -o-transition: all 1s;
        transition: all 1s;
        padding: 1.1rem 0; }
      .jhd-geral .jhd-MenuLeft nav ul li span {
        padding: 0 1.7rem;
        font-size: 1.1rem;
        -webkit-transition: all 1s;
        -o-transition: all 1s;
        transition: all 1s;
        color: #EEEEEE; }
    .jhd-geral .jhd-MenuLeft nav ul.top {
      padding: .5rem 0;
      margin-top: .5rem;
      margin-bottom: 1rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      .jhd-geral .jhd-MenuLeft nav ul.top div {
        width: 3rem;
        height: 3rem;
        background: #ffffff;
        border-radius: 5rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        .jhd-geral .jhd-MenuLeft nav ul.top div img {
          width: 1.5rem;
          display: block;
          cursor: pointer; }
    .jhd-geral .jhd-MenuLeft nav ul.menu {
      margin-top: 2rem; }
      .jhd-geral .jhd-MenuLeft nav ul.menu li {
        font-weight: lighter; }
      .jhd-geral .jhd-MenuLeft nav ul.menu li:hover {
        cursor: pointer;
        background: #3f395e; }
      .jhd-geral .jhd-MenuLeft nav ul.menu li.active {
        background: #3f395e;
        border-radius: 1px; }
        .jhd-geral .jhd-MenuLeft nav ul.menu li.active a {
          color: #EEEEEE;
          font-weight: bold; }
  .jhd-geral .jhd-MenuLeft:hover {
    width: 18% !important;
    -webkit-box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1) !important; }
    .jhd-geral .jhd-MenuLeft:hover ul li a {
      opacity: 1; }

.jhd-geral .jhd-Container {
  position: fixed;
  width: 95%;
  height: 94%;
  padding: 2rem;
  right: 0;
  bottom: 0;
  z-index: 1; }
  .jhd-geral .jhd-Container .jhd-entregador .jhd-areaControls {
    top: 1rem;
    padding: .3rem !important; }
    .jhd-geral .jhd-Container .jhd-entregador .jhd-areaControls article span {
      opacity: 1;
      border-top-right-radius: 1rem;
      border-bottom-right-radius: 1rem;
      padding: .5rem 1.8rem !important; }
      .jhd-geral .jhd-Container .jhd-entregador .jhd-areaControls article span i {
        padding-right: .5rem;
        font-size: .9rem; }
  .jhd-geral .jhd-Container .jhd-empresa .card .card-body .jhd-areaFoto img {
    border-radius: 1rem !important; }
  .jhd-geral .jhd-Container .jhd-areaTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .jhd-geral .jhd-Container .jhd-areaTop p {
      font-size: .9rem; }
    .jhd-geral .jhd-Container .jhd-areaTop button {
      font-size: .8rem;
      font-weight: normal; }
      .jhd-geral .jhd-Container .jhd-areaTop button i {
        padding-right: .5rem; }
    .jhd-geral .jhd-Container .jhd-areaTop .input-group .form-control, .jhd-geral .jhd-Container .jhd-areaTop .input-group .input-group-append {
      font-weight: 400;
      border: none;
      -webkit-box-shadow: none;
      box-shadow: none; }
    .jhd-geral .jhd-Container .jhd-areaTop .input-group span {
      position: absolute;
      z-index: 1;
      top: 1rem;
      left: 1.2rem;
      color: #8898aa; }
    .jhd-geral .jhd-Container .jhd-areaTop .input-group .form-control {
      padding-left: 1.5rem; }
    .jhd-geral .jhd-Container .jhd-areaTop .input-group .input-group-append {
      background: #ffffff; }
      .jhd-geral .jhd-Container .jhd-areaTop .input-group .input-group-append .btn {
        background: #ffffff;
        -webkit-box-shadow: none;
        box-shadow: none;
        margin: 0 1rem; }
    .jhd-geral .jhd-Container .jhd-areaTop .my-areaSearch .dropdown-menu {
      width: 100%;
      padding: 1rem;
      margin-left: 2rem; }
      .jhd-geral .jhd-Container .jhd-areaTop .my-areaSearch .dropdown-menu .form-control, .jhd-geral .jhd-Container .jhd-areaTop .my-areaSearch .dropdown-menu .input-group-append .btn {
        background: #eaecf2 !important;
        border-color: #eaecf2 !important;
        border-radius: 0;
        width: 100%; }
  .jhd-geral .jhd-Container .jhd-areaBody {
    width: 100%;
    height: 100% !important;
    max-height: calc(100vh - 150px);
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*flex-wrap: wrap;*/
    /*.card{
        //width: 16.66%;
        background: none;
        border: none;
        //0 10px 50px rgba(0, 0, 0, 0.08), 0 13px 45px rgba(0, 0, 0, 0.08)
        .card-body{
          @include card-body;
        }
        &:hover{
          .jhd-areaControls article span{
            opacity: 1;
          }
        }

      }*/ }
  .jhd-geral .jhd-Container .jhd-areaForm {
    position: fixed;
    width: 95%;
    height: 94%;
    padding: 1.5rem;
    background: #F4F7FC;
    right: 0;
    bottom: -100%;
    z-index: 3;
    display: block;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s; }
    .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaTop {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-top: 2rem; }
      .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaTop .icon {
        margin-bottom: 1rem;
        cursor: pointer; }
      .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaTop h6 {
        text-align: center;
        text-transform: uppercase;
        font-weight: 700; }
    .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody {
      min-height: 80%;
      overflow: auto; }
      .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody > div {
        padding: 2rem;
        padding-bottom: 0;
        margin: 1rem; }
      .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory {
        width: 100%;
        position: relative; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div {
          width: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-pack: distribute;
          justify-content: space-around;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          position: absolute;
          left: 0;
          opacity: 1;
          height: auto;
          -webkit-transition: all .5s;
          -o-transition: all .5s;
          transition: all .5s;
          -webkit-transition-delay: .5s;
          -o-transition-delay: .5s;
          transition-delay: .5s; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div .card {
            position: relative;
            width: 16.66%;
            height: auto;
            padding: 1rem;
            -webkit-transition: all .5s;
            -o-transition: all .5s;
            transition: all .5s; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div .card img {
              width: 100%;
              height: auto; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div .card p {
              text-align: center;
              font-weight: bold;
              text-transform: uppercase;
              font-size: .7rem; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div.hide {
            left: -150%;
            opacity: 0;
            max-height: 0 !important;
            overflow: hidden; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div.jhd-first .card {
            cursor: pointer; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div.jhd-first .card:hover {
              border: 2px solid #0c85d0;
              -webkit-box-shadow: none;
              box-shadow: none; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div.jhd-last .card {
            width: 23%; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div.jhd-last .card.jhd-cardSelect {
              border: 2px solid #0c85d0; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div .jhd-listCategory ul {
            margin: 0;
            padding: 0;
            max-height: 20rem;
            overflow-y: auto; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div .jhd-listCategory ul li {
              list-style: none;
              padding: .5rem;
              font-size: .7rem;
              cursor: pointer;
              line-height: 1rem; }
              .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div .jhd-listCategory ul li:hover {
                color: #0c85d0; }
              .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div .jhd-listCategory ul li.selected {
                color: #FFFFFF;
                background: #0c85d0;
                border-radius: 10px; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div .jhd-cardConfirm {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            opacity: 0;
            -webkit-transition: all .5s;
            -o-transition: all .5s;
            transition: all .5s;
            -webkit-transition-delay: .5s;
            -o-transition-delay: .5s;
            transition-delay: .5s; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div .jhd-cardConfirm span {
              font-size: 5rem;
              color: #00c292;
              text-align: center;
              margin-bottom: 1rem; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div .jhd-cardConfirm button {
              background: #0c85d0;
              border-color: #0c85d0;
              color: #FFFFFF; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div .subcategory {
            opacity: 0;
            -webkit-transition: all .5s;
            -o-transition: all .5s;
            transition: all .5s;
            -webkit-transition-delay: .3s;
            -o-transition-delay: .3s;
            transition-delay: .3s; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div .show {
            opacity: 1 !important;
            height: auto; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div .jhd-areaFooter .jhd-bt {
            background: transparent;
            border: 1px solid #8898aa !important;
            margin: 0 .5rem;
            cursor: pointer; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaCategory > div .jhd-areaFooter .jhd-bt i {
              color: #8898aa; }
      .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-more {
        margin-top: 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        overflow: auto; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-more label {
          display: block;
          text-align: center; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-more .jhd-areaImg {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          padding-bottom: 2rem;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-more .jhd-areaImg > div {
            width: 6rem;
            height: 5rem;
            margin: .2rem .1rem;
            position: relative; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-more .jhd-areaImg > div img, .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-more .jhd-areaImg > div .areaControlsImg {
              width: 6rem;
              height: 5rem;
              position: absolute; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-more .jhd-areaImg > div i {
              font-size: 1rem; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-more .jhd-areaImg > div span {
              text-align: center; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-more .jhd-areaImg > div .areaControlsImg span {
              width: 1.5rem;
              height: 1.5rem;
              padding: .4rem;
              margin: .1rem; }
              .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-more .jhd-areaImg > div .areaControlsImg span i {
                font-size: .8rem; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-more .jhd-areaImg > div:hover .areaControlsImg {
              border-radius: 0;
              -webkit-transform: scale(1, 1);
              -ms-transform: scale(1, 1);
              transform: scale(1, 1); }
      .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .areaControlsImg {
        border-radius: 10rem;
        -webkit-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        transform: scale(0, 0);
        background: rgba(0, 0, 0, 0.5);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .areaControlsImg span {
          color: #FFFFFF;
          margin: .2rem;
          padding: .5rem;
          text-align: center;
          background: #0c85d0;
          cursor: pointer;
          border-radius: 5rem; }
      .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaUpImg {
        border: 2px dashed #c4cbf5;
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaUpImg label {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-areaUpImg label i {
            color: #c4cbf5; }
      .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-left {
        width: 30%;
        background: #FFFFFF;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-radius: 1rem; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-left .jhd-principal .jhd-areaImg {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          margin-bottom: 2rem; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-left .jhd-principal .jhd-areaImg img {
            width: 8rem;
            margin: .5rem auto; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-left .jhd-principal .jhd-areaImg h5 {
            font-size: .9rem;
            font-weight: bold; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-left .jhd-principal .jhd-areaUpImg {
          width: 14.55rem;
          height: 14.55rem; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-left .jhd-principal .jhd-areaUpImg * {
            cursor: pointer; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-left .jhd-principal .jhd-areaUpImg i {
            font-size: 2rem; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-left .jhd-principal .jhd-areaUpImg span {
            padding: 1rem;
            text-align: center; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-left .jhd-principal .jhd-areaUpImg .progress-wrapper {
            width: 90%; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-left .jhd-principal .areaTheImg {
          width: 14.55rem;
          height: 14.55rem;
          position: relative;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-left .jhd-principal .areaTheImg img, .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-left .jhd-principal .areaTheImg video, .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-left .jhd-principal .areaTheImg .areaControlsImg {
            width: 14.55rem;
            height: 14rem;
            position: absolute;
            left: 0;
            top: 0; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-left .jhd-principal .areaTheImg .areaControlsImg span {
            width: 2rem;
            height: 2rem;
            line-height: 1rem; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-left .jhd-principal .areaTheImg:hover .areaControlsImg {
            border-radius: 0;
            -webkit-transform: scale(1, 1);
            -ms-transform: scale(1, 1);
            transform: scale(1, 1); }
      .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right {
        width: 60%;
        padding-top: 0; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .form-group .form-control, .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .form-group .input-group-append {
          font-weight: 400;
          border: none;
          -webkit-box-shadow: none;
          box-shadow: none; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .form-group span {
          position: absolute;
          z-index: 1;
          top: 1rem;
          left: 1.2rem;
          color: #8898aa; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .form-group .form-control {
          padding-left: 3.5rem;
          border-radius: .5rem; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .form-group .btDelect {
          position: absolute;
          left: 93%;
          top: .5rem;
          cursor: pointer;
          background: #EEEEEE;
          padding: .4rem;
          border-radius: 5rem; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .form-group small {
          padding: .3rem;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          line-height: 2rem; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .form-group .cke {
          border: none !important;
          margin-top: .5rem; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .jhd-label {
          font-size: 1rem;
          margin-bottom: .5rem; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .jhd-color {
          display: none; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .jhd-areaColors {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-preferred-size: max-content;
          flex-basis: max-content;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
          .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .jhd-areaColors .jhd-areaColor {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            margin-right: 2rem;
            margin-bottom: 2rem; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .jhd-areaColors .jhd-areaColor .jhd-colorInput, .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .jhd-areaColors .jhd-areaColor .jhd-areaUpIg, .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .jhd-areaColors .jhd-areaColor img {
              margin: .3rem;
              cursor: pointer; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .jhd-areaColors .jhd-areaColor .jhd-colorInput {
              padding: 0;
              border-radius: 5rem;
              width: 2.5rem;
              height: 2.5rem; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .jhd-areaColors .jhd-areaColor .jhd-areaUpIg, .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .jhd-areaColors .jhd-areaColor img {
              width: 5.3rem;
              height: 5rem; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .jhd-areaColors .jhd-areaColor .jhd-areaUpIg {
              border: 2px dashed #c4cbf5;
              padding: 1rem;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: center;
              -ms-flex-pack: center;
              justify-content: center;
              -webkit-box-align: center;
              -ms-flex-align: center;
              align-items: center; }
              .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .jhd-areaColors .jhd-areaColor .jhd-areaUpIg i {
                font-size: 1.5rem;
                color: #c4cbf5;
                cursor: pointer; }
            .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .jhd-areaColors .jhd-areaColor.selectArea:hover, .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .jhd-areaColors .jhd-areaColor.selected {
              border: 1px solid #c4cbf5;
              position: relative; }
              .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .jhd-areaColors .jhd-areaColor.selectArea:hover:after, .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaBody .jhd-right .jhd-areaColors .jhd-areaColor.selected:after {
                content: "X";
                width: 2rem;
                height: 2rem;
                padding: .2rem .6rem;
                background: #c4cbf5;
                color: #FFFFFF;
                position: absolute;
                top: 1.8rem;
                left: 88%;
                border-radius: 5rem;
                font-size: 1.2rem;
                cursor: pointer; }
    .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaFooter {
      width: 100%;
      padding: 1.5rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      border-top: 1px solid #dddddd; }
      .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaFooter button {
        padding: .5rem 1rem; }
      .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaFooter .jhd-btSucess {
        background: #DAEDFE; }
        .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaFooter .jhd-btSucess i {
          color: #0183FD; }
      .jhd-geral .jhd-Container .jhd-areaForm .jhd-areaFooter .jhd-btWarning i {
        color: #F12B2C; }
    .jhd-geral .jhd-Container .jhd-areaForm .nav {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 0 1rem 1rem; }
      .jhd-geral .jhd-Container .jhd-areaForm .nav .nav-item {
        padding: .8rem 1rem;
        font-size: .9rem;
        font-weight: 600;
        border-radius: 5rem;
        display: block;
        width: 3rem;
        height: 3rem;
        text-align: center;
        position: relative;
        top: 1.5rem;
        background: #F4F7FC; }
        .jhd-geral .jhd-Container .jhd-areaForm .nav .nav-item.active {
          border-bottom: none;
          border: 1px solid #108AF9;
          font-weight: 900;
          color: #108AF9; }
    .jhd-geral .jhd-Container .jhd-areaForm.open {
      bottom: 0 !important; }
  .jhd-geral .jhd-Container .jhd-areaMoreInfo {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    position: fixed;
    width: 95%;
    height: 94%;
    padding: 1.5rem;
    background: #F4F7FC;
    top: 2rem;
    right: 0;
    z-index: 2;
    display: block;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s; }
    .jhd-geral .jhd-Container .jhd-areaMoreInfo.hide {
      -webkit-transform: scale(0) !important;
      -ms-transform: scale(0) !important;
      transform: scale(0) !important; }
    .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-areaBody {
      height: auto;
      max-height: 100vh; }
    .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .card-body {
      background: #fff;
      border-radius: .5rem;
      overflow: hidden;
      -webkit-box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.08);
      box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.08);
      margin: .5rem;
      padding: 2rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-areaControls, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .card-body .jhd-areaControls {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: absolute;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-areaControls article, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .card-body .jhd-areaControls article {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-areaControls article span, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .card-body .jhd-areaControls article span {
            cursor: pointer;
            width: 2rem;
            height: 2rem;
            padding: .5rem;
            font-size: .7rem;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            margin: 0 .1rem;
            -webkit-transition: all .5s;
            -o-transition: all .5s;
            transition: all .5s; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-areaControls article:last-child, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .card-body .jhd-areaControls article:last-child {
            text-align: right; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-areaFoto, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .card-body .jhd-areaFoto {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 1rem;
        margin-top: 1rem;
        max-height: 7rem; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-areaFoto aside, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .card-body .jhd-areaFoto aside {
          padding: .5rem;
          border-radius: 5rem;
          margin: 0 .5rem;
          margin-left: -.4rem;
          border: 2px solid #FFFFFF;
          cursor: pointer; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body p, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .card-body p {
        text-align: center;
        font-weight: 600;
        font-size: .8rem;
        margin: 0;
        cursor: pointer; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body p.small, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .card-body p.small {
          font-weight: lighter;
          color: #9CA4A7; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body p, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .card-body p {
        font-size: .9rem;
        font-weight: lighter; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body small, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .card-body small {
        color: #91a4ae;
        font-size: .8rem; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body h5, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .card-body h5 {
        font-size: 1rem;
        font-weight: bolder;
        margin: 0; }
    .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left {
      width: 30%;
      height: 60vh; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body img, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body span.letra, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body img, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body span.letra {
        width: 6rem;
        height: 6rem;
        border-radius: 5rem;
        position: relative; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .no-foto span.letra, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .no-foto span.letra {
        background: #e0deeb;
        color: #6109ae;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 2rem; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .estado, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .estado {
        float: right;
        margin-top: -1rem;
        margin-bottom: -1rem;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding: 1rem; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .estado span, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .estado span {
          -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          transform: rotate(45deg);
          -webkit-animation: rolate 2s;
          animation: rolate 2s infinite; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .estado span i, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .estado span i {
            color: #ffc107;
            font-size: .9rem; }

@-webkit-keyframes rolate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); } }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-controls .icon, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .jhd-controls .icon {
        background: none;
        border: 1px solid #c58af9;
        color: #a59fc4; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-controls .bt-active, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .jhd-controls .bt-active {
        background: #e0deeb;
        border: 1px solid #e0deeb;
        color: #3f395e; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-areaStar span i, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .jhd-areaStar span i {
        color: #fb6340; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-info, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .jhd-info {
        margin: .5rem 0;
        padding-top: 1rem;
        border-top: 0.0625rem dashed #e9ecef !important;
        width: 80%; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-info h5, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-info p, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .jhd-info h5, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .jhd-info p {
          font-size: .9rem;
          text-align: left;
          cursor: default; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-info article, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .jhd-info article {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: start;
          -ms-flex-pack: start;
          justify-content: flex-start; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-info article span, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-info article p, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .jhd-info article span, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .jhd-info article p {
            padding: .3rem;
            color: #91a4ae; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-info article span, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .jhd-info article span {
            padding-right: 1.5rem;
            padding-top: .6rem; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-dashboard, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .jhd-dashboard {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        padding: 1rem; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-dashboard .jhd-icone span, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .jhd-dashboard .jhd-icone span {
          width: 4rem;
          height: 4rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          border-radius: 5rem;
          font-size: 1.5rem; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-dashboard .jhd-dados, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .jhd-dashboard .jhd-dados {
          margin-left: 1rem; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .jhd-card .card-body .jhd-dashboard .jhd-dados p, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-left .no-foto .card-body .jhd-dashboard .jhd-dados p {
            font-size: 2.5rem;
            font-weight: lighter;
            text-align: start;
            line-height: 2.5rem;
            color: #1190cd; }
    .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right {
      width: 70%; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .contaCorrente .card-body:hover {
        background: #F4F7FC;
        cursor: pointer; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .contaCorrente .card-body.active {
        background: #F4F7FC;
        border-radius: 2px; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .contaCorrente .card-body.active p {
          color: #1190cd; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-classificacao {
        -webkit-box-shadow: none !important;
        box-shadow: none !important; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-classificacao article {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-direction: row;
          flex-direction: row;
          -webkit-box-align: start;
          -ms-flex-align: start;
          align-items: start;
          padding-bottom: 1rem;
          margin-bottom: .5rem;
          border-bottom: 0.0625rem dashed #e9ecef !important; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-classificacao article section {
            padding: .5rem 1rem; }
            .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-classificacao article section h5 {
              font-weight: 500 !important; }
            .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-classificacao article section p {
              text-align: left !important;
              font-size: .85rem !important; }
            .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-classificacao article section .jhd-areaStar, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-classificacao article section small {
              padding: .5rem 0; }
              .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-classificacao article section .jhd-areaStar span, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-classificacao article section small span {
                color: #fb6340;
                font-size: .9rem; }
            .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-classificacao article section small {
              margin-left: 5rem; }
              .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-classificacao article section small i {
                margin-right: .5rem; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-classificacao article .jhd-imgUser img {
            width: 3.5rem; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-viatura {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: start !important; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-viatura .jhd-areaImg img {
          width: 20rem; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-viatura .jhd-areaDados {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          width: 100%;
          margin: 0 2rem; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-viatura .jhd-areaDados article {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
            padding: .5rem;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between; }
            .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-viatura .jhd-areaDados article p {
              font-size: .9rem; }
            .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-viatura .jhd-areaDados article .text-muted {
              font-weight: 500; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-info .jhd-areaPoints {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-info .jhd-areaPoints section {
          background: #e0deeb;
          padding: .5rem 1rem;
          border-radius: .3rem;
          cursor: pointer;
          margin: .5rem; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-info .jhd-areaPoints section p {
            color: #2b044d;
            padding: 0; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-info .jhd-areaMapa {
        padding: 2rem .5rem;
        width: 100%; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-info .jhd-areaMapa iframe {
          width: 100%;
          border: 1px solid #707b8e;
          border-radius: .5rem; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 1rem; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-title p, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-title h5 {
          margin: 0;
          font-size: 1rem; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-title h5 {
          font-weight: bold; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-title .jhd-areaClose {
          position: absolute;
          right: 3rem;
          top: 4rem; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-title label {
          margin-bottom: 0; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .card-body {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        padding: 1.5rem 2rem;
        cursor: pointer; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-history {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        width: 100%; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-history .jhd-time {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-history .jhd-time aside {
            padding: .5rem;
            border-radius: 5rem;
            cursor: pointer;
            background: #0a6ebd; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-history .jhd-time p {
            display: block; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-history span i {
          color: #d3d9e5;
          font-size: 1.5rem; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-history .jhd-content {
          padding-top: 1rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          width: 100%; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-history .jhd-content .jhd-bold {
            font-weight: bold !important; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-history .jhd-content span, .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-history .jhd-content > div {
            padding: .3rem 1rem; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-history .jhd-content p {
            text-align: start; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-history .jhd-content > div {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex; }
            .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-history .jhd-content > div > div {
              width: 100%;
              border-bottom: 0.0625rem dashed #e9ecef !important;
              padding: 1rem; }
              .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-card .jhd-card-history .jhd-content > div > div p {
                font-weight: normal; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-cardList div.jhd-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-cardList div.jhd-content p {
          font-size: .85rem;
          font-weight: 500; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-cardList div.jhd-content.active {
          border-bottom: 0.0625rem dashed #e9ecef !important;
          padding-bottom: 1rem; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-cardList div.jhd-content.active p {
            color: #1190cd;
            font-weight: bold !important; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-cardList div.jhd-content section {
          display: block; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-cardList div.jhd-content section p {
            text-align: start; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-cardList div.jhd-content section span {
            cursor: pointer;
            padding: .5rem; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-cardList .no-search {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 3rem; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-cardList .no-search img {
          width: 12rem; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-cardList .no-search h6 {
          font-weight: lighter;
          font-size: 1rem;
          margin-top: 3rem; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-cardGrid {
        max-height: none !important; }
        .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-cardGrid .jhd-card-Product .card-body {
          padding-bottom: 1rem !important; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-cardGrid .jhd-card-Product .card-body .jhd-product {
            margin-top: .5rem; }
          .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-cardGrid .jhd-card-Product .card-body p {
            padding: .3rem 1rem !important; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-dropTime .dropdown-menu {
        left: auto !important;
        right: 10rem !important;
        top: 3rem !important; }
      .jhd-geral .jhd-Container .jhd-areaMoreInfo .jhd-right .jhd-dropArtigos .dropdown-item {
        font-size: .8rem; }
  .jhd-geral .jhd-Container .jhd-hide {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s; }
  .jhd-geral .jhd-Container .jhd-show {
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s; }
  .jhd-geral .jhd-Container .custom-toggle-slider {
    background: #eeeeee;
    border: none !important; }
  .jhd-geral .jhd-Container .custom-toggle input:checked + .custom-toggle-slider:before {
    background: #554d7d; }

.jhd-List {
  width: 100%; }
  .jhd-List p {
    font-size: .8rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.2rem;
    width: 90%;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden; }
  .jhd-List small {
    color: #91a4ae;
    font-size: .75rem; }
  .jhd-List .jhd-card-title {
    overflow: hidden;
    margin: .5rem 0 0 .5rem;
    padding: .8rem 1.5rem; }
    .jhd-List .jhd-card-title .jhd-content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      width: 100%; }
      .jhd-List .jhd-card-title .jhd-content section p {
        color: #91a4ae; }
  .jhd-List .jhd-cardList .card-body {
    background: #fff;
    border-radius: .3rem;
    overflow: hidden;
    -webkit-box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.08);
    margin: .5rem 0 0 .5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    padding: .8rem 1.5rem; }
    .jhd-List .jhd-cardList .card-body.active {
      background: #8dd0ff;
      /*#0070c036*/ }
      .jhd-List .jhd-cardList .card-body.active .jhd-check:before {
        content: "\2713";
        color: #0070c0;
        padding-right: 1rem;
        font-size: 1.1rem;
        font-weight: bold; }
    .jhd-List .jhd-cardList .card-body .jhd-content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      width: 100%; }
      .jhd-List .jhd-cardList .card-body .jhd-content.active {
        border-bottom: 0.0625rem dashed #e9ecef !important;
        padding-bottom: 1rem; }
      .jhd-List .jhd-cardList .card-body .jhd-content section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start; }
        .jhd-List .jhd-cardList .card-body .jhd-content section .jhd-imageArea {
          width: 2rem;
          height: 2rem;
          overflow: hidden;
          border-radius: 5rem;
          display: block; }
          .jhd-List .jhd-cardList .card-body .jhd-content section .jhd-imageArea img {
            width: 100% !important;
            min-height: 2rem; }
        .jhd-List .jhd-cardList .card-body .jhd-content section span.badge {
          cursor: pointer;
          padding: .5rem; }

.jhd-tab span {
  margin-right: 2rem;
  padding-bottom: .5rem;
  cursor: pointer;
  font-size: .8rem;
  text-align: center; }
  .jhd-tab span.active {
    border-bottom: 2px solid #1190cd;
    font-weight: 500;
    color: #0070c0; }
  .jhd-tab span:hover {
    color: #0070c0; }
  .jhd-tab span:before {
    content: "";
    padding: .15rem;
    border-radius: 5rem;
    background: #0070c0;
    display: inline-block;
    position: relative;
    right: 1rem; }
  .jhd-tab span:first-child:before {
    display: none; }

.tabBlue.active {
  background: white;
  padding: .5rem 2rem;
  color: #fff;
  border-radius: 5px; }

.jhd-dropTime .dropdown-menu .dropdown-item {
  cursor: pointer;
  border-radius: 5px; }

.jhd-dropTime .dropdown-menu .dropdown-item.active, .jhd-dropTime .dropdown-menu .dropdown-item:active {
  background-color: #0070c0; }

.jhd-dropTime .dropdown-menu .table td, .jhd-dropTime .dropdown-menu .table th {
  padding: .5rem !important; }
  .jhd-dropTime .dropdown-menu .table td .active, .jhd-dropTime .dropdown-menu .table th .active {
    background-color: #0070c0; }

.jhd-dashEncomenda {
  max-height: 15rem;
  padding: .5rem;
  -webkit-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  overflow: visible; }
  .jhd-dashEncomenda .jhd-dash-card {
    border-radius: .5rem; }
    .jhd-dashEncomenda .jhd-dash-card .icon {
      width: 3rem;
      height: 3rem;
      margin-bottom: 1rem !important; }
      .jhd-dashEncomenda .jhd-dash-card .icon.icon-shape-primary {
        color: #0070c0;
        background-color: #0070c036 !important; }
      .jhd-dashEncomenda .jhd-dash-card .icon.icon-shape-secondary {
        color: #14121f !important;
        background: #e0deeb !important; }
    .jhd-dashEncomenda .jhd-dash-card h3 {
      margin: 0;
      line-height: 1.5rem; }
    .jhd-dashEncomenda .jhd-dash-card small {
      color: #91a4ae; }
  .jhd-dashEncomenda.hide {
    max-height: 0;
    padding: 0 !important;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    overflow: hidden; }

.jhd-Pag-Contacorrente {
  padding: 1rem .5rem; }
  .jhd-Pag-Contacorrente .jhd-areaTopo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .jhd-Pag-Contacorrente .jhd-areaTopo h5 {
      font-size: 1rem;
      font-weight: bold;
      margin: 0 .5rem 1rem .5rem; }
    .jhd-Pag-Contacorrente .jhd-areaTopo .jhd-card-title {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-bottom: 1rem; }
    .jhd-Pag-Contacorrente .jhd-areaTopo .jhd-formSearch {
      width: 13.5rem;
      margin: 0; }
      .jhd-Pag-Contacorrente .jhd-areaTopo .jhd-formSearch .form-control, .jhd-Pag-Contacorrente .jhd-areaTopo .jhd-formSearch .input-group-append {
        font-weight: 400;
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none; }
      .jhd-Pag-Contacorrente .jhd-areaTopo .jhd-formSearch span {
        position: absolute;
        z-index: 1;
        top: 1rem;
        left: 1.2rem;
        color: #8898aa; }
      .jhd-Pag-Contacorrente .jhd-areaTopo .jhd-formSearch .form-control {
        padding-left: 4rem;
        border-radius: 5rem; }
      .jhd-Pag-Contacorrente .jhd-areaTopo .jhd-formSearch .input-group-append {
        background: #ffffff;
        border-radius: 5rem;
        borde-radius: 5rem; }
        .jhd-Pag-Contacorrente .jhd-areaTopo .jhd-formSearch .input-group-append .btn {
          background: #ffffff;
          -webkit-box-shadow: none;
          box-shadow: none;
          margin: 0 1rem; }
  .jhd-Pag-Contacorrente .jhd-areaBody {
    max-height: 50vh; }
    .jhd-Pag-Contacorrente .jhd-areaBody section img {
      width: 2rem !important; }
    .jhd-Pag-Contacorrente .jhd-areaBody .contaCorrente .card-body:hover {
      background: #F4F7FC;
      cursor: pointer; }
    .jhd-Pag-Contacorrente .jhd-areaBody .contaCorrente .card-body.active {
      color: #0070c0;
      background-color: #0070c036 !important; }
      .jhd-Pag-Contacorrente .jhd-areaBody .contaCorrente .card-body.active p {
        color: #1190cd;
        font-weight: 600; }
    .jhd-Pag-Contacorrente .jhd-areaBody.jhd-full-height, .jhd-Pag-Contacorrente .jhd-areaBody.jhd-full-height-title {
      background: transparent;
      -webkit-transition: all ease-in .5s;
      -o-transition: all ease-in .5s;
      transition: all ease-in .5s; }
      .jhd-Pag-Contacorrente .jhd-areaBody.jhd-full-height.spand, .jhd-Pag-Contacorrente .jhd-areaBody.jhd-full-height .spand .jhd-cardList, .jhd-Pag-Contacorrente .jhd-areaBody.jhd-full-height-title.spand, .jhd-Pag-Contacorrente .jhd-areaBody.jhd-full-height-title .spand .jhd-cardList {
        background: #f8f8f8;
        -webkit-transition: all ease-in .5s;
        -o-transition: all ease-in .5s;
        transition: all ease-in .5s; }
  .jhd-Pag-Contacorrente .jhd-full-height {
    max-height: 45vh;
    -webkit-transition: all ease-in .5s;
    -o-transition: all ease-in .5s;
    transition: all ease-in .5s; }
    .jhd-Pag-Contacorrente .jhd-full-height.spand {
      max-height: 70vh !important; }
  .jhd-Pag-Contacorrente .jhd-full-height-title .jhd-cardList {
    max-height: 40vh;
    overflow-y: auto;
    -webkit-transition: all ease-in .5s;
    -o-transition: all ease-in .5s;
    transition: all ease-in .5s; }
  .jhd-Pag-Contacorrente .jhd-full-height-title.spand .jhd-cardList {
    max-height: 60vh !important; }

.jhd-areaFiltro, .jhd-lateralFrame {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  z-index: 3;
  opacity: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s; }
  .jhd-areaFiltro.show, .jhd-lateralFrame.show {
    right: 0 !important;
    opacity: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s; }

.jhd-areaFiltro {
  background: rgba(0, 0, 0, 0.1);
  height: 100%; }
  .jhd-areaFiltro .jhd-content {
    position: relative;
    top: 0;
    right: 0;
    width: 25%;
    float: right;
    height: 100vh;
    background: #FFFFFF;
    -webkit-box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    padding: 2rem; }
    .jhd-areaFiltro .jhd-content .jhd-areaTop {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .jhd-areaFiltro .jhd-content .jhd-areaTop h3 {
        font-size: 1.2rem;
        text-align: left;
        margin: 0; }
      .jhd-areaFiltro .jhd-content .jhd-areaTop .jhd-btclose {
        cursor: pointer; }
        .jhd-areaFiltro .jhd-content .jhd-areaTop .jhd-btclose span {
          font-size: 1rem; }
    .jhd-areaFiltro .jhd-content .jhd-areaBody {
      padding: 2rem 0;
      height: 88%;
      max-height: 88%; }
      .jhd-areaFiltro .jhd-content .jhd-areaBody .custom-checkbox, .jhd-areaFiltro .jhd-content .jhd-areaBody .custom-radio {
        margin-left: 2rem;
        margin-bottom: .5rem; }
      .jhd-areaFiltro .jhd-content .jhd-areaBody label {
        font-size: .8rem; }
      .jhd-areaFiltro .jhd-content .jhd-areaBody .form-group {
        margin-bottom: 1rem; }
        .jhd-areaFiltro .jhd-content .jhd-areaBody .form-group input {
          font-size: .9rem; }
      .jhd-areaFiltro .jhd-content .jhd-areaBody .jhd-autocomplete {
        position: relative; }
        .jhd-areaFiltro .jhd-content .jhd-areaBody .jhd-autocomplete .jhd-autocomplete-content {
          position: absolute;
          top: 3rem;
          left: 0;
          background: #ffffff;
          -webkit-box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.08);
          width: 100%;
          z-index: 3;
          max-height: 20rem;
          overflow: auto;
          display: none; }
          .jhd-areaFiltro .jhd-content .jhd-areaBody .jhd-autocomplete .jhd-autocomplete-content li {
            padding: .8rem;
            width: 100%;
            list-style: none;
            font-size: .9rem;
            cursor: pointer; }
            .jhd-areaFiltro .jhd-content .jhd-areaBody .jhd-autocomplete .jhd-autocomplete-content li:hover {
              background: #EEEEEE; }
        .jhd-areaFiltro .jhd-content .jhd-areaBody .jhd-autocomplete .show {
          display: block;
          -webkit-animation: fadein 1s;
          animation: fadein 1s; }

@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; }
  from {
    margin-top: 5rem; }
  to {
    margin-top: 0; } }
    .jhd-areaFiltro .jhd-content .jhd-areaFooter {
      width: 100%;
      padding: 1rem 0;
      border-top: 1px solid #EEEEEE;
      position: relative;
      bottom: 0;
      right: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end; }
      .jhd-areaFiltro .jhd-content .jhd-areaFooter button {
        display: block;
        -webkit-box-shadow: none;
        box-shadow: none;
        font-size: .8rem; }
        .jhd-areaFiltro .jhd-content .jhd-areaFooter button:hover {
          -webkit-box-shadow: none;
          box-shadow: none; }

.jhd-lateralFrame {
  width: 30%;
  height: 100vh;
  background: #FFFFFF;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  padding: 0;
  border-top-left-radius: 2rem;
  overflow: hidden; }
  .jhd-lateralFrame .jhd-btFrameclose {
    position: absolute;
    right: 1rem;
    top: 1rem; }
    .jhd-lateralFrame .jhd-btFrameclose span {
      cursor: pointer;
      padding: 1rem; }
  .jhd-lateralFrame .jhd-content .jhd-top, .jhd-lateralFrame .jhd-content .jhd-body {
    padding: 1rem 1.5rem 0; }
  .jhd-lateralFrame .jhd-content .jhd-top .jhd-imageArea {
    width: 5rem;
    height: 5rem;
    border-radius: 5rem;
    display: block;
    overflow: hidden; }
    .jhd-lateralFrame .jhd-content .jhd-top .jhd-imageArea img {
      width: 100% !important;
      min-height: 5rem;
      border-radius: 5rem; }
  .jhd-lateralFrame .jhd-content .jhd-top .nav-pills {
    margin-top: 1.5rem; }
    .jhd-lateralFrame .jhd-content .jhd-top .nav-pills .nav-item .nav-link {
      padding: .5rem 1rem !important;
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      color: #1190cd !important;
      border-radius: 0; }
      .jhd-lateralFrame .jhd-content .jhd-top .nav-pills .nav-item .nav-link.active {
        background: #fff !important;
        border-bottom: 2px solid #1190cd; }
  .jhd-lateralFrame .jhd-content .jhd-body {
    max-height: 75vh;
    overflow: auto;
    padding-top: 0; }
    .jhd-lateralFrame .jhd-content .jhd-body .jhd-areaMap {
      width: 100%;
      height: 18rem;
      border-radius: 1.5rem;
      margin-top: .5rem;
      overflow: hidden; }
      .jhd-lateralFrame .jhd-content .jhd-body .jhd-areaMap iframe {
        width: 100%;
        height: 100%; }
    .jhd-lateralFrame .jhd-content .jhd-body .jhd-areaTimeline {
      width: 100%;
      margin: 0 auto;
      padding: 1rem;
      border-radius: 1.5rem;
      background: #fff;
      position: relative;
      top: 1rem;
      -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
      box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); }
      .jhd-lateralFrame .jhd-content .jhd-body .jhd-areaTimeline ul.timeline {
        list-style-type: none;
        position: relative;
        margin: 0; }
      .jhd-lateralFrame .jhd-content .jhd-body .jhd-areaTimeline ul.timeline:before {
        content: ' ';
        background: #d4d9df;
        display: inline-block;
        position: absolute;
        left: 15px;
        width: 2px;
        height: 100%;
        z-index: 400; }
      .jhd-lateralFrame .jhd-content .jhd-body .jhd-areaTimeline ul.timeline > li {
        padding-bottom: .8rem;
        line-height: 1rem; }
        .jhd-lateralFrame .jhd-content .jhd-body .jhd-areaTimeline ul.timeline > li a {
          font-size: .75rem;
          color: inherit; }
          .jhd-lateralFrame .jhd-content .jhd-body .jhd-areaTimeline ul.timeline > li a:last-child {
            padding-left: 1rem; }
            .jhd-lateralFrame .jhd-content .jhd-body .jhd-areaTimeline ul.timeline > li a:last-child:before {
              content: "";
              padding: .15rem;
              border-radius: 5rem;
              background: #eeeeee;
              display: inline-block;
              position: relative;
              right: .5rem; }
      .jhd-lateralFrame .jhd-content .jhd-body .jhd-areaTimeline ul.timeline > li:before {
        content: ' ';
        background: white;
        display: inline-block;
        position: absolute;
        border-radius: 50%;
        border: 2px solid #22c0e8;
        left: 10px;
        width: 12px;
        height: 12px;
        z-index: 400; }
    .jhd-lateralFrame .jhd-content .jhd-body .jhd-detalhes section {
      padding: 0 1rem; }
      .jhd-lateralFrame .jhd-content .jhd-body .jhd-detalhes section.jhd-dashed {
        border-top: 1px dashed #EEEEEE; }
      .jhd-lateralFrame .jhd-content .jhd-body .jhd-detalhes section article {
        padding: .6rem; }
        .jhd-lateralFrame .jhd-content .jhd-body .jhd-detalhes section article p, .jhd-lateralFrame .jhd-content .jhd-body .jhd-detalhes section article span {
          margin: 0;
          font-size: .8rem; }
          .jhd-lateralFrame .jhd-content .jhd-body .jhd-detalhes section article p.jhd-bold, .jhd-lateralFrame .jhd-content .jhd-body .jhd-detalhes section article span.jhd-bold {
            font-weight: 600;
            font-size: 1rem; }

.custom-checkbox {
  background: transparent !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.icon-shape-primary {
  color: #1190cd;
  background-color: #f4f5f7; }

.icon-shape {
  width: 2.5rem;
  height: 2.5rem;
  padding: .2rem;
  cursor: pointer; }
  .icon-shape i {
    font-size: 1rem; }

.jhd-areaButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .jhd-areaButtons .jhd-btTogle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: .5rem; }
    .jhd-areaButtons .jhd-btTogle button i {
      font-size: 1rem; }
    .jhd-areaButtons .jhd-btTogle .selected {
      border: none;
      color: #2643e9; }
  .jhd-areaButtons .btn-white {
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }

.modal .modal-dialog {
  width: 50rem;
  max-width: 40rem !important; }
  .modal .modal-dialog .modal-header h5 {
    font-weight: bolder;
    font-size: .9rem; }
  .modal .modal-dialog .modal-body .jhd-modal-User {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .modal .modal-dialog .modal-body .jhd-modal-User > div {
      margin: .5rem; }
      .modal .modal-dialog .modal-body .jhd-modal-User > div.jhd-areaImg img {
        width: 14.55rem;
        height: 14.55rem;
        padding: .5rem;
        border: 2px dashed #DAEDFE;
        cursor: pointer; }
      .modal .modal-dialog .modal-body .jhd-modal-User > div.jhd-areaForm {
        width: 60rem; }
  .modal .modal-dialog .modal-body .jhd-areaPrivilegio section {
    display: block; }
    .modal .modal-dialog .modal-body .jhd-areaPrivilegio section span {
      display: block;
      padding: .3rem;
      cursor: pointer;
      font-size: .8rem;
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      transition: all .5s; }
      .modal .modal-dialog .modal-body .jhd-areaPrivilegio section span:hover {
        color: #108AF9; }
      .modal .modal-dialog .modal-body .jhd-areaPrivilegio section span i {
        padding-right: .5rem; }
    .modal .modal-dialog .modal-body .jhd-areaPrivilegio section article {
      padding-left: 1.5rem; }
  .modal .modal-dialog .modal-body .jhd-areaStatus ul {
    display: block;
    list-style: none; }
    .modal .modal-dialog .modal-body .jhd-areaStatus ul li {
      list-style: none;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      padding: .3rem;
      cursor: pointer;
      font-size: .8rem;
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      transition: all .5s; }
      .modal .modal-dialog .modal-body .jhd-areaStatus ul li:hover {
        color: #108AF9; }
      .modal .modal-dialog .modal-body .jhd-areaStatus ul li label {
        padding: .5rem;
        border-radius: 5rem;
        display: block;
        margin-bottom: 0;
        margin-right: 1rem; }
    .modal .modal-dialog .modal-body .jhd-areaStatus ul article {
      padding-left: 1.5rem; }
  .modal .modal-dialog .modal-body .active {
    color: #108AF9;
    font-weight: 600; }
    .modal .modal-dialog .modal-body .active:before {
      content: "\01F5F8";
      color: #108AF9;
      position: absolute;
      left: 2rem;
      font-size: 1.2rem; }
  .modal .modal-dialog .modal-footer .btn {
    padding: .5rem 1rem; }
    .modal .modal-dialog .modal-footer .btn i {
      padding-right: .5rem; }

.modalImg {
  position: absolute;
  top: 20%;
  background: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 55%;
  height: 65%;
  padding: 2rem;
  margin-left: 0;
  z-index: 20;
  opacity: 5;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s; }
  .modalImg img {
    width: 25rem;
    height: auto;
    max-height: 20rem; }
  .modalImg .areaControls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1rem; }
    .modalImg .areaControls span {
      color: #ffffff;
      padding: 0 .5rem;
      margin: 0 .5rem;
      cursor: pointer; }

.m-hide {
  display: none;
  opacity: 0;
  margin-left: -10rem !important;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s; }

.toast {
  position: absolute;
  right: 3rem;
  top: 1rem;
  z-index: 4;
  background: #0b1526;
  width: 100%; }
  .toast .toast-body {
    padding: 0 .5rem; }
  .toast p, .toast button {
    color: #dddddd; }
    .toast p:hover, .toast button:hover {
      color: #dddddd; }
  .toast button {
    padding: 1rem; }
  .toast p {
    line-height: 1.5rem;
    font-size: .8rem;
    font-weight: normal;
    margin: 0; }
  .toast span:before {
    font-size: 4rem;
    padding-right: 1rem;
    text-align: center; }
  .toast.sucess span:before {
    content: '\00263A';
    color: #00C853; }
  .toast.warning span:before {
    content: '\002639';
    padding-left: .5rem;
    font-size: 3rem;
    color: orangered; }

.jhd-areaLoading {
  position: fixed;
  top: -100%;
  right: 0;
  width: 97%;
  z-index: 2;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s; }
  .jhd-areaLoading .progress-wrapper {
    padding-top: 0 !important; }
    .jhd-areaLoading .progress-wrapper .progress-info {
      margin: 0 !important; }
    .jhd-areaLoading .progress-wrapper .progress {
      background-color: #ffffff;
      height: 6px; }
  .jhd-areaLoading.show {
    top: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s; }

.datepicker table tr td {
  padding: .2rem !important; }
