* {
  box-sizing: border-box;
}

* {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

a:link,
a:visited,
a:hover,
a:active {
  outline: none;
}

a img {
  border: none;
}

button,
.button {
  border: none;
  background: none;
  font-family: inherit;
  font-size: 1.8rem;
}

input,
input:active,
input:focus {
  outline: 0;
  outline-style: none;
  outline-width: 0;
}

input[type="submit"] {
  border: none !important;
  background: none !important;
}

ul {
  padding-left: 10px;
}

li {
  list-style: none;
}

ul.disc li {
  list-style: disc;
}

.listinline li {
  display: inline-block;
}

p {
  margin: 0 0.5em 0 0;
}

::-webkit-input-placeholder {
  font-style: italic;
  font-weight: normal;
  opacity: 0.6;
  font-size: 1.5rem !important;
}

::-moz-placeholder {
  font-style: italic;
  font-weight: normal;
  opacity: 0.6;
  font-size: 1.5rem !important;
}

/* firefox 19+ */
:-ms-input-placeholder {
  font-style: italic;
  font-weight: normal;
  opacity: 0.6;
  font-size: 1.5rem !important;
}

/* ie */
:-moz-placeholder {
  font-style: italic;
  font-weight: normal;
  opacity: 0.6;
  font-size: 1.5rem !important;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

/* FF 4-18 */
input:focus::-moz-placeholder {
  color: transparent;
}

/* FF 19+ */
input:focus:-ms-input-placeholder {
  color: transparent;
}

img {
  height: auto;
  vertical-align: middle;
  border: none;
}

.block {
  display: block;
}

.inbl {
  display: inline-block;
  vertical-align: top;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.flex1 {
  flex: 1;
}

.flex2 > div {
  width: 50% !important;
}

.flexI {
  display: inline-flex;
}

.flexB {
  justify-content: space-between;
}

.flexLeft {
  justify-content: flex-start;
}

.flexC {
  justify-content: center;
}

.flexRight {
  justify-content: flex-end;
}

.flexA {
  justify-content: space-around;
}

.flexAfter {
  justify-content: baseline;
}

.flexM {
  align-items: center;
}

.flexTop {
  align-items: flex-start;
}

.flexBottom {
  align-items: flex-end;
}

.flexS {
  align-items: stretch;
}

.flexRow {
  flex-direction: row;
}

.flexRowR {
  flex-direction: row-reverse;
}

.flexCol {
  flex-direction: column;
}

.flexColR {
  flex-direction: column-reverse;
}

.flexW {
  flex-wrap: wrap;
}

.none {
  display: none;
}

.hidden {
  visibility: hidden;
}

.middle {
  vertical-align: middle;
}

.pointer,
#mainMenu > div:hover,
.subMenu > div:hover {
  cursor: pointer;
}

.rel {
  position: relative;
}

.abs {
  position: absolute;
}

.fix {
  position: fixed;
}

.center {
  margin: auto;
}

.txtcenter {
  text-align: center;
}

.just {
  text-align: justify;
}

.txtleft {
  text-align: left;
}

.txtright {
  text-align: right;
}

.normalfont {
  font-weight: 400;
}

.caps {
  text-transform: uppercase;
}

.under,
.link:hover,
.ret:hover,
.fast li a {
  text-decoration: underline;
  cursor: pointer;
}

.underline {
  border-bottom: 1px solid #5e6677;
}

.bold {
  font-weight: bold;
}

.ital {
  font-style: italic;
}

.deprecated {
  text-decoration: line-through;
}

.ma0 {
  margin: 0 !important;
}

.pa0 {
  padding: 0;
}

.ma1 {
  margin: 10px;
}

.ma2 {
  margin: 20px;
}

.ma3 {
  margin: 30px;
}

.pa1 {
  padding: 10px;
}

.pa2 {
  padding: 20px;
}

.pa3 {
  padding: 30px;
}

.mt0 {
  margin-top: 0 !important;
}

.mt1 {
  margin-top: 10px;
}

.mt2 {
  margin-top: 20px;
}

.mt3 {
  margin-top: 30px;
}

.mt4 {
  margin-top: 40px;
}

.mr0 {
  margin-right: 0;
}

.mr1 {
  margin-right: 10px;
}

.mr2 {
  margin-right: 20px;
}

.mr3 {
  margin-right: 30px;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb1 {
  margin-bottom: 10px;
}

.mb2 {
  margin-bottom: 20px;
}

.mb3 {
  margin-bottom: 30px;
}

.ml0 {
  margin-left: 0;
}

.ml1 {
  margin-left: 10px;
}

.ml2 {
  margin-left: 20px;
}

.ml3 {
  margin-left: 30px;
}

.pt0 {
  padding-top: 0 !important;
}

.pt1 {
  padding-top: 10px;
}

.pt2 {
  padding-top: 20px;
}

.pt3 {
  padding-top: 30px;
}

.pr0 {
  padding-right: 0;
}

.pr1 {
  padding-right: 10px;
}

.pr2 {
  padding-right: 20px;
}

.pr3 {
  padding-right: 30px;
}

.pb0 {
  padding-bottom: 0;
}

.pb1 {
  padding-bottom: 10px;
}

.pb2 {
  padding-bottom: 20px;
}

.pb3 {
  padding-bottom: 30px;
}

.pl0 {
  padding-left: 0;
}

.pl05 {
  padding-left: 5px;
}

.pl1 {
  padding-left: 10px;
}

.pl2 {
  padding-left: 20px;
}

.pl3 {
  padding-left: 30px;
}

.nopad {
  padding: 0 !important;
}

.w50p {
  width: 50px;
}

.w75p {
  width: 75px;
}

.w100p {
  width: 100px;
}

.w120p {
  width: 120px;
}

.w150p {
  width: 150px;
}

.w180p {
  width: 180px;
}

.w200p {
  width: 200px;
}

.w250p {
  width: 250px;
}

.w300p {
  width: 300px;
}

.w320p {
  width: 320px;
}

.w340p {
  width: 340px;
}

.w360p {
  width: 360px;
}

.w1200p {
  max-width: 1200px;
  margin: auto;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w95 {
  width: 95%;
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.vh100 {
  height: 100vh;
}

.ico18 {
  width: 18px;
  height: 18px;
}

.ico24 {
  width: 24px;
  height: 24px;
}

.ico28 {
  width: 28px;
  height: 28px;
}

.ico32 {
  width: 32px;
  height: 32px;
}

.ico48 {
  width: 48px;
  height: 48px;
}

.ico64 {
  width: 64px;
  height: 64px;
}

.ico96 {
  width: 96px;
  height: 96px;
}

.shadow1 {
  box-shadow: 5px 5px 10px 1px #dcdcdc;
}

.shadow2 {
  box-shadow: 2px 5px 5px 2px #d3e1e9;
}

.shadow3 {
  box-shadow: 5px 5px 10px 1px #f3f6fa;
}

.shadow4,
.shadow5 {
  box-shadow: 0px 6px 6px 1px #dae5f0;
}

.fs1 {
  font-size: 1rem;
}

.fs12 {
  font-size: 1.2rem;
}

.fs13 {
  font-size: 1.3rem;
}

.fs15 {
  font-size: 1.5rem;
}

.fs16 {
  font-size: 1.6rem;
}

.fs18 {
  font-size: 1.8rem;
}

.fs2 {
  font-size: 2rem;
}

.fs25 {
  font-size: 2.5rem;
}

.fs3 {
  font-size: 3rem;
}

.fw300 {
  font-weight: 300;
}

.fw400 {
  font-weight: 400;
}

.fw500,
.coordMandat > div > div:last-child,
.coordModif > div > div:last-child,
.mandatFields > div > div:last-child {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.arial {
  font-family: Arial, Helvetica;
}

.lower {
  text-transform: lowercase;
}

/*----------------------------  COLORS  -----------------------------------------*/

.white,
tr.white td {
  color: #fff !important;
}

.bgTransp {
  background: transparent !important;
  background-color: none !important;
}

.bgfff {
  background: #fff !important;
}

.bgdb {
  background: #dbdbdb;
}

.bgImp {
  background: #fff;
}

.bgPair {
  background: #eff2f7;
}

.bgSub {
  background: #6277a7;
}

.bgSable {
  background: #fdf6e7;
}

.blue2 {
  color: #35518e !important;
}

.blue3 {
  color: #6277a7 !important;
}

.blue4 {
  color: #97aad6 !important;
}

.bgGold0 {
  background: #ffb72f;
}

.gold0 {
  color: #eba913;
}

.bgnone {
  background: transparent !important;
}

.beige {
  color: #f1e8cd !important;
}

.bgBeige1 {
  background: #f3f1ec;
}

.bgBeige2 {
  background: #faf7f1;
}

.bgRust {
  background: #b5693e !important;
}

.orange {
  color: #df8704;
}

.red {
  color: #dc9370 !important;
}

.underOrange {
  border-bottom: 1px solid #d57807;
}

.gold,
.goldLink:hover {
  color: #e8ad2a !important;
}

.bgGold {
  background: #c99d0d !important;
}

.underGold {
  border-bottom: 1px solid #f4b129;
}

.grey1 {
  color: #3e506d !important;
}

.grey2 {
  color: #556d96 !important;
}

.grey3 {
  color: #4b5f7e;
}

.grey4 {
  color: #586d8c;
}

.bgLightBlue {
  background: #f7f9ff !important;
}

.bgLB2 {
  background: #f3f4fb;
}

.bgGrey1 {
  background: #eef1f7 !important;
}

.bgGrey2 {
  background: #fafbfc !important;
}

.bgGrey3 {
  background: #f8f9ff;
}

.bgGrey4 {
  background: #f6f7fb;
}

.bgDG0 {
  background: #304264 !important;
}

.bgDG1 {
  background: #364a70 !important;
}

.bgDG2 {
  background: #435d8b;
}

.bgDB0 {
  background: #182a42;
}

.bgDB1 {
  background: #1f3553;
}

.br8 {
  border-radius: 8px;
}

.brt8 {
  border-radius: 8px 8px 0 0;
}

.brb8 {
  border-radius: 0 0 8px 8px;
}

/*-----------------------------------------STRUCTURE----------------------------------------*/

html,
body,
#main,
label,
form,
fieldset {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  font-size: calc(1em * 0.625);
  overflow-y: scroll;
}

body {
  width: 100%;
  min-height: calc(100vh + 1px);
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Helvetica, Arial,
    sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #4b98c4;
  line-height: 1.5;
  background: linear-gradient(
    337deg,
    rgb(24, 41, 61) 0%,
    rgb(34, 58, 90) 41%,
    rgba(46, 82, 135, 1) 100%
  );
  background-attachment: fixed;
}

::-webkit-scrollbar {
  width: 0.875em;
  height: 0.5em;
  background: #4b98c4;
}

::-webkit-scrollbar-thumb {
  /* Barre */
  -webkit-border-radius: 0.4125em;
  -webkit-border-top-right-radius: 0.5625em 0.4125em;
  -webkit-border-bottom-right-radius: 0.5625em 0.4125em;
  background: rgb(161, 178, 204);
}

body ::-webkit-scrollbar {
  width: 0px;
  background: rgb(243, 244, 251) !important;
}

#main {
  width: 100vw;
  min-height: 100vh;
}

/*-------------------  Interface  -----------------*/

.headerPage {
  width: 100%;
  max-width: 1200px;
  min-height: 120px;
  margin: 0 auto !important;
  padding: 0 2% 2% 2%;
  background-color: #fff !important;
  background-color: transparent !important;
  border-radius: 8px 8px 0 0;
}

.headerPage > div {
  height: 100%;
}

.headerPage h1 {
  padding-left: 86px;
  background-size: 48px 48px !important;
  background-position: 4% 52% !important;
}

.headerPage h2 {
  font-size: 2.2rem;
}

.headerPage.accueil {
  min-height: 100px;
}

.headerLeft {
  width: 500px;
  height: 100%;
  padding: 0 5% 0 2%;
}

.headerLeft.full {
  width: 100%;
}

.headerTitle h1 {
  font-size: 3.5rem;
  font-weight: 400;
  color: #e6efff !important;
}

.headerTitle h1.small {
  font-size: 2rem;
}

.headerTitle h2 {
  font-size: 2.2rem;
}

.headerTitle h2.small {
  font-size: 1.8rem;
}

.headerLink {
  font-size: 1.7rem;
  text-decoration: underline;
}

.headerRight > div {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.headerRight p {
  margin-bottom: 5px;
}

.headerRight p:last-child {
  margin-bottom: 0;
}

#extraitCompte {
  background: url("../images/icones/extrait-de-compte.svg") no-repeat 2% center;
}

#titlePay {
  background: url("../images/icones/oneshot-def.svg") no-repeat 2% 20px;
}

#historique {
  background: url("../images/icones/histo-pay.svg") no-repeat 2% 20px;
}

#mandatRegulier {
  background: url("../images/icones/mandatr.svg") no-repeat 2% 20px;
}

#documentUser {
  background: url("../images/icones/ico-doc.svg") no-repeat 2% 20px;
}

#voteLigne {
  background: url("../images/icones/handvote.svg") no-repeat 2% 20px;
}

#espaceUser {
  background: url("../images/icones/ico-user.svg") no-repeat 2% 20px;
}

