@font-face {
    font-family: 'Roboto';
    src: url(/fonts/Roboto-Regular.ttf);
}
@font-face {
    font-family: 'Roboto-Light';
    src: url(/fonts/Roboto-Light.ttf);
}
@font-face {
    font-family: 'Roboto-Thin';
    src: url(/fonts/Roboto-Thin.ttf);
}
@font-face {
    font-family: 'Roboto-Bold';
    src: url(/fonts/Roboto-Bold.ttf);
}
body {
  font-family: 'Roboto','RobotoDraft', sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  background-color: #f5f5f5;
  overflow-x: hidden;
}
html{
  background-color: #f5f5f5;
}
.calendar{
  overflow: hidden;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

.infosButton{
  background-color: #006fa9;
  border-color: #006fa9;
}
.infosButton:hover{
  background-color: #364156;
  border-color: #364156;
}

.l-main {
  width: 100%;
  height: 100%;
  /*padding: 70px 0 0 70px;*/
  -webkit-transition: padding 0.5s ease-in-out;
  -moz-transition: padding 0.5s ease-in-out;
  -ms-transition: padding 0.5s ease-in-out;
  -o-transition: padding 0.5s ease-in-out;
  transition: padding 0.5s ease-in-out;
}
.content-wrapper {
  padding: 25px;
  height: 100%;
}
.content-wrapper .page-content {
  border-top: 1px solid #d0d0d0;
  padding-top: 25px;
}
.content-wrapper--with-bg .page-content {
  background: #fff;
  border-radius: 3px;
  border: 1px solid #d0d0d0;
  padding: 25px;
}
.page-title {
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 25px;
}


a.list-group-item {
    margin-bottom: 15px;
    height:auto;
    min-height:120px;
}
a.list-group-item:focus {
    outline-width: 0;
}
a.list-group-item.active small {
    color:#fff;
}

.version{
  bottom: 0;
  color: #364156;
  position: fixed;
  font-size: 10px;
}
/* Container */
.container {
  position: relative;
  max-width: 460px;
  width: 100%;
  margin: 0 auto 100px;
}
.container.active {
  background: #f2f2f2;
  margin: 0 15px;
}
.container.active .card:nth-child(2) {
  background: #fafafa;
  margin: 0 10px;
}
.container.active .card.alt {
  top: 20px;
  right: 0;
  width: 100%;
  min-width: 100%;
  height: auto;
  border-radius: 5px;
  padding: 60px 0 40px;
  overflow: hidden;
}
.container.active .card.alt .toggle {
  position: absolute;
  top: 40px;
  right: -70px;
  box-shadow: none;
  -webkit-transform: scale(14);
  transform: scale(15);
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}
.container.active .card.alt .toggle:before {
  content: '';
}
.container.active .card.alt .title,
.container.active .card.alt .input-container,
.container.active .card.alt .button-container {
  left: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.container.active .card.alt .title {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}
.container.active .card.alt .input-container {
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}
.container.active .card.alt .input-container:nth-child(2) {
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}
.container.active .card.alt .input-container:nth-child(3) {
  -webkit-transition-delay: .6s;
          transition-delay: .6s;
}
.container.active .card.alt .button-container {
  -webkit-transition-delay: .7s;
          transition-delay: .7s;
}

/* Card */
.card {
  position: relative;
  background: #ffffff;
  border-radius: 5px;
  padding: 60px 0 40px 0;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.card .title {
  position: relative;
  z-index: 1;
  border-left: 5px solid #0066a1;
  margin: 0 0 35px;
  padding: 10px 0 10px 50px;
  color:#0066a1;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
}
.card .input-container {
  position: relative;
  margin: 0 60px 50px;
}
.card .input-container input {
  outline: none;
  z-index: 1;
  position: relative;
  background: none;
  width: 100%;
  height: 54px;
  border: 0;
  color: #212121;
  font-size: 20px;
  font-weight: 400;
}
.card .input-container input:focus ~ label {
  color: #9d9d9d;
  -webkit-transform: translate(-12%, -50%) scale(0.75);
          transform: translate(-12%, -50%) scale(0.75);
}
.card .input-container input:focus ~ .bar:before, .card .input-container input:focus ~ .bar:after {
  width: 50%;
}
.card .input-container input:valid ~ label {
  color: #9d9d9d;
  -webkit-transform: translate(-12%, -50%) scale(0.75);
          transform: translate(-12%, -50%) scale(0.75);
}
.card .input-container label {
  position: absolute;
  top: 0;
  left: 0;
  color: #757575;
  font-size: 24px;
  font-weight: 300;
  line-height: 60px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.checkbox-input-container{
  position: relative;
  margin: 0 60px 50px;
}
.checkbox-input-container input{
  margin-right: 5px;
}
.card .input-container .bar {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #757575;
  width: 100%;
  height: 1px;
}
.card .input-container .bar:before, .card .input-container .bar:after {
  content: '';
  position: absolute;
  background: #0066a1;
  width: 0;
  height: 2px;
  -webkit-transition: .2s ease;
  transition: .2s ease;
}
.card .input-container .bar:before {
  left: 50%;
}
.card .input-container .bar:after {
  right: 50%;
}
.card .button-container {
  margin: 0 60px;
  text-align: center;
}
.card .button-container button {
  outline: 0;
  cursor: pointer;
  position: relative;
  display: inline-block;
  background: 0;
  width: 240px;
  border: 2px solid #e3e3e3;
  padding: 20px 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  overflow: hidden;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.card .button-container button span {
  position: relative;
  z-index: 1;
  color: #ddd;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.card .button-container button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background: #0066a1;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  margin: -15px 0 0 -15px;
  opacity: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.card .button-container button:active span, .card .button-container button:focus span {
  color: #ffffff;
}
.card .button-container button:active:before, .card .button-container button:focus:before {
  opacity: 1;
  -webkit-transform: scale(10);
  transform: scale(10);
}
.card .footer {
  margin: 40px 0 0;
  color: #d3d3d3;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
}
.card .footer a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.card .footer a:hover {
  color: #bababa;
}
.card.alt {
  position: absolute;
  top: 40px;
  right: -70px;
  z-index: 10;
  width: 100px;
  height: 100px;
  background: none;
  border-radius: 100%;
  box-shadow: none;
  padding: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.card.alt .toggle {
  position: relative;
  background: #0066a1;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  color: #ffffff;
  font-size: 42px;
  line-height: 100px;
  text-align: center;
  cursor: pointer;
}
.card.alt .toggle:before {
  content: '\f067';
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.card.alt .title,
.card.alt .input-container,
.card.alt .button-container {
  left: 100px;
  opacity: 0;
  visibility: hidden;
}
.card.alt .title {
  position: relative;
  border-color: #ffffff;
  color: #ffffff;
}
.card.alt .title .close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 60px;
  display: inline;
  color: #ffffff;
  font-size: 58px;
  font-weight: 400;
}
.card.alt .title .close:before {
  content: '\00d7';
}
.card.alt .input-container input {
  color: #ffffff;
}
.card.alt .input-container input:focus ~ label {
  color: #ffffff;
}
.card.alt .input-container input:focus ~ .bar:before, .card.alt .input-container input:focus ~ .bar:after {
  background: #ffffff;
}
.card.alt .input-container input:valid ~ label {
  color: #ffffff;
}
.card.alt .input-container label {
  color: rgba(255, 255, 255, 0.8);
}
.card.alt .input-container .bar {
  background: rgba(255, 255, 255, 0.8);
}
.card.alt .button-container button {
  width: 100%;
  background: #ffffff;
  border-color: #ffffff;
}
.card.alt .button-container button span {
  color: #0066a1;
}
.card.alt .button-container button:hover {
  background: rgba(255, 255, 255, 0.9);
}
.card.alt .button-container button:active:before, .card.alt .button-container button:focus:before {
  display: none;
}

/* Keyframes */
@-webkit-keyframes buttonFadeInUp {
  0% {
    bottom: 30px;
    opacity: 0;
  }
}
@keyframes buttonFadeInUp {
  0% {
    bottom: 30px;
    opacity: 0;
  }
}


.wrongPass{
  position: relative;
  margin-left: 12%;
  width: 75%;
}

.logout a{
  padding: 15px;
}

/* Menu */

.u-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.u-input {
  outline: 0;
  border: 1px solid #d0d0d0;
  padding: 5px 10px;
  height: 35px;
  font-size: 12px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-clip: padding-box;
}

.c-badge {
  font-size: 10px;
  font-weight: 700;
  min-width: 17px;
  padding: 5px 4px;
  border-radius: 100px;
  display: block;
  line-height: 0.7;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #f91605;
}
.c-badge--header-icon {
  position: absolute;
  bottom: -9px;
}

.tooltip {
  width: 200px;
}
.tooltip-inner {
  padding: 8px 10px;
  color: #fff;
  text-align: center;
  background-color: #051835;
  font-size: 12px;
  border-radius: 3px;
}
.tooltip-arrow {
  border-right-color: #051835 !important;
}

.hamburger-toggle {
  position: relative;
  padding: 0;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  order: 1;
}
.hamburger-toggle [class*='bar-'] {
  display: block;
  background: #006fa9;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .2s ease all;
  transition: .2s ease all;
  border-radius: 2px;
  height: 2px;
  width: 24px;
  margin-bottom: 4px;
}
.hamburger-toggle [class*='bar-']:nth-child(2) {
  width: 18px;
}
.hamburger-toggle [class*='bar-']:last-child {
  margin-bottom: 0;
  width: 12px;
}
.hamburger-toggle.is-opened {
  left: 3px;
}
.hamburger-toggle.is-opened [class*='bar-'] {
  background: #006fa9;
}
.hamburger-toggle.is-opened .bar-top {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 15% 15%;
  transform-origin: 15% 15%;
}
.hamburger-toggle.is-opened .bar-mid {
  opacity: 0;
}
.hamburger-toggle.is-opened .bar-bot {
  -webkit-transform: rotate(45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 15% 95%;
  transform-origin: 15% 95%;
  width: 24px;
}
.hamburger-toggle:focus {
  outline-width: 0;
}
.hamburger-toggle:hover [class*='bar-'] {
  background: #1399A2;
}

.header-icons-group {
  display: flex;
  order: 3;
  margin-left: auto;
  position: absolute;
  right: 0;
  height: 100%;
  border-left: 1px solid #cccccc;
}
.header-icons-group .c-header-icon:last-child {
  border-right: 0;
}

.c-header-icon {
  position: relative;
  display: flex;
  float: left;
  width: 70px;
  height: 100%;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  border-right: 1px solid #cccccc;
}
.c-header-icon i {
  font-size: 18px;
  line-height: 40px;
}
.c-header-icon--in-circle {
  border: 1px solid #d0d0d0;
  border-radius: 100%;
}
.c-header-icon:hover i {
  color: #1399A2;
  text-decoration: none;
}

.l-header {
  padding-left: 70px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  width: 100%;
  box-shadow: 2px 2px 15px #8282822b;
  background: #ffffff;
  -webkit-transition: padding 0.5s ease-in-out;
  -moz-transition: padding 0.5s ease-in-out;
  -ms-transition: padding 0.5s ease-in-out;
  -o-transition: padding 0.5s ease-in-out;
  transition: padding 0.5s ease-in-out;
}
.l-header__inner {
  height: 100%;
  width: 100%;
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: stretch;
  border-bottom: 1px solid;
  border-color: #cccccc;
}
.sidebar-is-expanded .l-header {
  padding-left: 220px;
}
.search{
  width: inherit;
  position:absolute;
  padding-right: 237px;
  padding-left: 70px;
  background-color: #ffffff00;
  top: 70px;

}
.search-results{
  padding: 10px;
  background-color: white;
  box-shadow: 2px 5px 10px #80808040;
}
.search-category{
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(128,128,128,0.5);
  width: fit-content;
}

.c-search {
  display: flex;
  height: 100%;
  width: inherit;
  margin-left: 70px;
  position: absolute;
}
.c-search form{
  width:inherit;
}
.c-search__input {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-right: 0;
  flex-basis: 100%;
  height: 100%;
  width:inherit;
  border: 0;
  background-color: #ffffff00;
  font-size: 14px;
  padding: 0 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.c-dropdown {
  opacity: 0;
  text-align: left;
  position: absolute;
  flex-direction: column;
  display: none;
  width: 300px;
  top: 30px;
  right: -40px;
  background-color: #fff;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid #d0d0d0;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-clip: padding-box;
  -webkit-box-shadow: 0px 5px 14px -1px #cecece;
  -moz-box-shadow: 0px 5px 14px -1px #cecece;
  box-shadow: 0px 5px 14px -1px #cecece;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-sidebar {
  width: 70px;
  position: fixed;
  z-index: 101;
  left: 0;
  top: 0;
  bottom: 0;
  background: white;
  box-shadow: 2px 2px 15px #8282822b;
  -webkit-transition: width 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out;
  -ms-transition: width 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}
.l-sidebar .logo {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #006fa9;
}
.l-sidebar .logo .logo__img {
  font-size: 26px;
  line-height: 1;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.logo__img img{
  width: 70%;
  padding-bottom: 5px;
}
.l-sidebar__content {
  position: relative;
}
.sidebar-is-expanded .l-sidebar {
  width: 220px;
}

.c-menu > ul {
  display: flex;
  flex-direction: column;
}
.c-menu > ul .c-menu__item {
  color: #6c7484;
  max-width: 100%;
  overflow: hidden;
}
.c-menu > ul .c-menu__item__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 60px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.c-menu > ul .c-menu__item__inner:before {
  position: absolute;
  content: " ";
  height: 0;
  width: 2px;
  left: 0;
  top: 50%;
  margin-top: -18px;
  background-color: #6c7484;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.c-menu > ul .c-menu__item.is-active .c-menu__item__inner {
  border-left-color: #ffffff;
  background-color: #364156;
}
.c-menu > ul .c-menu__item.is-active .c-menu__item__inner a{
  color: #ffffff;
}
.c-menu > ul .c-menu__item.is-active .c-menu__item__inner .c-menu-item__title span {
  color: #ffffff;
}
.c-menu > ul .c-menu__item.is-active .c-menu__item__inner:before {
  height: 36px;
  opacity: 1;
}
.c-menu > ul .c-menu__item:not(.is-active):hover .c-menu__item__inner {
  background-color: #1399A2;
  border-left-color: white;
  color:white;
  text-decoration: none;
}
.c-menu > ul .c-menu__item a {
  flex: 0 0 70px;
  font-size: 18px;
  color: #6c7484;
  font-weight: normal;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.c-menu > ul .c-menu__item .c-menu-item__expand {
  position: relative;
  left: 100px;
  padding-right: 20px;
  margin-left: auto;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.sidebar-is-expanded .c-menu > ul .c-menu__item .c-menu-item__expand {
  left: 0px;
}
.c-menu > ul .c-menu__item .c-menu-item__title {
  flex-basis: 100%;
  padding-right: 10px;
  position: relative;
  left: 220px;
  opacity: 0;
  -webkit-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  -ms-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.c-menu > ul .c-menu__item .c-menu-item__title span {
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.sidebar-is-expanded .c-menu > ul .c-menu__item .c-menu-item__title {
  left: 0px;
  opacity: 1;
}
.c-menu > ul .c-menu__item .c-menu__submenu {
  background-color: #051835;
  padding: 15px;
  font-size: 12px;
  display: none;
}
.c-menu > ul .c-menu__item .c-menu__submenu li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid;
  border-color: #072048;
  color: #5f9cfd;
}
.c-menu > ul .c-menu__item .c-menu__submenu li:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Body */
.panel-default>.panel-heading {
    color: #607D8B;
    background-color: #ffffff;
    font-weight: 400;
    font-size: 15px;
    border-radius: 0;
    border-color: #e1eaef;
}

.page-header.small {
    position: relative;
    line-height: 22px;
    font-weight: 400;
    font-size: 20px;
}

.favorite a {
    color: #eb3147;
}

.btn i {
    font-size: 17px;
}

.panel {
    box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 0.05);
    transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    margin-bottom: 35px;
    border-radius: 0px;
    position: relative;
    border: 0;
    display: inline-block;
    width: 100%;
}
.pad {
    padding-top:10px;
    padding-bottom:20px;
    padding-left:10px;
    padding-right:10px;
}

.userInfos{
  line-height: 2;
  font-style: italic;
  padding-left: 20px;
}
.userInfos>i{
  color:#006fa9;
}
.userName {
  line-height: 2;
  margin-bottom: 5px;
  font-weight: bold;
  color: #364156;
}

.userNavDropdown{
  display: inline-block;
    vertical-align: middle;
    padding: 5px;
    display: table-cell;
    height: 70px;
}
.nav-user-edit > li.active > a{
    background-color: #006FA9;
}
.nav-user-edit > li.active > a:hover{
    background-color: #1399A2;

}
.nav-user-edit > li > a:hover{
    background-color: #1399A2;
    color: white;
}
.nav-user-edit > li > a{
    color: #364156;
}

#deviceShortDesc{
  padding: 25px;
  height:auto;
  min-height:120px;
}

.equipement-photo{
  height: 200px;
  border: none;
  background-color: white;
  padding: 10px;
  position: relative;
  border: 2px dashed #a2a2a2c9;

}

.equipement-photo > .selected-photo{
  outline-style: solid;
  outline-color: #006fa9;
  box-shadow: 1px 2px 10px #80808052;
  outline-width: 2px;
}
#new-photo-preview{
  width: 95px;
  height: 95px;
  padding: 2px;
}

.cable-photo{
  width: 100px;
  position: absolute;
  height: 100px;
  outline-style: solid;
  outline-color: #a2a2a2c9;
  outline-width: 2px;
  background-color: #006fa9;

}
.cable-photo > img{
  width: inherit;
  height: inherit;

}

.ios{
  left: 120px;
}

.upload-new-photo{
  position: absolute;
  left: 230px;
  width: 100px;
  height: 100px;
  display: block;
  text-align: center;
  background-color: #364156;
  color: white;
  line-height: 100px;
}
.upload-new-photo > i{
  color: white;
  font-size: 40px;
  line-height: 100px;
}

.ion-minus{
    padding:0px 10px;
}

.customForm > .form-group > input.form-control, .customForm > .form-group > .input > input.form-control, .customForm > .form-group input, .customForm > .form-group select,.customForm > .form-group textarea{
  border: none;
  border-radius: 0;
  background-color: #ffffff;
  border-bottom: solid 2px #a2a2a2c9;
  box-shadow:none;
}
.customForm > .form-group > .radio > label{
  margin-right: 20px;
}
.customForm > .form-group > .is_admin_radios{
  margin-left: 20px;
}


.customForm > .form-group > input.form-control:active, .customForm > .form-group > input.form-control:focus,.customForm > .form-group > .input > input.form-control:focus,.customForm > .form-group > .input > input.form-control:active{
    border-bottom: solid 2px #006fa9;
}
.borrowForm{
  left:27.5%;
  text-align: center;
}
.borrowForm > .form-group{
  text-align: left;
}

.member{
  padding: 10px;
  border-bottom: solid 3px #3641567d;
  margin: 10px;
  left: 5%;
}
.connected{
  border-bottom: solid 3px green;
}

.member:hover{
  padding: 10px;
  border-bottom: solid 3px #006fa9;
  margin: 10px;
}
.connected-user{
  box-shadow: 2px 10px 50px rgba(0,255,0,0.5);
}
.member:hover .team-photo{
  box-shadow: 2px 10px 50px #006fa93b;
}

.users h4 {
    margin-top: 20px;
    color: #006fa9;
}

.users .fa{
    color: #006fa9;
    font-size: 18px;
    margin-top: 10px;
    padding: 3px;
}

.users .container{
  max-width: 100%;
}

.photo{
  left: 0;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
}
.team-photo{
  border-radius: 50%;
  box-shadow: 2px 10px 50px #80808024;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 100%;
  width: 100%;
  position: absolute;
  border: solid 3px #364156;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.team-member{
  left:0;
  text-align: center;
  word-wrap:break-word;
}
.social {
  color: white;
  text-align: center;
  transition: opacity .35s ease;
  position: absolute;
  bottom: 10px;
  width: 100%;

}







/* Projects details*/


.projectDetails >  .nav-tabs > .active a{
  background-color: #364156;
  color: white;
}
.projectDetails >  .nav-tabs {
  border-bottom: none;
}
.projectDetails >  .nav-tabs > .active a:focus {
  background-color: #364156;
  color: white;
}
.projectDetails >  .nav-tabs > .active a:hover {
  background-color: #364156;
  color: white;
}
.projectDetails >  .nav-tabs > li > a {
  line-height: 2;
  font-size: 14px;
  font-weight: bold;
  background-color: white;
  border: solid 1px rgba(54, 65, 86,0.3);
  border-bottom: solid 0.5px #36415614;
  color: #364156;
}
.projectDetails >  .nav-tabs > li > a:focus {
  background-color: #006fa9;
  border: solid 1px #364156;
  border-bottom: solid 0.5px #36415614;

  color: white;
}
.projectDetails >  .nav-tabs > li > a:hover {
  border: none;
  background-color: #1399A2;
  border: solid 1px rgba(54, 65, 86,0.3);
  border-bottom: solid 0.5px #36415614;
  color: white;
}

.projectTab{
  padding: 20px;
  padding-top: 50px;
  box-shadow: 2px 2px 10px #80808038;
  background-color: white;
  color: #364156;
  border-top: solid 0.5px #36415614;
}
.projectTab a{
  color: #364156;
}
.projectTab li > a{
  color: white;
}
.link a{
  color: #364156;
}


.projectDescriptionSummary li{
  background-color: #006FA9;
  border-radius: 5px;
  margin-bottom: 5px;
}
.projectDescriptionSummary >li.active > a:focus, .projectDescriptionSummary >li.active > a{
  background-color: #1399A2;
}
.projectDescriptionSummary >li > a:hover{
  background-color: #1399A2;
}

.editButton{
  line-height: 2;
  margin-left: 20px;
  font-size: 14px;
  font-family: 'Roboto-Light';
  padding:5px;
  border-radius:0px;
  border:none;
}

.link{
  text-align: center;
  border: 2px solid #364156;
  border-radius: 10px;
  margin : 10px;
  box-shadow: 2px 1px 10px #80808030;
  -webkit-transition: opacity 3s ease-in-out;
  -moz-transition: opacity 3s ease-in-out;
  -ms-transition: opacity 3s ease-in-out;
  -o-transition: opacity 3s ease-in-out;
   opacity: 1;
}
.link-user{
  text-align: center;
  margin : 10px;
  -webkit-transition: opacity 3s ease-in-out;
  -moz-transition: opacity 3s ease-in-out;
  -ms-transition: opacity 3s ease-in-out;
  -o-transition: opacity 3s ease-in-out;
   opacity: 1;
}
#linksSearchInput, #archivedTaskSearchInput{
  color : #666666;
  border :none;
  border-bottom: 2px solid grey;
  padding: 5px;
}

#linksSearchInput:focus, #archivedTaskSearchInput:focus{
  outline-width: 0;
  border-bottom: 2px solid #364156;
}

#archivedTaskSearchInput{
  margin-bottom: 10px;
}


/* Devices infos*/
.deviceDetails >  .nav-tabs > .active a{
  background-color: #364156;
  color: white;
}
.deviceDetails >  .nav-tabs > .active a:focus {
  background-color: #364156;
  color: white;
}
.deviceDetails >  .nav-tabs > .active a:hover {
  background-color: #364156;
  color: white;
}
.deviceDetails >  .nav-tabs > li > a {
  line-height: 2;
  font-size: 14px;
  font-weight: bold;
  background-color: #006fa9;
  border: none;
  color: white;
}
.deviceDetails >  .nav-tabs > li > a:focus {
  background-color: #006fa9;
  border: none;
  color: white;
}
.deviceDetails >  .nav-tabs > li > a:hover {
  border: none;
  background-color: #1399A2;
  color: white;
}

.deviceDetails > .deviceDetailsHead{
  margin-bottom: 20px;
}
.deviceTab{
  padding: 20px;
  padding-top: 50px;
  background-color: #364156;
  color: white;
  border-top: none;
}

.deviceDetailsImage img {
  display: inline;
  margin: 0 auto;
}

.thumbnail {
    position: relative;
    padding: 0px;
    margin-bottom: 20px;
    border: none;
    box-shadow: 6px 8px 20px #8a8a8a1c;
}

.body {
    padding: 100px;
    padding-bottom: 25px;
    position: relative;
}

#deviceImage {
    height: 250px;
}

#upload-photo {
    height: 0;
    opacity: 0;
    width: 0;
}

#upload-photo-label {
    border: 1px solid #cccccc;
    padding: 5px 30px;
    font-family:arial;
    font-size: 13px;
    background: #006FA9;
    color:white;
}
#upload-photo-label:active{
    background:#364156;
}
#upload-photo-label:hover{
    background:#1399A2;
}

#imgTooltip{
  width: 80px;
  background-color: white;
}

.img-cropper{
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}


.borrowingTable > tr > td{
  text-align: center;
  color: white;
}
.borrowingTable > tbody >tr > th > a > i {
  color: white;
}
.borrowingTable > tbody >tr > td > .popover {
  color: black;
}


/* Tri de devices */
.sort{
  padding: 10px;
  border-bottom: 1px solid #0000001f;
}

.devices{
  margin-top:25px;
}
.device{
  -webkit-transition: visibility 0.3s ease-in-out;
  -moz-transition: visibility 0.9s ease-in-out;
  -ms-transition: visibility 0.9s ease-in-out;
  -o-transition: visibility 0.9s ease-in-out;
  transition: visibility 0.9s ease-in-out;
}

/* Dashboard */

.dashboardContainer{
  position: absolute;
    margin: auto;
    padding-top: 8%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 15px;
    width: 80%;
    height: 90%;
    border-radius: 3px;

}


/*Ajout projet*/

.add-edit-form{
  position: relative;
  bottom: 0;
  left: 10%;
  right: 0;
}

.panel-title >.btn-custom{
  color: white;
}

.sortGroup{
  background-color: white;
  padding:10px;
  box-shadow: -3px 6px 8px #80808012;
}
.sortGroup:hover{
  box-shadow: -3px 6px 8px #006fa91c;
}

.sortGroup label{
  font-family: 'Roboto-Light';
  display: block;
}
.sortGroup label:hover{
  font-family: 'Roboto-Light';
  font-weight: bold;
}
.sortGroup h4{
  text-decoration: underline;
  font-family: 'Roboto-Light';
  font-weight: bold;
}
.sortGroup h4 > a{
  margin:0;
}

#addButton, .btn-custom{
  margin-bottom: 20px;
  background-color: #006fa9;
  border-radius: 0px;
  border:none;
  color:white;
  padding: 10px;
}
.btn-custom:hover{
  color:white;
  background-color: #025c8c;
}
.btn-custom:focus{
  color:white;
  text-decoration: none;
}
.share-input{
  font-size: 10px;
  width: 200px;
  background-color: #80808040;
  color: gray;
  font-style: italic;
  border: 1px solid #80808069;
  padding: 2px;
}
.share-input:focus{
  outline: 0;
}
.share-label{
  font-size: 12px;
  font-weight: normal;
}

