/* ***********************************************************	*/
/* Perfbook Super Admin - CSS */
/* ***********************************************************	*/
@import 'remixicon.css';
/* *************************************** */
/* Work Sans */
@font-face {
  font-family: "Work Sans";
  src: url("/web/fonts/WorkSans-Regular.ttf");
}
@font-face {
  font-family: "Work Sans";
  font-style: italic;
  src: url("/web/fonts/WorkSans-Italic.ttf");
}
@font-face {
  font-family: "Work Sans";
  font-weight: bold;
  src: url("/web/fonts/WorkSans-SemiBold.ttf");
}
/* *************************************** */
/* Colors */
/* *************************************** */
/* *************************************** */
/* Style GLOBAL */
/* *************************************** */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 80px 0 0 0;
  font-weight: normal;
  font-size: 16px;
  font-family: "Work Sans", helvetica, sans-serif;
  color: #FFFFFF;
  background-color: #282423;
}

img {
  border: 0;
}

strong {
  font-family: "Work Sans", geneva, sans-serif;
  color: #F17029;
  font-weight: bold;
}

a, a:visited {
  font-weight: normal;
  color: #7581c8;
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:active {
  color: #F17029;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: "Work Sans", geneva, sans-serif;
}

p {
  padding: 0;
  margin: 0;
}

.legend {
  font-style: italic;
  font-family: "Work Sans", geneva, sans-serif;
  padding: 0 0 10px 0;
  color: #bbb;
}

.legend-list .detail {
  font-style: italic;
  color: #bbb;
}

/* *************************************** */
/* Page */
/* *************************************** */
#page {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px;
  min-height: calc(100vh - 180px);
}

/* *************************************** */
/* Titles */
/* *************************************** */
h1 {
  margin: 0 0 40px 0;
  padding: 0;
  text-align: right;
  font-family: "Work Sans", arial, helvetica, geneva, sans-serif;
  font-weight: normal;
  font-size: 3.3em;
  line-height: 1em;
  text-transform: uppercase;
  color: #888;
}

h2 {
  clear: both;
  margin: 35px 0 10px 0;
  font-family: "Work Sans", arial, helvetica, geneva, sans-serif;
  font-weight: normal;
  font-size: 1.8em;
  line-height: 1em;
  font-variant: small-caps;
  text-transform: uppercase;
  color: #F17029;
  border-bottom: 1px solid #F17029;
  padding-bottom: 5px;
}
h2 span {
  color: #7581c8;
}

h3 {
  background: #000000;
  color: #F17029;
  padding: 5px 20px;
  margin: 10px 0 0 0;
  border-bottom: 1px solid #F17029;
}
h3 span {
  color: #ccc;
  font-size: 14px;
}

h4 span {
  color: #7581c8;
}

@media screen and (max-width: 800px) {
  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.3em;
  }
}
.starting-info {
  font-size: 13px;
  text-align: right;
  margin-top: -20px;
  margin-bottom: 20px;
  color: #bbb;
}

/* ***********************************************************	*/
/* Forms */
/* ***********************************************************	*/
.form-zone {
  clear: both;
  display: table;
  margin: 0;
  padding: 0;
  width: 100%;
}
.form-zone .label {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  margin: 0;
  padding: 0;
  padding-right: 20px;
  width: 45%;
  height: 60px;
}
.form-zone .label p {
  padding-right: 50px;
  text-align: right;
  color: #FFFFFF;
}
.form-zone .label p span {
  display: block;
  color: #999999;
  font-size: 0.8em;
  line-height: 1.2em;
  font-family: arial, helvetica, geneva, sans-serif;
}
.form-zone .input:not([type=radio]) {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 55%;
  height: 60px;
}
.form-zone .input:not([type=radio]) ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

input:not([type=radio]) {
  display: inline-block;
  vertical-align: top;
  padding: 0 5px;
  height: 40px;
  width: 300px;
  line-height: 40px;
  max-width: 100%;
  background-color: transparent;
  border: 1px solid #999999;
  color: #FFFFFF;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
}
input:not([type=radio])[type=file] {
  border: none;
}
input:not([type=radio])[type=checkbox] {
  border: none;
  padding: 0;
  height: auto;
  width: auto;
}

input[type=radio] + label {
  cursor: pointer;
}

textarea {
  color: #666666;
}

select {
  background: #3D3D3D;
  color: #FFFFFF;
  border: 1px solid #999999;
  padding: 3px;
  font-family: "Work Sans", arial, helvetica, geneva, sans-serif;
}

.app-legend {
  display: inline-block;
  padding-left: 10px;
  width: 350px;
  font-size: 12px;
  color: #FFFFFF;
  line-height: 1.1em;
  font-family: arial, helvetica, geneva, sans-serif;
}
.app-legend strong {
  color: #7581c8;
  font-weight: normal;
  font-family: arial, helvetica, geneva, sans-serif;
}
.app-legend span {
  display: block;
  color: #999999;
  padding-left: 10px;
}

@media screen and (max-width: 800px) {
  .form-zone {
    display: block;
    margin: 0 0 20px 0;
  }
  .form-zone .label {
    display: block;
    text-align: left;
    padding: 0;
    width: 100%;
    height: auto;
    margin: 0 0 5px 0;
  }
  .form-zone .label p {
    padding-right: 0;
    text-align: left;
  }
  .form-zone .input {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
  }
}
.zone-valid-form {
  z-index: 2;
  height: 80px;
  text-align: center;
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  background: #000000;
  border-top: 1px solid #EEEEEE;
}
.zone-valid-form button:not(#btn-del) {
  margin: 20px auto;
  width: 90%;
  max-width: 600px;
  background-color: #3D4CAA;
  color: #fff;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  text-transform: uppercase;
  border: none;
  font-size: 18px;
}
.zone-valid-form button:not(#btn-del):disabled {
  background-color: #777;
  cursor: auto;
}
.zone-valid-form #btn-del {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 100px;
  line-height: 30px;
  border: 1px solid #fff;
  border-radius: 7px;
  cursor: pointer;
  background: transparent;
  color: #fff;
}
.zone-valid-form #btn-del:hover {
  color: #C91700;
  border-color: #C91700;
}