#userLock {
  background: url("../images/icones/userLock.svg") no-repeat 2% 20px;
}

#documentCopro {
  background: url("../images/icones/documents.svg") no-repeat 2% 20px;
}

#titleDep {
  background: url("../images/icones/depenses.svg") no-repeat 2% 20px;
}

#titleFac {
  background: url("../images/icones/icoFactures.svg") no-repeat 2% 20px;
}

#titleBal {
  background: url("../images/icones/ico-balance.svg") no-repeat 2% 20px;
}

#titleBud {
  background: url("../images/icones/ico-budget.svg") no-repeat 2% 20px;
}

#titleBank {
  background: url("../images/icones/bankrel_1.svg") no-repeat 2% 20px;
}

#bankGraph {
  background: url("../images/icones/bankGraph.svg") no-repeat 2% 20px;
}

.page {
  width: 100%;
  min-height: 100vh;
  padding: 40px 320px 80px 0;
}

.page.clear {
  background: #f6f9ff !important;
}

.page > div {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #fafbfd;
}

.page > div:last-child {
  min-height: 70vh;
  padding: 50px 5% 10% 5%;
  background: #fff;
}

.homePage {
  border-radius: 0 0 8px 8px !important;
}

.page > div.transp {
  padding: 0 !important;
  background: transparent !important;
}

.page > div:last-child > div {
  max-width: 1200px;
  margin: auto;
}

.pageTitle {
  height: 60px;
}

.pageTitle h2,
.sectionTitle h2 {
  font-size: 2.5rem;
}

.fullCenter,
.coordModif > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vCenter {
  display: flex;
  align-items: center;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: 400;
}

#nav {
  height: 70px;
  border-radius: 0 0 3px 3px;
}

.hat {
  max-width: 1000px !important;
  margin: 0 auto 30px auto !important;
  font-weight: 500;
  font-size: 1.8rem;
  color: #596479;
}

.artwork {
  width: 78px;
  height: 78px;
}

.artwork-mini {
  width: 56px;
  height: 56px;
}

.bjl {
  border-left: 12px solid #efba42 !important;
}

.bjr {
  border-right: 10px solid #df9d10;
}

.bjb {
  border-bottom: 5px solid #df9d10;
}

.bjt {
  border-top: 5px solid #df9d10;
}

.bullet {
  position: relative;
  padding-left: 22px;
}

.bullet:before {
  content: "\2B24";
  font-size: 1rem;
  position: absolute;
  top: 6px;
  left: 0;
  color: #efba42;
}

.bullet.blue:before {
  color: #3e5fbb;
}

h2.numero {
  position: relative;
  padding-left: 60px;
}

h2.numero:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px !important;
  height: 36px !important;
  line-height: 34px;
  text-align: center;
  color: rgb(66, 74, 86);
  font-size: 1.8rem;
  background: #e6d9bd !important;
  border-radius: 150%;
}

h2.numero.one:before {
  content: "1";
}

h2.numero.two:before {
  content: "2";
}

h2.numero.three:before {
  content: "3";
}

h2.numero.four:before {
  content: "4";
}

/*-------------------------  rgpt  ----------------------*/

#rgpt {
  max-width: 800px;
  margin: 30px auto;
}

#tabcomptes td,
#tabcomptes th {
  height: 60px;
  font-weight: 400;
}

.cpt {
  width: 100%;
  padding: 20px 20px 0 20px;
}

.underWhite,
.showcompte:hover {
  text-decoration: underline;
}

/*---------------------  Structure rightSide ---------------------------*/

#menu,
#topMenu,
#mainMenu,
.subMenu {
  width: 100%;
}

.sidenav {
  display: none;
}

#rightSide {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  overflow-y: scroll;
  width: 320px;
  min-height: 100vh;
  padding: 20px;
  color: #f0f0f0;
  background: #304e7a !important;
}

#headerNav {
  display: none;
}

#topMenu {
  height: 80px;
}

.logout {
  height: 40px;
}

.logout:hover button {
  color: #e8ad2a !important;
}

.logout button:last-child {
  width: 20px;
  height: 20px;
  margin: 6px 0 0 10px;
  background: url("../images/icones/logout.svg") no-repeat center center;
  background-size: cover;
}

.logout:hover button:last-child {
  background: url("../images/icones/logout-hover.svg") no-repeat center center;
}

#userCard {
  padding-top: 16px;
}

#menus {
  margin-top: 60px;
}

p.helpTitle.user {
  margin: 30px 0;
  padding-left: 40px !important;
  background-size: 28px auto !important;
  background-repeat: no-repeat !important;
  background-position: left center !important;
  font-size: 2rem;
}

#faqExtrait {
  background: url(../images/icones/extrait.svg);
}

#faqPay {
  background: url(../images/icones/euro1.svg);
}

#faqHistoPay {
  background: url(../images/icones/faqhistopay.svg);
}

#faqContact {
  background: url(../images/icones/contact.svg);
}

#faqVoter {
  background: url(../images/icones/faqurne.svg);
}

#faqSyndic {
  background: url(../images/icones/faqsyndic.svg);
}

.comment {
  font-size: 1.7rem;
  font-style: italic;
  color: #2758ac;
}

#mainMenu,
.subMenu {
  font-size: 1.65rem;
}

#mainMenu div {
  position: relative;
  width: 190px;
  height: 38px;
  line-height: 35px;
  margin: 0 auto;
  padding: 0 0 20px 50px;
  color: #e5e8ee;
  font-size: 1.8rem;
  font-weight: 400;
  border: 1px solid #6277a7;
  border-radius: 22px;
}

#mainMenu div:first-child {
  margin-bottom: 20px !important;
}

#mainMenu div.active,
#mainMenu div:hover {
  color: #f1e8cd !important;
  border: 1px solid #c09e56;
}

#mainMenu div.active:before {
  content: "\2B24";
  position: absolute;
  left: 22px;
  top: 0;
  font-size: 1.2rem;
  color: #eba21a;
}

#faqSite {
  padding-left: 40px;
  margin-bottom: 40px;
}

.subMenu {
  width: 200px;
  margin: auto;
  padding: 30px 0;
  border-radius: 0 50px 0 0;
}

.subMenu > div {
  position: relative;
  height: 55px;
  line-height: 55px;
  border-bottom: 1px solid #6277a7;
}

.subMenu.admin > div {
  height: 70px;
  line-height: 70px;
}

.subMenu > div:last-child,
#treeDoc > div:last-child {
  border-bottom: none;
}

.subMenu > div:hover,
#treeDoc > div:hover {
  cursor: pointer;
}

.subMenu > div:before {
  content: "";
  display: block;
  position: absolute;
  left: -20px;
  width: 0px;
  height: 100%;
}

.subMenu > div:before {
  background: #8da7ce;
}

.subMenu > div:hover:before,
div.bgSub:before,
.subMenu > div.active:before {
  width: 4px;
}

.subMenu > div.active:before {
  background: #eba21a;
}

.subMenu p {
  padding-left: 45px;
  background-repeat: no-repeat !important;
  background-position: left 14px !important;
  background-size: 24px 24px !important;
}

.subMenu.admin p {
  background-position: left center !important;
}

#home {
  background: url("../images/icones/home.svg");
}

#extr,
.extraitLoc {
  background: url("../images/icones/extrait.svg") no-repeat;
}

#extr-gold {
  background: url("../images/icones/extrait-gold.svg") no-repeat;
}

#paie {
  background: url("../images/icones/euro1.svg") no-repeat;
}

#paie-gold {
  background: url("../images/icones/euro-gold.svg") no-repeat;
}

#sepa,
#faqMand {
  background: url("../images/icones/euro3.svg") no-repeat;
}

#docs,
#faqDocs,
#faqCoproDocs {
  background: url("../images/icones/folder-B.svg") no-repeat;
}

#mesvotes,
#faqVotes {
  background: url("../images/icones/mesvotes.svg") no-repeat;
}

#settings,
#faqUser {
  background: url("../images/icones/user.svg") no-repeat;
}

#build {
  background: url("../images/icones/buildings.svg") no-repeat;
}

.greenSearch {
  background: url("../images/icones/search-green.svg") no-repeat;
}

#budget,
#faqBudget {
  background: url("../images/icones/budget.svg") no-repeat;
}

#factures {
  background: url("../images/icones/invoice.svg") no-repeat;
}

#balance,
#faqBalance {
  background: url("../images/icones/balance.svg") no-repeat;
}

#dep,
#faqDepenses {
  background: url("../images/icones/depense.svg") no-repeat;
}

#cont {
  background: url("../images/icones/contrat.svg");
}

#bancaire {
  background: url("../images/icones/bank.svg");
}

#pwd {
  background: url("../images/icones/padlock.svg") no-repeat;
  background-size: 30px 30px;
}

#pwd-grey {
  background: url("../index.html") no-repeat;
}

.graph {
  position: relative;
  left: -20px;
  padding-left: 48px;
}

.graph {
  background: url("../images/icones/chart.svg") no-repeat left center;
  background-size: 32px 32px;
}

#mobMenu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  padding: 16px 0 10px 0;
  background: #044058;
  z-index: 1000;
}

#mobMenu div > div {
  width: 25%;
  height: 30px;
  padding-top: 40px;
  color: #fff;
  cursor: pointer;
}

#mbAc {
  background: url("../images/icones/home.svg") no-repeat center top;
  background-size: 28px 28px;
}

#mbCo {
  background: url("../images/icones/phone-blue.svg") no-repeat center top;
  background-size: 28px 28px;
}

#mbEx {
  background: url("../images/icones/extrait.svg") no-repeat center top;
  background-size: 28px 28px;
}

#mbMe {
  background: url("../images/icones/menu.svg") no-repeat center top;
  background-size: contain;
}

/*---------------------  SIDE PANEL   -----------*/

#sidebar {
  height: 100vh;
  width: 0;
  display: block;
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  background: linear-gradient(
    337deg,
    rgb(24, 41, 61) 0%,
    rgb(34, 58, 90) 41%,
    rgba(46, 82, 135, 1) 100%
  );
  overflow-x: hidden;
  padding-top: 90px;
  transition: 0.5s;
}

#sidebar.open {
  width: 460px;
}