#addButton:hover{
  margin-bottom: 20px;
  background-color: #025c8c;
  border-radius: 0px;
  padding: 10px;
}
#links input{
  margin-bottom: 10px;
}
#contacts input{
  margin-bottom: 10px;
}
div.contacts{
  margin-bottom: 20px;
}

/*Edition de device*/

.editDeviceForm{
  position: absolute;
  top: 10%;
  bottom: 0;
  left: 10%;
  right: 0;
}


.profileEditBtn{
  margin: 15px;
}

.calendar h1{
  text-align: center;
}

.customBreadcrumb ol{
  padding: 10px 16px;
  background-color: none;
  list-style: none;
}

.customBreadcrumb li{
  display: inline;
}

.customBreadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: ">";
}


.toDoList-List{
    text-align: center;
    display: table-cell;
    float:none;
    vertical-align: top;

}
.toDoList-List-withBorder{
    border-right: solid black 2px;
    text-align: center;
    width: 33%;
}
.toDoList {
    width: 100%;
    max-width: 100%;
    display: table;
}
.listElement{
  position: relative;
  z-index: 100;
  width: 100%;
  min-width: 20%;
  max-width: 100%;
  background: white;
  margin-top: 5px;
  border-left: #364156 solid;
  box-shadow: 2px 2px 1px #80808042;
}
.elementHeader{
  padding-left: 7.5px;
  padding-right: 15px;
  text-align: left;
}
.elementHeader h1{
  margin: 0 ;
  font-size: 24px;
  padding-top:5px;
  text-align: left;
}
.elementBody{
  word-wrap: break-word;
  text-align: justify;
  padding: 7.5px;
  padding-top: 0px;
}
.listElements{
  z-index: -100;
}
.listElementHeader{
  text-align: left;
  color: white;
  font-family: 'Roboto-Light';
  padding: 5px;
  background-color: #006fa9;
}
.listElementHeader h1{
  font-size: 22px;
  padding: 0;
  padding-top: 7px;
  padding-bottom: 7px;
  margin: 0;
}
.toDoListButton{
  font-size: 20px;
  margin-top: 2.5px;
  font-weight: 900;
  background-color: #ffffff00;
}
.toDoListButton:hover,.toDoListButton:active,.toDoListButton:focus{
  color: white;
  font-size: 20px;
  margin-top: 2.5px;
  font-weight: 1000;
  border: none;
}