.ok-message {
  color: #248600;
  padding: 10px 0;
}

.error-message {
  color: #C91700;
  padding: 10px 0;
}

/* *************************************** */
/* Switch button */
/* *************************************** */
.btn_switch input[type=checkbox] {
  display: none;
}
.btn_switch input[type=checkbox] + label {
  display: block;
  width: 40px;
  height: 26px;
  margin: 0;
  padding: 0;
  border: 2px solid #999999;
  background: #111111;
  border-radius: 20px;
  cursor: pointer;
  box-sizing: border-box;
}
.btn_switch input[type=checkbox] + label span {
  display: block;
  background: red;
  border: 2px solid #530000;
  margin: 0;
  padding: 0;
  margin-left: 14px;
  width: 22px;
  height: 22px;
  border-radius: 20px;
  transition: all 0.4s ease;
}
.btn_switch input[type=checkbox] + label span ::before {
  display: none;
}
.btn_switch input[type=checkbox]:checked + label span {
  background: #00c100;
  border-color: #008c00;
  margin-left: 0;
}

/* *************************************** */
/* Chosen */
/* *************************************** */
.chosen-container input.chosen-search-input {
  color: #000;
}

.button {
  display: inline-block;
  background-color: #3D4CAA;
  color: #fff;
  border: none;
  padding: 3px 10px 5px 10px;
}
.button:visited, .button:focus {
  color: #fff;
  text-decoration: none;
}
.button:disabled {
  background-color: #777;
  cursor: auto;
}

.big-button {
  display: table;
  margin: 40px auto;
  text-transform: uppercase;
  font-size: 18px;
  padding: 10px 40px;
}
.big-button:hover {
  background: #F17029;
}
.big-button:hover:disabled {
  background-color: #777;
}

/* ***********************************************************	*/
/* Action buttons */
/* ***********************************************************	*/
.action-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #CCCCCC;
  color: #FFFFFF;
  border-radius: 20px;
  text-decoration: none;
  border: none;
  font-size: 1.5em;
}
.action-button:disabled {
  cursor: auto;
}
.action-button:visited, .action-button:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.action-button.see {
  background-color: #3D4CAA;
}
.action-button.edit {
  background-color: #F17029;
}
.action-button.red {
  background-color: #C91700;
}

.btn_action {
  cursor: pointer;
  display: inline-block;
  text-align: left;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #CCCCCC;
  color: #FFFFFF;
  border-radius: 20px;
  text-decoration: none;
  border: none;
}
.btn_action:visited {
  color: #FFFFFF;
}
.btn_action::before {
  display: inline-block;
  text-decoration: none;
  font-size: 1.2rem;
  width: 35px;
  line-height: 35px;
  text-align: center;
  font-family: "remixicon", sans-serif;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-transform: none;
}
.btn_action:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.btn_action.edit {
  background-color: #F17029;
}
.btn_action.edit::before {
  content: "\efdf";
}
.btn_action.add {
  background-color: #3D4CAA;
}
.btn_action.add::before {
  content: "\ea12";
  font-size: 1.5em;
  font-weight: bold;
}

/* *************************************** */
/* Pagination */
/* *************************************** */
.pagination {
  float: right;
  margin-top: -40px;
}
.pagination button {
  background: transparent;
  border: none;
  color: #7581c8;
  font-weight: bold;
  font-size: 15px;
}
.pagination button:hover {
  text-decoration: underline;
}

/* *************************************** */
/* Lists */
/* *************************************** */
.line > *, .header-line > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 5px 0;
}
.line .actions, .header-line .actions {
  text-align: right;
  text-overflow: initial;
}

.header-line {
  height: 40px;
  line-height: 20px;
  border-bottom: 1px solid #F17029;
  display: flex;
  justify-content: left;
  padding: 5px 0;
  color: #F17029;
  font-weight: normal;
  text-transform: uppercase;
  background: #000000;
  width: 100%;
}

.line {
  min-height: 50px;
  border-bottom: 1px solid #5f5755;
  display: flex;
  justify-content: left;
  line-height: 40px;
  font-size: 14px;
}
.line:hover {
  background: rgba(255, 255, 255, 0.1);
}
.line:last-child {
  border-bottom: none;
}
.line .actions {
  padding: 3px 4px 5px 0;
}
.line .actions > * {
  display: inline-block;
  margin-left: 5px;
  padding: 0;
  vertical-align: middle;
}

#list-add-zone {
  text-align: right;
  margin-bottom: 10px;
}

.none-message {
  color: #999999;
  font-family: "Work Sans", sans-serif;
  font-weight: 100;
  text-align: center;
  font-variant: small-caps;
}

/* *************************************** */
/* Table */
/* *************************************** */
.table {
  border-collapse: collapse;
  width: 100%;
}
.table tr:hover {
  background: rgba(255, 255, 255, 0.1);
}
.table td, .table th {
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 10px 7px;
  line-height: 20px;
}
.table th {
  border-bottom: 1px solid #F17029;
  color: #F17029;
  font-weight: normal;
  text-transform: uppercase;
  background: #000000;
  cursor: pointer;
}
.table th i {
  display: none;
}
.table th.sort-asc i.up, .table th.sort-desc i.down {
  display: inline-block;
  vertical-align: middle;
}
.table td {
  border-bottom: 1px solid #5f5755;
  font-size: 14px;
}
.table tr.total td {
  text-transform: uppercase;
  background: #000000;
}
.table tr.subtotal td {
  text-transform: uppercase;
  background: #bbb;
  color: #000;
}