#sidebar form {
  padding-left: 12px;
  text-decoration: none;
  font-size: 1.6rem;
  transition: 0.3s;
  width: 90%;
  min-height: 90px;
  margin: auto;
}

#sidebar form:hover {
  color: #293d7d;
}

#sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 50px;
  margin-left: 50px;
}

.accounts {
  padding-top: 16px;
  border-bottom: 1px solid rgb(213, 219, 231) !important;
}

.accounts:hover {
  background: #edf2ff;
}

/*---------------------  Structure leftSide ---------------------------*/

.sectionTitle {
  display: flex;
  align-items: center;
  height: 85px;
  padding-right: 0 20px;
}

/*-----------------  Tables --------------------*/

.tableau,
.tableDoc {
  border-collapse: collapse;
  border-spacing: 0;
  backface-visibility: visible;
  margin: 0 auto;
  font-weight: 400;
  color: #525455;
}

.tableau {
  width: 100%;
}

.tableDoc {
  width: 100%;
}

.tableau th {
  height: 60px;
  font-weight: 500;
  font-size: 1.7rem;
}

.tableau td,
.tableDoc td {
  color: #2b3549;
  border-bottom: 2px solid #eaeff4 !important;
  height: 40px;
  line-height: 40px;
}

.tableau td {
  border: 1px solid #d9e1e7;
}

.tableau tr:hover,
.tableDoc tr:hover {
  background: #edf2ff;
}

thead tr:hover {
  background: inherit !important;
}

.tableau td:first-child {
  border-left: none;
}

.tableau td:last-child {
  border-right: none;
}

thead.dark {
  color: #f2f2f2;
  background: #c48364;
  /*#435d8b;*/
}

tr td a {
  color: #364a70;
}

#documents {
  min-height: calc(100vh - 280px);
  margin-bottom: 60px;
  font-size: 1.7rem;
}

#selectDoc {
  padding-top: 50px;
}

.appels tr:first-child td,
.arrets tr:first-child td {
  border-top: none !important;
}

#tableDoc tr:hover > td {
  font-weight: 500;
}

.tableDoc tr td a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.tableDoc tr td a:hover {
  text-decoration: underline;
  cursor: pointer;
}

.vTop > td,
.vTop > th,
.vTop {
  vertical-align: top;
}

#dpdf {
  width: 60px;
  background: url("../images/icones/inspect.svg") no-repeat center center;
  background-size: 32px 32px;
}

.tdPdf {
  width: 48px;
  padding-left: 8px;
}

.glass {
  padding-left: 40px;
  background: url("../images/icones/inspect.svg") no-repeat left center;
  background-size: 32px 32px;
}

.dateDoc {
  display: inline-block;
  height: 100%;
  margin-right: 10px;
  padding-right: 10px;
  font-weight: 500;
  color: #6889b9;
}

.lib {
  padding-left: 10px;
}

.cadre {
  width: 1060px;
  margin: auto;
}

.leftcell {
  border-left: 1px solid #dde7ee;
}

.undercell {
  border-bottom: 1px solid #566c8d;
}

th.undercell {
  border-bottom: 1px solid #566c8d;
}

.noborder,
.noborder tr td,
.noborder td {
  border: none !important;
}

.tabTitle {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto 30px auto;
  font-size: 2rem;
  text-align: center;
}

th.tabDoc {
  width: 75px;
}

td.date,
td.date.mob {
  width: 110px;
  font-size: 1.5rem;
  font-weight: 600 !important;
  text-align: center;
  color: #6277a7;
}

td.date.mob {
  width: 70px;
}

.number {
  width: 120px;
  padding-right: 12px;
  font-size: 1.5rem;
  text-align: right;
  font-weight: 600;
  color: #6f7b8d !important;
}

.number.gold {
  font-weight: 400;
  color: #fac229 !important;
}

.number.red {
  color: #cf8a6a !important;
}

.number.fs2 {
  font-size: 2rem;
}

.shortlib,
.longlib,
.lib {
  padding-left: 10px;
  font-size: 1.4rem;
}

.shortlib {
  width: 260px;
}

.longlib {
  max-width: 350px;
}

.rubrique,
.sst {
  height: 45px;
  line-height: 45px;
}

.rubrique,
tr.rubrique:hover {
  text-align: left;
  font-size: 2rem;
  background: #496498;
}

.rubrique td {
  padding-left: 70px !important;
  padding-top: 0 !important;
  color: #fbfbfb !important;
  font-weight: 400;
  background: url("../images/icones/arrow-rub.svg") no-repeat 12px center;
  background-size: 32px 32px;
  border-left: none !important;
  border-right: none;
  border-top: 40px solid #fff !important;
  border-bottom: 20px solid #fff !important;
}

.rubrique:first-child td {
  border-top: none !important;
}

.sst,
.sst:hover {
  padding-right: 12px;
  background: #eef1f7 !important;
}

.sst td {
  font-weight: 600 !important;
  color: #2b3549 !important;
}

.total td {
  border: none;
  font-size: 1.8rem !important;
}

.total div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding: 4px 16px 0 20px;
  background: #f7f9ff;
  border: 1px solid #5372ad;
  border-radius: 32px;
}

.total p {
  margin: 0;
}

.footHead td {
  margin-top: 20px;
  padding: 50px 10px 6px 10px;
  border: none !important;
  background: #5372ad;
  color: #fff;
}

.recap.border {
  border-top: 30px solid #fff;
}

.recap.gris {
  background: #3f5379 !important;
}

.recap.bleu {
  background: #37507a !important;
}

.recap.mauve {
  background: #5372ad !important;
}

.recap.mauve td {
  color: #fff !important;
}

.recap.lg {
  background: #eef1f7 !important;
}

.recap.beige {
  background: #edf2ff !important;
}

tr.recap.beige td.number {
  color: #505561 !important;
}

tr.recap.bleu td,
tr.recap.gris td {
  color: #faf6f6;
}

tr.recap td {
  height: 100px;
  font-size: 1.8rem !important;
  vertical-align: middle;
  border: none !important;
}

.recap td > button {
  position: relative;
  left: 40px;
}

#theadCB th {
  border-collapse: collapse;
  border: 1px solid rgb(226, 230, 236);
}

#theadCB tr:first-child th {
  height: 65px;
  padding-top: 14px;
  font-weight: 500 !important;
  border-top: none;
}

#theadCB tr:first-child th:first-child {
  width: 700px;
  border-left: none;
}

#theadCB tr th:last-child {
  border-right: none;
}

#tableCB td {
  border-right: 1px solid rgb(223, 228, 239);
}

#tableCB td:last-child {
  border-right: 0;
}

/*----------------  Pages  ------------------------*/

#header {
  width: 100%;
  height: 200px;
  max-width: 1200px;
  margin: auto;
  background-color: #fff !important;
  border-radius: 8px 8px 0 0;
}

#logoSoc {
  display: block;
  height: 200px;
  background-size: auto 75% !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #fff !important;
  border-radius: 8px 8px 0 0;
}

#accueil h2 {
  margin-bottom: 20px;
  padding: 25px 0 15px 75px;
  font-weight: 300;
}

.listCS,
.homeContact {
  border-top: 2px solid #7d97cc;
}

.userCopro {
  padding-bottom: 20px;
}

.homeCol.left > div {
  padding: 30px 0 40px 0;
  margin-right: 20px;
}

.homeCol > div {
  padding: 30px 40px 40px 50px;
}

.dspcharges:after {
  display: inline-block;
  position: absolute;
  content: "\23F7";
  color: #435d8b;
  font-size: 2.6rem;
  top: -6px;
  right: -36px;
  text-decoration: none;
}

.voteAg {
  border: 1px solid #6277a7;
  border-radius: 12px;
}

.write {
  margin-top: 12px;
}

#debit {
  margin: 50px 0 30px 0;
}

#listDeb {
  width: 100%;
}

#listDeb tr:nth-child(even) {
  background: #fafbfc;
}

.assembly {
  padding-bottom: 0 !important;
}

.dateAg {
  padding: 20px 20px;
}

#assembly {
  background: url("../images/icones/assembly.svg") no-repeat left center;
  background-size: 50px 50px;
}

#deadline {
  padding-left: 40px;
  background: url("../images/icones/calendar-times.svg") no-repeat left top;
  background-size: 28px 28px;
}

#group {
  background: url("../images/icones/group.svg") no-repeat left center;
  background-size: 50px 50px;
}

#exdc {
  background: url("../images/icones/wallet.svg") no-repeat left center;
  background-size: 50px 50px;
}

#flat {
  background: url("../images/icones/patrimoine.svg") no-repeat left center;
  background-size: 50px 50px;
}

#office {
  background: url("../images/icones/office.svg") no-repeat left top;
  background-size: 64px 64px;
}

#user {
  padding: 10px 0 5px 50px;
  background: url("../images/icones/user-grey.svg") no-repeat left center;
  background-size: 32px 32px;
}

#copro {
  padding: 0 0 0 50px;
  background: url("../images/icones/corporation.svg") no-repeat left 10px;
  background-size: 58px 58px;
}

#coprop {
  padding: 0 0 0 50px;
  background: url("../images/icones/coproprietaire.svg") no-repeat left 10px;
  background-size: 58px 58px;
}

.mailbox {
  padding: 0 0 0 36px;
  background: url("../images/icones/mail.svg") no-repeat left center;
  background-size: 24px auto;
}

.contact {
  padding-bottom: 30px;
  border-bottom: 1px solid #aab0be;
  border-bottom: 2px solid #7d97cc;
}

.contact:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}

.charges {
  border: 1px dotted #93afec;
  border-radius: 12px;
}

/*--------------------  Mandats  -----------------------------*/

#mandatRec1 {
  padding-bottom: 3%;
}

#infopay {
  line-height: normal;
}

#payer {
  width: 200px;
}

#depmenu,
#budgmenu {
  width: 650px;
}

#uldeb li {
  border-radius: 32px;
}

.watch {
  padding-left: 40px;
  background: url("../images/icones/watch.svg") no-repeat left center;
  background-size: 24px 24px;
}

#lift {
  bottom: 50px;
  right: 50px;
  width: 35px;
  height: 35px;
  bottom: 40px;
  background: url("../images/icones/lift.svg") no-repeat center center;
  background-size: contain;
  z-index: 1000;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  overflow-y: scroll;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in;
  -moz-transition: opacity 1s ease-in;
  -ms-transition: opacity 1s ease-in;
  -o-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in;
  z-index: 1500;
  background: rgb(20, 43, 71);
  background: linear-gradient(
    337deg,
    rgb(24, 41, 61) 0%,
    rgb(34, 58, 90) 41%,
    rgba(46, 82, 135, 1) 100%
  );
}

.overlay.polar {
  background: rgba(50, 50, 50, 0.5);
  z-index: -1;
}

.overlay.load {
  opacity: 1;
}

.overlay.polar.load {
  z-index: unset;
}

.overlay.infoCon {
  justify-content: right;
}

.spinMess {
  max-width: 500px;
  color: #fff;
}

.spinMess h1 {
  padding-top: 3rem;
  font-size: 4rem;
  text-align: center;
}

#spin {
  width: 200px;
  height: 200px;
}

#backSpinner {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  width: 100vw;
  height: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  background: rgba(36, 64, 156, 0.7);
  z-index: 1000;
}

#backSpinner.disp {
  height: 100vh;
}

#spinner {
  width: 89px;
  height: 89px;
  position: relative;
  background: rgba(255, 255, 255, 0.13);
  animation-duration: 2.5s;
  animation-name: animSpin;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes animSpin {
  50% {
    transform: rotateZ(180deg) scale(0.94);
  }

  100% {
    transform: rotateZ(360deg) scale(1);
  }
}

#spinner,
#spinner:before,
#spinner:after {
  border-radius: 50%;
}

#spinner:before,
#spinner:after {
  content: "";
  position: absolute;
  border: 8px solid transparent;
}