.task_infos{
  float: right;
}

.task_date{
  right: 5px;
  bottom: 5px;
  font-style: italic;
  font-size: 10px;
  color: rgba(128,128,128,0.54);
  font-family: 'Roboto';
  /*border-top: solid 1px rgba(128,128,128,0.3);*/
}
.task_tags{
  float: right;
  width: 100%;
}
.task_tags span{
  background-color: #808080a8;
  width: fit-content;
  padding: 3px;
  float: right;
  font-size: 10px;
  font-family: Roboto-Bold;
  color: white;
  border-radius: 5px;
  padding-bottom: 1px;
  padding-top: 1px;
  font-style: italic;
}

.task_respo_label{
  display:block;
  font-family: 'Roboto-Light';
}

.task_respo_label:hover{
  font-weight: bold;
}

.dropTask-todo{
  background-color: #F25F5C;
}
.dropTask-doing{
  background-color: #F4F1BB;
}
.dropTask-done{
  background-color: #96E6B3;
}
.customTransparentButton{
  border: none;
  padding: 2px;
  background-color: #ffffff00;
}
.task-textarea{
  max-width: 100%;
  min-width: 100%;
}
.listElement-clickable{
  color:inherit;
}
.listElement-clickable:hover,.listElement-clickable:active,.listElement-clickable:visited,.listElement-clickable:focus {
  color:inherit;
  text-decoration: none;
  outline: 0;
  border: none;
}