/* *************************************** */
/* Header */
/* *************************************** */
header {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  overflow: hidden;
  background: #000000;
  border-bottom: 1px solid #333333;
  box-shadow: 0 5px 7px 0 #111111;
}
header .zone_logo {
  display: flex;
  height: 80px;
  padding: 10px;
  overflow: hidden;
  width: 310px;
  font-size: 16px;
}
header .zone_logo > img {
  padding: 7px;
}
header .zone_logo > span {
  display: block;
  white-space: nowrap;
  padding: 10px 20px 0 20px;
  color: #fff;
  font-weight: bold;
}
header .zone_logo #version {
  color: #F17029;
  font-family: "Work Sans", geneva, sans-serif;
  font-weight: normal;
}
header .zone_action_header {
  position: fixed;
  top: 20px;
  left: 340px;
  display: block;
  height: 80px;
  overflow: hidden;
  vertical-align: middle;
}

/* *************************************** */
/* Menu */
/* *************************************** */
header #menu_action {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 80px;
  z-index: 10;
  border-bottom: 1px solid #333333;
}
header #menu_action span {
  display: block;
  float: right;
  width: 50px;
  height: 50px;
  margin: 10px;
  background: url("/web/images/picto_menu.png") no-repeat center center;
  cursor: pointer;
}

header .menu {
  display: none;
  z-index: 11;
  position: fixed;
  padding: 0;
  margin: 0;
  right: 0;
  top: 80px;
  width: 250px;
  overflow: visible;
  background: #000000;
  border: 1px solid #F17029;
  border-top: 0;
  box-shadow: -5px 5px 7px 0 #111111;
}
header .menu .menu_item {
  display: block;
  width: 100%;
  border-bottom: 1px solid #333333;
  color: #FFFFFF;
  font-family: "Work Sans", arial, helvetica, geneva, sans-serif;
  font-variant: small-caps;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 10px;
  line-height: 40px;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  font-size: 16px;
}
header .menu .menu_item:hover {
  color: #F17029;
  background: #222222;
}

/* *************************************** */
/* Footer */
/* *************************************** */
footer {
  width: 90%;
  text-align: center;
  font-family: "Work Sans", arial, helvetica, geneva, sans-serif;
  font-size: 12px;
  margin: 30px auto;
  border-top: 1px solid #5f5755;
  padding: 10px;
}

/* *************************************** */
/* Login form  */
/* *************************************** */
#login-form {
  width: 90%;
  max-width: 350px;
  padding: 0;
  margin: auto;
  margin-top: 80px;
  text-align: center;
}
#login-form .input {
  margin-bottom: 20px;
}
#login-form .input::before {
  display: block;
  position: absolute;
  color: #c6c6c6;
  padding: 5px 10px;
  font-size: 23px;
  line-height: 30px;
  font-family: "remixicon", sans-serif;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-transform: none;
  transition: all 0.4s ease;
}
#login-form .input input {
  box-sizing: border-box;
  height: 42px;
  width: 100%;
  padding: 0;
  padding-left: 50px;
  border: 0 solid #000000;
  color: #818181;
  background: #fff;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
}
#login-form .input input:focus, #login-form .input input:hover {
  color: #666666;
}
#login-form #login-input::before {
  content: "\f264";
}
#login-form .password-input::before {
  content: "\eed0";
}
#login-form button {
  padding: 15px 50px;
  border: 1px solid #F17029;
  text-align: center;
  font-family: "Work Sans", arial, helvetica, geneva, sans-serif;
  color: #F17029;
  background: transparent;
  text-transform: uppercase;
}
#login-form button:hover, #login-form button:focus {
  font-weight: bold;
}
#login-form .error {
  color: #C91700;
  padding: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #C91700;
  text-align: left;
  font-weight: bold;
}
#login-form.double-auth-form h1 {
  text-transform: none;
  color: #F17029;
  text-align: center;
  font-size: 25px;
}
#login-form.double-auth-form p {
  margin-bottom: 20px;
}
#login-form.double-auth-form #login-input::before {
  content: "\f107";
}

/* ***********************************************************	*/
/* Notifications */
/* ***********************************************************	*/
#notifications-zone {
  font-family: "Work Sans", arial, helvetica, geneva, sans-serif;
  font-size: 15px;
}
#notifications-zone ul {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}
#notifications-zone ul li.priority-1,
#notifications-zone ul li.priority-1 a {
  color: white;
}
#notifications-zone ul li.priority-2,
#notifications-zone ul li.priority-2 a {
  color: #F17029;
}
#notifications-zone ul li.priority-3,
#notifications-zone ul li.priority-3 a {
  color: #C91700;
}
#notifications-zone ul li:before {
  display: inline;
  font-family: "remixicon", sans-serif;
  content: "\ee59";
  font-size: 1.3em;
  vertical-align: middle;
}
#notifications-zone p {
  margin: 15px 0 0 0;
  text-align: right;
}

/* ***********************************************************	*/
/* Home menu */
/* ***********************************************************	*/
.zone_module_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.item_module {
  display: block;
  width: 18%;
  min-width: 250px;
  min-height: 190px;
  padding: 10px;
  cursor: pointer;
  color: #aaa;
  background-color: rgba(200, 200, 200, 0.2);
  margin: 20px 1%;
}
.item_module:visited {
  color: #aaa;
}
.item_module:hover {
  background-color: rgba(200, 200, 200, 0.5);
  color: #222;
}
.item_module .module_titre {
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  font-family: "Work Sans", sans-serif;
  font-weight: bold;
}
.item_module i {
  display: block;
  font-size: 70px;
  line-height: 100px;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-align: center;
  text-transform: none;
  margin-bottom: 10px;
}
.item_module .module_description {
  padding: 5px;
  font-family: "Work Sans", sans-serif;
  text-align: center;
  color: #888;
  height: 40px;
  line-height: 20px;
  font-size: 14px;
}
.item_module:hover .module_description {
  color: #333;
}

