@charset "UTF-8";
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  color: white;
  z-index: 2; }
  .navbar .leftmenu {
    background-color: #2E2E2E;
    flex: 0 0 100px;
    height: 100vh;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    overflow: hidden;
    transition: flex .3s ease; }
    .navbar .leftmenu:hover {
      flex: 0 0 300px; }
    .navbar .leftmenu .left-menu-item {
      display: flex; }
      .navbar .leftmenu .left-menu-item:hover .icon i, .navbar .leftmenu .left-menu-item:hover .text p, .navbar .leftmenu .left-menu-item.active .icon i, .navbar .leftmenu .left-menu-item.active .text p {
        background: linear-gradient(160deg, #27ae60, #2ecc71);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent; }
      .navbar .leftmenu .left-menu-item .icon {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 100px;
        height: 70px; }
        .navbar .leftmenu .left-menu-item .icon i {
          font-size: 2.5rem;
          color: #eeeeee; }
      .navbar .leftmenu .left-menu-item .text {
        flex: 1 1 auto;
        display: flex;
        align-items: center; }
        .navbar .leftmenu .left-menu-item .text p {
          margin: 0;
          font-size: 1.5rem;
          color: white; }

.btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(160deg, #27ae60, #2ecc71);
  padding: 10px 15px;
  padding-top: 12px;
  border-radius: 3px;
  color: white;
  border: none;
  text-align: center;
  height: auto;
  width: auto;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold; }
  .btn:hover {
    cursor: pointer; }
  .btn.secondary {
    background: #a9a9a9; }
  .btn i, .btn span {
    flex: 1 1 auto; }
  .btn i {
    color: white;
    margin-top: -2px; }
    .btn i.right {
      padding-left: 7.5px; }
    .btn i.left {
      padding-right: 7.5px; }

h1, h2, h3, h4, h5 {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 30px;
  font-family: "Open Sans Condensed";
  letter-spacing: 1px; }

h1, h1 i.material-icons {
  font-size: 2.5rem; }

h2, h2 i.material-icons {
  font-size: 2rem; }

h3, h3 i.material-icons {
  font-size: 1.7rem; }

.text-gradient {
  background: linear-gradient(160deg, #27ae60, #2ecc71);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

.table-container {
  padding: 15px 30px;
  background-color: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }

table {
  width: 100%;
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  border-spacing: 0; }

table tr {
  border-bottom: 1px solid #ddd;
  padding: 5px; }

table tbody tr:last-child {
  border: none; }

table th, table td {
  padding: 10px;
  text-align: left; }
  table th.icon, table td.icon {
    text-align: center; }

table th {
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px; }

@media screen and (max-width: 900px) {
  table {
    border: 0; }
  table thead {
    display: none; }
  table tr {
    margin-bottom: 10px;
    display: block;
    border-bottom: 2px solid #ddd; }
  table td {
    display: block;
    text-align: left;
    font-size: 13px;
    border-bottom: 1px dotted #ccc; }
  table td:last-child {
    border-bottom: 0; }
  table td:before {
    content: attr(data-label);
    float: left;
    text-transform: uppercase;
    font-weight: bold; } }

form {
  padding-bottom: 15px; }
  form div {
    padding-bottom: 15px; }
  form label {
    display: block;
    padding-bottom: 7.5px;
    text-transform: uppercase;
    font-variant: small-caps;
    font-size: 0.9rem;
    letter-spacing: 1px; }
  form input, form select, form textarea {
    padding: 15px;
    width: 100%;
    border: none;
    border-radius: 3px;
    background-color: #e2e2e2; }
    form input:hover, form select:hover, form textarea:hover {
      cursor: pointer; }
  form input:active, form input:focus, form select:active, form select:focus {
    outline: none; }

.submit {
  text-align: right;
  padding-bottom: 0; }
  .submit .btn {
    margin-top: 15px;
    padding: 10px 15px;
    padding-top: 11px;
    letter-spacing: 1px;
    text-transform: uppercase; }

.loading {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 10;
  background-image: url("../img/texture2.png");
  background-color: white; }
  .loading .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    .loading .spinner .lds-ring {
      display: inline-block;
      position: relative;
      width: 80px;
      height: 80px; }
    .loading .spinner .lds-ring div {
      box-sizing: border-box;
      display: block;
      position: absolute;
      width: 64px;
      height: 64px;
      margin: 8px;
      border: 8px solid #27ae60;
      border-radius: 50%;
      animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
      border-color: #27ae60 transparent transparent transparent; }
    .loading .spinner .lds-ring div:nth-child(1) {
      animation-delay: -0.45s; }
    .loading .spinner .lds-ring div:nth-child(2) {
      animation-delay: -0.3s; }
    .loading .spinner .lds-ring div:nth-child(3) {
      animation-delay: -0.15s; }

@keyframes lds-ring {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.modal-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000AA;
  z-index: 2; }
  .modal-background .modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    max-height: 90vh;
    overflow: auto; }
    .modal-background .modal p {
      margin: 30px 0; }
    .modal-background .modal .buttons {
      text-align: right; }

.card-container {
  display: block;
  width: 600px;
  height: 220px;
  padding-left: 30px;
  padding-right: 30px; }
  .card-container .card {
    width: 100%;
    height: 100%;
    position: relative; }
    .card-container .card:hover .shadow-left {
      width: 65%; }
    .card-container .card .shadow {
      position: absolute;
      height: 100%;
      width: 60%;
      filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.55)); }
      .card-container .card .shadow.shadow-left {
        top: 0;
        left: 0;
        z-index: 1;
        transition: all .3s ease; }
      .card-container .card .shadow.shadow-right {
        right: 0;
        top: 0;
        z-index: 0; }
      .card-container .card .shadow .left {
        display: flex;
        align-items: center;
        clip-path: polygon(0% 0%, 100% 0%, 75% 100%, 0% 100%);
        height: 100%;
        width: 100%;
        background: white;
        transform: scale(1.1);
        background-image: url("../img/nuage.png");
        background-repeat: no-repeat; }
        .card-container .card .shadow .left .infos {
          padding-left: 65px; }
          .card-container .card .shadow .left .infos h3, .card-container .card .shadow .left .infos p {
            margin: 0;
            max-width: 300px;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden; }
          .card-container .card .shadow .left .infos h3 {
            font-size: 30px;
            font-family: "Open Sans";
            font-weight: 700; }
      .card-container .card .shadow .right {
        display: flex;
        align-items: center;
        height: 100%;
        width: 100%;
        background: #27AE60; }
        .card-container .card .shadow .right .infos {
          padding-left: 160px; }
          .card-container .card .shadow .right .infos .material-icons, .card-container .card .shadow .right .infos p {
            margin: 0;
            font-weight: bold;
            color: white; }

.tasks {
  width: 100%;
  margin: 0 auto; }
  .tasks .task {
    display: flex;
    width: calc(50% + 15px); }
    .tasks .task.right {
      margin-left: calc(50% - 15px);
      flex-direction: row-reverse; }
      .tasks .task.right .task-description .card {
        border-radius: 0 7px 7px 7px; }
    .tasks .task .task-description {
      flex: 1 1 auto;
      height: 100%; }
      .tasks .task .task-description .card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: white;
        margin: 15px 10px;
        height: calc(100% - 30px);
        width: calc(100% - 20px);
        border-radius: 7px 0 7px 7px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
        .tasks .task .task-description .card .info {
          padding: 30px; }
          .tasks .task .task-description .card .info p, .tasks .task .task-description .card .info h2 {
            margin: 5px 0; }
        .tasks .task .task-description .card .edit {
          padding: 30px; }
    .tasks .task .line {
      flex: 0 0 30px;
      position: relative; }
      .tasks .task .line::before {
        content: " ";
        position: absolute;
        top: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: #27AE60;
        z-index: 0; }
      .tasks .task .line::after {
        content: " ";
        position: absolute;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: calc(100% - 30px);
        background-color: #27AE60;
        z-index: 0; }

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

.informations {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px; }
  .informations h1 {
    margin: 0;
    padding: 0; }
  .informations .btn {
    font-size: 26px; }

table.planing {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.55)); }
  table.planing.week {
    margin-bottom: 60px; }
    table.planing.week tr.done td {
      background-color: #e2e2e2; }
    table.planing.week a {
      display: block;
      width: 100%;
      height: 100%;
      padding: 10px 0; }
    table.planing.week .check {
      font-size: 35px;
      color: #27ae60;
      font-weight: bold; }
  table.planing thead th {
    background-color: #2E2E2E;
    color: white;
    text-align: center;
    padding: 15px; }
    table.planing thead th:first-child {
      text-align: left;
      border-right: 1px solid #464646; }
  table.planing tbody {
    background-color: white; }
    table.planing tbody tr td {
      text-align: center;
      border-left: 1px solid #f0f0f0;
      padding: 15px;
      background-color: transparent;
      transition: .3s ease;
      cursor: pointer; }
      table.planing tbody tr td:hover {
        background-color: #27ae60; }
        table.planing tbody tr td:hover .cell_content p {
          transition: .3s ease;
          color: white; }
        table.planing tbody tr td:hover .cell_content .tasks_number {
          background-color: white;
          color: #27ae60; }
      table.planing tbody tr td:first-child {
        text-align: left;
        background-color: #f3f3f3;
        color: black; }
        table.planing tbody tr td:first-child[colspan="7"] {
          text-align: center; }
      table.planing tbody tr td .cell_content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center; }
        table.planing tbody tr td .cell_content p {
          margin: 0; }
          table.planing tbody tr td .cell_content p:first-child {
            padding-right: 15px; }
      table.planing tbody tr td .tasks_number {
        display: block;
        z-index: 1;
        width: 50px;
        height: 30px;
        background-color: #27ae60;
        border-radius: 15px;
        line-height: 31px;
        color: white;
        font-weight: bold; }

* {
  font-family: Roboto;
  text-decoration: none; }

.margin-0 {
  margin: 0; }

a {
  color: black; }

body {
  position: relative;
  background-image: url("../img/texture2.png");
  transition: all .3s ease-in-out; }

.main-container {
  padding: 60px;
  padding-left: calc(100px + 30px * 2); }

.align-icon {
  display: flex;
  align-items: center; }
  .align-icon i {
    padding-right: 7.5px; }

.login {
  background: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  z-index: 1; }
  .login::before {
    content: "Easylog";
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 3.5rem;
    transform: translate(-50%, -50%);
    margin-top: -195px;
    color: #27ae60;
    font-weight: bold;
    z-index: 2;
    text-shadow: -5px 0 white, 0 5px white, 5px 0 white, 0 -5px white; }
  .login h2 {
    margin: 0;
    padding-top: 15px;
    padding-bottom: 15px; }
  .login div {
    display: flex;
    flex-direction: column;
    width: 400px;
    margin-top: 15px;
    margin-bottom: 15px; }
    .login div label {
      font-size: 1.1rem;
      padding-bottom: 5px; }
    .login div input {
      height: 35px;
      border-radius: 3px;
      border: 1px solid #ccc; }
  .login .submit {
    padding-bottom: 0;
    padding-top: 0; }
    .login .submit button {
      justify-content: center;
      margin-top: 0; }

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 60px; }
  .header form {
    display: flex;
    align-items: center;
    margin: 0; }
    .header form .search {
      height: 44px;
      padding-right: 15px;
      font-size: 1.5rem;
      border: none;
      border-bottom: 2px solid #27ae60;
      background: transparent;
      margin-right: 30px; }
      .header form .search:focus, .header form .search:active {
        outline: none; }

.section-separator {
  margin: 60px 0;
  height: 2px;
  background-color: #aaa;
  border: none; }

.toggler:hover {
  cursor: pointer; }

.collapse {
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden; }

.clients {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .clients .card-container {
    flex: 1 1 560px;
    padding-bottom: 90px; }
  .clients .client {
    background-color: white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    padding: 60px 30px;
    padding-right: 60px;
    display: flex;
    align-items: center;
    transition: background .2s ease-in-out;
    margin-bottom: 60px; }
    .clients .client:hover {
      cursor: pointer; }
    .clients .client .id {
      font-size: 2.5rem;
      padding-right: 30px;
      margin: 0;
      width: 150px;
      text-align: center;
      color: #27ae60; }
    .clients .client .info {
      width: 100%; }
      .clients .client .info .title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 15px; }
        .clients .client .info .title h1, .clients .client .info .title h3 {
          margin: 0; }
      .clients .client .info .main {
        display: flex;
        justify-content: space-between; }
        .clients .client .info .main .domains, .clients .client .info .main .contracts {
          display: flex;
          justify-content: flex-start;
          flex-direction: column; }
          .clients .client .info .main .domains p, .clients .client .info .main .contracts p {
            display: flex;
            align-items: center; }
            .clients .client .info .main .domains p i, .clients .client .info .main .contracts p i {
              padding-left: 7.5px;
              font-size: 1rem; }
        .clients .client .info .main p {
          margin: 0; }

.client-detail .infos .title {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .client-detail .infos .title h1 {
    margin: 0; }

.client-detail .infos .detail {
  padding: 15px 30px;
  margin-top: 30px;
  background: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  display: flex; }
  .client-detail .infos .detail div {
    flex: 1 1 50%; }
    .client-detail .infos .detail div.right p {
      justify-content: flex-end; }
    .client-detail .infos .detail div p {
      margin: 0;
      display: flex;
      align-items: center;
      line-height: 2rem;
      margin-left: -7.5px;
      margin-right: -7.5px; }
    .client-detail .infos .detail div i {
      font-size: 1.5rem;
      padding-left: 7.5px;
      padding-right: 7.5px; }

.client-detail .add_task, .client-detail .add_contact {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .client-detail .add_task h1, .client-detail .add_contact h1 {
    margin: 0; }

.client-detail .contacts, .client-detail .tasks, .client-detail .materials {
  margin-top: 30px; }

.taskss {
  display: flex;
  flex-direction: column; }
  .taskss .task {
    background-color: white;
    padding: 30px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px; }
    .taskss .task .date {
      flex: 0 0 150px; }
      .taskss .task .date p, .taskss .task .date i {
        justify-content: center;
        color: #27ae60;
        font-size: 1.5rem; }
        .taskss .task .date p.red, .taskss .task .date p.red i, .taskss .task .date i.red, .taskss .task .date i.red i {
          color: red; }
    .taskss .task .main {
      width: 100;
      flex: 1 1 auto;
      padding: 0 60px; }
      .taskss .task .main .title {
        display: flex;
        align-items: flex-end; }
        .taskss .task .main .title h2, .taskss .task .main .title p {
          margin: 0; }
        .taskss .task .main .title p {
          padding-bottom: 2px; }
        .taskss .task .main .title h2 {
          padding-right: 15px; }

.filters form {
  display: flex;
  margin: -15px;
  padding-top: 30px; }
  .filters form input, .filters form select {
    margin: 15px; }

.users {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .users a {
    position: relative;
    flex: 0 0 27%;
    background: white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    padding: 30px;
    margin-bottom: 60px; }
    .users a::after {
      content: " ";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("../img/nuage.png");
      background-repeat: no-repeat;
      transform: scale(-1, -1); }

.numbers {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .numbers h2, .numbers h1 {
    margin: 0; }
  .numbers h1 {
    font-size: 5rem;
    color: #27ae60; }

.progress {
  padding-top: 60px; }
  .progress h2 {
    margin-bottom: 5px; }
    .progress h2 .bigger {
      font-size: 5rem;
      color: #27ae60;
      font-family: "Open Sans Condensed";
      padding-right: 15px; }
  .progress .progression {
    width: 100%;
    height: 50px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
    .progress .progression .state {
      height: 100%;
      background-color: #27ae60;
      border-radius: 5px; }

.search-result {
  padding-bottom: 60px; }
  .search-result h3 {
    text-align: center;
    margin: 0; }

.select-clients {
  margin-top: -20px; }
  .select-clients .client {
    margin: 20px 0;
    padding: 30px;
    background-color: white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    position: relative;
    transition: all .3s ease; }
    .select-clients .client::after {
      content: "›";
      position: absolute;
      top: 50%;
      right: 30px;
      transform: translateY(-50%);
      color: white;
      font-size: 70px;
      font-weight: bold;
      margin-top: -5px; }
    .select-clients .client:hover {
      background-color: #27ae60; }
      .select-clients .client:hover::after {
        color: white; }
      .select-clients .client:hover h2 {
        color: white; }
    .select-clients .client h2 {
      margin: 0; }

.interventions {
  padding-top: 60px; }
  .interventions .intervention {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    padding: 30px;
    background-color: white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
    .interventions .intervention .time {
      margin-top: -20px; }
    .interventions .intervention .edit i {
      font-size: 32px; }

.clients-table {
  background-color: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
  .clients-table table {
    position: relative; }
    .clients-table table tr {
      border: none; }
      .clients-table table tr:hover {
        cursor: pointer; }
        .clients-table table tr:hover td {
          background-color: #27ae60 !important;
          border-right: 1px solid #20864b;
          border-left: 1px solid #20864b;
          color: white; }
      .clients-table table tr.sticky th {
        position: sticky;
        top: -1px;
        border: 1px solid black; }
      .clients-table table tr th, .clients-table table tr td {
        border: 1px solid #ddd;
        padding: 15px; }
        .clients-table table tr th.tcenter, .clients-table table tr td.tcenter {
          text-align: center; }
      .clients-table table tr th {
        background-color: #2E2E2E;
        color: white;
        border: 1px solid black; }
      .clients-table table tr td:first-child {
        background-color: #f3f3f3; }

/*# sourceMappingURL=main.css.map */