.task-respo{
  border-radius: 50%;
  height: 30px;
  width: 30px;
  margin-right: 5px;
  border: 1px solid;
  float: left;

}
.elementFooter{
  overflow: hidden;
  border-top: solid 1px;
  padding: 7.5px;
  margin: 7px;
}

.textarea-note{
  max-width: 100%;
  width: 100%;
}
.textarea-note:focus{
  outline-width: 0;
}
.dashboard{
  position: relative;
  padding-top: 50px;
}
.dashboard > .row > .count {
  height: 150px;
  box-shadow : 2px 2px 15px #82828252;
  margin-left: 25px;
  left:15.6%;
  background-color: white;
}
.dashboard > .count-area {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.dashboard > .row > .count > .count-element {
  text-align: center;
  color:#364156;
  top:25%;
  font-size: 16px;
  font-style: italic;
  font-weight: normal;

}
.dashboard > .row > .count > .count-icon {
  padding-top:0;
  text-align: left;
  font-weight: 900;
  font-size: 40px!important;
}

.dashboard > .row > .count > .count-icon > .count-projects-icon {
  border-radius: 50%;
  background-color: #1399a280;
  padding: 10px;
  color: white;
  width: 78px;
  /* left: 25%; */
  text-align: center;
}
.dashboard > .row > .count > .count-icon > .count-devices-icon {
  border-radius: 50%;
  background-color: #36415694;
  padding: 10px;
  color: white;
  width: 78px;
  /* left: 25%; */
  text-align: center;
}
.dashboard > .row > .count > .count-title {
  float:right;
  text-align: right;
  top: 65px;
}
.dashboard > .row > .count > .count-title > #devicesCount, .dashboard > .row > .count > .count-title > #projectsCount {
  font-weight: bold;
}
.dashboard > .row > .logs {
  padding: 15px;
  top: 50px;
  height: 530px;
  box-shadow : 2px 2px 15px #82828252;
  margin-left: 25px;
  left:7.5%;
  background-color: white;

}
.dashboard > .row > .logs > .logs-header > .icon{
  padding: 0;
  position: absolute;
}
.dashboard > .row > .logs > .logs-header > .title{
  padding: 0;
  position: absolute;
  left : 40px;
  font-family: 'Roboto-Light';
}
.dashboard > .row > .logs > .logs-header{
  font-size: 18px;
  color: #364156;
}
.dashboard > .row > .logs > .log-elements > .logs-element{
  margin-top: 25px;
  top: 25px;
  font-family: 'Roboto-Light';
  border-bottom: 1px solid #80808047;
  position: relative;
}