/* *************************************** */
/* Accounts list  */
/* *************************************** */
.zone_search {
  text-align: right;
}
.zone_search input::placeholder {
  color: #777;
}
.zone_search input[type=text] {
  color: #7581c8;
  padding: 5px;
  border: 1px solid #000000;
  background: #FFFFFF;
  font-family: "Work Sans", arial, helvetica, geneva, sans-serif;
}
.zone_search button {
  line-height: 40px;
  padding: 0 10px;
}

.account-line {
  padding: 0;
  height: 50px;
}
.account-line > * {
  padding: 0 3px;
  line-height: 50px;
}
.account-line .id {
  width: 60px;
}
.account-line .name {
  width: calc(40% - 60px);
}
.account-line .email {
  width: 25%;
}
.account-line .phone {
  width: calc(35% - 45px);
}
.account-line .actions {
  width: 45px;
  padding: 0 3px;
}
.account-line button {
  background: transparent;
  border: none;
  color: inherit;
  text-transform: uppercase;
  font-size: 16px;
}
.account-line .sort button {
  text-decoration: underline;
}

/* ***********************************************************	*/
/* My Account */
/* ***********************************************************	*/
#my-account-infos strong {
  display: inline-block;
  min-width: 80px;
}

.profile-line .portal,
.profile-line .name {
  width: 33%;
}
.profile-line .function {
  width: calc(33% - 80px);
}
.profile-line .actions {
  width: 80px;
}

/* ***********************************************************	*/
/* Account */
/* ***********************************************************	*/
.device-line .id,
.device-line .type {
  width: 55px;
}
.device-line .profile,
.device-line .last-connexion-date {
  width: calc(50% - 83px);
}
.device-line .actions {
  width: 56px;
}
.device-line .type i {
  display: block;
  font-size: 1.6em;
}
.device-line.line .profile {
  line-height: 14px;
}
.device-line .profile em {
  font-style: normal;
  font-size: 0.8em;
  color: #F17029;
}
.device-line .profile span {
  font-size: 0.8em;
  color: #248600;
  margin-left: 20px;
}
.device-line .profile strong {
  display: block;
  color: #7581c8;
  font-family: "Work Sans", arial, helvetica, geneva, sans-serif;
  font-weight: normal;
  font-size: 0.9em;
}

/* *************************************** */
/* SuperUsers list  */
/* *************************************** */
.superuser-line > * {
  padding: 5px;
  line-height: 40px;
}
.superuser-line.header-line > * {
  line-height: 20px;
  font-weight: bold;
}
.superuser-line .name {
  width: 40%;
}
.superuser-line .email {
  width: calc(40% - 85px);
}
.superuser-line .role {
  width: 20%;
}
.superuser-line .actions {
  width: 85px;
}

@media screen and (max-width: 800px) {
  .superuser-line .name {
    width: calc(50% - 70px);
  }
  .superuser-line .email {
    width: calc(50% - 85px);
  }
  .superuser-line .role {
    width: 70px;
  }
}
/* *************************************** */
/* SuperUsers form  */
/* *************************************** */
#superuser-form ul.ips li {
  line-height: 25px;
  padding-bottom: 10px;
}
#superuser-form ul.ips li .red {
  font-size: 17px;
  width: 25px;
  height: 25px;
  line-height: 23px;
  margin-left: 15px;
}

/* ***********************************************************	*/
/* SQL Update */
/* ***********************************************************	*/
#sql-form textarea {
  width: 100%;
  min-height: 150px;
  margin: 15px 0;
}
#sql-form button {
  display: block;
  margin: auto;
  max-width: 90%;
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
  text-transform: uppercase;
}

#sql-result textarea {
  width: 100%;
}

/* *************************************** */
/* Permissions list  */
/* *************************************** */
.permission-line > * {
  padding: 3px;
}
.permission-line .key {
  width: 20%;
}
.permission-line.line .key {
  line-height: 50px;
}
.permission-line .label {
  width: 30%;
}
.permission-line .description {
  width: 40%;
}
.permission-line .default {
  width: 10%;
}
.permission-line .default .btn_switch {
  margin-top: 10px;
}
.permission-line p {
  margin-bottom: 3px;
}
.permission-line strong {
  text-transform: uppercase;
  width: 25px;
  display: inline-block;
}
.permission-line input[type=text] {
  width: calc(95% - 25px);
  display: inline-block;
  height: 20px;
  border-top: none;
  border-left: none;
  border-right: none;
  vertical-align: middle;
}

@media screen and (max-width: 800px) {
  .permission-line .key {
    width: calc(35% - 50px);
  }
  .permission-line .default {
    width: 50px;
  }
}
/* *************************************** */
/* Config  */
/* *************************************** */
/** Dashboard **/
#config-form #dashboard-form #widgets-list {
  padding: 3px 0;
}
#config-form #dashboard-form #widgets-list li {
  padding: 3px 0;
}
#config-form #dashboard-form #widgets-list li button {
  font-size: 13px;
  width: 22px;
  height: 22px;
  line-height: 20px;
  padding-right: 5px;
  vertical-align: middle;
}
#config-form #dashboard-form #widgets-list-default {
  padding: 3px 0;
  color: #bbb;
}
#config-form #dashboard-form #widgets-list-default li {
  padding: 3px 0;
}
#config-form #dashboard-form #add-widget-form {
  display: none;
}
#config-form #dashboard-form #add-widget-form button {
  width: 25px;
  height: 25px;
  line-height: 25px;
  vertical-align: middle;
}
#config-form #dashboard-form > button {
  vertical-align: middle;
}