#spinner:before {
  width: 75%;
  height: 75%;
  background: rgba(255, 255, 255, 0.13);
  left: 12.5%;
  top: 12.5%;
  border-left: 8px solid rgba(255, 255, 255, 0.34);
  border-bottom: 8px solid rgba(255, 255, 255, 0.34);
}

#spinner:after {
  width: 40%;
  height: 40%;
  left: 30%;
  top: 30%;
  border-right: 8px solid white;
  border-left: 8px solid white;
  border-bottom: 8px solid white;
}

body.loading {
  overflow: hidden;
}

/* Make spinner image visible when body element has the loading class */
body.loading #backSpinner {
  height: 100vh;
}

.alert {
  max-width: 800px;
  margin: auto;
  padding: 20px 10px 50px 10px;
  font-size: 2.5rem;
  color: #f2f2f2;
}

.alert.clear {
  color: unset;
}

.command {
  margin-top: 8%;
  display: flex;
  justify-content: space-around;
}

.command button,
.command a {
  display: block;
  width: 180px;
  height: 40px !important;
  line-height: 40px !important;
}

.sendP {
  width: 100%;
  height: 48px;
  margin-bottom: 20px;
  padding-left: 65px;
  background: url("../images/icones/send.svg") no-repeat left center;
  background-size: 48px 48px;
}

.hourglass {
  padding-left: 65px;
  background: url("../images/icones/786.gif") no-repeat left top;
  background-size: 48px 48px;
}

.thumb {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px auto;
  background: url("../images/icones/thumb.svg") no-repeat center center;
  background-size: contain;
}

.mess {
  width: 550px;
  margin: auto;
  padding: 30px 50px 40px 50px;
}

.background {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 1000;
  background: rgba(70, 70, 70, 0.6) none repeat scroll 0% 0%;
  background-size: cover;
}

.check {
  position: relative;
  padding-right: 28px;
}

.check:after {
  content: "\2713";
  color: #689d1f;
  font-size: 2.5rem;
  font-weight: bold;
  position: absolute;
  top: -8px;
  right: 0;
}

#pdfMand {
  background: #fff;
}

.ajax-file-upload-container {
  background: #fff;
}

.ajax-file-upload-statusbar {
  width: 100%;
  min-width: 340px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
  padding: 8px 6px 30px 8px;
  background: #fff;
}

.ajax-file-upload-preview {
  width: 50px !important;
  height: 50px !important;
}

.ajax-file-upload-image {
  position: relative;
  width: 50px;
  height: 50px;
  float: left;
  margin-right: 10px;
}

.ajax-file-upload-filename {
  width: 100%;
  height: auto;
  margin: 5px 0 3px 0;
  padding-left: 5%;
  font-size: 1.5rem;
  text-align: left;
  color: #807579;
}

.ajax-file-upload-progress {
  width: 90%;
  border-radius: 3px;
  position: absolute;
  bottom: 8px;
  background-color: #e2e0da;
}

.ajax-file-upload-bar {
  height: 12px;
  background-color: #95bb2d;
  border-radius: 2px;
  padding-top: 6px;
  font-size: 0px;
}

.ajax-file-upload-percent {
  position: absolute;
  display: none;
  margin-top: 10px;
  right: 0;
}

.ajax-file-upload-green,
.ajax-file-upload-red {
  position: relative;
  width: 30px;
  height: 30px;
  top: 35px;
}

.ajax-file-upload-red {
  cursor: pointer;
}

.ajax-file-upload:hover {
  cursor: pointer !important;
  border-radius: 6px;
}

.ajax-upload-dragdrop {
  height: 0;
  position: relative;
  margin: 0 auto;
}

.upload-failed {
  margin-bottom: 12px;
  color: #df8704;
}

#pjm {
  width: 180px;
  padding: 6px 10px 6px 35px;
  background: #fff url("../images/icones/attachment.svg") no-repeat 20px center;
  background-size: 24px 24px;
  cursor: pointer;
  text-align: center;
  border-radius: 22px;
  box-shadow: 4px 4px 7px 1px #ededed;
}

/*--------------- forms ----------------------------- */

form,
fieldset {
  border: none;
}

input:disabled {
  background: none;
  border: none;
}

.form input {
  width: 100%;
  height: 35px;
  margin-bottom: 35px;
  border: none;
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Helvetica, Arial,
    sans-serif !important;
  font-size: 1.8rem;
  background: transparent;
  border-bottom: 1px dotted #59534b;
}

.clearForm input {
  font-family: Arial, Helvetica, sans-serif;
  color: #f1e8cd;
  border-bottom: 1px dotted #ccd1d4;
}

.form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-bottom: 0;
  border-radius: 20px;
}

.form input[type="password"] {
  width: 90%;
  padding-right: 10%;
}

form textarea {
  min-height: 150px;
  border: 1px dotted rgb(218, 207, 228) !important;
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

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

input:invalid {
  box-shadow: none;
}

.form span.label {
  top: 10px;
  left: 0;
  cursor: text;
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.clearForm span.label {
  color: #d4dce6;
}

.form span.label.active,
.form span.label.focus {
  transform: translateY(-140%);
  font-size: 1.5rem;
}

.clearForm span.label.active,
.clearForm span.label.focus {
  color: #e7cb8e;
}

.form div.error input {
  border-bottom: 1px solid #e37d00;
}

.form div.error:after {
  position: absolute;
  right: 0;
  bottom: 10px;
  color: #e37d00;
  font-size: 1.4rem;
}

.form div.error label {
  color: #e37d00;
}

.formdoc input {
  width: 100%;
  height: 35px;
  line-height: 35px;
  border: none;
}

#formBank input {
  border-bottom: 1px solid#ccd1d4;
}

.coordModif > div > div:nth-child(odd),
.coordMandat > div > div:first-child {
  width: 130px;
}

#formCoord > div > div:first-child {
  width: unset;
}

#formCoord div.label {
  width: 130px !important;
}

#coordPass > div > div:first-child {
  width: unset;
}

#formPass fieldset > div > div:nth-child(odd) {
  width: 190px;
}

.coordModif > div > div:nth-child(even) {
  flex: 1;
}

div.numTel {
  width: 150px !important;
  flex: initial !important;
}

.libTel {
  padding-left: 40px;
}

.icoForm {
  padding-left: 50px;
}

#labelMontant {
  background: url("../index.html") no-repeat left 6px;
  background-size: 26px 26px;
}

.labelMandat {
  height: 40px;
  padding-left: 40px;
  background: url("../images/icones/mandat.svg") no-repeat 3px top;
  background-size: 26px 26px;
}

.labelWait {
  height: 40px;
  padding-left: 40px;
  background: url("../images/icones/sablier.svg") no-repeat 3px top;
  background-size: 26px 26px;
}

.labelPay {
  height: 40px;
  padding-left: 40px;
  background: url("../index.html") no-repeat left top;
  background-size: 32px 32px;
}

.labelBank {
  height: 40px;
  padding-left: 40px;
  background: url("../images/icones/bank.svg") no-repeat left top;
  background-size: 28px 28px;
}

.labelHisto {
  height: 40px;
  padding-left: 40px;
  background: url("../images/icones/histo.svg") no-repeat left 10px;
  background-size: 32px 32px;
}

#fieldMail.error:after {
  content: "Adresse invalide";
}

#fieldFirstName.error:after {
  content: "Indiquez votre prénom";
}

#fieldLastName.error:after {
  content: "Indiquez votre nom";
}

.chart {
  margin: auto;
  padding-bottom: 20px;
}

.chart table {
  margin: 0 auto !important;
}

.tab {
  width: 90%;
  padding: 20px 0;
  margin: 0 auto 30px auto;
}

.chart,
.tab {
  min-width: 550px;
}

.cancel {
  position: relative;
  top: 5px;
  padding-left: 30px;
  background: url("../index.html") no-repeat left 5px;
  background-size: 20px 20px;
}

.trash {
  padding-left: 30px;
  background: url("../images/icones/trash-gold.svg") no-repeat left center;
  background-size: 20px 20px;
}

.pen {
  padding-left: 25px;
  background: url("../images/icones/edit-gold.svg") no-repeat 10px center;
  background-size: 24px 24px;
}

#refresh {
  padding: 0 0 10px 35px;
  background: url("../images/icones/refresh.svg") no-repeat left 2px;
  background-size: 22px 22px;
}

.refresh {
  padding-left: 20px;
  background: url("../images/icones/refresh-gold.svg") no-repeat 12px center;
  background-size: 22px 22px;
  text-align: center;
}

.plus {
  padding-left: 30px;
  background: url("../images/icones/add.svg") no-repeat left center;
  background-size: 16px 16px;
}

.info {
  height: 50px;
  line-height: 50px;
  padding-left: 70px;
  background: #30353b url("../images/icones/info.svg") no-repeat 15px center;
  background-size: 32px 32px;
}

.infoVote::after,
.warning:after {
  content: "";
  display: block;
  background-size: cover !important;
  width: 32px;
  height: 32px;
  position: absolute;
  top: -10px;
  left: -6px;
}

.infoVote::after {
  background: url("../images/icones/info-gold.svg") no-repeat center center;
}

.warning::after {
  background: url("../images/icones/warning.svg") no-repeat center center;
}

/*-------------------------  Oneshot  -------------------------*/

.formType,
#mandatReg {
  max-width: 1000px;
  margin: 20px auto 0 auto;
  padding: 3% 5% 5% 5%;
  border-radius: 8px;
  background-color: #f2f0ec !important;
  background-color: #fafbfc !important;
  box-shadow: 0px 6px 6px 1px #ebf3fc;
}

.formType input {
  width: 100%;
  border: none !important;
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Helvetica, Arial,
    sans-serif !important;
  font-size: 1.8rem;
}

#gestion {
  padding-bottom: 15px;
}

#mandContent {
  padding: 30px 50px;
}

#reglement div.form {
  padding-top: 20px;
}

.account,
.padForm,
#payVal,
#freqMand {
  margin-top: 10px;
  border: 1px dotted #6479a8;
  border-radius: 9px;
  background: #fff;
}

.account {
  padding: 20px 5% 20px 2.5%;
}

#freqMand,
#payVal {
  padding: 5%;
}

.rib {
  width: 100%;
  padding: 20px;
}

.rib > div {
  margin-bottom: 20px;
}

.rib > div > p:last-child {
  flex: 1;
  font-weight: 500;
  border-bottom: 1px dotted #536075;
}

.comptes {
  margin-top: 0px;
  padding: 40px 40px 10px 40px;
}

.comptes > div {
  height: 70px;
}

.comptes > div > div:first-child {
  width: 85px;
}

.iban,
#titu,
#bic {
  text-transform: uppercase;
}

#bic {
  width: 140px;
}

#valPay {
  padding: 10%;
  color: #fbfbfb;
  font-size: 3rem;
  line-height: 6rem;
  text-align: center;
}

#valPay > div:last-child {
  width: 400px;
  margin: 5% auto 0 auto;
}

.pageFooter {
  padding: 40px 0;
}

.cptret {
  position: absolute;
  height: 35px !important;
  line-height: 35px;
  margin-left: 80px;
  padding: 0 10px;
  font-size: 1.7rem;
  background: #df9d10;
  color: #fff !important;
}

.avert {
  margin-bottom: 30px;
  font-size: 2rem;
}

.avert p {
  text-align: center;
}

.pageLink {
  padding: 24px 0 0 0;
  color: #085877;
}

/*-------------------------  Mandats  ------------------------*/

#mandatReg input[type="text"],
#mandatReg input[type="email"] {
  width: 100%;
  margin-bottom: 0;
  border: none;
}

.coordMandat {
  padding: 30px 40px;
}

.coordMandat > div {
  min-height: 50px;
  padding: 20px 0;
}

