@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  src: url("../Medias/Fonts/Roboto-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Numbers";
  src: url("../Medias/Fonts/Inconsolata-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Numbers Light";
  src: url("../Medias/Fonts/Inconsolata-Light.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Roboto Bold";
  src: url("../Medias/Fonts/Inconsolata-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Title";
  src: url("../Medias/Fonts/Raleway-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Title Bold";
  src: url("../Medias/Fonts/Raleway-Bold.ttf");
  font-display: swap;
}

:root {
  --text-color: #ffffff;
  --link-color: #ffffff;
  --link-color-selected: #0094ff;
  --background-color: #1a1e28;
  --background-gradient: linear-gradient(to top left, #1a1e28, #181b22);
  --nav-ul-li-a: #ffffff;
  --card-bg: #232a36;
  --table-border: #3a3a3a;
}

[data-theme="light"] {
  --text-color: #000000;
  --link-color: #ffffff;
  --link-color-selected: #0094ff;
  --background-color: #ffffff;
  --background-gradient: linear-gradient(to top left, #ffffff, #f1f1f1);
  --nav-ul-li-a:#a5a5a5;
  --card-bg: #ffffff;
}





*{
  margin: 0;
  padding: 0;
}
html {
  font-family: 'Roboto', sans-serif;
  /* background: linear-gradient(to top left, #f5f8fb, #f9fbfd); */
  background: var(--background-color);
  /* background-color: var(--background-color-dark); */
  /* color: var(--text-color-dark); */
  min-height: 100%;
  height: 100%;
}
body {
  font-family: 'Roboto', sans-serif;
  /*font-family: 'Roboto', sans-serif;
  font-family: 'Montserrat', sans-serif;*/
  font-size: 96%;
  letter-spacing: 0.01em;
  /* background-color: #f9fbfd; */
  /* background: linear-gradient(to top left, #010626, #000a37); */
  /* background-repeat: repeat-x; */
  /* background-color: #0f121a; */
  /* background: linear-gradient(to top left, #12151e, #0f121a); */
  background: var(--background-gradient);
  margin: 0;
  padding: 0;
  color: var(--text-color);
  min-height: 100%;
  cursor: default;
  text-align: center;
  display: block;
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-font-smoothing: antialiased;
}
body::-webkit-scrollbar{
  width: 8px;
}
body::-webkit-scrollbar-track{
  background-color:#d8d6d6;
}
body::-webkit-scrollbar-thumb{
  border-radius: 10px;
  background-color: #aaa;
}
body.light-mode {
  background: var(--background-color-light);
  color: var(--text-color-light);
}
hr{
  height: 0;
  color: #626b7d;
  border: 0;
  border-top: 1px solid #d7dde7;
}
a {
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.01em;
  -moz-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  white-space: nowrap;
}
a:hover {
  color: #ffffff;
}
button{
  -moz-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
}




.global{
  position: relative;
}

.banner{
  background-color: #fff3d7;
}
.banner p{
  padding: 10px;
  font-size: 0.9em;
}


nav{
  font-family: 'Title', sans-serif;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  /* background-color: #010101; */
  /* background-color: #e9edf2; */
  /* border-right: 1px solid #e9edf2; */
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 200px;
}
nav ul{
  margin: 10px;
  padding: 0;
}
nav ul li{
  list-style: none;
  margin: 0 0 2px 0;
}
nav ul li a{
  display: flex;
  /* font-family: 'Title', sans-serif; */
  align-items: center;
  padding: 10px 25px 10px 40px;
  margin: 0;
  background-repeat: no-repeat;
  background-position-x: 10px;
  background-position-y: center;
  text-align: left;
  font-weight: 400;
  border-radius: 10px;
  /* color: #a5a5a5; */
  color: var(--nav-ul-li-a);
  margin: 10px 0;
}
nav ul li a:hover{
  background-color: #232a36;
  color: #ffffff;
}
nav ul li a.nav-logo{
  text-align: left;
  justify-content: center;
}
nav ul li a.nav-logo:hover{
  background-color: transparent;
}
nav ul li a.nav-logo img{
  width: 60px;
}
nav ul li a.nav-dashboard{
  background-image: url('../img/home.svg');
}
/* nav ul li a.nav-dashboard-on{
  background-color: #232a36;
  background-image: url('../img/home-on.svg');
  color: #52a3ff;
} */
nav ul li a.nav-dashboard-on{
  background-color: #52a3ff;
  background-image: url('../img/home-on.svg');
  color: #ffffff;
}
nav ul li a.nav-visit{
  background-image: url('../img/analytics.svg');
}
nav ul li a.nav-visit-on{
  background-image: url('../img/analytics-on.svg');
  color: #52a3ff;
}
nav ul li a.nav-acquisition{
  background-image: url('../img/ads.svg');
}
nav ul li a.nav-acquisition-on{
  /* background-color: #c4fff5; */
  background-image: url('../img/ads-on.svg');
  color: #52a3ff;
}
nav ul li a.nav-conversion{
  background-image: url('../img/conversion.svg');
}
nav ul li a.nav-conversion-on{
  /* background-color: #c4fff5; */
  background-image: url('../img/conversion-on.svg');
  color: #52a3ff;
}
nav ul li a.nav-settings{
  background-image: url('../img/settings.svg');
}
nav ul li a.nav-settings-on{
  background-color: #c4fff5;
  background-image: url('../img/settings-on.svg');
  color: #52a3ff;
}

nav ul li a.nav-li{
  background-image: url('../img/conversion.svg');
}
nav ul li a.nav-li-on{
  background-color: #52a3ff;
  color: #ffffff;
}

nav ul li a.nav-plugins{
  background-image: url('../img/extension.svg');
}
nav ul li a.nav-plugins-on{
  background-color: #232a36;
  background-image: url('../img/extension-on.svg');
  color: #40c2ac;
}
nav ul li.app-version{
  color: #626b7d;
  font-size: 0.8em;
}

/* nav ul li a span{
  display: flex;
} */




nav ul li ul li a{
  font-weight: 500;
  padding: 5px 20px 5px 20px;
  margin: 0;
}






.container{
  margin-left: 200px;
}

.graph{
  max-height: 400px;
  margin: 0 10px 30px 10px;
}
.graphB{
  max-height: 400px;
  margin: 80px 10px 30px 10px;
}
.classification{
  min-height: 100px;
  display: flex;
  align-items: flex-end;
  margin-top: 20px;
}
.classification-in{
  border-bottom: 1px solid #ffffff;
  width: 100%;
}
.list .classification-in ul{
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
  width: 100%;
}
.list .classification-in ul li{
  border-top:3px solid transparent;
  border-right:3px solid transparent;
  border-left:3px solid transparent;
  border-radius: 10px 10px 0 0;
  color: #ffffff;
  background-color:#232a36;
  width: 31%;
  min-height: 40px;
  text-align: center;
  list-style: none;
  font-weight: 700;
}
.list .classification-in ul li span{
  display: block;
  padding: 10px 20px;
}
.list .classification-in ul li span.classification-label{
  font-size: 1.0em;
  margin-top: -10px;
}
.list .classification-in ul li span.classification-value{
  font-size: 1.8em;
  margin-top: -30px;
  /* font-size: calc(14px + 12 * ((100vw - 614px) / 686)); */
}
.list .classification-in ul li span.classification-value-1{
  font-size: 4em;
  margin-top: -80px;
}
.list .classification-in ul li span.classification-value-2{
  font-size: 3em;
  margin-top: -65px;
}
.list .classification-in ul li span.classification-value-3{
  font-size: 2em;
  margin-top: -50px;
}



header{
  position: relative;
  border-bottom: 1px solid tomato;
}
.zone-h1{
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.zone-h1-date{
  position: relative;
  display: flex;
  align-items: center;
}
h1{
  padding: 0;
  text-align: left;
  font-weight: normal;
  font-size: 1.4em;
  font-family: 'Title Bold', sans-serif;
  color: #ffffff;
}
h1 a{
  display: inline-flex;
  /* background-color: #e9edf2; */
  background-repeat: no-repeat;
  background-position: right 10px center;
  border-radius: 10px;
  padding: 10px 20px 10px 20px;
  margin: 10px 0;
}
h1 span.multip{
  background-image: url('../img/expand_more_white.svg');
  background-color: #232a36;
  padding: 10px 40px 10px 20px;
  display: inline-flex;
  /* background-color: #e9edf2; */
  background-repeat: no-repeat;
  background-position: right 10px center;
  border-radius: 10px;
  margin: 10px 0;
  font-size: 1.0em;
  font-weight: 700;
}
h1 span{
  display: flex;
  font-size: 0.9rem;
  margin: 3px 0 3px 20px;
  font-family: 'Title', sans-serif;
  color: #a5a5a5;
}
.zone-h1-date-period{
  display: flex;
}
.account{
  position: relative;
}
.account ul{
  display: flex;
}
.account ul li{
  list-style: none;
  margin-left: 20px;
}

.account ul li span.alert-edit{
  background-color: #232a36;
  border-radius: 10px;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-family: "Title", sans-serif;
  height: 20px;
  font-weight: 700;
  margin-top: 22px;
}
.account ul li span.alert-edit img{
  position: relative;
}
.account ul li span.alert-edit u{
  text-decoration: none;
  margin-left: 10px;
}


.account ul li a.nav-settings{
  padding: 10px;
  font-family: "Title", sans-serif;
  font-size: 1.2em;
  position: relative;
}
.account ul li a.nav-settings span{
  background-color: #232a36;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 20px;
  height: 20px;
  font-weight: 700;
}
.account ul li a.nav-settings-on{
  background-color: #dadada;
}
/* .account ul li a.nav-settings u{
  position: absolute;
  background-color: tomato;
  border-radius: 25px;
  text-decoration: none;
  margin-top: -32px;
  margin-left: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.7em;
  min-width: 15px;
  min-height: 15px;
  text-align: center;
  line-height: 15px;
} */



ul.layer-flag-open{
  padding: 0;
  position: absolute;
  display: none;
  background-color: #ffffff;
  box-shadow: 2px 2px 5px #f9dc4a;
  border-radius: 0 0 5px 5px;
  top: 40px;
  overflow: hidden;
}
ul.layer-flag-open li a{
  display: block;
  border: none;
  padding: 8px 15px;
  color: initial;
}
ul.layer-flag-open li a:hover{
  background-color: #f4b400;
  color: initial;
}

ul.quick-add-layer{
  display: none;
}
ul.layer-account-open{
  display: none;
}
.flag img{
  max-height: 20px;
}
.period{
  padding: 10px 30px;
  background-color: transparent;
  border-radius: 10px;
  display: flex;
  font-size: 1.2em;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
}
.period img{
  max-height: 20px;
  margin-left: 20px;
}
.period span{
  font-size: 1.0em;
  margin: 0 5px;
  display: inline-flex;
  font-weight: bold;
  align-items: center;
}

a.logout{
  border: 1px solid #3050d1;
  background-color: transparent;
  background-image: url('../img/logout.svg');
  background-repeat: no-repeat;
  background-position-x: 10px;
  background-position-y: center;
  color: #3050d1;
  border-radius: 10px;
  padding: 5px 20px 5px 40px;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.01em;
}
a.logout:hover{
  background-color: #3050d1;
  border: 1px solid #3050d1;
  color: #ffffff;
  background-image: url('../img/logout.svg');
}

.zone-menu{
  display: flex;
  padding: 10px 30px;
}


.zone-checkbox{
  text-align: left;
  padding: 10px 30px;
  color: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 0.8rem;
}
.zone-checkbox ul{
  display: flex;
}
.zone-checkbox ul li{
  list-style: none;
  background-color: #1a1641;
  margin: 0 5px;
  padding: 10px 20px;
  border-radius: 10px;
  color: #ffffff;
}
.zone-checkbox ul li input{
  cursor: pointer;
}
.zone-checkbox ul li label{
  cursor: pointer;
}



.content{
  text-align: left;
  max-width: 1920px;
}

section.dashboard{
  padding: 10px 20px;
}
section.task-line{
  padding: 20px 30px 20px 30px;
}
section.plugins{
  padding: 20px 30px 20px 30px;
}
/* section.tool{
  padding: 10px 40px;
} */
section.action{
  padding: 20px 30px 0px 30px;
  /* background-color: violet; */
}
section.list{
  padding: 20px 30px 20px 30px;
  /* background-color: sandybrown; */
}
section.table{
  padding: 20px 30px 20px 30px;
  /* background-color: sandybrown; */
}
section.settings{
  padding: 20px 30px 20px 30px;
  position: relative;
}
section.funnel{
  padding: 20px 30px 20px 30px;
  position: relative;
}

section ul li{
  list-style: none;
  margin-right: 20px;
}




section.action ul{
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

section.action ul li.layer-export{
  position: relative;
}
section.action ul li.layer-export ul{
  display: none;
}


.btn-export{
  border: 1px dashed #5b5b5b;
  /* background-color: #ffffff; */
  background-image: url('../img/export.svg');
  background-repeat: no-repeat;
  background-position-x: 10px;
  background-position-y: center;
  color: #5b5b5b;
  border-radius: 10px;
  padding: 5px 20px 5px 35px;
  font-size: 0.9em;
  cursor: pointer;
  -moz-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
}
.btn-export:hover{
  color: #000000;
  background-color: #e9edf2;
  border-style: solid;
}

.filter{
  margin: 10px;
}
.filter select{
  padding: 10px 30px;
  background-color: #1f242e;
  color: #ffffff;
  border-radius: 10px;
  border: none;
  font-size: 1.1em;
}







.accroche{
  margin: 0 0 20px 0;
  color: #515f79;
  font-size: 0.9em;
}

.section-title{
  font-weight: 600;
  text-align: left;
  margin: 30px;
  font-size: 2.0em;
  color: #cccccc;
  font-family: "Title Bold", sans-serif;
}

.settings-in{
  display: flex;
  justify-content: space-around;
  margin: 30px 1%;
}
.funnel-in{
  display: flex;
  justify-content: space-around;
  margin: 30px 1%;
}

aside{
  position: relative;
  width: 20%;
  min-width: 180px;
  text-align: right;
}
aside ul{
  margin: 0;
  padding: 0;
}
aside ul li{
  list-style: none;
}
aside ul li a{
  font-family: "Title", sans-serif;
  padding: 15px 20px 15px 20px;
  /* padding: 15px 20px 15px 45px; */
  margin: 5px 0;
  font-size: 1.1em;
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  /* background-repeat: no-repeat;
  background-position-x: 15px;
  background-position-y: center; */
  border-radius: 10px;
  white-space: normal;
}
aside ul li a:hover{
  background-color: #e9edf2;
  color: #2d2d37;
}
aside ul li a.aside-selected{
  font-weight: 700;
  color: #2d2d37;
  background-color: #e9edf2;
}
aside ul li a i{
  width: 1.3em;
  font-size: 1.6rem;
}
aside ul li span{
  font-family: "Title", sans-serif;
  padding: 15px 20px 15px 20px;
  /* padding: 15px 20px 15px 45px; */
  margin: 5px 0;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  /* background-repeat: no-repeat;
  background-position-x: 15px;
  background-position-y: center; */
  border-radius: 10px;
}
aside ul li a:hover{
  background-color: #e9edf2;
}
aside ul li a i{
  width: 1.3em;
  font-size: 1.6rem;
}

/* aside ul li a.icon-nav-settings{
  background-image: url('../img/settings.svg');
}
aside ul li a.icon-nav-code{
  background-image: url('../img/code.svg');
}
aside ul li a.icon-nav-referent{
  background-image: url('../img/referent.svg');
} */


main{
  width: 78%;
}

.card{
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}
.card .card-header {
  padding: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.card .card-header h2 {
  position: relative;
  font-family: 'Title', sans-serif;
  color: #ffffff;
  font-size: 3.0rem;
}
.card .card-header h2 a i {
  margin: 0 10px;
  font-size: 1.0rem;
}

.card .card-header .card-header--btn {
  border-radius: 10px;
  text-align: left;
}
.card .card-header .card-header--btn a, .card .card-header .card-header--btn span {
  background-color: #9227ff;
  padding: 10px 20px 10px 32px;
  display: block;
  font-size: 1.0em;
  border-radius: 10px;
  -moz-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
}
.card .card-header .card-header--btn a:hover, .card .card-header .card-header--btn span:hover {
  background-color: #801ee4;
}
.card .card-header .card-header--btn a i, .card .card-header .card-header--btn span i {
  margin: 0 10px;
}
.card-header--btn-plus{
  background-image: url('../img/plus.svg');
  background-repeat: no-repeat;
  background-position-x: 10px;
  background-position-y: center;
}
.card-header--btn-plus:hover{
  background-image: url('../img/plus.svg');
}
.card-header--btn-del{
  background-image: url('../img/edit.svg');
  background-repeat: no-repeat;
  background-position-x: 10px;
  background-position-y: center;
}
.card-header--btn-del:hover{
  background-image: url('../img/edit.svg');
}

.card--product-edit {
  margin-top: 2.6rem;
}

.card .card-content {
  background-color: #232a36;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.card .card-content-funnel {
  background-color: #f5f8fb;
  background-image: radial-gradient(#d8dce1 10%, transparent 10%);
  background-size: 20px 20px;
}
.card .card-content-code {
  background-color: #232a36;
}
.card .card-content ul {
  padding: 10px 20px;
  margin: 0 20px;
}
.card .card-content ul li {
  margin: 10px 0;
  font-size: 1.1rem;
}
.card .card-content ul li legend {
  display: block;
  font-size: 0.9rem;
  color: #98a2b5;
}
.card .card-content ul li span {
  display: flex;
  cursor: pointer;
}
.card .card-content ul li ul {
  padding: 10px 0 30px 0;
}
.card .card-content ul li ul li {
  list-style: initial;
}

.card .card-content .card-content--one {
  position: inherit;
  padding: 10px;
}
.card .card-content .card-content--one p {
  padding: 5px 20px;
  text-align: justify;
  display: flex;
  line-height: 1.4em;
  justify-content: space-between;
}
.card .card-content .card-content--one p span.sticker {
  background-color: yellow;
  color: black;
  padding: 10px;
  border-radius: 1px;
}
.card .card-content .card-content--one .card-content--one-icon {
  margin: 30px;
}
.card .card-content .card-content--one .card-content--one-icon img {
  max-width: 150px;
}

.card .card-content .card-content--one table {
  border-spacing: 0;
  margin: 20px 1%;
  width: 98%;
}
.card .card-content .card-content--one table tr th {
  padding: 10px;
}
.card .card-content .card-content--one table tr td {
  padding: 10px;
  border-top: 1px solid #12151e;
}



/* FUNNEL */

div.funnel{
  margin: 20px 0;
}
div.funnel-steps{
  margin: 10px 20px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.funnel-steps {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #fff;
  background-color: #fff;
}
.funnel-steps li {
  padding: 10px 5px;
  margin: 0;
  background-color: #40c2ac;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.funnel-steps span {
  justify-content: center;
}

.funnel-steps span:last-child {
  font-size: 36px
}

.funnel-steps li:last-child {
  background-color: #299b88;
}

.funnel-steps li:before, .funnel-steps li:after {
  content: '';
  position: absolute;
  top: 0;
  height: 0;
  border-bottom: 90px solid #fff;
}

.funnel-steps li:before {
  left: 0;
  border-right: 27px solid transparent;
  border-left: 0;
}

.funnel-steps li:after {
  right: 0;
  border-left: 27px solid transparent;
  border-right: 0;
}

.funnel-steps li:nth-child(1):before, li:nth-child(1):after { width: 100px; }
.funnel-steps li:nth-child(2):before, li:nth-child(2):after { width: 125px; }
.funnel-steps li:nth-child(3):before, li:nth-child(3):after { width: 150px; }
.funnel-steps li:nth-child(4):before, li:nth-child(4):after { width: 175px; }
.funnel-steps li:nth-child(5):before, li:nth-child(5):after { width: 200px; height: 100%; border: 0; background-color: #fff; }

.card .card-content .funnel ul li{
  margin: 1px 0;
}


/* 
div.funnel-step{
  margin: 10px 0;
  border: 1px solid #000000;
  background-color: #c4fff5;
  padding: 20px;
  text-align: center;
  border-radius: 15px;
}
div.funnel-step-1{
  width: 80%;
}
div.funnel-step-2{
  width: 50%;
}
div.funnel-step-3{
  width: 40%;
}
div.funnel-step-4{
  width: 30%;
}
div.funnel-step-5{
  width: 20%;
}
div.funnel-step:last-child{
  border-bottom: 3px solid black;
  border-radius: 15px 15px 0 0;
}

div.funnel-step-percent{
  margin: 10px;
  width: 40px;
  height: 40px;
}
div.funnel-step-percent-in{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 2px solid #464f4e;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 3;
  font-size: 0.8em;
  font-weight: 700;
}
div.funnel-step-percent-border{
  position: absolute;
  width: 1px;
  height: 80px;
  background-color: #2c753f;
  margin-left: 22px;
  margin-top: -20px;
  z-index: 1;
} */


/* #e9edf2 */


.table{
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  color: #ffffff;
  overflow: auto;
}
.multi-table{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.table table{
  border-spacing: 0;
  width: 100%;
}
.table table.table-1-2{
  margin: 0 1%;
  width: 48%;
}
.table table.table-1-3{
  margin: 0 1%;
  width: 31%;
}
.table table tr th{
  font-weight: 600;
  /* background-color: #14171f; */
  background-color: #1f242e;
  padding: 15px 15px;
  font-size: 1.0em;
  text-align: right;
  /* border-bottom: 1px solid #000000; */
  max-width: 50px;
  white-space: normal;
}
.table tr th.th-title{
  font-weight: 700;
  text-align: left;
  width: auto;
  /* min-width: 260px; */
  border-right: 1px solid var(--table-border);
}
.table .th-search{
  font-weight: 700;
  text-align: left;
  width: auto;
  border-right: 1px solid var(--table-border);
}
.table .th-search form{
  display: flex;
  align-items: flex-end;
}
.table .th-search form label{
  background: transparent;
  border: none;
}
.table .th-search form label img{
  width: 20px;
}

.table .th-search form input{
  border: none;
  background: none;
  border-bottom: 1px solid #e9edf2;
  width: 80%;
  min-width: 100px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9em;
  color: #ffffff;
  padding: 5px 10px;
}
.table table tr th a, .table table tr th span{
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
  white-space: initial;
}
.a-selected{
  color: #52a3ff;
}
.table table tr th:first-of-type {
  border-left: 1px solid var(--table-border);
}
.table table tr th:last-of-type {
  border-right: 1px solid var(--table-border);
}
.table table tr:first-of-type th:not(:first-child):not(:last-child){
  border-top: 1px solid var(--table-border);
}
.table table tr:last-of-type th:not(:first-child):not(:last-child){
  border-bottom: 1px solid var(--table-border);
}
.table table tr:first-of-type th:first-child {
  border-top: 1px solid var(--table-border);
  border-top-left-radius: 10px;
}
.table table tr:first-of-type th:last-child {
  border-top: 1px solid var(--table-border);
  border-top-right-radius: 10px;
}
.table table tr:last-of-type th:last-child {
  border-right: 1px solid var(--table-border);
  border-bottom: 1px solid var(--table-border);
  /* border-bottom-right-radius: 10px; */
}
.table table tr:last-of-type th:first-child {
  border-left: 1px solid var(--table-border);
  border-bottom:  1px solid var(--table-border);
  /* border-bottom-left-radius: 10px; */
}



.table table tr td{
  padding: 15px 15px;
  font-size: 1.0em;
  text-align: right;
  /* max-width: 30px; */
  white-space: normal;
}
.table table tr td:first-of-type {
  border-left: 1px solid var(--table-border);
}
.table table tr td:last-of-type {
  border-right: 1px solid var(--table-border);
}
/* .table table tr:first-of-type td:not(:first-child):not(:last-child){
  border-top: 1px solid #e9edf2;
} */
.table table tr:last-of-type td:not(:first-child):not(:last-child){
  border-bottom: 1px solid var(--table-border);
}
/* .table table tr:first-of-type td:first-child {
  border-top: 1px solid #e9edf2;
  border-top-left-radius: 10px;
} */
/* .table table tr:first-of-type td:last-child {
  border-top: 1px solid #e9edf2;
  border-top-right-radius: 10px;
} */
.table table tr:last-of-type td:last-child {
  border-right: 1px solid var(--table-border);
  border-bottom: 1px solid var(--table-border);
  border-bottom-right-radius: 10px;
}
.table table tr:last-of-type td:first-child {
  border-left: 1px solid var(--table-border);
  border-bottom:  1px solid var(--table-border);
  border-bottom-left-radius: 10px;
}

.table table td:first-of-type {
  font-weight: 600;
}
.table .td-title{
  font-weight: normal;
  text-align: left;
  /* width: auto;
  width: 380px; */
  min-width: 200px;
  border-right: 1px solid var(--table-border);
  background: inherit;
  z-index: 1;
}

.table tr th.th-border-left, .table tr td.td-border-left{
  border-left: 1px solid var(--table-border);
}
.table tr th.align-left{
  text-align: left;
}


.table table tr td img.flag{
  width: 30px;
}
.table .extern{
  width: 10px;
}

.table .td-percent{
  color: #52a3ff;
  border-right: 1px solid var(--table-border);
  text-align: center;
}

.sticky{
  position: sticky !important;
  left: 0;
  min-width: 10px;
}

.table table tr:nth-child(odd) {
  background-color: #232a36;
}
.table table tr:nth-child(even) {
  background-color: #1f242e;
}

.table table tr:hover{
  background-color: #171b23;
}
.table table tr:hover th{
  background-color: #1f242e;
}




.percent{
  font-size: 0.8em;
  color: #86899e;
  font-style: italic;
  display: block;
  margin-top: 3px;
}















.table-less{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.table-less::after{
  box-sizing: border-box;
}
.table-less-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0;
  text-align: center;
  align-items: center;
  padding: 10px 0;
  white-space: nowrap;
  border-right: 1px solid #e9edf2;
  border-bottom: 1px solid #e9edf2;
  border-left: 1px solid #e9edf2;
}
.table-less-row:hover {
  background-color: #fbfbfc;
}
.table-less-row-th {
  color: #5b5b5b;
  border-top: 1px solid #e9edf2;
  background-color: #f5f8fb;
  border-radius: 10px 10px 0 0;
  padding: 20px 0;
  font-size: 0.9em;
  /* font-weight: 600; */
  text-transform: uppercase;
}
.table-less-row-th:hover {
  background-color: #f5f5f7;
}
.table-less-row-total {
  margin-top: 30px;
  font-weight: 700;
  font-size: 1.2em;
  /* position: fixed; */
  bottom: 10px;
  /* width: 100%; */
  background-color: #e9e9e9;
  border-radius: 10px;
  padding: 20px 0;
}
.table-less-row-total:hover {
  background-color: #e9e9e9;
}
.table-less-col{
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 15%;
  flex: 0 0 15%;
  max-width: 15%;
}
/* .table-less-col-3{
  -ms-flex: 0 0 33%;
  flex: 0 0 33%;
  max-width: 33%;
}
.table-less-col-4{
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.table-less-col-6{
  -ms-flex: 0 0 10%;
  flex: 0 0 10%;
  max-width: 10%;
} */
.table-less-col-label{
  flex: 0 0 25%;
  max-width: 25%;
  text-align: left;
  margin-left: 28px;
}
/* .table-less-col-label img{
  max-height: 20px;
  margin-right: 10px;
} */
.table-less-ads-set{
  margin: 0px -15px 0px -15px;
  display: flex;
  align-items: end;
  font-family: "Title Bold", sans-serif;
  align-items: end;
  border-right: 1px solid #e9edf2;
  /* border-bottom: 1px solid #e9edf2; */
  border-left: 1px solid #e9edf2;
  background-color: #fbfbfc;
  padding: 10px;
}
.table-less-ads-set img{
  max-height: 20px;
  margin-right: 10px;
}
/* .table-less-ads-set-first{
  margin-top: 10px;
} */
.noresult{
  width: 100%;
  text-align: center;
}
.noresult div{
  padding: 30px;
  font-size: 1.8em;
}

.tag-client-name{
  box-sizing: border-box;
  text-align: left;
  display: flex;
  box-shadow: none;
  border-radius: 10px;
  width: 100%;
  position: relative;
  outline: 0;
  vertical-align: top;
  background-color: #e4e4e4;
  color: #626b7d;
  font-style: normal;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;
  transition: border linear .2s,box-shadow linear .2s;
  padding: 8px 16px;
  font-size: 1.2em;
  line-height: normal;
  justify-content: space-between;
}
.icon-code{
  padding-left: 25px;
  border-radius: 10px;
  background-color: transparent;
  background-image: url('../img/integration.svg');
  background-repeat: no-repeat;
  background-position-x: left;
  background-position-y: center;
}
.icon-login{
  padding-left: 30px;
  background-image: url('../img/login-white.svg');
  background-repeat: no-repeat;
  background-position-x: 10px;
  background-position-y: center;
}
.tag{
  padding: 3px 10px;
  display: inline-flex;
  border-radius: 10px;
  background-color: #626b7d;
  color: #ffffff;
  min-width: 60px;
  justify-content: center;
  font-size: 0.9em;
}
.tag-green{
  background-color: #c4fff5;
  color: #40c2ac;
}
.tag-yellow{
  background-color: #ffe477;
  color: #b08d00;
}
.tag-grey{
  background-color: #e2e2e2;
  color: #565656;
}
.tag-progress{
  background: linear-gradient(to left, #c4fff5, #d9f7e0);
  color: #2c753f;
}
.tag-red{
  background-color: #dc4242;
}
.tag-client-name{
  padding: 3px 15px;
  display: inline-flex;
  border-radius: 10px;
  background-color: #626b7d;
  color: #ffffff;
  min-width: 60px;
  justify-content: center;
  font-size: 0.9em;
  text-align: left;
  display: flex;
  box-shadow: none;
  border-radius: 5px;
  color: #626b7d;
  font-style: normal;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;
  transition: border linear .2s,box-shadow linear .2s;
}
.cursor-hand{
  cursor: pointer;
}


.kpis{
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0;
}
.kpi{
  position: relative;
  border-radius: 10px;
  /* box-shadow: 0px 1px 3px #f0f0f0; */
  -moz-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  margin: 14px 1%;
  width: 31%;
}
.kpi-card{
  background-color: var(--card-bg);
  border: 1px solid var(--card-bg);
}
/* .kpi-card-selected{
  border: 1px solid #3a3a3a;
} */
.kpi-card-multi{
  background-color: var(--card-bg);
  display: flex;
  flex-direction: column;
}
.kpi-card-2-3{
  width: 64%;
}

.kpi .kpi-alert{
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  display: none;
}
.kpi .kpi-card .kpi-in{
  padding: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.kpi .kpi-card-multi .kpi-in{
  padding: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.kpi .kpi--title{
  margin: 0 0 3px 0;
  padding: 10px 30px 0px 30px;
  font-size: 1.1em;
  color: #a5a5a5;
}
.kpi .kpi--text{
  margin: 0;
  padding: 10px 30px 0px 30px;
  font-size: 1.0em;
  text-align: justify;
}
.kpi .kpi--chart{
  padding: 0 20px 20px 20px;
}
.kpi .kpi--numbers{
  font-size: 2.6em;
  /* font-size: calc(18px + 12 * ((100vw - 614px) / 686)); */
  font-weight: 600;
  padding: 0 30px 20px 30px;
  white-space: nowrap;
  color: #ffffff;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  font-family: 'Numbers', sans-serif;
}
.kpi--numbers div.kpi--number-c{
  color: #86899e;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px;
  margin-left: 10px;
  font-size: 0.4em;
  letter-spacing: -0.01em;
}
.kpi--numbers div.kpi--number-c span.kpi--number-c-amount{
  font-size: 0.4em;
  font-weight: 300;
}

@keyframes blinker-red-background-text {
  0% { background-color: #b71d1d; color: #ffffff; }
  50% { background-color: transparent; color: #eb3c3c; }
  100% { background-color: #b71d1d; color: #ffffff; }
}
.blinking-red{
  animation: blinker-red-background-text 1.2s linear infinite;
  border-radius: 10px;
  display: flex;
}

@keyframes blinker-green-background-text {
  0% { background-color: #2bb64f; color: #ffffff; }
  50% { background-color: transparent; color: #2bb64f; }
  100% { background-color: #2bb64f; color: #ffffff; }
}
.blinking-green{
  animation: blinker-green-background-text 1.2s linear infinite;
  border-radius: 10px;
  display: flex;
}





.kpi--numbers div.kpi--number-c span.kpi--number-c-percent img{
  margin-left: 5px;
  /* position: absolute; */
}
.positive {
  color: #2bb64f;
  display: flex;
  justify-content: flex-end;
}

.negative {
  color: #eb3c3c;
  display: flex;
  justify-content: flex-end;
}

.white {
  color: #ffffff;
}
.neutral {
  color: #ffffff;
}
.color-green{
  color: #2bb64f !important;
}
.color-red{
  color: #eb3c3c !important;
}
.color-blue{
  color: #2b69b6 !important;
}

.kpi .kpi--btn{
  position: inherit;
}
.kpi .kpi--btn a{
  -moz-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  cursor: pointer;
  border: 1px solid #5b5b5b;
  margin: 20px 0;
  border-radius: 10px;
  padding: 10px 30px 10px 45px;
  background-color: #5b5b5b;
  background-image: url('../img/download-white.svg');
  background-repeat: no-repeat;
  background-position-x: 15px;
  background-position-y: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.0em !important;
}


.plugins{
  position: relative;
  display: flex;
}
.plugin{
  position: relative;
  background-color: #232a36;
  border-radius: 10px;
  box-shadow: 0px 1px 3px #f0f0f0;
  -moz-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  margin: 10px 1%;
  min-width: 240px;
}
.plugin .plugin-in{
  padding: 30px;
}
.plugin .plugin--icon{
  display: flex;
  justify-content: space-evenly;
}
.plugin .plugin--icon img{
  height: 60px;
  max-width: 80px;
}
.plugin .plugin--title{
  margin: 10px 0 20px 0;
  text-align: center;
}
.plugin .plugin--btn{
  position: inherit;
  display: flex;
  justify-content: center;
}
.plugin .plugin--btn a{
  -moz-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  cursor: pointer;
  border: 1px solid #b7d2ff;
  margin: 10px 0;
  border-radius: 10px;
  padding: 10px 30px 10px 45px;
  background-color: #b7d2ff;
  background-image: url('../img/activate.svg');
  background-repeat: no-repeat;
  background-position-x: 15px;
  background-position-y: center;
  color: #3050d1;
  font-weight: 600;
  font-size: 1.0em !important;
}
.plugin .plugin--btn a:hover{
  background-color: #3050d1;
  background-image: url('../img/activate-on.svg');
  color: #ffffff;
  border: 1px solid #3050d1;
}



a.a-plus{
  border: 1px solid #3050d1;
  background-color: transparent;
  background-image: url('../img/plus.svg');
  background-repeat: no-repeat;
  background-position-x: 10px;
  background-position-y: center;
  color: #3050d1;
  border-radius: 10px;
  padding: 5px 20px 5px 40px;
  font-size: 0.9em;
  font-weight: 600;
}
a.a-plus:hover{
  background-color: #3050d1;
  border: 1px solid #3050d1;
  color: #ffffff;
  background-image: url('../img/plus-white.svg');
}
a.a-extern{
  border: 1px solid #5b5b5b;
  background-color: #ffffff;
  background-image: url('../img/extern.svg');
  background-repeat: no-repeat;
  background-position-x: 5px;
  background-position-y: center;
  color: #5b5b5b;
  border-radius: 10px;
  padding: 5px 10px 5px 35px;
  font-size: 0.9em;
}
a.a-extern:hover{
  color: #000000;
}
a.a-cancel{
  border: 1px solid transparent;
  background-color: #ffffff;
  background-image: url('../img/cancel.svg');
  background-repeat: no-repeat;
  background-position-x: 10px;
  background-position-y: center;
  color: #5b5b5b;
  border-radius: 10px;
  padding: 5px 20px 5px 40px;
  font-size: 1em;
  margin-right: 20px;
}
a.a-cancel:hover{
  color: #5b5b5b;
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
}
a.a-remove{
  border: 1px solid transparent;
  background-image: url('../img/close.svg');
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  color: #5b5b5b;
  border-radius: 10px;
  padding: 10px;
  font-size: 1em;
  margin-left: 10px;
}
a.a-remove:hover{
  color: #000000;
}
a.a-delete{
  color: crimson;
  margin: auto 30px;
}
a.a-delete:hover{
  color: #ffffff;
}
a.a-archive{
  border: 1px solid transparent;
  background-color: #f1f1f1;
  background-image: url('../img/archive.svg');
  background-repeat: no-repeat;
  background-position-x: 10px;
  background-position-y: center;
  color: #5b5b5b;
  border-radius: 25px;
  padding: 5px 20px 5px 40px;
  font-size: 1em;
  margin-right: 20px;
}
a.a-archive:hover{
  color: #5b5b5b;
  border: 1px solid #f1f1f1;
}

.btn-plus{
  color: #ffffff;
  border: 1px solid #40c2ac;
  background-color: #40c2ac;
  background-image: url('../img/plus-white.svg');
  background-repeat: no-repeat;
  background-position-x: 10px;
  background-position-y: center;
  border-radius: 10px;
  padding: 15px 20px 15px 40px;
  font-weight: 600;
  -moz-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  white-space: nowrap;
}
.btn-plus:hover{
  background-color: #c4fff5;
  border: 1px solid #c4fff5;
  color: initial;
  background-image: url('../img/plus.svg');
}





.period{
  padding: 0;
  font-size: 0.9em;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.period img{
  max-height: 20px;
}
.period-from-to{
  display: flex;
  border-radius: 10px;
}
.period-from-to:hover{
  background-color: #1f242e;
}
.period p{
  font-size: 1.1em;
  display: inline-flex;
  font-weight: 700;
  align-items: center;
  /* border: 1px solid #e9edf2; */
  border-radius:10px;
  /* background-color: #232a36; */
  background-image: url('../img/arrow_down_white.svg');
  background-repeat: no-repeat;
  background-position: right 5px center;
  padding: 10px 35px 10px 10px;
  color: #ffffff;
}
.period p u{
  font-size: 0.8em;
  /* background-color: #2e3853; */
  background-color: #232a36;
  color: #a5a5a5;
  border-radius: 2px;
  padding: 2px 8px;
  margin-right: 10px;
}
.period p span{
  display: block;
  
}

/* .period-from-to{
  display: flex;
  padding: 10px 0 5px 0;
}
.period-from-to:hover{
  background-color: #f7f7f7;
}
.period-from-to u{
  font-size: 0.6em;
  display: inline-flex;
  background-color: #f7f7f7;
  padding: 1px 3px;
  border-radius: 5px;
  margin-right: 10px;
} */
.period .period-compare{
  padding: 1px 10px;
}
.period .period-compare-selected{
  display: flex;
  color: #ffffff;
  font-size: 0.8em;
  border-radius: 0 0 5px 5px;
  justify-content: center;
  padding: 0 3px 3px 3px;
  display: block;
}
.period .period-compare-selected:hover{
  background-color: #1f242e;
  
}
.period .period-compare-selected span{
  font-weight: 300;
}
.period .period-compare ul{
  display: none;
}
.period .period-compare ul li{
  list-style: none;
}






/* Back on Top */
.scrollup {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  color: white;
  background-color: #f4f3f0;
  border: 1px solid #f4f3f0;
  border-radius: 10px;
  font-size: 20px;
  text-align: center;
  line-height: 37px;
  color: #999999;
}
.scrollup:hover {
  color: #f4f3f0;
  background-color: #2e2824;
}


/* OVERLAY + LAYERS */
/* .overlay{
  display: none;
  position: fixed !important;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  opacity: 0.2;
  z-index: 10;
}
.overlay-visible{
  display: block;
}
.overlay-2{
  display: none;
  position: fixed !important;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  opacity: 0.2;
  z-index: 12;
}
.overlay-2-visible{
  display: block;
}

.layer-right{
  display: block;
  position: fixed !important;
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 11;
  overflow: auto;
  border-radius: 10px 0 0 10px;
}
.layer-right::-webkit-scrollbar{
  width: 8px;
}
.layer-right::-webkit-scrollbar-track{
  background-color:#d8d6d6;
}
.layer-right::-webkit-scrollbar-thumb{
  border-radius: 10px;
  background-color: #aaa;
}

.layer-right-2{
  display: block;
  position: fixed !important;
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 13;
  overflow: auto;
}
.layer-right-2::-webkit-scrollbar{
  width: 8px;
}
.layer-right-2::-webkit-scrollbar-track{
  background-color:#d8d6d6;
}
.layer-right-2::-webkit-scrollbar-thumb{
  border-radius: 10px;
  background-color: #aaa;
}
.layer-right-in{
  display: none;
  padding: 10px;
}
.layer-form{
  padding: 10px;
}
.layer-top{
  display: flex;
}
.layer-top div{
  flex: auto;
}
.layer-close{
  font-weight: normal;
  font-size: 1.8em;
  text-align: left;
}
.layer-title{
  font-weight: 700;
  font-size: 1.4em;
}
.layer-plus{
  font-weight: normal;
  font-size: 1.8em;
  text-align: right;
  margin: 0 30px 0 0;
  color: white;
  position: relative;
}
.layer-plus i{
  background-color: #4859fc;
  color: white;
  border-radius: 50%;
  padding: 10px 12px;
  cursor: pointer;
}

.layer-list{
  margin: 20px 0;
  text-align: left;
}
.layer-list ul{
  margin: 20px;
}
.layer-list ul li{
  list-style: none;
}
.layer-list ul li span{
  padding: 10px 20px;
  margin: 0;
  display: list-item;
  cursor: pointer;
  border-bottom: 1px solid #e4e4e4;
}
.layer-list ul li span:hover{
  background-color: #f5f5f5;
} */


.combobox{
  cursor: pointer;
}
.combobox-default{
  box-sizing: border-box;
  text-align: left;
  display: flex;
  box-shadow: none;
  border-radius: 10px;
  width: 100%;
  position: relative;
  outline: 0;
  vertical-align: top;
  background-color: #e4e4e4;
  color: #626b7d;
  font-style: normal;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;
  transition: border linear .2s,box-shadow linear .2s;
  padding: 8px 16px;
  font-size: 1.2em;
  line-height: normal;
  justify-content: space-between;
}

.comboBox select{
  padding: 10px 30px;
  background-color: #181b22;
  color: #ffffff;
  border-radius: 10px;
  border: none;
  font-size: 1.1em; 
}



/* .a-close-layer{
  cursor: pointer;
}
.a-close-overlay-2{
  cursor: pointer;
} */











.assigned{
  display: none;
  position: absolute;
  border: 1px solid #f1f1f1;
  min-width: 200px;
  min-height: 30px;
  background-color: #ffffff;
  z-index: 20;
  padding: 10px;
  border-radius: 10px;
}
.assigned-in a{
  display: flex;
  align-items: center;
}
.assigned-img img{
  width: 30px;
  border-radius: 50%;
}
.assigned-name{
  margin-left: 20px;
  font-size: 1.0rem;
}

.input-tags{
  display: flex;
  flex-wrap: wrap;
  background-color: #fdfdfd;
  position: relative;
  border: solid 1px #f1f1f1;
  border-radius: 10px;
}
.input-tags li{
  list-style: none;
  padding: 5px 15px;
  margin: 5px;
  font-size: 1.2em;
}
.input-tags li.tagit{
  background-color: #d6ddeb;
  color: #626b7d;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
.input-tags li a{
  display: inline-flex;
}
.input-tags li a i{
  margin: 0 5px;
}
.input-tags li.tagit-new input{
  padding: 0;
  font-size: initial;
}

.hidden-input{
  display: none;
}


.restricted-text{
  margin: 30px 10px;
}





/* COMBOBOX */
.toggle {
  position: relative;
  display: block;
  width: 40px;
  height: 20px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
}
.toggle:before {
  content: "";
  position: relative;
  top: 3px;
  left: 3px;
  width: 34px;
  height: 14px;
  display: block;
  background: #9A9999;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.toggle span {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  display: block;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(154, 153, 153, 0.5);
  transition: all 0.2s ease;
}
.toggle span:before {
  content: "";
  position: absolute;
  display: block;
  margin: -18px;
  width: 56px;
  height: 56px;
  background: rgba(55, 158, 89, 0.5);
  border-radius: 50%;
  transform: scale(0);
  opacity: 1;
  pointer-events: none;
}
form fieldset label.toggle{
  padding: initial;
}

.cbx:checked + .toggle:before {
  background: #78f097;
}
.cbx:checked + .toggle span {
  background: #2bb64f;
  transform: translateX(20px);
  transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
  box-shadow: 0 3px 8px rgba(55, 158, 89, 0.2);
}
.cbx:checked + .toggle span:before {
  transform: scale(1);
  opacity: 0;
  transition: all 0.4s ease;
}

/* FORM */

.content-form{
  margin: 20px 4%;
  text-align: center;
  display: flex;
}
.content-form section{
  width: 46%;
}

form{
  padding: 0;
  position: relative;
}
form fieldset{
  border: none;
  text-align: left;
  font-size: 12px;
  padding: 0;
}

form fieldset.form-btn{
  margin: 20px 0;
  text-align: center;
}
form fieldset p{
  border: none;
  text-align: left;
  font-size: 12px;
  padding: 0;
  margin: 10px 0;
  flex-wrap: wrap;
  height: fit-content;
  border-radius: 10px;
}
form fieldset p.col2{
  display: flex;
}
form fieldset p.col2 span{
  margin: 0 20px 0 0;
}
.no-border{
  border: none;
}
form fieldset.form-100{
  width: 100%;
}
form fieldset.form-1-2 p{
  width: 46%;
  margin: 0 2%;
}

form fieldset p.p-100{
  flex-wrap: nowrap;
  width: 100%;
}
form fieldset legend{
  text-align: right;
  margin: 3px 10px;
  font-size: 0.9em;
}
form fieldset legend a{
  color: #3b4750;
}
form fieldset label{
  display: block;
  padding: 5px;
  font-size: 1.1em;
  color: #ffffff;
}
form fieldset input, form fieldset select{
  box-sizing: border-box;
  display: inline-block;
  border: solid 1px #f1f1f1;
  box-shadow: none;
  border-radius: 5px;
  width: 100%;
  position: relative;
  outline: 0;
  vertical-align: top;
  /* background-color: #fdfdfd;
  color: #5b5b5b; */
  background-color: #000000;
  color: #ffffff;
  font-style: normal;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;
  transition: border linear .2s,box-shadow linear .2s;
  padding: 6px 16px;
  font-size: 1.2em;
  line-height: normal;
}
form fieldset input.input-mandatory{
  border-left: 3px solid #cccccc;
  color: #5b5b5b;
}
form fieldset input.input-title{
  border: 1px solid transparent;
  color: #5b5b5b;
  font-size: 1.6em;
  font-weight: 600;
  padding-left: 0;
}
form fieldset input.input-title:focus{
  border: 1px solid #cccccc;
}
form fieldset textarea{
  box-sizing: border-box;
  display: inline-block;
  border: solid 1px #f1f1f1;
  border-radius: 10px;
  box-shadow: none;
  width: 100%;
  position: relative;
  outline: 0;
  vertical-align: top;
  background-color: #fdfdfd;
  color: #5b5b5b;
  font-style: normal;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;
  transition: border linear .2s,box-shadow linear .2s;
  padding: 10px 16px;
  font-size: 1.2em;
  line-height: normal;
  min-height: 150px;
}




.btn-valid{
  -moz-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  cursor: pointer;
  border: 1px solid #3050d1;
  margin: 20px 0;
  border-radius: 10px;
  padding: 10px 30px 10px 45px;
  background-color: #3050d1;
  background-image: url('../img/valid.svg');
  background-repeat: no-repeat;
  background-position-x: 15px;
  background-position-y: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.2em !important;
}
.btn-valid:hover{
  background-color: #1f3baa;
  border: 1px solid #1f3baa;
}

.form-checkbox{
  display: flex;
  margin: 20px 0 5px 0;
  justify-content: space-between;
}
.form-checkbox input{
  width: 5%;
}
.form-checkbox label{
  width: 90%;
  margin: 0;
}

button.a-delete{
  background-color: transparent;
  font-size: 1.0em;
  border: none;
  margin-left: 10px;
  background-image: url('../img/trash-white.svg');
  background-repeat: no-repeat;
  background-position-x: 15px;
  background-position-y: center;
  cursor: pointer;
}


.search{
  position: relative;
}
.search input{
  width: 96%;
  margin: 10px 2%;
  padding: 20px 20px 20px 60px;
  background-image: url('../img/search-solid.svg');
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 1.4rem;
  font-size: 1.4rem;
}
#msg{
  display: none;
  padding: 10px 20px;
  background-color: #e23a27;
  color: #ffffff;
  text-align: center;
}
























/* LOGIN PAGE */

.main-login{
  /* background: linear-gradient(to top left, #455077, #0c101d); */
  height: 100vh;
  min-height: 500px;
}
.main-login-in{
  display: flex;
  justify-content: center;
}
.main-login-grid{
  width: 30%;
  min-width: 380px;
  max-width: 480px;
  background-color: #232a36;
  /* border: 1px solid #e9edf2; */
  border-radius: 10px;
  margin: 6vh;
}
.main-login-grid-logo{
  margin: 30px 40px;
}
.main-login-grid-logo img{
  max-width: 100px;
}
.main-login-grid-title{
  margin: 10px 30px 10px 35px;
  font-family: "Title Bold", sans-serif;
  font-size: 1.8em;
}
.main-login-grid form fieldset div{
  flex-direction: column;
}


/* REGISTER PAGE */


.step{
  position: relative;
  margin: 10px;
}
.step ul{
  display: flex;
}
.step ul li{
  list-style: none;
  min-width: 200px;
}
.step ul li a{
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 10px;
}
.step ul li a strong{
  display: flex;
  justify-content: center;
  z-index: 2;
}
.step ul li a strong i{
  font-style: normal;
  font-size: 1.2em;
  background-color: #e9edf2;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #5b5b5b;
}
/* .step ul li a:hover strong i{
  background-color: #c4fff5;
} */
.step ul li a span{
  font-size: 0.9em;
  margin: 10px;
  color: #5b5b5b;
}
.step ul li a.step-selected{
  font-weight: 700;
  color: #40c2ac;
}
.step ul li a.step-selected strong i{
  font-weight: 700;
  background-color: #c4fff5;
  color: #40c2ac;
}
.step ul li a.step-selected span{
  font-weight: 700;
  color: #40c2ac;
}

.trait{
  position: absolute;
  display: flex;
  height: 1px;
  width: 80%;
  border-bottom: 1px solid #e9edf2;
  margin-top: 29px;
  left: 50%;
  margin-left: -40%;
  z-index: 1;
}


.main-register{
  /* background: linear-gradient(to top left, #455077, #0c101d); */
  height: 100vh;
  min-height: 500px;
  margin-bottom: 100px;
}
.main-register-in{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main-register-grid{
  width: 60%;
  min-width: 380px;
  background-color: #ffffff;
  /* border: 1px solid #e9edf2; */
  border-radius: 10px;
  /* margin: 6vh;
  height: 88vh; */
}
.main-register-grid-logo{
  margin: 30px 40px;
}
.main-register-grid-logo img{
  max-width: 60px;
}
.main-register-grid-title{
  margin: 10px 30px 10px 35px;
  font-family: "Title Bold", sans-serif;
  font-size: 1.8em;
}
.main-register-grid form fieldset div{
  flex-direction: column;
}



























input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  margin: 0;
  padding: 0;
}

input[type="checkbox"]::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;  
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff;
}

input[type="checkbox"]:checked::before {
  background-image: url("../img/icon_check.png");
  background-size: contain;
  background-color: #f9dc4a;
}





/* LAYER */
.open{
  cursor: pointer;
}
.overlay{
  background: rgba(100,100,150,0.5);
  top: 0;
  left: 0;
  z-index: 9997;
  width: 100%;
  height: 100%;
  position: fixed;
  overflow-y: scroll;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
}
.popup{
  position: absolute;
  top: 50px;
  left: 50%;
  width: 50%;
  min-width: 200px;
  max-width: 1280px;
  margin-left: -25%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 50px;
  padding: 30px;
  background: #000000;
  background-position: fixed;
  box-sizing: border-box;
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  z-index: 12;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}
.close{
  position: absolute;
  z-index: 13;
  top: 48px;
  right: 0;
  font-size: 2.5em;
  padding: 10px;
  cursor: pointer;
  
}
.overlay-visible{
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  display: block;
}

.select-items{
  display: flex;
  flex-direction: row;
  font-family: 'Numbers', sans-serif;
}
.select-items span{
  background-color: #1f3baa;
  border-radius: 25px;
  border: 1px solid #1f3baa;
  padding: 8px 20px;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.6em;
  margin: 10px;
}
.select-items span:hover{
  border: 1px solid #ffffff;
}
.select-items span.selected{
  background-color: #1f3baa;
}

.input-text,.input-select{
  position: relative;
  width: auto;
  display: flex;
  min-width: 200px;
  font-size: 1.2em;
  /* width: 300px; */
  color: #12151e;
}
.input-select span{
  border: 1px solid #ffffff;
  background-color: #ffffff;
  border-radius: 3px;
  padding: 10px 20px;
  display: block;
  margin: 0;
  width: 300px;
  background-image: url("../img/arrow_down_dark.svg");
  background-repeat: no-repeat;
  background-position: right;
}
.input-select ul{
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-radius: 0 0 3px 3px;
  padding: 10px 20px;
  display: block;
  position: absolute;
  margin-top: 38px;
  background-color: #ffffff;
  display: none;
}
.input-select ul li{
  padding: 10px 0;
}



.layer-content--header{
  text-align: left;
  margin-bottom: 10px;
  position: relative;
}
.layer-content--center-in{
  position: relative;
}
.layer-content--center-in ul li{
  list-style: none;
}
.layer-content--center-in ul li a{
  display: flex;
  align-items: center;
  margin: 10px 10px 20px 10px;
}
/* .layer-content--center-in ul li a:hover{
  background-color: transparent;
} */
.layer-content--center-in ul li a span{
  display: flex;
  margin-left: 10px;
}


.layer-content--center-in-left{
  display: flex;
  flex-direction: column;
  text-align: left;
  border-right: 1px dotted #515f79;
  width: 30%;
  padding: 0 2% 0 0;
}
.layer-content--center-in-right{
  width: 64%;
  padding: 0 0 0 2%;
}

.grid-title{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 2%;
}
.grid-title--h1{
  margin-bottom: 30px;
  line-height: 1.5rem;
  font-size: 2.2em;
  font-weight: 700;
}
.grid-title--h1 span{
  display: block;
  font-size: 0.8rem;
  font-weight: normal;
  margin-bottom: 5px;
}
.grid-title--description{
  margin-bottom: 20px;
  text-align: left;
  font-size: 1.0em;
}
.grid-title--action{
  margin-bottom: 20px;
}

#origin_name_field{
  display: none;
}




/* MANAGER */
.manager{
  margin: 30px;
}
.manager-menu{
  width: 26%;
  margin-right: 4%;
}
menu{
  display: list-item;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px;
  text-align: left;
  margin-bottom: 30px;
  border: 1px dashed #f9dc4a;
}
menu ul{
  display: flex;
  flex-direction: column;
  padding: 10px;
}
menu ul li{
  list-style: none;
  margin: 1px 0;
}
menu ul li a{
  padding: 16px 20px;
  display: block;
  border-radius: 10px;
}
menu ul li a:hover{
  color: #ffffff;
  background-color: #29235c;
}
menu ul li a.menu-a-selected{
  background-color: #f9dc4a;
  color: #29235c;
}
.menu-title{
  font-size: 1.6em;
  color: #ffffff;
  text-align: left;
  margin: 3px 3px;
  font-weight: 700;
}
.menu-title span img{
  max-width: 24px;
  display: inline-flex;
  margin-right: 10px;
}

.manager-content{
  width: 90%;
  /* width: 70%; */
}
.col-in{
  position: relative;
}
.no-result{
  margin: 20px;
}
.list{
  position: relative;
}
.list ul{
  margin: 20px;
}
.list ul li{
  list-style: initial;
}
/* .list ul li a{
  position: relative;
  padding: 10px;
}
.list ul li a:hover{
  background-color: #e9edf2;
} */



legend{
  font-size: 0.8em;
  color: #626b7d;
}
.zone-btn-new{
  position: absolute;
  right: 0;
  /* margin-top: -30px; */
}
a.a-btn{
  border-radius: 10px;
  background-color: #f9dc4a;
  border: 1px solid #f9dc4a;
  padding: 10px 30px;
  color: #282359;
  font-size: 20px;
  height: fit-content;
  font-weight: 700;
  margin: 10px;
  display: inline-flex;
}
a.a-btn:hover{
  background-color: #282359;
  color: #ffffff;
}





/* FORMULAIRE */

form{
  position: relative;
}
form fieldset{
  display: flex;
  flex-direction: column;
  border: none;
}
form fieldset div{
  display: flex;
  flex-direction: column;
}
form fieldset div span{
  display: flex;
  flex-direction: column;
  margin: 10px 20px;
}
form fieldset div span label{
  display: flex;
  margin: 5px 0;
}
form fieldset div span input{
  padding: 10px 20px;
  font-family: 'Roboto', sans-serif;
}
form fieldset div span input.radio{
  font-size: 2rem;
}
form fieldset div span aside{
  float: right;
  display: inline-flex;
}
form fieldset div span ul li{
  display: inline-flex;
  padding: 10px;
}

form.form-alert fieldset{
  margin: 10px 20px;
}


.zone-btn-form{
  display: flex;
  justify-content: center;
}
.zone-btn-form a{
  border-radius: 10px;
  border: none;
  padding: 0 20px;
  min-height: 50px;
  line-height: 50px;
  font-size: 1.0em;
  height: fit-content;
  font-weight: normal;
  cursor: pointer;
  margin: 10px;
  display: inline-flex;
}
.zone-btn-form a:hover{
  background-color: #d8d6d6;
}
.zone-btn-form button{
  border: 1px solid #9227ff;
  background-color: #9227ff;
  margin: 20px;
  color: #ffffff;
  border-radius: 10px;
  padding: 15px 20px 15px 20px;
  font-size: 1.4em;
  -moz-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  white-space: nowrap;
  cursor: pointer;
}
.zone-btn-form button:hover{
  background-color: #4695ee;
  border: 1px solid #4695ee;
}

.btn-form{
  display: block;
  justify-content: center;
}
.btn-form button{
  border: 1px solid #9227ff;
  background-color: #9227ff;
  margin: 20px;
  text-decoration: none;
  color: #ffffff;
  border-radius: 10px;
  padding: 15px 20px 15px 20px;
  font-size: 1.4em;
  -moz-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  white-space: nowrap;
  cursor: pointer;
}
.btn-form button:hover{
  background-color: #4695ee;
  border: 1px solid #4695ee;
}


.pagination{
  display: flex;
  margin: 10px 0;
  justify-content: right;
}
.pagination a {
  padding: 5px 10px;
  margin: 0 5px;
  /* background-color: #e9edf2; */
  color: #999999;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.9em;
}
.pagination a:hover {
  border: 1px solid #52a3ff;
  color: #52a3ff;
}
.pagination strong{
  padding: 5px 10px;
  margin: 0 5px;
  background-color: #52a3ff;
  border: 1px solid #52a3ff;
  color: #ffffff;
  border-radius: 10px;
  font-size: 0.9em;
  font-weight: normal;
}

.message{
  color: #31af9a;
  display: block;
}










/* LOGIN */
.manager-content-login{
  width: 360px;
}



a.a-link{
  display: flex;
  align-items: center;
}
/* a.a-delete{
  color: crimson;
  margin: auto 30px;
}
a.a-delete:hover{
  color: #ffffff;
}
button.a-delete{
  color: crimson;
  margin: auto 30px;
  background-color: transparent;
  font-size: 1.0em;
}
button.a-delete:hover{
  color: #ffffff;
  background-color: crimson;
} */
button.copy-button{
  cursor: pointer;
  color: #3b4750;
  background-color: #dcdfe3;
  background-image: url('../img/copy.svg');
  background-repeat: no-repeat;
  background-position-x: 10px;
  background-position-y: 10px;
  display: block;
  padding: 10px 30px 10px 40px;
  border: none;
  border-radius: 10px;
  font-size: 1.1em;
}
button.copy-button:hover{
  background-color: #c5c9d0;
}



.ui-tooltip, .arrow:after {
  background: #000000 !important;
  border: 1px solid #c4fff5 !important;
  opacity: 1;
}
.ui-tooltip {
  padding: 10px 20px;
  color: white;
  border-radius: 20px;
  /* text-transform: uppercase; */
  box-shadow: 0 0 7px #c4fff5;
}
.arrow {
  width: 70px;
  height: 16px;
  overflow: hidden;
  position: absolute;
  left: 50%;
  margin-left: -65px;
  bottom: -16px;
}
.arrow.top {
  top: -16px;
  bottom: auto;
}
.arrow.left {
  left: 20%;
}
.arrow:after {
  content: "";
  position: absolute;
  left: 20px;
  top: -20px;
  width: 25px;
  height: 25px;
  box-shadow: 6px 5px 9px -9px #c4fff5;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.arrow.top:after {
  bottom: -20px;
  top: auto;
}

.loader {
  display: none;
  border: 4px solid #52a3ff;
  border-top: 4px solid #000000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
}



.todolist{
  margin: 20px;
  text-align: left;
  color: yellow;
}
.todolist ul{
  padding: 3px;
}
.todolist ul li{
  margin: 3px 20px;
}


.num, .table table tr td.num, .table table tr th.num{
  font-family: 'Numbers', sans-serif;
  font-size: 1.2em;
  white-space: nowrap;
  min-width: 80px;
}
.number1{
  font-size: 1.0em;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.number2{
  color: #86899e;
  font-size: 0.85em;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  white-space: nowrap;
}
.num div{
  display: flex;
}
.num div u{
  color: #86899e;
  font-size: 0.9rem;
  text-decoration: none;
  margin-left: 10px;
}
.number2 span{
  white-space: nowrap !important;
}


/* Mode clair */
.light-mode {
  background-color: white;
  color: black;
}

/* Mode sombre */
.dark-mode {
  background-color: black;
  color: white;
}


.daterangepicker td.off.ends.in-range.available{
  background-color: #232a36;
}

.btn{
  background-color: #9227ff !important;
  text-decoration: none;
  color: #ffffff;
  border-radius: 10px;
  padding: 10px;
  font-size: 1.4em;
  -moz-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border 0.2s ease-in-out;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover{
  background-color: #801ee4 !important;
}



@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Screen > 1080 */
@media all and (min-width: 1681px) {

  .item{
    width: 23%;
    margin: 10px 1%;
    height: fit-content;
  }

}

/* MOBILE */
@media all and (max-width: 481px) {

  .dashboard-in{
    flex-direction: column;
  }
  .zone-h1{
    flex-direction: column;
  }
  h1{
    font-size: 1em;
    margin: 10px 0;
  }
  h1 span{
    font-size: 0.8em;
  }
  .col{
    width: auto;
  }
  .period{
    padding: 2px;
  }
  .zone-checkbox{
    padding: 6px 12px;
  }
  .zone-checkbox ul{
    flex-wrap: wrap;
  }
  .zone-checkbox ul li{
    padding: 6px 12px;
  }
  .menu-title{
    color: #f9dc4a;
  }

}

/* @media (prefers-color-scheme: dark) {
  .light-mode {
    background-color: white;
    color: black;
  }
}

@media (prefers-color-scheme: light) {
  .dark-mode {
    background-color: black;
    color: white;
  }
} */



/* Style de base pour le toggle */
#theme-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

#theme-toggle:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: lightgray;
  transition: 0.4s;
  border-radius: 34px;
}

#theme-toggle:checked:before {
  background-color: darkgray;
}

#theme-toggle:after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 4px;
  width: 26px;
  height: 26px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

#theme-toggle:checked:after {
  transform: translateX(26px);
}



/* Mode Nav Horizontale */
/* nav{
  flex-direction: row;
  position: relative;
}
nav ul{
  display: flex;
  flex-direction: row;
  align-items: center;
}
nav ul li a.nav-logo{
  margin-right: 100px;
}
nav ul li a.nav-logo img{
  width: 50px;
}
.container {
  margin-left: 0;
} */