/* *************************************** */
/* Config (portal) */
/* *************************************** */
.portal-config-form,
#portal-config-form {
  max-height: calc(100vh - 360px);
  overflow-y: auto;
}

/* *************************************** */
/* Design  */
/* *************************************** */
#design-form img {
  max-height: 300px;
  max-width: 300px;
  display: block;
}

/* *************************************** */
/* Motives  */
/* *************************************** */
#motives-list .header-line {
  height: 50px;
}
#motives-list .header-line > * {
  padding: 0 5px;
  line-height: 40px;
}
#motives-list .name {
  width: calc(50% - 15px);
}
#motives-list .translations {
  width: calc(50% - 40px);
}
#motives-list .actions {
  width: 55px;
}
#motives-list .motive-lines {
  max-height: calc(100vh - 360px);
  overflow-y: auto;
}
#motives-list .motive-lines .motive-line .translations {
  line-height: 1.3;
}
#motives-list .motive-lines .motive-line strong {
  text-transform: uppercase;
  width: 25px;
  display: inline-block;
}

/* *************************************** */
/* Medical  */
/* *************************************** */
#add-category {
  float: right;
}

#medical-lines h2 {
  cursor: pointer;
}
#medical-lines .category-content {
  display: none;
}
#medical-lines .category-line .name {
  width: calc(50% - 90px);
}
#medical-lines .category-line .zones {
  width: calc(50% - 100px);
}
#medical-lines .category-line.line .name {
  line-height: 1.3;
}
#medical-lines .lesion-line .name {
  width: calc(100% - 190px);
}
#medical-lines .lesion-line.line .name {
  line-height: 1.3;
}
#medical-lines .category:first-child .category-line.line .actions > .up {
  display: none;
}
#medical-lines .category:first-child .category-line.line .actions > .down {
  margin-left: 55px;
}
#medical-lines .category:last-child .category-line.line .actions > .up {
  margin-right: 55px;
}
#medical-lines .category:last-child .category-line.line .actions > .down {
  display: none;
}
#medical-lines .lesion-line:nth-child(3) .actions > .up {
  display: none;
}
#medical-lines .lesion-line:nth-child(3) .actions > .down {
  margin-left: 55px;
}
#medical-lines .lesion-line:last-child .actions > .up {
  margin-right: 55px;
}
#medical-lines .lesion-line:last-child .actions > .down {
  display: none;
}

/* *************************************** */
/* Migrations  */
/* *************************************** */
.migration-line {
  line-height: 1.2;
}
.migration-line.line {
  min-height: 40px;
}
.migration-line .name {
  width: calc(50% - 45px);
}
.migration-line .name .logo {
  display: block;
  float: left;
  margin-right: 10px;
  height: 40px;
  width: 40px;
}
.migration-line .name .logo img {
  max-height: 40px;
  max-width: 40px;
}
.migration-line .name strong {
  display: block;
  margin-bottom: 5px;
}
.migration-line .version {
  width: 15%;
}
.migration-line .info {
  width: calc(35% - 40px);
  color: #FFFFFF;
  font-family: "Work Sans", arial, helvetica, geneva, sans-serif;
  font-size: 12px;
}
.migration-line .info span {
  text-transform: uppercase;
  font-size: 11px;
}
.migration-line .info strong {
  font-family: "Work Sans", arial, helvetica, geneva, sans-serif;
  font-weight: normal;
}
.migration-line .actions {
  width: 85px;
  padding-top: 7px;
}

.translations-migration-line .v4-role {
  width: 30%;
}
.translations-migration-line .v5-role {
  width: 70%;
}
.translations-migration-line .v5-role p {
  margin-bottom: 3px;
}
.translations-migration-line .v5-role strong {
  text-transform: uppercase;
  width: 25px;
  display: inline-block;
}
.translations-migration-line .v5-role input[type=text] {
  width: calc(95% - 25px);
  max-width: 300px;
  display: inline-block;
  height: 20px;
  border-top: none;
  border-left: none;
  border-right: none;
  vertical-align: middle;
}

.motives-migration-line .v4-motive {
  width: 70%;
}
.motives-migration-line .v5-motive {
  width: 30%;
}

.team-migration-line .v4-team {
  width: 30%;
}
.team-migration-line .v5-team {
  width: 70%;
  overflow: visible;
  text-overflow: unset;
}
.team-migration-line .v5-team .duplicate-team {
  border-radius: 20px;
  height: 30px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  padding: 0;
  font-size: 1.2em;
}

.migration-team-title {
  text-align: center;
  margin: 0 0 20px 0;
  font-size: 18px;
  color: #F17029;
}

/* *************************************** */
/* Delete portals list  */
/* *************************************** */
#portal-delete-global-actions {
  text-align: right;
}

.portal-delete-line {
  line-height: 1.3;
}
.portal-delete-line .name {
  width: calc(50% - 60px);
}
.portal-delete-line .name .logo {
  display: block;
  float: left;
  margin-right: 10px;
  height: 50px;
  width: 50px;
}
.portal-delete-line .name .logo img {
  max-height: 50px;
  max-width: 50px;
}
.portal-delete-line .name strong {
  display: block;
  margin-bottom: 5px;
}
.portal-delete-line .info {
  width: calc(50% - 60px);
  color: #FFFFFF;
  font-family: "Work Sans", arial, helvetica, geneva, sans-serif;
  font-size: 12px;
}
.portal-delete-line .info span {
  text-transform: uppercase;
  font-size: 11px;
}
.portal-delete-line .info strong {
  font-family: "Work Sans", arial, helvetica, geneva, sans-serif;
  font-weight: normal;
}
.portal-delete-line .server {
  width: 50px;
}
.portal-delete-line .version {
  width: 50px;
}
.portal-delete-line .actions {
  width: 20px;
  padding-top: 12px;
}