.coordMandat > div > div:last-child,
#payVal input {
  flex: 1;
  border-bottom: 1px dotted #536075 !important;
}

#formCoord > div > div:last-child {
  border-bottom: none;
}

#coordPass > div > div:last-child {
  max-width: 400px;
}

#labelCom {
  max-width: 600px;
}

#checkCom {
  display: block !important;
}

input.tel {
  border-bottom: 1px dotted #536075 !important;
}

.coordModif > div {
  padding: 30px 0 0 0 !important;
}

.coordModif > div:first-child {
  padding: 0 !important;
}

.coordModif > div:last-child {
  padding: 30px 0 30px 0 !important;
}

.coordModif input,
.account input {
  margin-bottom: 0 !important;
}

#jour,
#frequence {
  width: 50%;
  text-align: center;
}

#footMandat {
  padding: 40px 30px;
}

#footMandat > div {
  height: 40px;
  border-bottom: 1px dotted rgb(173, 182, 189);
}

#footMandat > div > div:first-child {
  padding-right: 6px !important;
}

#footMandat > div > div:last-child {
  padding-left: 35px !important;
  font-weight: 500;
  background: url("../images/icones/arr-left.svg") no-repeat left 5px;
  background-size: 16px 16px;
}

#mandatDef {
  max-width: 900px;
  margin: auto;
}

.perso {
  margin-bottom: 40px;
}

/*-----------------  Print  --------------------*/

#mandat {
  margin: 20px 0;
}

#headerMandat {
  padding-top: 20px;
}

#mandatDef div.pageTitle {
  margin-top: 20px;
}

.mandatFields {
  width: 100%;
  padding: 30px;
  margin-bottom: 30px;
}

.mandatFields > div > div {
  padding-bottom: 20px;
}

.mandatFields > div:last-child > div {
  padding-bottom: 0;
}

.mandatFields span {
  display: flex;
  padding-right: 10px;
}

.mandatFields span:after {
  content: "";
  flex: 1;
  height: 1em;
  margin-left: 10px;
  border-bottom: 1px dotted #d5dbe4;
}

#mandatDef #footMandat > div {
  border-bottom: none !important;
}

#mandatDef #footMandat > div > div:first-child {
  width: 220px;
}

.hr {
  height: 1px;
  margin: 40px center 0 center;
  background-color: #bfcfcf;
}

#prints {
  width: 600px;
  padding: 40px 20px 0 20px;
}

#prints h3 {
  color: #505050;
}

#closePrint {
  top: 0;
  right: 6px;
}

/*-----------------------  CHARTS -----------------------------*/

.chartWrapper {
  width: 100%;
  margin: 0 auto 50px auto !important;
  text-align: center;
  background-color: #fafbfc !important;
  box-shadow: 0px 6px 6px 1px #ebf3fc;
}

.chart {
  margin: auto;
}

.chart table {
  margin: 0 auto !important;
}

.gchart,
.titleChart,
.chartNav {
  margin: auto;
}

.gchart {
  height: 500px;
  padding-bottom: 30px;
}

.titleChart {
  width: 100%;
  height: 80px;
  text-align: center;
}

.titleChart h2 {
  font-size: 2.5rem;
  font-weight: 400;
}

.triGraph {
  position: relative;
  top: 16px;
}

.triTitle {
  position: relative;
  top: 10px;
}

.chartNav {
  width: 100%;
  height: 80px;
  line-height: 80px;
}

.tab {
  width: 90%;
  padding: 20px 0;
  margin: 0 auto 30px auto;
}

.chart,
.tab {
  min-width: 550px;
}

/*------------------------------  PORTAIL  -------------*/

.portal {
  height: 100vh;
  background: #304e7a;
}

header {
  height: 130px;
  background: #f2f2f2;
}

#leftHeader,
#rightHeader {
  width: 300px;
  height: 130px;
}

#rightHeader {
  position: absolute;
  top: 0;
}


#logo {
  padding: 10px 0 10px 40px;
  width: 11em;
}

.leftPortal {
  width: calc(100vw - 600px);
  background: #f2f2f2 url("../images/main/bgcopro.png") no-repeat center center;
  background-size: 90%;
}

.infoPanel {
  width: 600px;
  height: 100%;
  background: #304e7a;
}

.rightPortal {
  width: 600px;
}

#footer {
  width: calc(100vw - 600px);
  bottom: 30px;
  left: 0;
}

.footForm {
  padding: 30px 10px 20px 10px;
  text-align: center;
  font-size: 1.4rem;
}

.formLogTitle {
  height: 80px;
  line-height: 60px;
  margin-top: 0;
  font-size: 2.5rem;
}

.formLogTitle.gold {
  color: #f4b129;
}

.formTitle {
  font-size: 2.5rem;
  color: #2577ad;
}

.formCadre {
  width: 460px;
  margin: 0 auto;
  padding: 30px 30px;
}

.formPortal {
  padding-top: 30px;
}

.formPortal input {
  border-bottom: 1px dotted #aaafb4;
  color: #fbfbfb;
}

.subForm,
.subFormblue,
.suivant {
  width: 170px;
  height: 38px;
  line-height: 38px;
  margin: 0 auto 30px auto;
  padding: 0 12px;
  font-size: 1.6rem;
  background: #ccd8ec;
  color: rgb(51, 55, 59);
  border-radius: 20px;
  transition: 0.25s;
}

.subForm:hover {
  --width: 170px;
  width: var(--width);
  cursor: pointer;
  background: #cc9809;
  box-shadow: inset calc(var(--width) - 60px) 0 0 0 #3e5385;
  color: #fff;
}

.subFormblue {
  background: #1c6681;
}

.subFormWhite,
.subFormWhite:hover {
  color: #29668f;
  background: #fff;
}

.cancelForm {
  background: #ad7f1a;
}

#pwUser > div > div:last-child {
  padding-right: 50px;
}

#showHide,
.showHide {
  position: absolute;
  top: 12px;
  right: -10px;
  width: 35px;
  height: 35px;
  margin-left: 15px;
  cursor: pointer;
  z-index: 1;
}

.voir {
  background: url("../images/icones/eye.svg") no-repeat center bottom;
  background-size: 26px 26px;
}

.eye {
  background: #fff url("../images/icones/blue-eye.svg") no-repeat right center;
  background-size: 26px 26px;
}

.masquer {
  background: url("../images/icones/invisible.svg") no-repeat center bottom;
  background-size: 26px 26px;
}

.mask {
  background: #fff url("../images/icones/mask.svg") no-repeat center center;
  background-size: 26px 26px;
}

.help {
  padding: 5px 0 5px 35px;
  cursor: pointer;
  font-size: 1.6rem;
}

.help.nolink {
  text-decoration: none;
  cursor: default;
}

.forget {
  color: #fecc39;
}

.infoPanel {
  padding: 5%;
}

#toTop {
  top: 0;
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  background: rgba(50, 50, 50, 0.3);
}

#faq {
  max-width: 1200px;
  margin: 5% auto;
  padding: 5% 8% 10% 8%;
  border-radius: 1%;
}

#faq.user {
  margin: 0 auto;
}

#faq h1 {
  height: 55px;
  line-height: 50px;
  padding: 0 5%;
  border: 1px solid grey;
  border-radius: 30px;
  color: #316aab;
}

#faq h2 {
  position: relative;
  margin-top: 8%;
  color: #316aab;
  overflow: hidden;
}

#faqMenu {
  margin-top: 20px;
}

#faqMenu li {
  position: relative;
  line-height: 3.5rem;
}

#faqMenu div {
  min-width: 400px;
}

sup {
  position: absolute;
  margin-left: 6px;
  top: 0;
}

#faq.user section {
  margin-bottom: 4%;
  padding-bottom: 2%;
  border-bottom: 1px dotted #8da7ce;
}

section.last {
  border: none !important;
}

#faq.user h2 {
  margin-top: 4%;
  position: relative;
  overflow: hidden;
}

#faq h2:after {
  content: "";
  position: absolute;
  top: 52%;
  width: 100%;
  flex: 1;
  height: 2px;
  margin-left: 20px;
  background: #316aab;
}

.helpTitle {
  margin: 30px 0 10px 0;
  font-size: 2.3rem;
  font-weight: 500;
}

#faqLink,
#faqSite {
  background: url("../images/icones/help.svg") no-repeat left center;
  background-size: 20px 20px;
}

#faqLink {
  margin-top: 15%;
}

#userFaq {
  padding-left: 60px;
  background: url("../images/icones/userFaq.svg") no-repeat left center;
  background-size: 36px auto;
}

#passFaq {
  padding-left: 60px;
  background: url("../images/icones/padFaq.svg") no-repeat;
  background-size: 42px auto;
}

.guide {
  font-size: 2.5rem;
  font-weight: 300;
}

.firstUser {
  padding: 5px 0 5px 40px;
  background: url("../images/icones/user.svg") no-repeat left center;
  background-size: 28px 28px;
}

.euro {
  padding: 5px 0 5px 40px;
  background: url("../images/icones/euro3.svg") no-repeat left center;
  background-size: 28px 28px;
}

.modalButton {
  border-radius: 12px 2px 12px 2px;
  border: 1px solid #bbbbbb;
}

.infoLabel,
#forgot {
  bottom: -12px;
  left: 50px;
  right: 0;
}

#connexion > div,
#accountEmail > div {
  width: 350px;
}

.pencil {
  padding-left: 30px;
  background: url("../images/icones/pen-blue.svg") no-repeat left 5px;
  background-size: 16px 16px;
  cursor: pointer;
}

.add {
  padding-left: 30px;
  background: url("../images/icones/plus.svg") no-repeat left 5px;
  background-size: 16px 16px;
  cursor: pointer;
}

.tag {
  width: 150px !important;
  text-transform: lowercase;
}

.tag:first-letter {
  text-transform: capitalize !important;
}

.formPortal div {
  margin: 0 !important;
}

.inputCoord input {
  border: 0 !important;
  border-bottom: 1px dotted rgb(196, 192, 192) !important;
}

#adrUser input,
#mailUser input {
  font-size: 1.6rem;
}

#adrUser input + span {
  top: 5px;
}

.ulGreen li {
  padding-left: 20px;
  background: url("../images/icones/blue-round.svg") no-repeat left 10px;
  background-size: 6px 6px;
}

#passList {
  margin: 20px auto 40px auto;
}

.button {
  width: 180px !important;
  height: 38px !important;
  line-height: 38px !important;
  padding: 0 20px;
  font-size: 1.6rem;
  font-weight: 500 !important;
  text-align: center;
  border: none;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: 0.25s;
  border: none !important;
}

.button.large {
  width: auto !important;
  min-width: 180px;
  max-width: 300px !important;
}

.button.small {
  width: 160px !important;
}

button.blue,
.button.blue {
  background: #335387;
  color: #fff;
}

button.yellow,
.button.yellow {
  background: #edb12a;
  color: rgb(42, 43, 46);
}

button.brun,
.button.brun {
  background: #8a8271;
  color: rgb(255, 255, 255);
}

button.fff,
.button.fff {
  background: #fff !important;
  color: #35518e;
}

button.gris,
.button.gris {
  background: #27446c !important;
  color: #fdfdff;
}

button.lg,
.button.lg {
  background: #6f85b9;
  color: #fdfdff;
}

.button.shadow,
button.shadow {
  box-shadow: 5px 5px 10px 1px #dcdcdc;
}

.button:hover,
.button.invert {
  cursor: pointer;
  background: #edb12a !important;
  color: #fff;
}

.button.invert {
  --width: 190px;
  width: var(--width);
  padding: 0 20px 0 10px;
  box-shadow: inset calc(var(--width) - 45px) 0 0 0 #3b65a3;
}