.dashboard > .row > .logs > .logs-header {
  width: 100%;
  background-color: black;

}

.dashboard > .row > .logs > .log-elements > ul{
  list-style: none;
  padding-left: 10px;
}
.dashboard > .row > .logs > .log-elements > ul > li{
  padding: 10px;
  padding-left: 0;
  border-bottom: #80808047 solid 1px;
}
.dashboard > .row > .logs > .log-elements{
  margin-top: 30px;
  padding-bottom: 30px;
  height: 475px;
  overflow: auto;
}

.error-template{
  font-family: 'Roboto-Bold';
}
.error-template h2{
  font-size: 50px;
  text-align: center;
  font-family: 'Roboto-Thin';
  line-height: 100px;
  color:#051835;
  font-style: italic;
}
.error-template h1{
  font-size: 150px;
  text-align: center;
  line-height: 210px;
  font-weight: 1000;
  color:#4d5563;
}
.error-template h1 i{
  color:#b95959;
}
.error-actions{
  text-align: center;
}
.error-actions a{
  padding: 15px;
  background-color: #4d5563;
  border-radius: 25px;
  color:white;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.error-actions a:hover{
  background-color: #383f4a;
  text-decoration: none;
}

/* The container */
.check-box-container {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    font-family: 'Roboto-Light';
}

/* Hide the browser's default checkbox */
.check-box-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */

/* When the checkbox is checked, add a blue background */
.check-box-container input:checked ~ .checkmark {
    background-color: #006fa9;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-box-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-box-container .checkmark:after {
    left: 5px;
    top: 3px;
    width: 2px;
    height: 4px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn{
  border :none;
  border-radius: 0px;
  font-family: 'Roboto';
}

.project-parts{
  display: inline-block;
}
.project-parts > li{
  display: inline;
  list-style: none;
}
.note-infos{
  font-style: italic;
  font-size: 10px;
  color: rgba(128,128,128,0.54);
  position: relative;
  float: right;
  border-top: solid 1px rgba(128,128,128,0.3);
  padding: 5px;
  padding-top: 2px;
}
.note{
  padding: 20px;
  margin-bottom: 15px;
  height:auto;
  word-wrap:break-word;
  min-height:120px;
}
.note:focus{
  outline-width: 0;
}
.note-clicker{
  cursor: pointer;
}
.note a{
  color: inherit;
  font-family: 'Roboto';
}
.note a:hover{
  text-decoration: none;
}
.note a:focus{
  outline-width: 0;
  text-decoration: none;
}
.note-body{
  margin-bottom: 10px;
}
.note-body a, .note-body a:focus{
  color: #337ab7;
}
.note-body a:hover{
  text-decoration: underline;
}
.delete-note{
  position: absolute;
  background-color: rgba(255,255,255,0);
  border: none;
  top: 5px;
  right: 5px;
  z-index: 20;
}

.delete-note:focus{
  outline-width: 0;
}
a.delete-note{
  color : rgba(128, 128, 128, 0.64);
}

.modification-date-user{
  position: absolute;
  font-style: italic;
  font-size: 10px;
  /* left: 100px; */
  color: gray;
}
.documentTab{
  padding: 20px;
  padding-top: 10px;
  box-shadow: 2px 2px 10px #80808038;
  background-color: white;
  color: #364156;
  border-top: solid 0.5px #36415614;
}
.documentDescriptionSummary li {
    background-color: #006FA9;
    border-radius: 5px;
    margin-bottom: 5px;
}
.documentDescriptionSummary li> a:hover,  .documentDescriptionSummary li> a:focus{
    background-color: #03476b;
}
.documentDescriptionSummary li > a{
    color : white;
}
.team-label{
  border-bottom: 2px solid #80808059;
  font-size: 25px;
  width: fit-content;
}
.archivedTasksButton, .notificationsButton{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #006FA9;
  position: fixed;
  box-shadow: 2px 2px 10px #80808038;
  top: 200px;
  right: 20px;
  font-size: 20px;
  color: white;
  font-family: 'Roboto';
}

.archivedTasksButton > i{
  top: 30%;
  position: absolute;
  left: 30%;
}
.archivedTasksButton:hover,.archivedTasksButton:focus, .notificationsButton:hover, .notificationsButton:focus{
  color:white;
  box-shadow: 2px 2px 10px #006fa93b;
  outline: 0;
}

.event-location{
  font-style: italic;
  font-size: 10px;
  font-family: 'Roboto-Light'
}
.event-name{
  font-weight: bold;
  font-family: 'Roboto-Bold'
}
.event-project{
  font-family: 'Roboto';
  font-size: 12px;
}
.event-tooltip-content{
  border-bottom: solid 1px #80808061;
  padding-bottom: 5px;
  padding-top: 5px;
}


.person-details{
  text-align: center;
  word-wrap: break-word;
}
.person-details > span > a{
  font-size: smaller;
  font-style: italic;
}

.usersList{
  overflow-y: scroll;
  width: fit-content;
  border: 1px solid #c7c7c7;
  padding: 5px;
  max-height: 300px;
}

.usersList::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.usersList::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.usersList::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.usersList::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.minus-icon{
  position: relative;
  margin-top: 30.5px;
}

.note-edition-custom{
    border: 1px solid gray;
    border-radius: 10px;
    padding: 10px;
    overflow-y: auto;
}
.users-list-img{
  width: 80px;
  border-radius: 50%;
  margin: 5px;
  border: solid #c7c7c7;
}
.user-selected{
  border: solid #00A878;
}
.custom-control-label{
  text-align: center;
}

.custom-control-label span{
  white-space: nowrap;
}

.filter-is-selected{
  border-left: solid #00A878;
}
#sort_respo, .respos-column{
  width: max-content;
}
.notificationsButton{
  top:90px;
  background-color: white;
}
.notificationsButton > span{
  top : 10%;
  position: absolute;
  left :10%;
}
.popover-custom{
  color:black;
  top: -15px;
  left: -280px;
  display: block;
  overflow-x: hidden;
}
.popover-content-custom{
  max-height: 300px;
  overflow-y: auto;
}
.popover-content-custom ul{
  list-style-type: none;
  margin:0;
  padding: 0;
}
.popover-content-custom li{
  margin-bottom: 10px;
  padding: 5px;
  border-radius: 5px;
  -webkit-transition:ease-in 2s; /* Safari */
  transition: ease-in 2s;
}

.notification-seen{
    background-color: #a9a9a921;
}