/* *************************************** */
/* Phones list  */
/* *************************************** */
.phone-line .name {
  width: 33%;
}
.phone-line .email {
  width: 33%;
}
.phone-line .phone {
  width: 34%;
}

/* *************************************** */
/* Portals list  */
/* *************************************** */
h3 img {
  max-width: 30px;
  max-height: 30px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

.portal-line {
  line-height: 1.3;
}
.portal-line .switch {
  width: 65px;
}
.portal-line .switch .btn_switch {
  margin: 5px auto;
}
.portal-line .switch .btn_switch label {
  cursor: default;
}
.portal-line .switch .maintenance {
  font-variant: small-caps;
  font-size: 10px;
  color: #C91700;
}
.portal-line .name {
  width: calc(50% - 145px);
}
.portal-line .name .logo {
  display: block;
  float: left;
  margin-right: 10px;
  height: 50px;
  width: 50px;
}
.portal-line .name .logo img {
  max-height: 50px;
  max-width: 50px;
}
.portal-line .name strong {
  display: block;
  margin-bottom: 5px;
}
.portal-line .info {
  width: calc(50% - 285px);
  color: #FFFFFF;
  font-family: "Work Sans", arial, helvetica, geneva, sans-serif;
  font-size: 12px;
  padding: 0 5px;
}
.portal-line .info span {
  text-transform: uppercase;
  font-size: 11px;
}
.portal-line .info strong {
  font-family: "Work Sans", arial, helvetica, geneva, sans-serif;
  font-weight: normal;
}
.portal-line .server {
  width: 100px;
}
.portal-line .actions {
  width: 265px;
  padding-top: 12px;
}

@media screen and (max-width: 1300px) {
  .portal-line .name {
    width: calc(50% - 145px);
  }
  .portal-line .info {
    width: calc(50% - 235px);
  }
  .portal-line .server {
    width: 50px;
  }
  .portal-line .actions {
    width: 265px;
  }
}
@media screen and (max-width: 1100px) {
  .portal-line {
    flex-wrap: wrap;
  }
  .portal-line .name {
    width: calc(50% - 40px);
  }
  .portal-line .info {
    width: calc(50% - 75px);
  }
  .portal-line .portal-line .actions {
    width: 100%;
    text-align: right;
  }
}
/* *************************************** */
/* Portal form  */
/* *************************************** */
#portal-form #input-domain .input {
  line-height: 40px;
}
#portal-form #input-domain input {
  text-align: right;
}
#portal-form #input-db .input {
  line-height: 40px;
}
#portal-form #input_logo img {
  display: block;
  max-width: 150px;
  max-height: 100px;
}

/* *************************************** */
/* Portal profiles list  */
/* *************************************** */
#profiles-count {
  font-size: 13px;
  text-align: right;
  margin-top: -20px;
  margin-bottom: 20px;
  color: #bbb;
}
#profiles-count.error {
  color: #C91700;
  font-weight: bold;
}

.portal-profile-line.line > * {
  line-height: 40px;
  padding: 5px;
}
.portal-profile-line.line > *.archived > * {
  color: #777;
}
.portal-profile-line.header-line > * {
  line-height: 20px;
  padding: 5px;
}
.portal-profile-line .name {
  width: calc(50% - 50px);
}
.portal-profile-line .function {
  width: calc(50% - 55px);
}
.portal-profile-line .actions {
  width: 105px;
}
.portal-profile-line .actions .medical:last-child {
  margin-right: 45px;
}
.portal-profile-line .actions .medical.on {
  background: rgb(15, 203, 136);
}

#portal-profiles-list {
  max-height: calc(100vh - 490px);
  overflow-y: auto;
}

/* *************************************** */
/* DBs list  */
/* *************************************** */
.db-line .name {
  width: calc(60% - 60px) !important;
}
.db-line .info {
  width: calc(40% - 120px) !important;
}
.db-line .actions {
  width: 180px !important;
}

/* *************************************** */
/* Languages list  */
/* *************************************** */
#languages-list .header-line {
  height: 50px;
}
#languages-list .header-line > * {
  padding: 0 5px;
  line-height: 40px;
}
#languages-list .line .name,
#languages-list .header-line .name {
  width: calc(100% - 55px);
}
#languages-list .line .actions,
#languages-list .header-line .actions {
  width: 55px;
}

/* *************************************** */
/* Logs list  */
/* *************************************** */
.logs-line .name {
  width: calc(50% - 20px) !important;
}
.logs-line .info {
  width: calc(50% - 30px) !important;
}
.logs-line .actions {
  width: 50px !important;
}

/* *************************************** */
/* Logs  */
/* *************************************** */
.logs-title {
  cursor: pointer;
}
.logs-title::before {
  content: "\ea77";
  font-family: remixicon, sans-serif;
}
.logs-title.on::before {
  content: "\ea4d";
  font-family: remixicon, sans-serif;
}

.logs {
  display: none;
  line-height: 10px;
  font-size: 13px;
  font-family: "Courier New", monospace;
}

/* *************************************** */
/* Volley reports  */
/* *************************************** */
.volley-rep-line {
  max-width: 1000px;
  margin: auto;
}
.volley-rep-line.line {
  height: 40px;
  min-height: 40px;
  line-height: 40px;
}
.volley-rep-line > * {
  width: 25%;
  padding: 0 5px;
}