.button:hover {
  --width: 180px;
  width: var(--width);
  box-shadow: inset calc(var(--width) - 40px) 0 0 0 #3b65a3;
}

#payMob {
  --width: 150px;
  width: var(--width);
  cursor: pointer;
  background: #edb12a;
  box-shadow: inset calc(var(--width) - 30px) 0 0 0 #35768f;
  color: #fff;
}

.mentions {
  width: 100%;
  max-width: 1200px;
  min-height: calc(100vh - 200px);
  margin: 0 auto;
  padding: 5% 3%;
  border-radius: 12px;
}

#logAlert {
  width: 300px;
  height: 180px;
}

.alertTitle {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.pop {
  width: 350px;
  min-height: 350px;
  padding: 40px;
}

.bigPop {
  max-width: 500px;
  max-height: 500px;
  padding: 40px;
}

#validCoord input {
  height: 35px;
  line-height: 35px;
  width: 100%;
  margin-bottom: 25px;
  font-size: 1.6rem;
}

#validEmail {
  padding-top: 0px !important;
  font-size: 1.6rem;
}

#validEmail input {
  font-size: 1.6rem;
}

.userMail {
  font-size: 1.7rem;
  color: #31383e;
}

.phoneNumber div:first-child {
  padding-right: 20px;
}

.inputPhone {
  width: 190px !important;
  font-size: 1.8rem;
  font-family: Arial, sans-serif;
}

.inputMail.blue {
  color: #1a6aa3 !important;
}

/*----------------------  CONTACT  ---------*/

.bgform {
  width: 100%;
  position: absolute;
  top: 90px;
  z-index: 50;
}

#bgmail {
  z-index: 100;
  vertical-align: middle;
}

#printsheet {
  display: none;
}

#messageSent {
  color: #ff9933;
  display: none;
}

.closeW {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background: url("../images/icones/cross.svg") no-repeat center center;
  background-size: cover;
}

.close {
  top: 0;
  right: 20px;
  padding-right: 40px;
  z-index: 100;
  background: url("../images/icones/close.svg") no-repeat right 20px;
  background-size: 28px 28px;
}

/*-----------------------  COORD -----------------------------*/

#inter {
  height: 80px;
}

#param input {
  color: #f2f2f2;
}

#uldeb li {
  border-radius: 32px !important;
}

#formcoord {
  padding: 30px 0 30px 30px;
}

#forMail {
  max-width: 750px;
  min-width: 580px;
  margin-top: 30px;
  padding: 10px 30px 60px 30px;
  background: #fafbfc;
  border: 40px solid #fff;
  border-radius: 6px;
}

#forMail textarea {
  min-height: 300px;
}

#drop {
  width: 80%;
  height: 50px;
  background: red;
}

.maxinput {
  width: 70%;
}

.iconPass,
.iconMail {
  width: 50px;
}

#patri {
  background: url("../index.html") no-repeat left center;
  background-size: 24px 24px;
}

#patri:hover {
  background: url("../index.html") no-repeat left center;
  background-size: 24px 24px;
}

#charts {
  background: url("../images/icones/chart.svg") no-repeat left center;
  background-size: 24px 24px;
}

.pj {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.pj.chk {
  background: url("../images/icones/chq.jpg") no-repeat center center;
}

.pj.pdf {
  display: block;
  background: url("../images/icones/viewdoc.svg") no-repeat center center;
  background-size: 30px 30px;
}

.pj.pdf:hover {
  background: url("../images/icones/fileover.svg") no-repeat center center;
  background-size: 24px 24px;
}

.docPdf {
  width: 32px;
  height: 100%;
  display: block;
  background: url("../images/icones/search-grey.svg") no-repeat center center;
  background-size: 28px 28px;
}

.down {
  width: 160px;
  padding: 8px 30px 8px 20px;
  background: url("../images/icones/download.svg") no-repeat 120px 10px;
  background-size: 24px 24px;
}

.down:hover {
  border-radius: 22px;
  background-color: #5776bc !important;
  color: #fbfbfb !important;
}

.print {
  display: block;
  width: 42px;
  height: 42px;
  background: url("../images/icones/print.svg") no-repeat center center;
  background-size: cover;
}

.bankField li {
  padding: 8px 0 0 0;
}

#majcoord {
  z-index: 50;
}

#ponctu,
#recu {
  padding-left: 30px;
}

#ponctu:before,
#recu:before {
  content: "\27A4";
  position: relative;
  top: 8px;
  color: #83aa14;
}

#detailSolde {
  top: 0;
  right: 0;
  margin-left: 15px;
  font-size: 1.6rem;
}

#displayPrev {
  margin-top: 50px;
}

.valid {
  padding-right: 35px;
  background: url("../images/icones/valid.svg") no-repeat right center;
  background-size: 20px 20px;
  color: #7eb435 !important;
}

.invalid {
  padding-left: 35px;
  background: url("../images/icones/alert.svg") no-repeat left center;
  background-size: 20px 20px;
  color: rgb(224, 101, 19) !important;
}

.unvalidInput {
  color: rgb(224, 101, 19) !important;
}

.unvalidInput input {
  border: 1px solid rgb(211, 122, 6) !important;
}

input.error {
  border-bottom: 2px solid rgb(211, 122, 6) !important;
}

#mailP {
  flex-grow: 100;
  max-width: calc(100% - 180px);
}

#mailMod {
  width: 180px;
}

/*-----------------------  USER -----------------------------*/

.maxinput {
  width: 70%;
}

#majcoord {
  z-index: 50;
}

#confirmpay {
  width: 200px;
  height: 200px;
}

#ponctu,
#reçu {
  padding-left: 30px;
}

#ponctu:before,
#recu:before {
  content: "\27A4";
  position: relative;
  top: 8px;
  color: #83aa14;
}

#histo {
  margin-top: 30px !important;
}

/*-------------------  MESSAGES  -------------------------------*/

.message {
  width: 80%;
  height: calc(100vh - 240px);
  margin: auto;
  z-index: 5000;
}

#alertPay {
  height: calc(100vh - 200px);
}

.entete {
  top: 4px;
  left: 0;
  border-radius: 0 0 15px 0;
}

.bluemess {
  color: #11a1bb;
}

.aperçu {
  left: 195px;
}

#alertmess {
  margin-left: 35px;
  top: 42px;
}

#spanmess {
  padding: 0;
}

#chrono {
  padding: 15px 0 15px 60px;
  background: url("../images/icones/minichrono.svg") no-repeat left center;
  background-size: 48px 48px;
  color: #f4b129;
}

/*-------------------  EXTRAIT  -------------------------------*/

#extrait,
.wrapFilters {
  width: 100%;
}

#extrait {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.wrapFilters {
  height: 80px;
  padding: 0 2.5%;
}

.filters {
  height: 50px;
  padding: 0 5%;
  box-shadow: 4px 4px 7px 1px #ededed;
  color: #fafbfc !important;
  background: #3a5c9c;
  border-radius: 20px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.filter {
  margin-left: 30px;
  text-align: center;
}

.filter:first-child {
  margin-left: 0;
}

.filter:hover {
  color: inherit;
}

.filter.active {
  color: #e7cb8e;
}

#icocopro {
  top: -15px;
  margin-left: -55px;
}

#patri td {
  height: 30px;
}

.apercu {
  padding: 50px 10px;
  text-align: center;
  border: 5px solid #33363d;
}

.closap {
  top: 0;
  right: 0;
}

/*-----------------------  CONTACT -----------------------------*/

.formail {
  max-width: 750px;
}

.formail input[type="submit"] {
  background: transparent;
}

.formail textArea {
  width: 90%;
  min-height: 250px;
}

/*-----------------------  DOCUMENTS -----------------------------*/

/*-------  USER   ----------*/

#docUser > div {
  margin: auto;
}

#cs {
  background: url("../images/icones/cs.svg") no-repeat left top;
  background-size: 64px 64px;
}

#crowd {
  background: url("../images/icones/crowd.svg") no-repeat left center;
  background-size: 64px 64px;
}

#documents {
  overflow-y: scroll;
  overflow-x: scroll;
}

#tableDoc {
  max-width: 800px;
}

#menuDoc {
  width: 480px;
  height: 50px;
  margin: 40px auto 50px auto;
  padding: 0 60px;
  background: #f2f0ec;
  box-shadow: 4px 4px 7px 1px #ededed;
  border-radius: 36px;
}

#menuDoc > div {
  height: 100%;
  position: relative;
  line-height: 50px;
}

#menuDoc > div:first-child {
  margin-right: 60px;
}

.barWrapper {
  padding: 0 0 20px 0 !important;
  background: #fff !important;
}

#menuDoc > div.active,
.selectTab div.active {
  font-weight: 500 !important;
}

#menuDoc > div.active:before {
  content: "\2022";
  position: absolute;
  top: -4px;
  left: -24px;
  font-size: 4rem;
}

#menuDoc > div.active:before {
  top: -4px;
  left: -24px;
  color: #ebc97f;
}

.selectTab {
  min-height: 60px;
  margin: 0 auto !important;
  background: #f7f9ff;
}

.selectTab div {
  position: relative;
  line-height: 30px;
  margin-right: 5%;
}

.selectTab div.active {
  font-weight: 600;
  color: #e7cb8e;
  color: #3e5fbb;
}

.selectTab div:hover {
  cursor: pointer;
}

.titleCatDoc {
  margin: 0 0 40px 5%;
  color: #496498;
  font-weight: 500 !important;
}

/*---------------------------------  COPRO  -------------------------------------------------*/

#docGrid {
  max-width: 1200px;
  margin: auto;
  padding: 0 2% 20px 2%;
  overflow: hidden;
  background: #f7f9ff;
}

#docGrid.small,
.selectTab.small {
  max-width: 1000px;
  border-radius: 32px;
}

#treeDoc {
  margin: auto;
  flex-wrap: wrap;
}

#treeDoc.user {
  width: 400px;
  cursor: pointer;
}

#treeDoc > div,
#treeDoc > a div {
  margin-top: 20px;
}

#closeDoc svg {
  display: none;
}

.folder {
  position: relative;
  transition: all 1s;
}

.folder.active,
.folder:hover {
  color: #cec8b9 !important;
  color: #3369b9 !important;
}

.folder.active:after {
  content: "";
  position: absolute;
  display: block;
  bottom: -3px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  background: #5481c5;
}

.labelDoc {
  width: 130px;
  text-align: center;
}

.docWrapper > div {
  display: none;
  z-index: 10000;
}

.docWrapper > div:first-child {
  display: block;
}

.docUser {
  width: 90%;
  margin: auto;
  padding-bottom: 40px;
}

.docUser > table {
  width: 400px;
}

.rubrique,
.sst {
  height: 35px;
}

#h1Doc {
  padding-top: 60px;
}

.typeDoc {
  font-size: 3rem;
}

.typeDoc h2 {
  margin: 20px 0 60px 50px;
  font-size: 3rem;
  border-bottom: 1px solid #35518e !important;
}

/*-----------------------  COPRO -----------------------------*/

#doc ul {
  padding-left: 5%;
}

#doc ul li {
  list-style-type: none;
}

#doc ul li:hover {
  text-decoration: underline;
}

.google-visualization-tooltip {
  background: #303d57 !important;
  border: none !important;
  border-radius: 6px !important;
  text-align: center !important;
  box-shadow: none !important;
  -webkit-border-radius: 6px !important;
  -moz-border-radius: 6px !important;
  -ms-border-radius: 6px !important;
  -o-border-radius: 6px !important;
}

div.google-visualization-tooltip > ul > li > span {
  color: #fff !important;
  font-size: 16px;
}

.comparatif h2 {
  color: #525864;
}

.adf {
  margin-bottom: 60px !important;
  border: 1px solid #d9e1e7 !important;
}

.adf th {
  border: 1px solid #d9e1e7;
}

.adfBudget {
  padding: 60px 0;
}

div.depenses {
  margin-top: 30px;
}

/*----------------------- DIVERS ------------------------------*/

#printsheet {
  width: 900px;
  padding: 30px 50px;
  overflow: hidden;
  margin: 3% auto 80px auto;
  background: white;
}

#goprint {
  width: 100px;
  padding: 6px 0 8px 0;
}

#senderror {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.8);
}

#loader {
  top: 50%;
  left: 50%;
  z-index: 2000;
}

.closedep {
  right: 30px;
}

#stat {
  padding: 5% 10%;
  width: 80%;
  height: 420px;
  overflow: hidden;
}

#closestat {
  display: none;
}

.zoom {
  top: 0;
  right: 20px;
  background: url("../images/icones/zoom.svg") no-repeat right 16px;
}

.detail {
  background: url("../images/icones/zoom.svg") no-repeat right center;
}

.zoom,
.detail {
  padding-right: 40px;
  background-size: 28px 28px;
}

#chartA2 {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 450px;
}

.tabstat1,
.tabstat2 {
  border-collapse: collapse;
}

.tabstat1 {
  width: 300px;
}

.tabstat2 {
  width: 250px;
}

.thstat {
  display: block;
  width: 100%;
}

.statrub {
  height: 40px;
  line-height: 40px;
}

.docu {
  width: 95%;
  margin: auto;
}

#documents ul li {
  display: inline-block;
}

.formbutt {
  height: 25px;
  line-height: 25px;
}

.formbutt p {
  margin-top: 0;
}

#dataTable tr {
  height: 35px;
  line-height: 35px;
}

.renamedoc {
  text-shadow: 1px 1px 0px #ffffff;
  color: #485077;
}

.subren,
.subdel,
.subpass {
  width: 32px;
  padding: 10px 0 0 0;
}

.subdel {
  background: url("../images/icones/trash32.png") no-repeat 0 0;
}

.subpass {
  background: url("../images/icones/syncgen24.png") no-repeat 0 0;
}

.iconPdf {
  padding-right: 20px;
  background: url("../images/icones/pdf.svg") no-repeat right center;
  background-size: 28px 28px;
}

.docName:hover {
  color: #f4b129;
}

.editName {
  height: 80px;
}

.editName td {
  vertical-align: center;
}

.editName input {
  height: 32px;
  width: 95%;
  padding-left: 12px;
  font-size: 1.6rem;
}

.valider {
  background: url("../images/icones/valid.svg") no-repeat center center;
  background-size: 28px 28px;
  cursor: pointer;
}

.abort {
  background: url("../images/icones/redCross.svg") no-repeat center center;
  background-size: 28px 28px;
  cursor: pointer;
}

/*-----------------ERREUR 400-------------*/

.erreur400 {
  width: 600px;
  margin: auto;
}

.error li,
.arrow {
  padding-left: 35px;
  margin-bottom: 5px;
  background: url("../index.html") no-repeat 0 0;
}

.bgerror {
  background: #e06513;
  color: #fff;
}

#transfert {
  width: 100%;
  min-height: 100vh;
  z-index: 100;
}

#wrapT {
  padding: 30px;
}

#headT {
  height: 60px;
  line-height: 60px;
}

#transMail,
#transPass {
  padding-left: 50px;
}

#rgpd {
  width: 120px;
  height: 90px;
}

#transMail {
  background: url("../images/icones/greenat.svg") no-repeat left 6px;
  background-size: 32px 32px;
}

#transPass {
  background: url("../images/icones/greenpad.svg") no-repeat left 6px;
  background-size: 32px 32px;
}

#chkError {
  bottom: 0;
}

#codeVerif {
  width: 102px;
  height: 40px;
  margin-bottom: 0 !important;
  padding-left: 6px;
  border: 1px dotted grey;
}

.sablier {
  width: 64px;
  height: 64px;
}

#sendCode:hover {
  color: #7b9903;
}

#errorType {
  bottom: -25px;
  left: 0;
  right: 0;
}

#happy {
  padding-left: 45px;
  background: url("../images/icones/happy.svg") no-repeat left 6px;
  background-size: 32px 32px;
}

#sad {
  padding-left: 45px;
  background: url("../images/icones/sad.svg") no-repeat left 6px;
  background-size: 32px 32px;
}

#wrapR {
  height: 400px;
}

@-ms-viewport {
  width: device-width;
  zoom: 1;
}

@-o-viewport {
  width: device-width;
  zoom: 1;
}

@viewport {
  width: device-width;
  zoom: 1;
}

@media screen and (max-height: 900px) {
  #menus {
    margin-top: 60px;
  }
}

@media screen and (max-height: 768px) {
  #userCard {
    padding-top: 0;
  }

  #topMenu {
    height: 60px;
  }
}

@media screen and (max-width: 1600px) {
  .page {
    padding: 30px 360px 80px 40px;
  }

  .leftPortal,
  #footer {
    width: calc(100vw - 450px);
  }

  .rightPortal {
    width: 450px;
  }
}

@media screen and (max-width: 1366px) {
  #rightSide {
    width: 280px;
  }

  .page {
    padding: 30px 321px 80px 40px;
  }
}

@media screen and (max-width: 1280px) {
  #main {
    flex-direction: column-reverse;
  }

  #rightSide {
    width: 320px;
    right: -800px;
    transition: all 800ms ease 0s;
  }

  #rightSide.show {
    right: 0;
  }

  #headerNav,
  #headerMob {
    position: relative !important;
    width: 100%;
  }

  #headerNav {
    display: flex;
    min-height: 110px;
  }

  #headerMob > div:first-child {
    height: 70px;
  }

  #headerMob > div:last-child {
    min-height: 60px;
  }

  #menus {
    padding-top: 20px;
  }

  #topMenu,
  #userCard {
    display: none;
  }

  #userIndent {
    margin-left: 20px;
  }

  #openMenu {
    padding-right: 50px;
  }

  label {
    display: flex;
    flex-direction: column;
    width: 45px;
    cursor: pointer;
  }

  label span {
    background: #fff;
    border-radius: 10px;
    height: 3px;
    margin: 4px 0;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  }

  span:nth-of-type(1) {
    width: 100%;
  }

  span:nth-of-type(2) {
    width: 100%;
  }

  span:nth-of-type(3) {
    width: 100%;
  }

  input[type="checkbox"] {
    display: none;
  }

  .checkBank, .checkMand {
    display: block !important;
  }

  input[type="checkbox"]:checked ~ span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(8px, 7px);
  }

  input[type="checkbox"]:checked ~ span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg);
  }

  input[type="checkbox"]:checked ~ span:nth-of-type(3) {
    transform-origin: bottom;
    width: 50%;
    transform: translate(10px, -13px) rotatez(45deg);
  }

  .page {
    width: 100%;
    padding: 30px 5% 80px 5%;
  }

  .headerTitle h1 {
    font-size: 3rem;
    padding-left: 75px;
    background-size: 42px 42px !important;
  }

  .cpt {
    padding-left: 0;
  }

  .mentions {
    width: 95%;
    max-width: unset;
  }

  #faq {
    max-width: 94%;
  }

  #faq img {
    max-width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  .n1024 {
    display: none;
  }

  .b1024 {
    display: block;
  }

  .rightPortal {
    width: 100%;
    border: 10vw solid #fff;
  }

  #footer {
    width: 100%;
  }

  #faq h2:after {
    width: 40%;
  }

  .page {
    padding: 30px 3% 80px 3%;
  }

  .homePage {
    display: block;
  }

  .flex2 > div {
    width: 100% !important;
  }

  #resolution {
    align-self: start;
  }

  #header {
    height: 150px;
  }

  #logoSoc {
    height: 150px;
  }

  #faqMenu {
    flex-direction: column;
  }
}

@media screen and (max-width: 960px) {
  div.depenses table td,
  div.comparatif table td div.selectTab div {
    font-size: 1.4rem;
  }

  .total td {
    font-size: 1.6rem !important;
  }
}