/* *************************************** */
/* Notifications  */
/* *************************************** */
.notifications-line .date {
  width: 180px;
  padding-left: 5px;
}
.notifications-line .message {
  width: calc(50% - 150px);
}
.notifications-line .message ul {
  line-height: 14px;
  margin: 0;
  padding: 0;
}
.notifications-line .message ul li {
  padding: 0;
}
.notifications-line .portal {
  width: calc(25% - 60px);
}
.notifications-line .user {
  width: calc(25% - 55px);
}
.notifications-line .actions {
  width: 85px;
}
.notifications-line.priority-0 {
  color: #777;
}
.notifications-line.priority-1 {
  color: #fff;
}
.notifications-line.priority-2 {
  color: #F17029;
}
.notifications-line.priority-3 {
  color: #C91700;
}

/* *************************************** */
/* Stats  */
/* *************************************** */
#main-stats {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
  align-items: start;
}
#main-stats .stat {
  text-align: center;
  color: #fff;
  padding: 20px 10px;
  width: 230px;
}
#main-stats .stat i {
  font-size: 80px;
  color: #aaa;
}
#main-stats .stat .number {
  font-size: 40px;
  padding: 20px;
}
#main-stats .stat:hover {
  color: #3D4CAA;
}
#main-stats .stat:hover i {
  color: #3D4CAA;
}
#main-stats .stat:hover .number {
  color: #F17029;
}

/* ***********************************************************	*/
/* DATA Servers */
/* ***********************************************************	*/
#domains-list {
  padding-top: 20px;
  box-sizing: border-box;
  font-size: 12px;
}

.domain-line {
  padding-bottom: 10px;
}

.domain-title {
  background: #333333;
  font-size: 1.2em;
  border-bottom: 2px solid #000000;
  cursor: pointer;
  font-variant: small-caps;
  display: flex;
  justify-content: space-between;
}
.domain-title strong {
  display: block;
  padding: 10px;
  width: calc(100% - 470px);
  font-weight: normal;
  color: #FFFFFF;
}
.domain-title span {
  display: block;
  width: 200px;
  padding: 0 20px 0 10px;
  border-right: 1px solid #999999;
  color: #7581c8;
  box-sizing: border-box;
}
.domain-title span strong {
  display: inline;
  padding: 0;
  float: none;
}
.domain-title span em {
  margin-left: 20px;
  color: #F17029;
  font-family: arial, helvetica, sans-serif;
  font-style: normal;
  font-size: 0.8em;
}
.domain-title:hover {
  background: #444;
}

.domain-files-list {
  display: none;
  padding-left: 40px;
  border-bottom: 2px solid #FFFFFF;
}

.data_file_info {
  padding: 5px;
  border-bottom: 1px solid #999999;
  color: #FFFFFF;
  font-family: arial, helvetica, sans-serif;
}

.data_file_size {
  display: block;
  float: left;
  width: 70px;
  text-align: right;
  padding-right: 10px;
  color: #7581c8;
}

.file_info_zone {
  margin-top: 20px;
}

.file_info_zone_01 {
  float: left;
  width: 60%;
  padding: 20px;
  border-right: 1px dashed #999999;
}

.file_info_zone_02 {
  float: left;
  width: 40%;
  padding: 20px;
}

.file_info {
  float: left;
  width: 250px;
  margin: 10px 10px 10px 20px;
  padding: 10px 10px 10px 80px;
  box-sizing: border-box;
}
.file_info::before {
  position: absolute;
  margin-left: -70px;
  width: 70px;
  content: "c";
  text-decoration: none;
  font-size: 60px;
  line-height: 60px;
  text-align: left;
  font-family: "remixicon", sans-serif;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-transform: none;
  box-sizing: border-box;
}
.file_info span {
  display: block;
  color: #FFFFFF;
  font-family: arial, helvetica, sans-serif;
  font-size: 0.8em;
  line-height: 30px;
}
.file_info strong {
  display: block;
  color: #F17029;
  line-height: 14px;
}
.file_info em {
  display: block;
  color: #FFFFFF;
  font-style: normal;
  font-size: 0.9em;
  line-height: 18px;
}
.file_info em strong {
  display: inline;
  color: #7581c8;
}
.file_info.bdd::before {
  content: "\ec15";
}
.file_info.server::before {
  content: "\ecd3";
}
.file_info.non_utilise {
  clear: both;
  float: none;
  margin: 10px auto;
  border-top: 1px solid #999999;
}
.file_info.non_utilise::before {
  content: "\ed19";
}
.file_info.corbeille {
  float: none;
  margin: 10px auto;
}
.file_info.corbeille::before {
  content: "\ec2a";
}

.empty-bin-button {
  display: block;
  width: 200px;
  margin: 40px auto 0 auto;
  border: 1px solid #999999;
  color: #999999;
  border-radius: 10px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  background-color: transparent;
}
.empty-bin-button:visited {
  color: #999999;
}
.empty-bin-button:hover {
  background: #C91700;
  color: #FFFFFF;
  border-color: #C91700;
}

.empty-bin-message {
  width: 500px;
  padding: 20px;
  margin: 40px auto;
  text-align: center;
  border: 2px solid #248600;
  border-radius: 10px;
}

.return-button {
  display: block;
  width: 250px;
  margin: 40px auto 0 auto;
  background: #3D4CAA;
  color: #FFFFFF;
  font-variant: small-caps;
  border-radius: 10px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}
.return-button:visited {
  color: #FFFFFF;
}
.return-button:hover {
  background: #C91700;
  color: #FFFFFF;
  border-color: #C91700;
}