@media screen and (max-width: 768px) {
  .none768 {
    display: none !important;
  }

  .mentions h1 {
    font-size: 2.5rem;
  }

  #faq h2:after {
    width: 0;
  }

  #forMail {
    width: 100%;
    min-width: unset;
  }

  .none760 {
    display: none !important;
  }

  .portal {
    background: none;
  }

  #moblog {
    top: 10px;
    right: 0;
  }

  #logout button:last-child {
    width: 28px;
    height: 28px;
    background: url("../images/icones/logout.svg") no-repeat center center;
    background-size: 90% 90%;
  }

  #homeMob {
    flex: 1;
    align-items: end;
  }

  #homeGrid {
    width: 96%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0px;
    grid-auto-rows: minmax(100px, auto);
  }

  #homeGrid > div {
    width: 100%;
    background-size: 46px auto !important;
  }

  #homeGrid a,
  #openMob p {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    font-size: 1.4rem;
  }

  #mobext,
  #faqExtraitMob {
    background: url("../images/icones/mobextrait.svg") no-repeat center center;
  }

  #mobpay,
  #faqMobPay {
    background: url("../images/icones/europay.svg") no-repeat center center;
  }

  #mobhisto,
  #faqHistoPayMob {
    background: url("../images/icones/mobwallet.svg") no-repeat center center;
  }

  #mobhistomand {
    background: url("../images/icones/mobhistomand.svg") no-repeat center center;
  }

  #mobdoc,
  #faqMobDoc {
    background: url("../images/icones/mobdoc.svg") no-repeat center center;
  }

  #mobmand,
  #faqMandMob {
    background: url("../images/icones/mobmandat.svg") no-repeat center center;
  }

  #mobcoord,
  #faqUserMod {
    background: url("../images/icones/mobcoord.svg") no-repeat center center;
  }

  #mobsecu,
  #faqPass {
    background: url("../images/icones/mobsecu.svg") no-repeat center center;
  }

  #mobvote,
  #faqVotesMob {
    background: url("../images/icones/histovote.svg") no-repeat center center;
  }

  #histovote,
  #faqVoterMob {
    background: url("../images/icones/mobvote.svg") no-repeat center center;
  }

  #mobcopro,
  #faqSyndicMob {
    background: url("../images/icones/mobcop.svg") no-repeat center center;
  }

  #mobdep,
  #faqMobDep {
    background: url("../images/icones/mobdep.svg") no-repeat center center;
  }

  #mobbud,
  #faqMobBudget {
    background: url("../images/icones/mobbud.svg") no-repeat center center;
  }

  #mobfact {
    background: url("../images/icones/mobfact.svg") no-repeat center center;
  }

  #mobBal,
  #faqMobBal {
    background: url("../images/icones/mobbalance.svg") no-repeat center center;
  }

  #openMob {
    width: 46px;
    height: 46px;
    margin-left: 50px;
    background: url("../images/icones/userAccounts.svg") no-repeat center center;
    background-size: cover;
  }

  #faq.mob p.helpTitle {
    background-size: 32px 32px !important;
  }

  #mobFooter {
    width: 100vw;
    height: 64px;
    bottom: 0;
    left: 0;
    right: 0;
    color: #e3ddd3;
    background: #e3ddd3;
    background: #2d5277;
  }

  #mobFooter a {
    width: 25%;
    display: block;
  }

  #mobFooter a.active {
    color: #ccb36d;
  }

  #mobFooter div {
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    font-size: 1.2rem;
    text-align: center;
    background-size: 24px 24px !important;
  }

  #mobFooter p {
    margin-bottom: 6px !important;
  }

  #hel {
    background: url("../images/icones/mobinfo.svg") no-repeat center 12px;
  }

  #con {
    background: url("../images/icones/mobphone.svg") no-repeat center 12px;
  }

  #use {
    background: url("../images/icones/mobuser.svg") no-repeat center 12px;
  }

  #cop {
    background: url("../images/icones/mobcopro.svg") no-repeat center 12px;
  }

  #use.active {
    background: url("../images/icones/mobuser-active.svg") no-repeat center 12px;
  }

  #cop.active {
    background: url("../images/icones/mobcopro-active.svg") no-repeat center
      12px;
  }

  div.depenses,
  div.comparatif {
    overflow-y: scroll;
  }

  div.depenses table,
  div.comparatif table {
    width: 750px;
  }

  .alert p {
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .none600 {
    display: none;
  }

  .rightPortal {
    border: none;
  }

  #rightHeader {
    margin: 0 auto;
    padding-top: 20px;
  }

  #logoMob {
    background-size: 28px auto !important;
  }

  #logo {
    padding: 10px 0 10px 40px;
  }

  #logoMob {
    margin-top: 20px;
    padding: 10px 0 10px 90px;
  }

  .footForm {
    padding: 10px 10px 0 10px;
  }

  #forgets {
    margin-top: 20px;
  }

  #footer {
    padding-top: 20px;
  }

  #footer a {
    color: #fff;
  }

  #connexion input {
    margin-bottom: 25px;
  }

  #faqLink {
    display: inline-block;
    margin: 5% auto 0 auto;
  }

  .mentions {
    padding: 5% 8%;
  }

  .mentions h1,
  .mentions h2 {
    font-size: 1.8rem;
  }

  .faqTitle {
    font-size: 2.2rem;
  }

  .helpTitle {
    font-size: 2rem;
  }

  .headerPage {
    height: 60px;
    min-height: unset;
    padding: 0 2%;
  }

  .page {
    position: relative;
    padding: 0px 0 80px 0;
  }

  .page > div {
    width: 100%;
  }

  .page > div:last-child {
    min-height: calc(100vh - 120px);
    padding: 16px 3% 10% 3%;
    border-radius: 0;
  }

  #mobName {
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin-bottom: 30px;
    font-size: 1.4rem;
    text-align: center;
    background: #1f3553;
  }

  #header,
  #logoSoc {
    height: 100px;
  }

  #headerNav {
    display: none;
  }

  .headerPage h1 {
    font-size: 2.2rem;
    padding: 0;
    color: #fff !important;
  }

  .headerTitle h2 {
    font-size: 2rem;
  }

  .pageTitle h2,
  .sectionTitle h2 {
    font-size: 2rem;
  }

  .hat {
    max-width: 100% !important;
    margin: 0 auto 10px auto !important;
    font-weight: 500;
    font-size: 1.7rem;
    color: #596479;
  }

  h2.numero {
    padding-left: 40px;
  }

  h2.numero:before {
    width: 28px !important;
    height: 28px !important;
    line-height: 28px;
  }

  .back {
    left: 16px;
    top: 18px;
  }

  #accueil h2 {
    margin-bottom: 20px;
    padding: 0 0 0 45px;
    font-weight: 300;
  }

  #exdc {
    background-size: 32px 32px !important;
  }

  #extrait td {
    line-height: 2.5rem;
    border: none !important;
  }

  #extrait td.date,
  #extrait td.tabDoc {
    background: #edf2ff !important;
  }

  #extrait td.date {
    padding-left: 10px;
    text-align: left;
    font-size: 1.3rem;
  }

  #extrait a.pj.pdf {
    background-position: right center !important;
  }

  #extrait td.lib,
  #extrait td.number {
    padding-top: 9px;
    padding-bottom: 16px;
  }

  #extrait td.lib {
    font-size: 1.2rem;
  }

  #extrait td.number {
    width: 50px !important;
    vertical-align: top;
  }

  #extrait tr.recap {
    background: #5372ad !important;
  }

  #extrait tr.recap td {
    color: #fff !important;
  }

  .sectionTitle {
    height: 55px;
    padding: 0;
  }

  .formType,
  #mandatReg {
    max-width: 1000px;
    margin: 20px auto 0 auto;
    padding: 0;
    box-shadow: none;
  }

  .form input {
    margin-bottom: 25px;
  }

  .account,
  .padForm,
  #payVal,
  #freqMand {
    margin-top: 10px;
    border: none;
    border-radius: 0;
    background: #fff;
  }

  .rib {
    padding: 0 0 0 10px;
  }

  .alert {
    max-width: 100%;
    padding: 20px 8% 50px 8%;
    font-size: 2rem;
  }

  .thumb {
    width: 60px;
    height: 60px;
  }

  .mandatFields {
    width: 100%;
    padding: 10px;
  }

  .coordMandat,
  .comptes {
    padding: 0px 10px 0 10px;
  }

  .coordMandat > div {
    min-height: 35px;
    padding: 10px 0;
  }

  .formType {
    background: none !important;
  }

  .formType input {
    font-size: 1.6rem;
  }

  #jour,
  #frequence {
    width: 220px;
    text-align: left;
  }

  #mandContent {
    padding: 0 20px 10px 20px;
  }

  #footMandat {
    padding: 10px 0 0 10px;
  }

  #footMandat > div {
    height: auto;
  }

  .pageFooter {
    padding: 20px 0 40px 0;
  }

  #forMail {
    max-width: unset;
    min-width: unset;
    width: 100%;
    padding: 10px 10px 40px 10px;
    border: none;
  }

  #forMail textarea {
    min-height: 150px;
  }

  #messCop {
    font-size: 2.2rem;
    color: #e6efff !important;
  }

  .tableDoc {
    font-size: 1.7rem;
  }

  #assembly {
    margin-bottom: 20px;
    padding-left: 50px;
    background: url(../images/icones/assembly.svg) no-repeat left center;
    background-size: 36px 36px;
  }

  .assembly {
    padding: 10px 20px 0 20px !important;
  }

  .listCS {
    border: none;
  }

  h2#copro,
  h2#cs,
  h2#office {
    width: 280px;
    height: 60px;
    padding-left: 80px;
    background-size: 48px 48px !important;
  }

  h2#copro {
    padding-top: 20px;
  }

  #dbts tr:nth-child(even) {
    background: #edf2ff !important;
  }

  .folder {
    margin-bottom: 20px;
  }

  select#selectDoc {
    width: 260px;
    height: 35px;
    margin: auto;
    padding: 4px 4px 4px 10px;
    border-radius: 4px;
    box-shadow: 2px 2px 8px #c1c1c1;
    background: #f4f5f6;
    border: none;
    outline: none;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
  }

  label.labelDoc {
    position: relative;
    width: 260px;
  }

  label.labelDoc:after {
    position: absolute;
    content: "<>";
    font: 11px "Consolas", monospace;
    color: #666;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 8px;
    top: 8px;
    padding: 0 0 2px;
    border-bottom: 1px solid #ddd;

    pointer-events: none;
  }

  label.labelDoc:before {
    content: "";
    right: 6px;
    top: 0px;
    width: 20px;
    height: 20px;
    background: #f4f5f6;
    position: absolute;
    pointer-events: none;
    display: block;
  }

  .tableDoc td {
    font-size: 1.5rem;
  }

  .titleCatDoc {
    margin: 0 auto 25px auto;
    font-size: 1.8rem;
  }

  .selectTab {
    flex-direction: column;
    background: transparent;
  }

  .selectTab div {
    margin-bottom: 14px;
    padding: 3px 12px;
    border-radius: 32px;
    background: #f7f9ff;
    border: 1px solid rgb(194, 197, 208);
  }

  #prints {
    width: 100%;
    padding: 40px 20px 0 30px;
  }

  div.comparatif h2,
  .rubrique td,
  .sst td {
    font-size: 1.5rem;
  }

  .contact {
    padding-left: 20px;
  }

  #faq {
    padding: 0 5% 10% 5%;
  }

  #sidebar {
    left: 0;
    padding-top: 0;
  }

  #sidebar > div.headerPage {
    background: #2a4977 !important;
    color: #fff !important;
    border-radius: 0;
  }

  #sidebar form {
    width: 96%;
    padding: 10px 0 0 0;
    min-height: 80px;
  }

  #tabAccounts {
    border-collapse: collapse;
  }

  #tabAccounts tr:nth-child(even) {
    background: #ebf0ff;
  }

  #faq.user {
    overflow: visible;
  }

  #toTop {
    max-width: 100vw;
    background: #fff;
  }

  .down {
    padding: 4px 30px 4px 20px;
    color: #fff !important;
    background: #5776bc url(../images/icones/download.svg) no-repeat 120px 6px !important;
    background-size: 24px 24px !important;
    border-radius: 32px;
  }
}

@media screen and (max-width: 500px) {
  .formCadre {
    width: 94%;
    padding: 5% 3%;
  }

  #connexion {
    width: 300px;
  }

  #connexion > div,
  #accountEmail > div {
    width: 100%;
  }

  .formLogTitle {
    height: unset;
    line-height: 60px;
    font-size: 2.3rem;
  }

  .footForm {
    padding-bottom: 0;
  }

  .forget {
    font-size: 1.5rem;
    padding: 5px 0 5px 20px;
  }

  .guide {
    font-size: 2rem;
  }

  #timeClock {
    width: 80px;
    height: 80px;
    margin: auto;
  }

  #timeClock svg {
    width: 80px;
    height: 80px;
  }

  #faq h1 {
    font-size: 2.3rem;
  }

  .page {
    padding: 0px;
  }

  .page > div:last-child {
    min-height: calc(100vh - 60px);
  }

  #sidebar.open {
    width: 100%;
  }

  #treeDoc.user {
    width: 90%;
    cursor: pointer;
  }

  .coordMandat div.label {
    font-size: 1.6rem;
  }

  #forMail {
    margin: 0;
    padding-bottom: 60px;
    border-radius: 0;
  }

  div.depenses {
    margin-top: 0;
  }

  div.depenses table td {
    font-size: 1.2rem;
  }

  .total td {
    font-size: 1.4rem !important;
  }

  .printTable {
    flex-direction: column-reverse;
  }

  .printTable h2 {
    display: none;
  }

  .printer {
    margin-bottom: 10px;
  }

  #printChoice {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
  }

  #printChoice a:first-child {
    margin-bottom: 24px;
  }

  .ajax-file-upload-statusbar {
    width: 96%;
    min-width: unset;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
    padding: 8px 6px 30px 8px;
    background: #fff;
  }

  #faqMenu div {
    width: 100%;
    min-width: unset;
  }

  #histo th {
    font-size: 1.4rem;
  }

  #histo td.date {
    font-size: 1.2rem;
    width: 80px;
  }

  #histo tr td:last-child {
    width: 60px;
  }

  #headerMob {
    height: 60px;
    line-height: 60px;
    margin: 0;
    background: #1c2332;
  }

  #headerMob > div:first-child {
    height: 100%;
    margin: 0;
    padding: 0 0 0 80px;
  }

  #headerMob > div:last-child {
    margin: 0;
    margin-left: auto;
    height: 100%;
    min-height: unset;
  }

  #logout button:last-child {
    width: 24px;
    height: 24px;
    background: url("../images/icones/logout.svg") no-repeat center center;
    background-size: 80% 80%;
  }
}

@media screen and (max-width: 375px) {
  .forget {
    margin: 0;
  }

  #welcome,
  #welcome p {
    font-size: 1.6rem !important;
  }
}

@media screen and (max-width: 340px) {
  #connexion {
    width: 280px;
  }

  #footer a {
    font-size: 1.3rem;
  }

  #forgets {
    flex-direction: column;
  }

  #jour,
  #frequence {
    width: 190px;
  }
}

@media screen and (max-width: 320px) {
  #rightHeader {
    height: 90px;
    padding-top: 0;
  }

  #formCadre {
    height: 400px;
  }

  #logo {
    background-size: 30px auto;
  }

  #faqLink {
    display: none;
  }

  .logme {
    font-size: 1.4rem;
  }
}