.disc-space {
  width: 350px;
  margin: 20px auto 0 auto;
  border-top: 1px solid #999999;
  padding: 10px 10px 10px 100px;
  box-sizing: border-box;
}
.disc-space::before {
  position: absolute;
  margin-left: -90px;
  margin-top: 5px;
  width: 70px;
  content: "\ec10";
  text-decoration: none;
  font-size: 80px;
  line-height: 60px;
  text-align: left;
  font-family: "remixicon", sans-serif;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-transform: none;
  box-sizing: border-box;
}
.disc-space em {
  display: block;
  color: #FFFFFF;
  font-style: normal;
  font-size: 0.9em;
  line-height: 30px;
  font-family: arial, helvetica, sans-serif;
}
.disc-space em strong {
  display: inline;
  color: #7581c8;
}
.disc-space strong {
  display: block;
  color: #FFFFFF;
  font-size: 1em;
  line-height: 20px;
}
.disc-space strong strong {
  display: inline;
  color: #F17029;
  font-size: 1.2em;
}
.disc-space span {
  display: block;
  font-family: arial, helvetica, sans-serif;
  color: #FFFFFF;
  font-size: 0.8em;
  line-height: 20px;
}
.disc-space span strong {
  display: inline;
  color: #7581c8;
}

@media screen and (max-width: 1120px) {
  .file_info {
    float: none;
    width: 100%;
    margin: 10px 0;
  }
  .file_info.non_utilise {
    clear: none;
    float: none;
    margin: 10px 0;
    border: none;
    width: 100%;
  }
  .disc-space {
    width: 100%;
    margin: 10px 0;
    border: none;
  }
}
@media screen and (max-width: 800px) {
  .file_info_zone_01 {
    float: none;
    width: 100%;
    padding: 20px 0;
    border-right: none;
  }
  .file_info_zone_02 {
    float: none;
    width: 100%;
    padding: 20px 0;
    border-top: 1px dashed #fff;
  }
  .domain-title {
    font-size: 1em;
  }
  .domain-title strong {
    padding: 10px;
    width: calc(100% - 250px);
  }
  .domain-title span {
    width: 100px;
    padding: 0 5px;
    border-right: 1px solid #999999;
  }
  .domain-title span em {
    display: block;
    margin-left: 0;
    font-size: 0.8em;
  }
}
/* ***********************************************************	*/
/* Sports and competitions */
/* ***********************************************************	*/
/* Tabs */
#sports-tabs {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #777;
}
#sports-tabs li {
  padding: 7px 18px;
  margin-right: 10px;
  background: #3D4CAA;
  color: #fff;
  margin-bottom: -1px;
  border-radius: 5px 5px 0 0;
  border-bottom: none;
}
#sports-tabs li a,
#sports-tabs li a:visited {
  color: #fff;
}
#sports-tabs li.inactive {
  background: #777;
}

.sports-tab-container {
  display: none;
}

@media screen and (max-width: 800px) {
  #sports-tabs li {
    padding: 4px 7px;
    margin-right: 4px;
    max-width: 75px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.8em;
  }
}
/* Lists */
.tab-container .header-line {
  height: 50px;
}
.tab-container .header-line > * {
  padding: 0 5px;
  line-height: 40px;
}
.tab-container .actions {
  width: 55px;
}
.tab-container .line strong {
  text-transform: uppercase;
  width: 25px;
  display: inline-block;
}

.sport-lines {
  max-height: calc(100vh - 390px);
  overflow-y: auto;
}

#teams .sport-lines,
#compet .sport-lines {
  max-height: calc(100vh - 500px);
}

.sport-line .logo {
  width: 10%;
}
.sport-line .logo img {
  display: block;
  max-width: 100%;
  max-height: 50px;
  padding: 0 5px 3px 3px;
}
.sport-line .name {
  width: calc(90% - 55px);
}
.sport-line.line .name {
  line-height: 1.3;
}

.team-line .name {
  width: calc(38% - 85px);
}
.team-line.line .name {
  line-height: 1.3;
}
.team-line .logo {
  width: 10%;
}
.team-line .logo img {
  display: block;
  max-width: 100%;
  max-height: 50px;
  padding: 0 5px 3px 3px;
}
.team-line .sport {
  width: 10%;
}
.team-line .gender {
  width: 8%;
}
.team-line .country {
  width: 10%;
}
.team-line .region {
  width: 8%;
}
.team-line .level {
  width: 9%;
}
.team-line .category {
  width: 7%;
}
.team-line .actions {
  width: 85px;
}

.category-line .short {
  width: 25%;
}
.category-line .name {
  width: calc(75% - 55px);
}
.category-line.line .short, .category-line.line .name {
  line-height: 1.3;
}

.level-line .name {
  width: calc(100% - 55px);
}
.level-line.line .name {
  line-height: 1.3;
}

#regions .add {
  float: right;
  margin: 10px 4px;
}

.region-line .name {
  width: calc(100% - 55px);
}
.region-line.line .name {
  line-height: 1.3;
}

.team-compet-line > * {
  padding: 5px 0 5px 5px;
}
.team-compet-line .start-date {
  width: 120px;
}
.team-compet-line .end-date {
  width: 100px;
}
.team-compet-line .compet {
  width: calc(100% - 305px);
}
.team-compet-line .actions {
  width: 85px;
}

/* Counts */
.team-line .actions .action-button {
  position: relative;
}
.team-line .count {
  position: absolute;
  right: -5px;
  bottom: -5px;
  background: #F17029;
  padding: 3px 4px;
  border-radius: 20px;
  line-height: 1;
  font-size: 10px;
  color: #000;
}

/* Forms */
#sport_form .label em {
  font-style: normal;
  text-transform: uppercase;
}
#sport_form .duplicate-name {
  border-radius: 20px;
  height: 30px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  padding: 0;
  font-size: 1.2em;
}
#sport_form img.logo {
  max-height: 100px;
  max-width: 100px;
}

/* Filters */
.tab-container .filter select {
  display: inline-block;
  margin: 10px 10px 10px 0;
}
.tab-container .filter input {
  height: 24px;
  line-height: 24px;
  width: 200px;
  margin: 10px 10px 10px 0;
}
.tab-container .filter button {
  height: 24px;
  line-height: 24px;
  padding: 0 10px;
  margin: 10px 10px 10px 0;
}

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