@charset "UTF-8";
/* IMPORT PARAMETRAGE */
/*-------------------------*/
/*--- SCSS PARAMETRAGES ---*/
/*-------------------------*/
/* STATION */
/* COULEURS */
/* Couleur specifique station */
/* Global */
/* Hiver */
/*cursor input*/
/* FONTS */
/* fontawesome */
@import url("https://use.fontawesome.com/releases/v5.9.0/css/all.css");
/* Rothek Regular */
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Bebas+Neue&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Lexend:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Teko:wght@300..700&display=swap");
@import url("https://use.fontawesome.com/releases/v5.9.0/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
@font-face {
  font-family: "Rothek";
  src: url("font/Rothek-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
/* Rothek Black */
@font-face {
  font-family: "Rothek";
  src: url("font/Rothek-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
/* LAGEUR */
/* FONTS */
/* TRANSITIONS */
/* RESPONSIVE */
/* MIXIN */
/* URL des image */
/* KEYFRAMES */
@keyframes pulseWarningBorder {
  0% {
    border-color: rgb(165, 0, 0);
  }
  25% {
    border-color: #db5316;
  }
  50% {
    border-color: rgb(165, 0, 0);
  }
  75% {
    border-color: #db5316;
  }
  100% {
    border-color: rgb(165, 0, 0);
  }
}
@keyframes pulseWarningBackground {
  0% {
    background-color: rgb(165, 0, 0);
  }
  25% {
    background-color: rgb(255, 255, 255);
  }
  50% {
    background-color: rgb(165, 0, 0);
  }
  75% {
    background-color: rgb(255, 255, 255);
  }
  100% {
    background-color: rgb(165, 0, 0);
  }
}
/*-----------------------------*/
/*--- FIN SCSS PARAMETRAGES ---*/
/*-----------------------------*/
/*--- GLOBAL ---*/
/*-----------------------*/
/*--- SCSS GLOBAL ---*/
/*-----------------------*/
/*cursor input*/
/* fontawesome */
/* RESPONSIVE */
/* keyframes */
/* Safari and Chrome */
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes clignote {
  0% {
    opacity: 0.8;
  }
  25% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
  75% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}
.btn {
  padding: 10px;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 4px;
  border: none;
  font-size: 16px;
  font-family: "Barlow", sans-serif;
  background-color: transparent;
  white-space: initial;
  text-decoration: none;
  cursor: pointer;
}
.btn.btnIcon {
  display: flex;
  align-items: center;
}
.btn--raised--primary {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
  background-color: #db5316;
  color: rgb(255, 255, 255);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--raised--primary:hover {
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
}
.btn--raised--primary .mat-badge-content {
  background-color: #575850;
}
.btn--raised--secondary {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
  background-color: #575850;
  color: rgb(255, 255, 255);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--raised--secondary:hover {
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
}
.btn--raised--secondary .mat-badge-content {
  background-color: #db5316;
}
.btn--raised--primary.disabled, .btn--raised--primary:disabled, .btn--raised--primary:hover.disabled, .btn--raised--primary:hover:disabled, .btn--raised--primary:focus.disabled, .btn--raised--primary:focus:disabled, .btn--raised--secondary.disabled, .btn--raised--secondary:disabled, .btn--raised--secondary:hover.disabled, .btn--raised--secondary:hover:disabled, .btn--raised--secondary:focus.disabled, .btn--raised--secondary:focus:disabled {
  background-color: rgba(145, 145, 145, 0.2) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}
.btn--raised--round--primary {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
  background-color: #db5316;
  color: rgb(255, 255, 255);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50px;
}
.btn--raised--round--primary:hover {
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
}
.btn--raised--round--secondary {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
  background-color: #575850;
  color: rgb(255, 255, 255);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50px;
}
.btn--raised--round--secondary:hover {
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
}
.btn--raised--round--primary.disabled, .btn--raised--round--primary:disabled, .btn--raised--round--primary:hover.disabled, .btn--raised--round--primary:hover:disabled, .btn--raised--round--primary:focus.disabled, .btn--raised--round--primary:focus:disabled, .btn--raised--round--secondary.disabled, .btn--raised--round--secondary:disabled, .btn--raised--round--secondary:hover.disabled, .btn--raised--round--secondary:hover:disabled, .btn--raised--round--secondary:focus.disabled, .btn--raised--round--secondary:focus:disabled {
  background-color: rgba(145, 145, 145, 0.2) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}
.btn--outline--primary {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
  border: 1px solid #db5316;
  color: #db5316;
}
.btn--outline--primary:hover {
  background-color: rgba(219, 83, 22, 0.05);
  color: #db5316;
}
.btn--outline--primary .mat-badge-content {
  background-color: #db5316;
}
.btn--outline--secondary {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.6);
  border: 1px solid #575850;
  color: #575850;
}
.btn--outline--secondary:hover {
  background-color: rgba(87, 88, 80, 0.05);
  color: #575850;
}
.btn--outline--secondary .mat-badge-content {
  background-color: #575850;
}
.btn--outline--primary.disabled, .btn--outline--primary:disabled, .btn--outline--primary:hover.disabled, .btn--outline--primary:hover:disabled, .btn--outline--primary:focus.disabled, .btn--outline--primary:focus:disabled, .btn--outline--secondary.disabled, .btn--outline--secondary:disabled, .btn--outline--secondary:hover.disabled, .btn--outline--secondary:hover:disabled, .btn--outline--secondary:focus.disabled, .btn--outline--secondary:focus:disabled {
  background-color: transparent !important;
  color: rgb(148, 148, 148) !important;
  border-color: rgb(148, 148, 148) !important;
}
.btn--normal--primary {
  color: #db5316;
}
.btn--normal--primary:hover, .btn--normal--primary:focus {
  background-color: rgba(219, 83, 22, 0.05);
  color: #db5316;
}
.btn--normal--primary .mat-badge-content {
  background-color: #db5316;
}
.btn--normal--secondary {
  color: #575850;
}
.btn--normal--secondary:hover {
  background-color: rgba(87, 88, 80, 0.05);
  color: #575850;
}
.btn--normal--secondary .mat-badge-content {
  background-color: #575850;
}
.btn--normal--primary.disabled, .btn--normal--primary:disabled, .btn--normal--primary:hover.disabled, .btn--normal--primary:hover:disabled, .btn--normal--primary:focus.disabled, .btn--normal--primary:focus:disabled, .btn--normal--secondary.disabled, .btn--normal--secondary:disabled, .btn--normal--secondary:hover.disabled, .btn--normal--secondary:hover:disabled, .btn--normal--secondary:focus.disabled, .btn--normal--secondary:focus:disabled {
  background-color: transparent !important;
  color: rgb(148, 148, 148) !important;
}

/* GLOBAL */
.mat-form-field.input100 {
  width: 100%;
}
.mat-form-field.input70 {
  width: 70%;
}
.mat-form-field.input50 {
  width: 50%;
}
.mat-form-field.input49 {
  width: 49%;
}
.mat-form-field.input33 {
  width: 33%;
}
.mat-form-field.input32 {
  width: 32%;
}
.mat-form-field.input30 {
  width: 30%;
}
.mat-form-field.input29 {
  width: 29%;
}
.mat-form-field.input20 {
  width: 20%;
}
.mat-form-field.onError .mat-form-field-outline > div {
  animation: pulseWarningBorder 4s infinite alternate ease-in-out;
}
.mat-form-field.onError .jb-error-mess {
  color: rgb(165, 0, 0);
}
.mat-form-field.readonly {
  opacity: 0.5;
  cursor: initial;
}
.mat-form-field.readonly input {
  cursor: initial;
}
.mat-form-field.readonly .mat-form-field-outline-thick .mat-form-field-outline-start,
.mat-form-field.readonly .mat-form-field-outline-thick .mat-form-field-outline-end,
.mat-form-field.readonly .mat-form-field-outline-thick .mat-form-field-outline-gap {
  border-width: 1px;
}

/*select*/
.jb-arrow-select {
  position: absolute;
  right: 12px;
  top: 17px;
  color: rgba(30, 30, 40, 0.18);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/*.jb-text-field général*/
body .jb-text-field {
  flex-wrap: wrap;
  font-family: "Barlow", sans-serif;
}
body .jb-text-field input:required {
  box-shadow: none;
}
body .jb-text-field + .jb-error-mess,
body .jb-text-field .jb-error-mess {
  color: rgb(165, 0, 0);
  position: relative;
  width: 100%;
  font-size: 12px;
  padding-left: 12px;
  box-sizing: border-box;
}
body .jb-text-field.matInside {
  position: relative;
  margin: 0;
}
body .jb-text-field.matInside .mat-form-field {
  width: 100%;
}
body .jb-text-field.matInside.onError .mat-form-field .mat-form-field-outline > div {
  animation: pulseWarningBorder 4s infinite alternate ease-in-out;
}
body .jb-text-field.matInside + .jb-error-mess,
body .jb-text-field.matInside .jb-error-mess {
  background-color: rgb(236, 236, 236);
  z-index: 10;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 10px;
  box-sizing: border-box;
  width: auto;
  position: absolute;
  bottom: 0px;
  left: 5px;
}
body .jb-text-field.matInside + .jb-error-mess:after,
body .jb-text-field.matInside .jb-error-mess:after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent rgb(236, 236, 236) transparent;
}

/*avec bordure*/
.outline:not(.matInside) {
  border-bottom-color: rgba(30, 30, 40, 0.12);
  background-color: transparent;
  position: relative;
  height: 56px;
  display: inline-flex;
  width: 100%;
}
.outline:not(.matInside) .input,
.outline:not(.matInside) .ng2-flatpickr-input {
  padding: 12px;
  caret-color: #db5316;
  border: none !important;
  background-color: transparent;
  z-index: 9;
  font-size: 16px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.outline:not(.matInside) .input option,
.outline:not(.matInside) .ng2-flatpickr-input option {
  padding: 10px;
}
.outline:not(.matInside) .input.date,
.outline:not(.matInside) .ng2-flatpickr-input.date {
  color: transparent;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.outline:not(.matInside) .input.date:before,
.outline:not(.matInside) .ng2-flatpickr-input.date:before {
  content: "";
  background: url("https://assets.alpisurf.com/fichiers/internet/css/framework/images/event.svg");
  background-size: contain;
  display: inline-block;
  height: 24px;
  width: 24px;
  opacity: 0.4;
  margin-right: 5px;
}
.outline:not(.matInside) .input.date + .jb-border .jb-floating-label,
.outline:not(.matInside) .ng2-flatpickr-input.date + .jb-border .jb-floating-label {
  left: 25px;
}
.outline:not(.matInside) .icone {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  color: rgba(30, 30, 40, 0.4);
}
.outline:not(.matInside) .jb-border {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  height: 100%;
  width: 100%;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.outline:not(.matInside) .jb-border .jb-border-leading {
  border: 1px solid;
  border-right: none;
  width: 12px;
  border-radius: 4px 0 0 4px;
  border-color: rgba(30, 30, 40, 0.12);
  box-sizing: border-box;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.outline:not(.matInside) .jb-border .jb-border-cut {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: rgba(30, 30, 40, 0.12);
  max-width: calc(100% - 24px);
  height: 100%;
  padding: 0 5px;
  box-sizing: border-box;
  width: auto;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.outline:not(.matInside) .jb-border .jb-border-bottom {
  border-right: 1px solid;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-radius: 0 4px 4px 0;
  border-color: rgba(30, 30, 40, 0.12);
  box-sizing: border-box;
  flex-grow: 1;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.outline:not(.matInside) .jb-floating-label {
  position: relative;
  font-size: 1rem;
  top: 14px;
  color: rgba(30, 30, 40, 0.4);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.outline:not(.matInside) .input:focus,
.outline:not(.matInside) .input:active,
.outline:not(.matInside) .ng2-flatpickr-input.active {
  outline: none;
}
.outline:not(.matInside) .input:focus + .jb-arrow-select + .jb-border .jb-border-cut, .outline:not(.matInside) .input:focus + .jb-border .jb-border-cut,
.outline:not(.matInside) .input:active + .jb-arrow-select + .jb-border .jb-border-cut,
.outline:not(.matInside) .input:active + .jb-border .jb-border-cut,
.outline:not(.matInside) .ng2-flatpickr-input.active + .jb-arrow-select + .jb-border .jb-border-cut,
.outline:not(.matInside) .ng2-flatpickr-input.active + .jb-border .jb-border-cut {
  border-top: none;
  border-bottom: 2px solid #586876;
}
.outline:not(.matInside) .input:focus + .jb-arrow-select + .jb-border .jb-border-cut .jb-floating-label, .outline:not(.matInside) .input:focus + .jb-border .jb-border-cut .jb-floating-label,
.outline:not(.matInside) .input:active + .jb-arrow-select + .jb-border .jb-border-cut .jb-floating-label,
.outline:not(.matInside) .input:active + .jb-border .jb-border-cut .jb-floating-label,
.outline:not(.matInside) .ng2-flatpickr-input.active + .jb-arrow-select + .jb-border .jb-border-cut .jb-floating-label,
.outline:not(.matInside) .ng2-flatpickr-input.active + .jb-border .jb-border-cut .jb-floating-label {
  top: -14px;
  color: #586876;
  font-size: 12px;
}
.outline:not(.matInside) .input:focus + .jb-arrow-select + .jb-border .jb-border-leading, .outline:not(.matInside) .input:focus + .jb-border .jb-border-leading,
.outline:not(.matInside) .input:active + .jb-arrow-select + .jb-border .jb-border-leading,
.outline:not(.matInside) .input:active + .jb-border .jb-border-leading,
.outline:not(.matInside) .ng2-flatpickr-input.active + .jb-arrow-select + .jb-border .jb-border-leading,
.outline:not(.matInside) .ng2-flatpickr-input.active + .jb-border .jb-border-leading {
  border: 2px solid #586876;
  border-right: none;
}
.outline:not(.matInside) .input:focus + .jb-arrow-select + .jb-border .jb-border-bottom, .outline:not(.matInside) .input:focus + .jb-border .jb-border-bottom,
.outline:not(.matInside) .input:active + .jb-arrow-select + .jb-border .jb-border-bottom,
.outline:not(.matInside) .input:active + .jb-border .jb-border-bottom,
.outline:not(.matInside) .ng2-flatpickr-input.active + .jb-arrow-select + .jb-border .jb-border-bottom,
.outline:not(.matInside) .ng2-flatpickr-input.active + .jb-border .jb-border-bottom {
  border: 2px solid #586876;
  border-left: none;
}
.outline:not(.matInside) .input:focus + .jb-floating-label,
.outline:not(.matInside) .input:active + .jb-floating-label,
.outline:not(.matInside) .ng2-flatpickr-input.active + .jb-floating-label {
  top: 3px;
  color: #586876;
  font-size: 12px;
}
.outline:not(.matInside) .input:focus + .jb-floating-label + .jb-border-underline,
.outline:not(.matInside) .input:active + .jb-floating-label + .jb-border-underline,
.outline:not(.matInside) .ng2-flatpickr-input.active + .jb-floating-label + .jb-border-underline {
  transform: scaleX(1);
}
.outline:not(.matInside) .date:focus,
.outline:not(.matInside) .date:active,
.outline:not(.matInside) .date:valid {
  color: rgba(30, 30, 40, 0.6);
}
.outline:not(.matInside) .date:focus + .jb-border .jb-floating-label,
.outline:not(.matInside) .date:active + .jb-border .jb-floating-label,
.outline:not(.matInside) .date:valid + .jb-border .jb-floating-label {
  left: 0;
}
.outline:not(.matInside) .ng2-flatpickr-input.active,
.outline:not(.matInside) .ng2-flatpickr-input.select,
.outline:not(.matInside) .flatpickr-mobile.active,
.outline:not(.matInside) .flatpickr-mobile.select {
  color: rgba(30, 30, 40, 0.6);
}
.outline:not(.matInside) .ng2-flatpickr-input.active + .jb-border .jb-border-cut,
.outline:not(.matInside) .ng2-flatpickr-input.select + .jb-border .jb-border-cut,
.outline:not(.matInside) .flatpickr-mobile.active + .jb-border .jb-border-cut,
.outline:not(.matInside) .flatpickr-mobile.select + .jb-border .jb-border-cut {
  border-top: none;
}
.outline:not(.matInside) .ng2-flatpickr-input.active + .jb-border .jb-floating-label,
.outline:not(.matInside) .ng2-flatpickr-input.select + .jb-border .jb-floating-label,
.outline:not(.matInside) .flatpickr-mobile.active + .jb-border .jb-floating-label,
.outline:not(.matInside) .flatpickr-mobile.select + .jb-border .jb-floating-label {
  left: 0;
  top: -14px;
  font-size: 12px;
}
.outline:not(.matInside) ng2-flatpickr.ng-dirty .ng2-flatpickr-input {
  padding-left: 40px;
}
.outline:not(.matInside) ng2-flatpickr.ng-dirty + .jb-border .jb-border-cut {
  border-top: none;
}
.outline:not(.matInside) ng2-flatpickr.ng-dirty + .jb-border .jb-floating-label {
  left: 0 !important;
  top: -14px;
  font-size: 12px;
}
.outline:not(.matInside) .input:focus + .jb-arrow-select {
  color: #586876;
  transform: rotate(180deg);
}
.outline:not(.matInside) .input:valid:not(.empty) + .jb-arrow-select + .jb-border .jb-border-cut, .outline:not(.matInside) .input:valid:not(.empty) + .jb-border .jb-border-cut,
.outline:not(.matInside) .input[type=email].ng-touched + .jb-arrow-select + .jb-border .jb-border-cut,
.outline:not(.matInside) .input[type=email].ng-touched + .jb-border .jb-border-cut,
.outline:not(.matInside) .input:disabled:not(.empty) + .jb-arrow-select + .jb-border .jb-border-cut,
.outline:not(.matInside) .input:disabled:not(.empty) + .jb-border .jb-border-cut,
.outline:not(.matInside) .input.readonly:not(.empty) + .jb-arrow-select + .jb-border .jb-border-cut,
.outline:not(.matInside) .input.readonly:not(.empty) + .jb-border .jb-border-cut {
  border-top: none;
}
.outline:not(.matInside) .input:valid:not(.empty) + .jb-arrow-select + .jb-border .jb-border-cut .jb-floating-label, .outline:not(.matInside) .input:valid:not(.empty) + .jb-border .jb-border-cut .jb-floating-label,
.outline:not(.matInside) .input[type=email].ng-touched + .jb-arrow-select + .jb-border .jb-border-cut .jb-floating-label,
.outline:not(.matInside) .input[type=email].ng-touched + .jb-border .jb-border-cut .jb-floating-label,
.outline:not(.matInside) .input:disabled:not(.empty) + .jb-arrow-select + .jb-border .jb-border-cut .jb-floating-label,
.outline:not(.matInside) .input:disabled:not(.empty) + .jb-border .jb-border-cut .jb-floating-label,
.outline:not(.matInside) .input.readonly:not(.empty) + .jb-arrow-select + .jb-border .jb-border-cut .jb-floating-label,
.outline:not(.matInside) .input.readonly:not(.empty) + .jb-border .jb-border-cut .jb-floating-label {
  top: -14px;
  font-size: 12px;
}

/*sans bordure*/
.jb-text-field:not(.outline):not(.matInside) {
  background-color: transparent;
  position: relative;
  height: 56px;
  display: inline-flex;
  border-bottom: 1px solid rgba(30, 30, 40, 0.12);
  width: 100%;
}
.jb-text-field:not(.outline):not(.matInside) .input {
  border: none;
  border-radius: 4px;
  caret-color: #db5316;
  background-color: rgba(30, 30, 40, 0);
  padding: 12px 12px 0 12px;
  z-index: 9;
  font-size: 16px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.jb-text-field:not(.outline):not(.matInside) .input.date {
  color: transparent;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.jb-text-field:not(.outline):not(.matInside) .input.date:before {
  content: "";
  background: url("https://assets.alpisurf.com/fichiers/internet/css/framework/images/event.svg");
  background-size: contain;
  display: inline-block;
  height: 24px;
  width: 24px;
  opacity: 0.4;
  margin-right: 5px;
}
.jb-text-field:not(.outline):not(.matInside) .input.date + .jb-border .jb-floating-label {
  left: 25px;
}
.jb-text-field:not(.outline):not(.matInside) .jb-border {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  height: 100%;
  width: 100%;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.jb-text-field:not(.outline):not(.matInside) .jb-border .jb-border-leading {
  display: none;
}
.jb-text-field:not(.outline):not(.matInside) .jb-border .jb-border-cut {
  max-width: calc(100% - 24px);
  height: 100%;
  width: auto;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.jb-text-field:not(.outline):not(.matInside) .jb-border .jb-border-cut .jb-floating-label {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-top: 22px;
  padding-left: 12px;
  box-sizing: border-box;
  font-size: 1rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(30, 30, 40, 0.4);
}
.jb-text-field:not(.outline):not(.matInside) .jb-border-bottom {
  border-bottom: 2px solid;
  border-color: #586876;
  box-sizing: border-box;
  flex-grow: 1;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  width: 100%;
  bottom: 0;
  transform: scaleX(0);
}
.jb-text-field:not(.outline):not(.matInside) .input:active,
.jb-text-field:not(.outline):not(.matInside) .input:focus {
  outline: none;
}
.jb-text-field:not(.outline):not(.matInside) .input:active + .jb-arrow-select + .jb-border .jb-floating-label, .jb-text-field:not(.outline):not(.matInside) .input:active + .jb-border .jb-floating-label,
.jb-text-field:not(.outline):not(.matInside) .input:focus + .jb-arrow-select + .jb-border .jb-floating-label,
.jb-text-field:not(.outline):not(.matInside) .input:focus + .jb-border .jb-floating-label {
  color: #586876;
  font-size: 12px;
  padding-top: 4px;
  background-color: rgba(30, 30, 40, 0.1);
  border-radius: 4px;
}
.jb-text-field:not(.outline):not(.matInside) .input:active + .jb-arrow-select + .jb-border .jb-border-leading, .jb-text-field:not(.outline):not(.matInside) .input:active + .jb-border .jb-border-leading,
.jb-text-field:not(.outline):not(.matInside) .input:focus + .jb-arrow-select + .jb-border .jb-border-leading,
.jb-text-field:not(.outline):not(.matInside) .input:focus + .jb-border .jb-border-leading {
  border: 2px solid #586876;
  border-right: none;
}
.jb-text-field:not(.outline):not(.matInside) .input:active + .jb-arrow-select + .jb-border .jb-border-bottom, .jb-text-field:not(.outline):not(.matInside) .input:active + .jb-border .jb-border-bottom,
.jb-text-field:not(.outline):not(.matInside) .input:focus + .jb-arrow-select + .jb-border .jb-border-bottom,
.jb-text-field:not(.outline):not(.matInside) .input:focus + .jb-border .jb-border-bottom {
  transform: scaleX(1);
}
.jb-text-field:not(.outline):not(.matInside) .input:focus + .jb-arrow-select {
  color: #586876;
  transform: rotate(180deg);
}
.jb-text-field:not(.outline):not(.matInside) .input:valid + .jb-arrow-select + .jb-border .jb-floating-label, .jb-text-field:not(.outline):not(.matInside) .input:valid + .jb-border .jb-floating-label,
.jb-text-field:not(.outline):not(.matInside) .input[type=email].ng-touched + .jb-arrow-select + .jb-border .jb-floating-label,
.jb-text-field:not(.outline):not(.matInside) .input[type=email].ng-touched + .jb-border .jb-floating-label {
  padding-top: 4px;
  font-size: 12px;
}
.jb-text-field:not(.outline):not(.matInside) .date:focus,
.jb-text-field:not(.outline):not(.matInside) .date:active,
.jb-text-field:not(.outline):not(.matInside) .date:valid {
  color: rgba(30, 30, 40, 0.6);
}
.jb-text-field:not(.outline):not(.matInside) .date:focus + .jb-border .jb-floating-label,
.jb-text-field:not(.outline):not(.matInside) .date:active + .jb-border .jb-floating-label,
.jb-text-field:not(.outline):not(.matInside) .date:valid + .jb-border .jb-floating-label {
  left: 0;
}

.inputFile {
  border: 0 !important;
}
.inputFile .input {
  opacity: 0;
}
.inputFile .jb-design {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px dashed #db5316;
  background-color: rgba(87, 88, 80, 0);
  animation: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.inputFile .jb-design .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #db5316;
  text-align: center;
}
.inputFile .jb-design .content .material-icons {
  width: 100%;
  font-size: 26px;
}
.inputFile .jb-design .content span {
  font-size: 14px;
  font-family: "Barlow", sans-serif;
  color: #db5316;
}
.inputFile .input:hover {
  cursor: pointer;
}
.inputFile .input:hover + .jb-design {
  background-color: rgba(87, 88, 80, 0.2);
}

/* Material checkbox */
.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,
.mat-checkbox-checked.mat-accent .mat-checkbox-background {
  background-color: #db5316;
}

.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,
.mat-checkbox:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
  background-color: #db5316;
}
.mat-checkbox-checked:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,
.mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
  background-color: #db5316;
}

/* input text */
.mat-form-field.mat-focused .mat-form-field-label {
  color: #db5316;
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

/*-Switch-*/
.switch {
  position: relative;
  display: flex;
  align-items: center;
}
.switch .jb-switch {
  width: 35px;
  height: 30px;
  opacity: 0;
  cursor: pointer;
  z-index: 9;
}
.switch label {
  margin-left: 10px;
  cursor: pointer;
}
.switch .jb-switch-design {
  position: absolute;
  width: 35px;
  height: 12px;
  border-radius: 10px;
  background-color: rgba(30, 30, 40, 0.18);
  left: 0;
  top: 9px;
  z-index: 0;
}
.switch .jb-switch-design:before {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  top: -4px;
  background-color: #666666;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.switch .jb-switch-design:after {
  content: "";
  position: absolute;
  z-index: -9;
  left: -4px;
  right: auto;
  top: -9px;
  background-color: #586876;
  height: 30px;
  width: 30px;
  opacity: 0;
  transform: scale(0);
  border-radius: 15px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.switch .jb-switch:checked + label + .jb-switch-design:before {
  left: 15px;
  background-color: #586876;
}
.switch .jb-switch:checked + label + .jb-switch-design:after {
  left: 10px;
  opacity: 0.4;
  transform: scale(1);
}

/*-Radio-*/
.radio {
  position: relative;
  display: flex;
  align-items: center;
}
.radio .jb-radio {
  width: 20px;
  height: 20px;
  margin: 0;
  position: relative;
  z-index: 9;
  opacity: 0;
}
.radio .jb-switch-design {
  width: 20px;
  height: 20px;
  border: 1px solid #db5316;
  border-radius: 15px;
  position: absolute;
}
.radio .jb-switch-design:after {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #db5316;
  position: absolute;
  border-radius: 100%;
  top: 2px;
  left: 2px;
  transform: scale(0);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.radio .jb-radio:checked + .jb-switch-design:after {
  transform: scale(1);
}
.radio + .jb-error-mess, .radio .jb-error-mess {
  color: rgb(165, 0, 0);
  position: relative;
  width: 100%;
  font-size: 12px;
  padding-left: 12px;
  box-sizing: border-box;
}

.title {
  font-size: 21px;
  font-family: "Barlow", sans-serif;
  color: rgba(88, 104, 118, 0.87);
}

.subtitle {
  font-size: 17px;
  font-family: "Barlow", sans-serif;
  color: rgba(88, 104, 118, 0.7);
}

.body {
  font-size: 16px;
  font-family: "Barlow", sans-serif;
  color: rgba(88, 104, 118, 0.6);
  margin-bottom: 5px;
}

.metadonnee {
  font-size: 15px;
  font-family: "Barlow", sans-serif;
  color: rgba(88, 104, 118, 0.4);
}

.test {
  width: 60%;
  margin: 50px auto;
  font-family: "Barlow", sans-serif;
  overflow: visible;
}

/*- Checkbox-*/
.checkbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.checkbox .containerCheckbox {
  display: inline-block;
  position: relative;
  flex: 0 0 18px;
  box-sizing: content-box;
  width: 18px;
  height: 18px;
  padding: 11px;
  line-height: 0;
  white-space: nowrap;
  vertical-align: middle;
}
.checkbox .jb-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: inherit;
  z-index: 9;
  opacity: 0;
}
.checkbox .jb-checkbox-bg {
  position: absolute;
  width: 45%;
  height: 45%;
  top: 11px;
  left: 11px;
  right: auto;
  display: inline-flex;
  justify-content: center;
  box-sizing: border-box;
  border: 2px solid rgba(30, 30, 40, 0.2);
  border-radius: 4px;
  background-color: transparent;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.checkbox .jb-checkbox-bg:after {
  content: "";
}
.checkbox .jb-checkbox-bg svg .st0 {
  fill: none;
}
.checkbox .jb-checkbox-bg svg .st1 {
  fill: transparent;
}
.checkbox .jb-checkbox-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #586876;
  border-radius: 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -9;
}
.checkbox label {
  vertical-align: middle;
  width: calc(100% - 50px);
}
.checkbox .jb-checkbox:checked + .jb-checkbox-bg {
  background-color: #586876;
  border-color: #586876;
}
.checkbox .jb-checkbox:checked + .jb-checkbox-bg svg {
  position: absolute;
  top: 0;
}
.checkbox .jb-checkbox:checked + .jb-checkbox-bg svg .st0 {
  fill: none;
}
.checkbox .jb-checkbox:checked + .jb-checkbox-bg svg .st1 {
  fill: #ffffff;
}
.checkbox .jb-checkbox:checked + .jb-checkbox-bg + .jb-checkbox-pulse {
  animation: pulse 0.3s ease;
}
.checkbox + .jb-error-mess, .checkbox .jb-error-mess {
  color: rgb(165, 0, 0);
  position: relative;
  width: 100%;
  font-size: 12px;
  padding-left: 12px;
  box-sizing: border-box;
}

@keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  70% {
    opacity: 0.4;
    transform: scale(1);
  }
  75% {
    opacity: 0.4;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}
.chips.--primary {
  --theme: #1976d2;
}
.chips.--secondary {
  --theme: #00b7d3;
}
.chips.--rounded {
  --round: 50px;
}

.chips {
  padding: 4px 8px;
  background-color: rgba(148, 148, 148, 0.7);
  color: rgba(30, 30, 40, 0.6);
  border-radius: var(--round);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.chips i {
  color: rgba(30, 30, 40, 0.6);
}
.chips:hover {
  color: var(--theme);
  background-color: rgba(148, 148, 148, 0.5);
}
.chips:hover i {
  color: var(--theme);
}

.blockedByLoader {
  position: relative;
}
.blockedByLoader .blockingLoader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.loader1 {
  position: absolute;
  top: 50vh;
  transform: translateY(-50%);
  display: flex;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
}
.loader1.fixed {
  position: fixed;
}
.loader1 .loadElement {
  display: flex;
  justify-content: space-between;
}
.loader1 .loadElement:before {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  margin-right: 5px;
  position: relative;
  animation: bounce linear 500ms infinite alternate, opacity linear 500ms infinite alternate;
}
.loader1 .loadElement:after {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  position: relative;
  animation: bounce linear 500ms 175ms infinite alternate-reverse, opacity linear 500ms 175ms infinite alternate-reverse;
}
.loader1 .loadElement:first-child {
  margin-right: 5px;
}

.loader1_1 {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
}
.loader1_1 .loadElement {
  display: flex;
  justify-content: space-between;
}
.loader1_1 .loadElement:before {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  margin-right: 5px;
  position: relative;
  animation: bounce linear 500ms infinite alternate, opacity linear 500ms infinite alternate;
}
.loader1_1 .loadElement:after {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  position: relative;
  animation: bounce linear 500ms 175ms infinite alternate-reverse, opacity linear 500ms 175ms infinite alternate-reverse;
}
.loader1_1 .loadElement:first-child {
  margin-right: 5px;
}

.loader2 {
  position: absolute;
  top: 50vh;
  transform: translateY(-50%);
  display: flex;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
}
.loader2 .loadElement {
  height: 45px;
  width: 45px;
  border: 3px solid rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.6) transparent rgba(0, 0, 0, 0.6) transparent;
  border-radius: 50%;
  animation: rotate linear 2s infinite, opacity linear 1s infinite alternate;
}
.loader2 .loadElement:after {
  content: "";
  height: 30px;
  width: 30px;
  border: 3px solid rgba(0, 0, 0, 0.6);
  border-color: transparent rgba(0, 0, 0, 0.6) transparent rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: block;
  position: relative;
  margin-top: 4px;
  margin-left: 4px;
  animation: rotate linear 1s infinite, opacity linear 500ms infinite alternate;
}
.loader2 .loadElement:first-child {
  margin-right: 5px;
}

.loader3 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  background-color: #db5316;
  right: 0;
  z-index: 9999;
  overflow: hidden;
}
.loader3 .loadElement:not(:last-child) {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #db5316;
  height: 6px;
  animation: loadBef 1250ms infinite;
}

.loaderNotFixed {
  display: block;
  position: relative;
  transform: none;
  top: initial;
  right: initial;
  bottom: initial;
  left: initial;
}
.loaderNotFixed .loadElement {
  display: inline-block;
}
.loaderNotFixed .loadElement::before, .loaderNotFixed .loadElement::after {
  display: inline-block;
}

@keyframes bounce {
  0% {
    top: -5px;
  }
  100% {
    top: 5px;
  }
}
@keyframes opacity {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes loadBef {
  0% {
    width: 0%;
    transform: translateX(0);
  }
  30% {
    width: 40%;
  }
  60% {
    width: 40%;
    transform: translateX(250%);
  }
  100% {
    width: 40%;
    transform: translateX(250%);
  }
}
/*material*/
.mat-badge-content {
  font-weight: 600;
  font-size: 12px;
  font-family: Roboto, Helvetica Neue, sans-serif;
}

.mat-badge-small .mat-badge-content {
  font-size: 9px;
}

.mat-badge-large .mat-badge-content {
  font-size: 24px;
}

.mat-h1, .mat-headline, .mat-typography h1 {
  font: 400 24px/32px Roboto, Helvetica Neue, sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}

.mat-h2, .mat-title, .mat-typography h2 {
  font: 500 20px/32px Roboto, Helvetica Neue, sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}

.mat-h3, .mat-subheading-2, .mat-typography h3 {
  font: 400 16px/28px Roboto, Helvetica Neue, sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}

.mat-h4, .mat-subheading-1, .mat-typography h4 {
  font: 400 15px/24px Roboto, Helvetica Neue, sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}

.mat-h5, .mat-typography h5 {
  font: 400 11.62px/20px Roboto, Helvetica Neue, sans-serif;
  margin: 0 0 12px;
}

.mat-h6, .mat-typography h6 {
  font: 400 9.38px/20px Roboto, Helvetica Neue, sans-serif;
  margin: 0 0 12px;
}

.mat-body-2, .mat-body-strong {
  font: 500 14px/24px Roboto, Helvetica Neue, sans-serif;
  letter-spacing: normal;
}

.mat-body, .mat-body-1, .mat-typography {
  font: 400 14px/20px Roboto, Helvetica Neue, sans-serif;
  letter-spacing: normal;
}

.mat-body-1 p, .mat-body p, .mat-typography p {
  margin: 0 0 12px;
}

.mat-caption, .mat-small {
  font: 400 12px/20px Roboto, Helvetica Neue, sans-serif;
  letter-spacing: normal;
}

.mat-display-4, .mat-typography .mat-display-4 {
  font: 300 112px/112px Roboto, Helvetica Neue, sans-serif;
  letter-spacing: -0.05em;
  margin: 0 0 56px;
}

.mat-display-3, .mat-typography .mat-display-3 {
  font: 400 56px/56px Roboto, Helvetica Neue, sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 64px;
}

.mat-display-2, .mat-typography .mat-display-2 {
  font: 400 45px/48px Roboto, Helvetica Neue, sans-serif;
  letter-spacing: -0.005em;
  margin: 0 0 64px;
}

.mat-display-1, .mat-typography .mat-display-1 {
  font: 400 34px/40px Roboto, Helvetica Neue, sans-serif;
  letter-spacing: normal;
  margin: 0 0 64px;
}

.mat-bottom-sheet-container {
  font: 400 14px/20px Roboto, Helvetica Neue, sans-serif;
  letter-spacing: normal;
}

.mat-button, .mat-fab, .mat-flat-button, .mat-icon-button, .mat-mini-fab, .mat-raised-button, .mat-stroked-button {
  font-family: Roboto, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.mat-button-toggle, .mat-card {
  font-family: Roboto, Helvetica Neue, sans-serif;
}

.mat-card-title {
  font-size: 24px;
  font-weight: 500;
}

.mat-card-header .mat-card-title {
  font-size: 20px;
}

.mat-card-content, .mat-card-subtitle {
  font-size: 14px;
}

.mat-checkbox {
  font-family: Roboto, Helvetica Neue, sans-serif;
}

.mat-checkbox-layout .mat-checkbox-label {
  line-height: 24px;
}

.mat-chip {
  font-size: 14px;
  font-weight: 500;
}

.mat-chip .mat-chip-remove.mat-icon, .mat-chip .mat-chip-trailing-icon.mat-icon {
  font-size: 18px;
}

.mat-table {
  font-family: Roboto, Helvetica Neue, sans-serif;
}

.mat-header-cell {
  font-size: 12px;
  font-weight: 500;
}

.mat-cell, .mat-footer-cell {
  font-size: 14px;
}

.mat-calendar {
  font-family: Roboto, Helvetica Neue, sans-serif;
}

.mat-calendar-body {
  font-size: 13px;
}

.mat-calendar-body-label, .mat-calendar-period-button {
  font-size: 14px;
  font-weight: 500;
}

.mat-calendar-table-header th {
  font-size: 11px;
  font-weight: 400;
}

.mat-dialog-title {
  font: 500 20px/32px Roboto, Helvetica Neue, sans-serif;
  letter-spacing: normal;
}

.mat-expansion-panel-header {
  font-family: Roboto, Helvetica Neue, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.mat-expansion-panel-content {
  font: 400 14px/20px Roboto, Helvetica Neue, sans-serif;
  letter-spacing: normal;
}

.mat-form-field {
  font-size: inherit;
  font-weight: 400;
  line-height: 1.125;
  font-family: Roboto, Helvetica Neue, sans-serif;
  letter-spacing: normal;
}

.mat-form-field-wrapper {
  padding-bottom: 1.34375em;
}

.mat-form-field-prefix .mat-icon, .mat-form-field-suffix .mat-icon {
  font-size: 150%;
  line-height: 1.125;
}

.mat-form-field-prefix .mat-icon-button, .mat-form-field-suffix .mat-icon-button {
  height: 1.5em;
  width: 1.5em;
}

.mat-form-field-prefix .mat-icon-button .mat-icon, .mat-form-field-suffix .mat-icon-button .mat-icon {
  height: 1.125em;
  line-height: 1.125;
}

.mat-form-field-infix {
  padding: 0.5em 0;
  border-top: 0.84375em solid transparent;
}

.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label, .mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.34375em) scale(0.75);
  width: 133.3333333333%;
}

.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.34374em) scale(0.75);
  width: 133.3333433333%;
}

.mat-form-field-label-wrapper {
  top: -0.84375em;
  padding-top: 0.84375em;
}

.mat-form-field-label {
  top: 1.34375em;
}

.mat-form-field-underline {
  bottom: 1.34375em;
}

.mat-form-field-subscript-wrapper {
  font-size: 75%;
  margin-top: 0.6666666667em;
  top: calc(100% - 1.7916666667em);
}

.mat-form-field-appearance-legacy .mat-form-field-wrapper {
  padding-bottom: 1.25em;
}

.mat-form-field-appearance-legacy .mat-form-field-infix {
  padding: 0.4375em 0;
}

.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label, .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);
  -ms-transform: translateY(-1.28125em) scale(0.75);
  width: 133.3333333333%;
}

.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);
  -ms-transform: translateY(-1.28124em) scale(0.75);
  width: 133.3333433333%;
}

.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);
  -ms-transform: translateY(-1.28123em) scale(0.75);
  width: 133.3333533333%;
}

.mat-form-field-appearance-legacy .mat-form-field-label {
  top: 1.28125em;
}

.mat-form-field-appearance-legacy .mat-form-field-underline {
  bottom: 1.25em;
}

.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper {
  margin-top: 0.5416666667em;
  top: calc(100% - 1.6666666667em);
}

@media print {
  .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label, .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
    transform: translateY(-1.28122em) scale(0.75);
  }
  .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {
    transform: translateY(-1.28121em) scale(0.75);
  }
  .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
    transform: translateY(-1.2812em) scale(0.75);
  }
}
.mat-form-field-appearance-fill .mat-form-field-infix {
  padding: 0.25em 0 0.75em;
}

.mat-form-field-appearance-fill .mat-form-field-label {
  top: 1.09375em;
  margin-top: -0.5em;
}

.mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label, .mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-0.59375em) scale(0.75);
  width: 133.3333333333%;
}

.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-0.59374em) scale(0.75);
  width: 133.3333433333%;
}

.mat-form-field-appearance-outline .mat-form-field-infix {
  padding: 1em 0;
}

.mat-form-field-appearance-outline .mat-form-field-label {
  top: 1.84375em;
  margin-top: -0.25em;
}

.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label, .mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.59375em) scale(0.75);
  width: 133.3333333333%;
}

.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.59374em) scale(0.75);
  width: 133.3333433333%;
}

.mat-grid-tile-footer, .mat-grid-tile-header {
  font-size: 14px;
}

.mat-grid-tile-footer .mat-line, .mat-grid-tile-header .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}

.mat-grid-tile-footer .mat-line:nth-child(n+2), .mat-grid-tile-header .mat-line:nth-child(n+2) {
  font-size: 12px;
}

input.mat-input-element {
  margin-top: -0.0625em;
}

.mat-menu-item {
  font-family: Roboto, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.mat-paginator, .mat-paginator-page-size .mat-select-trigger {
  font-family: Roboto, Helvetica Neue, sans-serif;
  font-size: 12px;
}

.mat-radio-button, .mat-select {
  font-family: Roboto, Helvetica Neue, sans-serif;
}

.mat-select-trigger {
  height: 1.125em;
}

.mat-slide-toggle-content, .mat-slider-thumb-label-text {
  font-family: Roboto, Helvetica Neue, sans-serif;
}

.mat-slider-thumb-label-text {
  font-size: 12px;
  font-weight: 500;
}

.mat-stepper-horizontal, .mat-stepper-vertical {
  font-family: Roboto, Helvetica Neue, sans-serif;
}

.mat-step-label {
  font-size: 14px;
  font-weight: 400;
}

.mat-step-sub-label-error {
  font-weight: 400;
}

.mat-step-label-error {
  font-size: 14px;
}

.mat-step-label-selected {
  font-size: 14px;
  font-weight: 500;
}

.mat-tab-group, .mat-tab-label, .mat-tab-link {
  font-family: Roboto, Helvetica Neue, sans-serif;
}

.mat-tab-label, .mat-tab-link {
  font-size: 14px;
  font-weight: 500;
}

.mat-toolbar, .mat-toolbar h1, .mat-toolbar h2, .mat-toolbar h3, .mat-toolbar h4, .mat-toolbar h5, .mat-toolbar h6 {
  font: 500 20px/32px Roboto, Helvetica Neue, sans-serif;
  letter-spacing: normal;
  margin: 0;
}

.mat-tooltip {
  font-family: Roboto, Helvetica Neue, sans-serif;
  font-size: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.mat-tooltip-handset {
  font-size: 14px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.mat-list-item, .mat-list-option {
  font-family: Roboto, Helvetica Neue, sans-serif;
}

.mat-list-base .mat-list-item {
  font-size: 16px;
}

.mat-list-base .mat-list-item .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}

.mat-list-base .mat-list-item .mat-line:nth-child(n+2) {
  font-size: 14px;
}

.mat-list-base .mat-list-option {
  font-size: 16px;
}

.mat-list-base .mat-list-option .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}

.mat-list-base .mat-list-option .mat-line:nth-child(n+2) {
  font-size: 14px;
}

.mat-list-base .mat-subheader {
  font-family: Roboto, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.mat-list-base[dense] .mat-list-item {
  font-size: 12px;
}

.mat-list-base[dense] .mat-list-item .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}

.mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2), .mat-list-base[dense] .mat-list-option {
  font-size: 12px;
}

.mat-list-base[dense] .mat-list-option .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}

.mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2) {
  font-size: 12px;
}

.mat-list-base[dense] .mat-subheader {
  font-family: Roboto, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.mat-option {
  font-family: Roboto, Helvetica Neue, sans-serif;
  font-size: 16px;
}

.mat-optgroup-label {
  font: 500 14px/24px Roboto, Helvetica Neue, sans-serif;
  letter-spacing: normal;
}

.mat-simple-snackbar {
  font-family: Roboto, Helvetica Neue, sans-serif;
  font-size: 14px;
}

.mat-simple-snackbar-action {
  line-height: 1;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
}

.mat-tree {
  font-family: Roboto, Helvetica Neue, sans-serif;
}

.mat-nested-tree-node, .mat-tree-node {
  font-weight: 400;
  font-size: 14px;
}

.mat-ripple {
  overflow: hidden;
  position: relative;
}

.mat-ripple:not(:empty) {
  transform: translateZ(0);
}

.mat-ripple.mat-ripple-unbounded {
  overflow: visible;
}

.mat-ripple-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);
  transform: scale(0);
}

.cdk-high-contrast-active .mat-ripple-element {
  display: none;
}

.cdk-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.cdk-global-overlay-wrapper, .cdk-overlay-container {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}

.cdk-overlay-container:empty {
  display: none;
}

.cdk-global-overlay-wrapper, .cdk-overlay-pane {
  display: flex;
  position: absolute;
  z-index: 1000;
}

.cdk-overlay-pane {
  pointer-events: auto;
  box-sizing: border-box;
  max-width: 100%;
  max-height: 100%;
}

.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}

.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1;
}

@media screen and (-ms-high-contrast: active) {
  .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
    opacity: 0.6;
  }
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.32);
}

.cdk-overlay-transparent-backdrop, .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
}

.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
}

.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

@keyframes cdk-text-field-autofill-start { /*!*/ }
@keyframes cdk-text-field-autofill-end { /*!*/ }
.cdk-text-field-autofill-monitored:-webkit-autofill {
  animation: cdk-text-field-autofill-start 0s 1ms;
}

.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
  animation: cdk-text-field-autofill-end 0s 1ms;
}

textarea.cdk-textarea-autosize {
  resize: none;
}

textarea.cdk-textarea-autosize-measuring {
  padding: 2px 0 !important;
  box-sizing: initial !important;
  height: auto !important;
  overflow: hidden !important;
}

textarea.cdk-textarea-autosize-measuring-firefox {
  padding: 2px 0 !important;
  box-sizing: initial !important;
  height: 0 !important;
}

.mat-focus-indicator, .mat-mdc-focus-indicator {
  position: relative;
}

.mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}

.mat-option {
  color: rgba(0, 0, 0, 0.87);
}

.mat-option.mat-active, .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled), .mat-option:focus:not(.mat-option-disabled), .mat-option:hover:not(.mat-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}

.mat-option.mat-active {
  color: rgba(0, 0, 0, 0.87);
}

.mat-option.mat-option-disabled {
  color: rgba(0, 0, 0, 0.38);
}

.mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #3f51b5;
}

.mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #ff4081;
}

.mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #f44336;
}

.mat-optgroup-label {
  color: rgba(0, 0, 0, 0.54);
}

.mat-optgroup-disabled .mat-optgroup-label {
  color: rgba(0, 0, 0, 0.38);
}

.mat-pseudo-checkbox {
  color: rgba(0, 0, 0, 0.54);
}

.mat-pseudo-checkbox:after {
  color: #fafafa;
}

.mat-pseudo-checkbox-disabled {
  color: #b0b0b0;
}

.mat-primary .mat-pseudo-checkbox-checked, .mat-primary .mat-pseudo-checkbox-indeterminate {
  background: #3f51b5;
}

.mat-accent .mat-pseudo-checkbox-checked, .mat-accent .mat-pseudo-checkbox-indeterminate, .mat-pseudo-checkbox-checked, .mat-pseudo-checkbox-indeterminate {
  background: #ff4081;
}

.mat-warn .mat-pseudo-checkbox-checked, .mat-warn .mat-pseudo-checkbox-indeterminate {
  background: #f44336;
}

.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled, .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
  background: #b0b0b0;
}

.mat-app-background {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}

.mat-elevation-z0 {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.12);
}

.mat-elevation-z1 {
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
}

.mat-elevation-z2 {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.mat-elevation-z3 {
  box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
}

.mat-elevation-z4 {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.mat-elevation-z5 {
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 5px 8px 0 rgba(0, 0, 0, 0.14), 0 1px 14px 0 rgba(0, 0, 0, 0.12);
}

.mat-elevation-z6 {
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}

.mat-elevation-z7 {
  box-shadow: 0 4px 5px -2px rgba(0, 0, 0, 0.2), 0 7px 10px 1px rgba(0, 0, 0, 0.14), 0 2px 16px 1px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z8 {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z9 {
  box-shadow: 0 5px 6px -3px rgba(0, 0, 0, 0.2), 0 9px 12px 1px rgba(0, 0, 0, 0.14), 0 3px 16px 2px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z10 {
  box-shadow: 0 6px 6px -3px rgba(0, 0, 0, 0.2), 0 10px 14px 1px rgba(0, 0, 0, 0.14), 0 4px 18px 3px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z11 {
  box-shadow: 0 6px 7px -4px rgba(0, 0, 0, 0.2), 0 11px 15px 1px rgba(0, 0, 0, 0.14), 0 4px 20px 3px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z12 {
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 12px 17px 2px rgba(0, 0, 0, 0.14), 0 5px 22px 4px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z13 {
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z14 {
  box-shadow: 0 7px 9px -4px rgba(0, 0, 0, 0.2), 0 14px 21px 2px rgba(0, 0, 0, 0.14), 0 5px 26px 4px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z15 {
  box-shadow: 0 8px 9px -5px rgba(0, 0, 0, 0.2), 0 15px 22px 2px rgba(0, 0, 0, 0.14), 0 6px 28px 5px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z16 {
  box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z17 {
  box-shadow: 0 8px 11px -5px rgba(0, 0, 0, 0.2), 0 17px 26px 2px rgba(0, 0, 0, 0.14), 0 6px 32px 5px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z18 {
  box-shadow: 0 9px 11px -5px rgba(0, 0, 0, 0.2), 0 18px 28px 2px rgba(0, 0, 0, 0.14), 0 7px 34px 6px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z19 {
  box-shadow: 0 9px 12px -6px rgba(0, 0, 0, 0.2), 0 19px 29px 2px rgba(0, 0, 0, 0.14), 0 7px 36px 6px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z20 {
  box-shadow: 0 10px 13px -6px rgba(0, 0, 0, 0.2), 0 20px 31px 3px rgba(0, 0, 0, 0.14), 0 8px 38px 7px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z21 {
  box-shadow: 0 10px 13px -6px rgba(0, 0, 0, 0.2), 0 21px 33px 3px rgba(0, 0, 0, 0.14), 0 8px 40px 7px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z22 {
  box-shadow: 0 10px 14px -6px rgba(0, 0, 0, 0.2), 0 22px 35px 3px rgba(0, 0, 0, 0.14), 0 8px 42px 7px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z23 {
  box-shadow: 0 11px 14px -7px rgba(0, 0, 0, 0.2), 0 23px 36px 3px rgba(0, 0, 0, 0.14), 0 9px 44px 8px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z24 {
  box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12);
}

.mat-theme-loaded-marker {
  display: none;
}

.mat-autocomplete-panel {
  background: #fff;
  color: rgba(0, 0, 0, 0.87);
}

.mat-autocomplete-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {
  background: #fff;
}

.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
  color: rgba(0, 0, 0, 0.87);
}

.mat-badge-content {
  color: #fff;
  background: #3f51b5;
}

.cdk-high-contrast-active .mat-badge-content {
  outline: 1px solid;
  border-radius: 0;
}

.mat-badge-accent .mat-badge-content {
  background: #ff4081;
  color: #fff;
}

.mat-badge-warn .mat-badge-content {
  color: #fff;
  background: #f44336;
}

.mat-badge {
  position: relative;
}

.mat-badge-hidden .mat-badge-content {
  display: none;
}

.mat-badge-disabled .mat-badge-content {
  background: #b9b9b9;
  color: rgba(0, 0, 0, 0.38);
}

.mat-badge-content {
  position: absolute;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  transition: transform 0.2s ease-in-out;
  transform: scale(0.6);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}

.mat-badge-content._mat-animation-noopable, .ng-animate-disabled .mat-badge-content {
  transition: none;
}

.mat-badge-content.mat-badge-active {
  transform: none;
}

.mat-badge-small .mat-badge-content {
  width: 16px;
  height: 16px;
  line-height: 16px;
}

.mat-badge-small.mat-badge-above .mat-badge-content {
  top: -8px;
}

.mat-badge-small.mat-badge-below .mat-badge-content {
  bottom: -8px;
}

.mat-badge-small.mat-badge-before .mat-badge-content {
  left: -16px;
}

[dir=rtl] .mat-badge-small.mat-badge-before .mat-badge-content {
  left: auto;
  right: -16px;
}

.mat-badge-small.mat-badge-after .mat-badge-content {
  right: -16px;
}

[dir=rtl] .mat-badge-small.mat-badge-after .mat-badge-content {
  right: auto;
  left: -16px;
}

.mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -8px;
}

[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -8px;
}

.mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -8px;
}

[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -8px;
}

.mat-badge-medium .mat-badge-content {
  width: 22px;
  height: 22px;
  line-height: 22px;
}

.mat-badge-medium.mat-badge-above .mat-badge-content {
  top: -11px;
}

.mat-badge-medium.mat-badge-below .mat-badge-content {
  bottom: -11px;
}

.mat-badge-medium.mat-badge-before .mat-badge-content {
  left: -22px;
}

[dir=rtl] .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: auto;
  right: -22px;
}

.mat-badge-medium.mat-badge-after .mat-badge-content {
  right: -22px;
}

[dir=rtl] .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: auto;
  left: -22px;
}

.mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -11px;
}

[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -11px;
}

.mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -11px;
}

[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -11px;
}

.mat-badge-large .mat-badge-content {
  width: 28px;
  height: 28px;
  line-height: 28px;
}

.mat-badge-large.mat-badge-above .mat-badge-content {
  top: -14px;
}

.mat-badge-large.mat-badge-below .mat-badge-content {
  bottom: -14px;
}

.mat-badge-large.mat-badge-before .mat-badge-content {
  left: -28px;
}

[dir=rtl] .mat-badge-large.mat-badge-before .mat-badge-content {
  left: auto;
  right: -28px;
}

.mat-badge-large.mat-badge-after .mat-badge-content {
  right: -28px;
}

[dir=rtl] .mat-badge-large.mat-badge-after .mat-badge-content {
  right: auto;
  left: -28px;
}

.mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -14px;
}

[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -14px;
}

.mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -14px;
}

[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -14px;
}

.mat-bottom-sheet-container {
  box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12);
  background: #fff;
  color: rgba(0, 0, 0, 0.87);
}

.mat-button, .mat-icon-button, .mat-stroked-button {
  color: inherit;
  background: transparent;
}

.mat-button.mat-primary, .mat-icon-button.mat-primary, .mat-stroked-button.mat-primary {
  color: #3f51b5;
}

.mat-button.mat-accent, .mat-icon-button.mat-accent, .mat-stroked-button.mat-accent {
  color: #ff4081;
}

.mat-button.mat-warn, .mat-icon-button.mat-warn, .mat-stroked-button.mat-warn {
  color: #f44336;
}

.mat-button.mat-accent.mat-button-disabled, .mat-button.mat-button-disabled.mat-button-disabled, .mat-button.mat-primary.mat-button-disabled, .mat-button.mat-warn.mat-button-disabled, .mat-icon-button.mat-accent.mat-button-disabled, .mat-icon-button.mat-button-disabled.mat-button-disabled, .mat-icon-button.mat-primary.mat-button-disabled, .mat-icon-button.mat-warn.mat-button-disabled, .mat-stroked-button.mat-accent.mat-button-disabled, .mat-stroked-button.mat-button-disabled.mat-button-disabled, .mat-stroked-button.mat-primary.mat-button-disabled, .mat-stroked-button.mat-warn.mat-button-disabled {
  color: rgba(0, 0, 0, 0.26);
}

.mat-button.mat-primary .mat-button-focus-overlay, .mat-icon-button.mat-primary .mat-button-focus-overlay, .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: #3f51b5;
}

.mat-button.mat-accent .mat-button-focus-overlay, .mat-icon-button.mat-accent .mat-button-focus-overlay, .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: #ff4081;
}

.mat-button.mat-warn .mat-button-focus-overlay, .mat-icon-button.mat-warn .mat-button-focus-overlay, .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: #f44336;
}

.mat-button.mat-button-disabled .mat-button-focus-overlay, .mat-icon-button.mat-button-disabled .mat-button-focus-overlay, .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay {
  background-color: initial;
}

.mat-button .mat-ripple-element, .mat-icon-button .mat-ripple-element, .mat-stroked-button .mat-ripple-element {
  opacity: 0.1;
  background-color: currentColor;
}

.mat-button-focus-overlay {
  background: #000;
}

.mat-stroked-button:not(.mat-button-disabled) {
  border-color: rgba(0, 0, 0, 0.12);
}

.mat-fab, .mat-flat-button, .mat-mini-fab, .mat-raised-button {
  color: rgba(0, 0, 0, 0.87);
  background-color: #fff;
}

.mat-fab.mat-accent, .mat-fab.mat-primary, .mat-fab.mat-warn, .mat-flat-button.mat-accent, .mat-flat-button.mat-primary, .mat-flat-button.mat-warn, .mat-mini-fab.mat-accent, .mat-mini-fab.mat-primary, .mat-mini-fab.mat-warn, .mat-raised-button.mat-accent, .mat-raised-button.mat-primary, .mat-raised-button.mat-warn {
  color: #fff;
}

.mat-fab.mat-accent.mat-button-disabled, .mat-fab.mat-button-disabled.mat-button-disabled, .mat-fab.mat-primary.mat-button-disabled, .mat-fab.mat-warn.mat-button-disabled, .mat-flat-button.mat-accent.mat-button-disabled, .mat-flat-button.mat-button-disabled.mat-button-disabled, .mat-flat-button.mat-primary.mat-button-disabled, .mat-flat-button.mat-warn.mat-button-disabled, .mat-mini-fab.mat-accent.mat-button-disabled, .mat-mini-fab.mat-button-disabled.mat-button-disabled, .mat-mini-fab.mat-primary.mat-button-disabled, .mat-mini-fab.mat-warn.mat-button-disabled, .mat-raised-button.mat-accent.mat-button-disabled, .mat-raised-button.mat-button-disabled.mat-button-disabled, .mat-raised-button.mat-primary.mat-button-disabled, .mat-raised-button.mat-warn.mat-button-disabled {
  color: rgba(0, 0, 0, 0.26);
}

.mat-fab.mat-primary, .mat-flat-button.mat-primary, .mat-mini-fab.mat-primary, .mat-raised-button.mat-primary {
  background-color: #3f51b5;
}

.mat-fab.mat-accent, .mat-flat-button.mat-accent, .mat-mini-fab.mat-accent, .mat-raised-button.mat-accent {
  background-color: #ff4081;
}

.mat-fab.mat-warn, .mat-flat-button.mat-warn, .mat-mini-fab.mat-warn, .mat-raised-button.mat-warn {
  background-color: #f44336;
}

.mat-fab.mat-accent.mat-button-disabled, .mat-fab.mat-button-disabled.mat-button-disabled, .mat-fab.mat-primary.mat-button-disabled, .mat-fab.mat-warn.mat-button-disabled, .mat-flat-button.mat-accent.mat-button-disabled, .mat-flat-button.mat-button-disabled.mat-button-disabled, .mat-flat-button.mat-primary.mat-button-disabled, .mat-flat-button.mat-warn.mat-button-disabled, .mat-mini-fab.mat-accent.mat-button-disabled, .mat-mini-fab.mat-button-disabled.mat-button-disabled, .mat-mini-fab.mat-primary.mat-button-disabled, .mat-mini-fab.mat-warn.mat-button-disabled, .mat-raised-button.mat-accent.mat-button-disabled, .mat-raised-button.mat-button-disabled.mat-button-disabled, .mat-raised-button.mat-primary.mat-button-disabled, .mat-raised-button.mat-warn.mat-button-disabled {
  background-color: rgba(0, 0, 0, 0.12);
}

.mat-fab.mat-accent .mat-ripple-element, .mat-fab.mat-primary .mat-ripple-element, .mat-fab.mat-warn .mat-ripple-element, .mat-flat-button.mat-accent .mat-ripple-element, .mat-flat-button.mat-primary .mat-ripple-element, .mat-flat-button.mat-warn .mat-ripple-element, .mat-mini-fab.mat-accent .mat-ripple-element, .mat-mini-fab.mat-primary .mat-ripple-element, .mat-mini-fab.mat-warn .mat-ripple-element, .mat-raised-button.mat-accent .mat-ripple-element, .mat-raised-button.mat-primary .mat-ripple-element, .mat-raised-button.mat-warn .mat-ripple-element {
  background-color: hsla(0, 0%, 100%, 0.1);
}

.mat-flat-button:not([class*=mat-elevation-z]), .mat-stroked-button:not([class*=mat-elevation-z]) {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.12);
}

.mat-raised-button:not([class*=mat-elevation-z]) {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]) {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]) {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.12);
}

.mat-fab:not([class*=mat-elevation-z]), .mat-mini-fab:not([class*=mat-elevation-z]) {
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}

.mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]), .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]) {
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 12px 17px 2px rgba(0, 0, 0, 0.14), 0 5px 22px 4px rgba(0, 0, 0, 0.12);
}

.mat-fab.mat-button-disabled:not([class*=mat-elevation-z]), .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]) {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.12);
}

.mat-button-toggle-group, .mat-button-toggle-standalone {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.mat-button-toggle-group-appearance-standard, .mat-button-toggle-standalone.mat-button-toggle-appearance-standard {
  box-shadow: none;
}

.mat-button-toggle {
  color: rgba(0, 0, 0, 0.38);
}

.mat-button-toggle .mat-button-toggle-focus-overlay {
  background-color: rgba(0, 0, 0, 0.12);
}

.mat-button-toggle-appearance-standard {
  color: rgba(0, 0, 0, 0.87);
  background: #fff;
}

.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {
  background-color: #000;
}

.mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

[dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: none;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.mat-button-toggle-checked {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.54);
}

.mat-button-toggle-checked.mat-button-toggle-appearance-standard {
  color: rgba(0, 0, 0, 0.87);
}

.mat-button-toggle-disabled {
  color: rgba(0, 0, 0, 0.26);
  background-color: #eee;
}

.mat-button-toggle-disabled.mat-button-toggle-appearance-standard {
  background: #fff;
}

.mat-button-toggle-disabled.mat-button-toggle-checked {
  background-color: #bdbdbd;
}

.mat-button-toggle-group-appearance-standard, .mat-button-toggle-standalone.mat-button-toggle-appearance-standard {
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
  line-height: 48px;
}

.mat-card {
  background: #fff;
  color: rgba(0, 0, 0, 0.87);
}

.mat-card:not([class*=mat-elevation-z]) {
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
}

.mat-card.mat-card-flat:not([class*=mat-elevation-z]) {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.12);
}

.mat-card-subtitle {
  color: rgba(0, 0, 0, 0.54);
}

.mat-checkbox-frame {
  border-color: rgba(0, 0, 0, 0.54);
}

.mat-checkbox-checkmark {
  fill: #fafafa;
}

.mat-checkbox-checkmark-path {
  stroke: #fafafa !important;
}

.mat-checkbox-mixedmark {
  background-color: #fafafa;
}

.mat-checkbox-checked.mat-primary .mat-checkbox-background, .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background {
  background-color: #3f51b5;
}

.mat-checkbox-checked.mat-accent .mat-checkbox-background, .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background {
  background-color: #ff4081;
}

.mat-checkbox-checked.mat-warn .mat-checkbox-background, .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background {
  background-color: #f44336;
}

.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {
  background-color: #b0b0b0;
}

.mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {
  border-color: #b0b0b0;
}

.mat-checkbox-disabled .mat-checkbox-label {
  color: rgba(0, 0, 0, 0.54);
}

.mat-checkbox .mat-ripple-element {
  background-color: #000;
}

.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element, .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {
  background: #3f51b5;
}

.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element, .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
  background: #ff4081;
}

.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element, .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {
  background: #f44336;
}

.mat-chip.mat-standard-chip {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.87);
}

.mat-chip.mat-standard-chip .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: 0.4;
}

.mat-chip.mat-standard-chip:not(.mat-chip-disabled):active {
  box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
}

.mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover {
  opacity: 0.54;
}

.mat-chip.mat-standard-chip.mat-chip-disabled {
  opacity: 0.4;
}

.mat-chip.mat-standard-chip:after {
  background: #000;
}

.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {
  background-color: #3f51b5;
  color: #fff;
}

.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {
  color: #fff;
  opacity: 0.4;
}

.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {
  background-color: hsla(0, 0%, 100%, 0.1);
}

.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {
  background-color: #f44336;
  color: #fff;
}

.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {
  color: #fff;
  opacity: 0.4;
}

.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {
  background-color: hsla(0, 0%, 100%, 0.1);
}

.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {
  background-color: #ff4081;
  color: #fff;
}

.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {
  color: #fff;
  opacity: 0.4;
}

.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {
  background-color: hsla(0, 0%, 100%, 0.1);
}

.mat-table {
  background: #fff;
}

.mat-table-sticky, .mat-table tbody, .mat-table tfoot, .mat-table thead, [mat-footer-row], [mat-header-row], [mat-row], mat-footer-row, mat-header-row, mat-row {
  background: inherit;
}

mat-footer-row, mat-header-row, mat-row, td.mat-cell, td.mat-footer-cell, th.mat-header-cell {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.mat-header-cell {
  color: rgba(0, 0, 0, 0.54);
}

.mat-cell, .mat-footer-cell {
  color: rgba(0, 0, 0, 0.87);
}

.mat-calendar-arrow {
  border-top-color: rgba(0, 0, 0, 0.54);
}

.mat-datepicker-content .mat-calendar-next-button, .mat-datepicker-content .mat-calendar-previous-button, .mat-datepicker-toggle {
  color: rgba(0, 0, 0, 0.54);
}

.mat-calendar-table-header {
  color: rgba(0, 0, 0, 0.38);
}

.mat-calendar-table-header-divider:after {
  background: rgba(0, 0, 0, 0.12);
}

.mat-calendar-body-label {
  color: rgba(0, 0, 0, 0.54);
}

.mat-calendar-body-cell-content, .mat-date-range-input-separator {
  color: rgba(0, 0, 0, 0.87);
  border-color: transparent;
}

.mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical), .mat-form-field-disabled .mat-date-range-input-separator {
  color: rgba(0, 0, 0, 0.38);
}

.cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical), .cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical), .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  background-color: rgba(0, 0, 0, 0.04);
}

.mat-calendar-body-in-preview {
  color: rgba(0, 0, 0, 0.24);
}

.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(0, 0, 0, 0.38);
}

.mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(0, 0, 0, 0.18);
}

.mat-calendar-body-in-range:before {
  background: rgba(63, 81, 181, 0.2);
}

.mat-calendar-body-comparison-identical, .mat-calendar-body-in-comparison-range:before {
  background: rgba(249, 171, 0, 0.2);
}

.mat-calendar-body-comparison-bridge-start:before, [dir=rtl] .mat-calendar-body-comparison-bridge-end:before {
  background: linear-gradient(90deg, rgba(63, 81, 181, 0.2) 50%, rgba(249, 171, 0, 0.2) 0);
}

.mat-calendar-body-comparison-bridge-end:before, [dir=rtl] .mat-calendar-body-comparison-bridge-start:before {
  background: linear-gradient(270deg, rgba(63, 81, 181, 0.2) 50%, rgba(249, 171, 0, 0.2) 0);
}

.mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after, .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical {
  background: #a8dab5;
}

.mat-calendar-body-comparison-identical.mat-calendar-body-selected, .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}

.mat-calendar-body-selected {
  background-color: #3f51b5;
  color: #fff;
}

.mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(63, 81, 181, 0.4);
}

.mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px #fff;
}

.mat-datepicker-content {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
  color: rgba(0, 0, 0, 0.87);
}

.mat-datepicker-content.mat-accent .mat-calendar-body-in-range:before {
  background: rgba(255, 64, 129, 0.2);
}

.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical, .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range:before {
  background: rgba(249, 171, 0, 0.2);
}

.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start:before, .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end:before {
  background: linear-gradient(90deg, rgba(255, 64, 129, 0.2) 50%, rgba(249, 171, 0, 0.2) 0);
}

.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end:before, .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start:before {
  background: linear-gradient(270deg, rgba(255, 64, 129, 0.2) 50%, rgba(249, 171, 0, 0.2) 0);
}

.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after, .mat-datepicker-content.mat-accent .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical {
  background: #a8dab5;
}

.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected, .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}

.mat-datepicker-content.mat-accent .mat-calendar-body-selected {
  background-color: #ff4081;
  color: #fff;
}

.mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(255, 64, 129, 0.4);
}

.mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px #fff;
}

.mat-datepicker-content.mat-warn .mat-calendar-body-in-range:before {
  background: rgba(244, 67, 54, 0.2);
}

.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical, .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range:before {
  background: rgba(249, 171, 0, 0.2);
}

.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start:before, .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end:before {
  background: linear-gradient(90deg, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 0);
}

.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end:before, .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start:before {
  background: linear-gradient(270deg, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 0);
}

.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range:after, .mat-datepicker-content.mat-warn .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical {
  background: #a8dab5;
}

.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected, .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}

.mat-datepicker-content.mat-warn .mat-calendar-body-selected {
  background-color: #f44336;
  color: #fff;
}

.mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(244, 67, 54, 0.4);
}

.mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px #fff;
}

.mat-datepicker-content-touch {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.12);
}

.mat-datepicker-toggle-active {
  color: #3f51b5;
}

.mat-datepicker-toggle-active.mat-accent {
  color: #ff4081;
}

.mat-datepicker-toggle-active.mat-warn {
  color: #f44336;
}

.mat-date-range-input-inner[disabled] {
  color: rgba(0, 0, 0, 0.38);
}

.mat-dialog-container {
  box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12);
  background: #fff;
  color: rgba(0, 0, 0, 0.87);
}

.mat-divider {
  border-top-color: rgba(0, 0, 0, 0.12);
}

.mat-divider-vertical {
  border-right-color: rgba(0, 0, 0, 0.12);
}

.mat-expansion-panel {
  background: #fff;
  color: rgba(0, 0, 0, 0.87);
}

.mat-expansion-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.mat-action-row {
  border-top-color: rgba(0, 0, 0, 0.12);
}

.mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {
  background: rgba(0, 0, 0, 0.04);
}

@media (hover: none) {
  .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {
    background: #fff;
  }
}
.mat-expansion-panel-header-title {
  color: rgba(0, 0, 0, 0.87);
}

.mat-expansion-indicator:after, .mat-expansion-panel-header-description {
  color: rgba(0, 0, 0, 0.54);
}

.mat-expansion-panel-header[aria-disabled=true] {
  color: rgba(0, 0, 0, 0.26);
}

.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description, .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title {
  color: inherit;
}

.mat-expansion-panel-header {
  height: 48px;
}

.mat-expansion-panel-header.mat-expanded {
  height: 64px;
}

.mat-form-field-label, .mat-hint {
  color: rgba(0, 0, 0, 0.6);
}

.mat-form-field.mat-focused .mat-form-field-label {
  color: #3f51b5;
}

.mat-form-field.mat-focused .mat-form-field-label.mat-accent {
  color: #ff4081;
}

.mat-form-field.mat-focused .mat-form-field-label.mat-warn {
  color: #f44336;
}

.mat-focused .mat-form-field-required-marker {
  color: #ff4081;
}

.mat-form-field-ripple {
  background-color: rgba(0, 0, 0, 0.87);
}

.mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: #3f51b5;
}

.mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {
  background-color: #ff4081;
}

.mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {
  background-color: #f44336;
}

.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix:after {
  color: #3f51b5;
}

.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix:after {
  color: #ff4081;
}

.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after, .mat-form-field.mat-form-field-invalid .mat-form-field-label, .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent, .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {
  color: #f44336;
}

.mat-form-field.mat-form-field-invalid .mat-form-field-ripple, .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {
  background-color: #f44336;
}

.mat-error {
  color: #f44336;
}

.mat-form-field-appearance-legacy .mat-form-field-label, .mat-form-field-appearance-legacy .mat-hint {
  color: rgba(0, 0, 0, 0.54);
}

.mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42);
}

.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0, rgba(0, 0, 0, 0.42) 33%, transparent 0);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}

.mat-form-field-appearance-standard .mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42);
}

.mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0, rgba(0, 0, 0, 0.42) 33%, transparent 0);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}

.mat-form-field-appearance-fill .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.04);
}

.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.02);
}

.mat-form-field-appearance-fill .mat-form-field-underline:before {
  background-color: rgba(0, 0, 0, 0.42);
}

.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.38);
}

.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline:before {
  background-color: initial;
}

.mat-form-field-appearance-outline .mat-form-field-outline {
  color: rgba(0, 0, 0, 0.12);
}

.mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: rgba(0, 0, 0, 0.87);
}

.mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
  color: #3f51b5;
}

.mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {
  color: #ff4081;
}

.mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick, .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {
  color: #f44336;
}

.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.38);
}

.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {
  color: rgba(0, 0, 0, 0.06);
}

.mat-icon.mat-primary {
  color: #3f51b5;
}

.mat-icon.mat-accent {
  color: #ff4081;
}

.mat-icon.mat-warn {
  color: #f44336;
}

.mat-form-field-type-mat-native-select .mat-form-field-infix:after {
  color: rgba(0, 0, 0, 0.54);
}

.mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix:after, .mat-input-element:disabled {
  color: rgba(0, 0, 0, 0.38);
}

.mat-input-element {
  caret-color: #3f51b5;
}

.mat-input-element::-moz-placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.mat-input-element::placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.mat-input-element::-moz-placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.mat-input-element::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.mat-input-element:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.mat-form-field.mat-accent .mat-input-element {
  caret-color: #ff4081;
}

.mat-form-field-invalid .mat-input-element, .mat-form-field.mat-warn .mat-input-element {
  caret-color: #f44336;
}

.mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix:after {
  color: #f44336;
}

.mat-list-base .mat-list-item, .mat-list-base .mat-list-option {
  color: rgba(0, 0, 0, 0.87);
}

.mat-list-base .mat-subheader {
  color: rgba(0, 0, 0, 0.54);
}

.mat-list-item-disabled {
  background-color: #eee;
}

.mat-action-list .mat-list-item:focus, .mat-action-list .mat-list-item:hover, .mat-list-option:focus, .mat-list-option:hover, .mat-nav-list .mat-list-item:focus, .mat-nav-list .mat-list-item:hover {
  background: rgba(0, 0, 0, 0.04);
}

.mat-list-single-selected-option, .mat-list-single-selected-option:focus, .mat-list-single-selected-option:hover {
  background: rgba(0, 0, 0, 0.12);
}

.mat-menu-panel {
  background: #fff;
}

.mat-menu-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.mat-menu-item {
  background: transparent;
  color: rgba(0, 0, 0, 0.87);
}

.mat-menu-item[disabled], .mat-menu-item[disabled]:after {
  color: rgba(0, 0, 0, 0.38);
}

.mat-menu-item-submenu-trigger:after, .mat-menu-item .mat-icon-no-color {
  color: rgba(0, 0, 0, 0.54);
}

.mat-menu-item-highlighted:not([disabled]), .mat-menu-item.cdk-keyboard-focused:not([disabled]), .mat-menu-item.cdk-program-focused:not([disabled]), .mat-menu-item:hover:not([disabled]) {
  background: rgba(0, 0, 0, 0.04);
}

.mat-paginator {
  background: #fff;
}

.mat-paginator, .mat-paginator-page-size .mat-select-trigger {
  color: rgba(0, 0, 0, 0.54);
}

.mat-paginator-decrement, .mat-paginator-increment {
  border-top: 2px solid rgba(0, 0, 0, 0.54);
  border-right: 2px solid rgba(0, 0, 0, 0.54);
}

.mat-paginator-first, .mat-paginator-last {
  border-top: 2px solid rgba(0, 0, 0, 0.54);
}

.mat-icon-button[disabled] .mat-paginator-decrement, .mat-icon-button[disabled] .mat-paginator-first, .mat-icon-button[disabled] .mat-paginator-increment, .mat-icon-button[disabled] .mat-paginator-last {
  border-color: rgba(0, 0, 0, 0.38);
}

.mat-paginator-container {
  min-height: 56px;
}

.mat-progress-bar-background {
  fill: #c5cae9;
}

.mat-progress-bar-buffer {
  background-color: #c5cae9;
}

.mat-progress-bar-fill:after {
  background-color: #3f51b5;
}

.mat-progress-bar.mat-accent .mat-progress-bar-background {
  fill: #ff80ab;
}

.mat-progress-bar.mat-accent .mat-progress-bar-buffer {
  background-color: #ff80ab;
}

.mat-progress-bar.mat-accent .mat-progress-bar-fill:after {
  background-color: #ff4081;
}

.mat-progress-bar.mat-warn .mat-progress-bar-background {
  fill: #ffcdd2;
}

.mat-progress-bar.mat-warn .mat-progress-bar-buffer {
  background-color: #ffcdd2;
}

.mat-progress-bar.mat-warn .mat-progress-bar-fill:after {
  background-color: #f44336;
}

.mat-progress-spinner circle, .mat-spinner circle {
  stroke: #3f51b5;
}

.mat-progress-spinner.mat-accent circle, .mat-spinner.mat-accent circle {
  stroke: #ff4081;
}

.mat-progress-spinner.mat-warn circle, .mat-spinner.mat-warn circle {
  stroke: #f44336;
}

.mat-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.54);
}

.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
  border-color: #3f51b5;
}

.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-primary .mat-radio-inner-circle, .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {
  background-color: #3f51b5;
}

.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  border-color: #ff4081;
}

.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-accent .mat-radio-inner-circle, .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {
  background-color: #ff4081;
}

.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
  border-color: #f44336;
}

.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-warn .mat-radio-inner-circle, .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {
  background-color: #f44336;
}

.mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle, .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.38);
}

.mat-radio-button.mat-radio-disabled .mat-radio-inner-circle, .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.38);
}

.mat-radio-button.mat-radio-disabled .mat-radio-label-content {
  color: rgba(0, 0, 0, 0.38);
}

.mat-radio-button .mat-ripple-element {
  background-color: #000;
}

.mat-select-value {
  color: rgba(0, 0, 0, 0.87);
}

.mat-select-placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.mat-select-disabled .mat-select-value {
  color: rgba(0, 0, 0, 0.38);
}

.mat-select-arrow {
  color: rgba(0, 0, 0, 0.54);
}

.mat-select-panel {
  background: #fff;
}

.mat-select-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
  background: rgba(0, 0, 0, 0.12);
}

.mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: #3f51b5;
}

.mat-form-field.mat-focused.mat-accent .mat-select-arrow {
  color: #ff4081;
}

.mat-form-field.mat-focused.mat-warn .mat-select-arrow, .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {
  color: #f44336;
}

.mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: rgba(0, 0, 0, 0.38);
}

.mat-drawer-container {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}

.mat-drawer {
  color: rgba(0, 0, 0, 0.87);
}

.mat-drawer, .mat-drawer.mat-drawer-push {
  background-color: #fff;
}

.mat-drawer:not(.mat-drawer-side) {
  box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12);
}

.mat-drawer-side {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.mat-drawer-side.mat-drawer-end, [dir=rtl] .mat-drawer-side {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  border-right: none;
}

[dir=rtl] .mat-drawer-side.mat-drawer-end {
  border-left: none;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(0, 0, 0, 0.6);
}

.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
  background-color: #ff4081;
}

.mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(255, 64, 129, 0.54);
}

.mat-slide-toggle.mat-checked .mat-ripple-element {
  background-color: #ff4081;
}

.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {
  background-color: #3f51b5;
}

.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(63, 81, 181, 0.54);
}

.mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {
  background-color: #3f51b5;
}

.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {
  background-color: #f44336;
}

.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(244, 67, 54, 0.54);
}

.mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {
  background-color: #f44336;
}

.mat-slide-toggle:not(.mat-checked) .mat-ripple-element {
  background-color: #000;
}

.mat-slide-toggle-thumb {
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  background-color: #fafafa;
}

.mat-slide-toggle-bar {
  background-color: rgba(0, 0, 0, 0.38);
}

.mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}

.mat-primary .mat-slider-thumb, .mat-primary .mat-slider-thumb-label, .mat-primary .mat-slider-track-fill {
  background-color: #3f51b5;
}

.mat-primary .mat-slider-thumb-label-text {
  color: #fff;
}

.mat-primary .mat-slider-focus-ring {
  background-color: rgba(63, 81, 181, 0.2);
}

.mat-accent .mat-slider-thumb, .mat-accent .mat-slider-thumb-label, .mat-accent .mat-slider-track-fill {
  background-color: #ff4081;
}

.mat-accent .mat-slider-thumb-label-text {
  color: #fff;
}

.mat-accent .mat-slider-focus-ring {
  background-color: rgba(255, 64, 129, 0.2);
}

.mat-warn .mat-slider-thumb, .mat-warn .mat-slider-thumb-label, .mat-warn .mat-slider-track-fill {
  background-color: #f44336;
}

.mat-warn .mat-slider-thumb-label-text {
  color: #fff;
}

.mat-warn .mat-slider-focus-ring {
  background-color: rgba(244, 67, 54, 0.2);
}

.cdk-focused .mat-slider-track-background, .mat-slider:hover .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.38);
}

.mat-slider-disabled .mat-slider-thumb, .mat-slider-disabled .mat-slider-track-background, .mat-slider-disabled .mat-slider-track-fill, .mat-slider-disabled:hover .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}

.mat-slider-min-value .mat-slider-focus-ring {
  background-color: rgba(0, 0, 0, 0.12);
}

.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb, .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.87);
}

.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb, .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.26);
}

.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
  background-color: initial;
}

.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.38);
}

.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
}

.mat-slider-has-ticks .mat-slider-wrapper:after {
  border-color: rgba(0, 0, 0, 0.7);
}

.mat-slider-horizontal .mat-slider-ticks {
  background-image: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
  background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}

.mat-slider-vertical .mat-slider-ticks {
  background-image: repeating-linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}

.mat-step-header.cdk-keyboard-focused, .mat-step-header.cdk-program-focused, .mat-step-header:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

@media (hover: none) {
  .mat-step-header:hover {
    background: none;
  }
}
.mat-step-header .mat-step-label, .mat-step-header .mat-step-optional {
  color: rgba(0, 0, 0, 0.54);
}

.mat-step-header .mat-step-icon {
  background-color: rgba(0, 0, 0, 0.54);
  color: #fff;
}

.mat-step-header .mat-step-icon-selected, .mat-step-header .mat-step-icon-state-done, .mat-step-header .mat-step-icon-state-edit {
  background-color: #3f51b5;
  color: #fff;
}

.mat-step-header .mat-step-icon-state-error {
  background-color: initial;
  color: #f44336;
}

.mat-step-header .mat-step-label.mat-step-label-active {
  color: rgba(0, 0, 0, 0.87);
}

.mat-step-header .mat-step-label.mat-step-label-error {
  color: #f44336;
}

.mat-stepper-horizontal, .mat-stepper-vertical {
  background-color: #fff;
}

.mat-stepper-vertical-line:before {
  border-left-color: rgba(0, 0, 0, 0.12);
}

.mat-horizontal-stepper-header:after, .mat-horizontal-stepper-header:before, .mat-stepper-horizontal-line {
  border-top-color: rgba(0, 0, 0, 0.12);
}

.mat-horizontal-stepper-header {
  height: 72px;
}

.mat-stepper-label-position-bottom .mat-horizontal-stepper-header, .mat-vertical-stepper-header {
  padding: 24px;
}

.mat-stepper-vertical-line:before {
  top: -16px;
  bottom: -16px;
}

.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:after, .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:before, .mat-stepper-label-position-bottom .mat-stepper-horizontal-line {
  top: 36px;
}

.mat-sort-header-arrow {
  color: #757575;
}

.mat-tab-header, .mat-tab-nav-bar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.mat-tab-group-inverted-header .mat-tab-header, .mat-tab-group-inverted-header .mat-tab-nav-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: none;
}

.mat-tab-label, .mat-tab-link {
  color: rgba(0, 0, 0, 0.87);
}

.mat-tab-label.mat-tab-disabled, .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.38);
}

.mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87);
}

.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.38);
}

.mat-tab-group[class*=mat-background-] .mat-tab-header, .mat-tab-nav-bar[class*=mat-background-] {
  border-bottom: none;
  border-top: none;
}

.mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(197, 202, 233, 0.3);
}

.mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: #3f51b5;
}

.mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {
  background-color: #fff;
}

.mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 128, 171, 0.3);
}

.mat-tab-group.mat-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent .mat-ink-bar {
  background-color: #ff4081;
}

.mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {
  background-color: #fff;
}

.mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 205, 210, 0.3);
}

.mat-tab-group.mat-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn .mat-ink-bar {
  background-color: #f44336;
}

.mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {
  background-color: #fff;
}

.mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(197, 202, 233, 0.3);
}

.mat-tab-group.mat-background-primary .mat-tab-header, .mat-tab-group.mat-background-primary .mat-tab-header-pagination, .mat-tab-group.mat-background-primary .mat-tab-links, .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-primary .mat-tab-links {
  background-color: #3f51b5;
}

.mat-tab-group.mat-background-primary .mat-tab-label, .mat-tab-group.mat-background-primary .mat-tab-link, .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .mat-tab-nav-bar.mat-background-primary .mat-tab-link {
  color: #fff;
}

.mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {
  color: hsla(0, 0%, 100%, 0.4);
}

.mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {
  border-color: #fff;
}

.mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: hsla(0, 0%, 100%, 0.4);
}

.mat-tab-group.mat-background-primary .mat-ripple-element, .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {
  background-color: hsla(0, 0%, 100%, 0.12);
}

.mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 128, 171, 0.3);
}

.mat-tab-group.mat-background-accent .mat-tab-header, .mat-tab-group.mat-background-accent .mat-tab-header-pagination, .mat-tab-group.mat-background-accent .mat-tab-links, .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-accent .mat-tab-links {
  background-color: #ff4081;
}

.mat-tab-group.mat-background-accent .mat-tab-label, .mat-tab-group.mat-background-accent .mat-tab-link, .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .mat-tab-nav-bar.mat-background-accent .mat-tab-link {
  color: #fff;
}

.mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {
  color: hsla(0, 0%, 100%, 0.4);
}

.mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {
  border-color: #fff;
}

.mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: hsla(0, 0%, 100%, 0.4);
}

.mat-tab-group.mat-background-accent .mat-ripple-element, .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {
  background-color: hsla(0, 0%, 100%, 0.12);
}

.mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 205, 210, 0.3);
}

.mat-tab-group.mat-background-warn .mat-tab-header, .mat-tab-group.mat-background-warn .mat-tab-header-pagination, .mat-tab-group.mat-background-warn .mat-tab-links, .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-warn .mat-tab-links {
  background-color: #f44336;
}

.mat-tab-group.mat-background-warn .mat-tab-label, .mat-tab-group.mat-background-warn .mat-tab-link, .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .mat-tab-nav-bar.mat-background-warn .mat-tab-link {
  color: #fff;
}

.mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {
  color: hsla(0, 0%, 100%, 0.4);
}

.mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {
  border-color: #fff;
}

.mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: hsla(0, 0%, 100%, 0.4);
}

.mat-tab-group.mat-background-warn .mat-ripple-element, .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {
  background-color: hsla(0, 0%, 100%, 0.12);
}

.mat-toolbar {
  background: #f5f5f5;
  color: rgba(0, 0, 0, 0.87);
}

.mat-toolbar.mat-primary {
  background: #3f51b5;
  color: #fff;
}

.mat-toolbar.mat-accent {
  background: #ff4081;
  color: #fff;
}

.mat-toolbar.mat-warn {
  background: #f44336;
  color: #fff;
}

.mat-toolbar .mat-focused .mat-form-field-ripple, .mat-toolbar .mat-form-field-ripple, .mat-toolbar .mat-form-field-underline {
  background-color: currentColor;
}

.mat-toolbar .mat-focused .mat-form-field-label, .mat-toolbar .mat-form-field-label, .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow, .mat-toolbar .mat-select-arrow, .mat-toolbar .mat-select-value {
  color: inherit;
}

.mat-toolbar .mat-input-element {
  caret-color: currentColor;
}

.mat-toolbar-multiple-rows {
  min-height: 64px;
}

.mat-toolbar-row, .mat-toolbar-single-row {
  height: 64px;
}

@media (max-width: 599px) {
  .mat-toolbar-multiple-rows {
    min-height: 56px;
  }
  .mat-toolbar-row, .mat-toolbar-single-row {
    height: 56px;
  }
}
.mat-tooltip {
  background: rgba(97, 97, 97, 0.9);
}

.mat-tree {
  background: #fff;
}

.mat-nested-tree-node, .mat-tree-node {
  color: rgba(0, 0, 0, 0.87);
}

.mat-tree-node {
  min-height: 48px;
}

.mat-snack-bar-container {
  color: hsla(0, 0%, 100%, 0.7);
  background: #323232;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}

.mat-simple-snackbar-action {
  color: #ff4081;
}

body, html {
  height: 100%;
}

body {
  margin: 0;
  font-family: Roboto, Helvetica Neue, sans-serif;
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

body .mat-list-base .mat-list-item,
body .mat-list-base .mat-list-option {
  height: initial;
}
body .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
body .cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
body .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  background-color: rgba(219, 83, 22, 0.3);
}
body .mat-calendar-body-selected {
  background-color: #db5316;
}
body .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix:after,
body .mat-form-field.mat-form-field-invalid .mat-form-field-label,
body .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,
body .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {
  color: #db5316;
}
body .mat-form-field input {
  border: none !important;
  padding: initial !important;
  color: #db5316;
}
body .mat-form-field label {
  color: #db5316;
}
body .mat-form-field .mat-form-field-outline > div {
  border-color: #db5316;
}
body .mat-form-field .mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: #db5316;
}
body .mat-form-field.mat-focused .mat-form-field-label {
  color: #db5316;
}
body .mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: #db5316;
}
body .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb,
body .mat-slide-toggle.mat-checked .mat-ripple-element {
  background-color: green;
}
body .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(0, 128, 0, 0.5);
}
body .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,
body .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
  background: #db5316;
}
body .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,
body .mat-checkbox-checked.mat-accent .mat-checkbox-background {
  background: #db5316;
}
body .mat-tab-group.mat-primary .mat-ink-bar,
body .mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: #db5316;
}
body .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  border-color: #db5316;
}
body .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple {
  background-color: #db5316;
}
body .mat-radio-button.mat-accent .mat-radio-inner-circle {
  background-color: #db5316;
}
body .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple) {
  background-color: #db5316;
}
body .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {
  background-color: #db5316;
}
body .mat-step-header .mat-step-icon-selected,
body .mat-step-header .mat-step-icon-state-done,
body .mat-step-header .mat-step-icon-state-edit {
  background-color: #db5316;
}

.mat-tab-group.mat-primary .mat-ink-bar,
.mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: #db5316;
}

.mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: #db5316;
}

.material-icons[type=button],
.closePopup .material-icons {
  cursor: pointer;
}

.mat-datepicker-toggle [type=button]:focus,
.mat-datepicker-toggle [type=button]:hover,
.mat-datepicker-toggle [type=submit]:focus,
.mat-datepicker-toggle [type=submit]:hover,
.mat-datepicker-toggle button:focus,
.mat-datepicker-toggle button:hover {
  color: initial;
  background-color: initial;
}

.mat-datepicker-toggle-active {
  color: #db5316;
}

.mat-select-value-text {
  color: #db5316;
}

.mat-select-arrow {
  color: #db5316;
}

.mat-form-field textarea {
  border: none !important;
}

.mat-radio-group .mat-radio-button {
  margin-right: 10px;
}

app-popup-message .mat-dialog-title {
  display: flex;
  justify-content: flex-end;
}
app-popup-message .mat-dialog-title h2 {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
ul,
p {
  margin: 0;
  list-style: none;
  padding: 0;
}

h2 {
  display: block;
  width: 100%;
}

.mat-progress-spinner circle,
.mat-spinner circle {
  stroke: #db5316;
}

.toggleAide {
  position: relative;
  display: inline;
}
.toggleAide button:hover {
  color: #db5316;
}
.toggleAide .mat-icon-button {
  height: auto;
  width: auto;
  line-height: initial;
}
.toggleAide .mat-icon-button:hover {
  background-color: transparent;
}
.toggleAide .texteAide {
  position: absolute;
  width: 250px;
  color: white;
  background: #db5316;
  visibility: hidden;
  border-radius: 6px;
  box-shadow: 0px 3px 3px rgba(30, 30, 40, 0.2);
  padding: 5px 10px;
}
.toggleAide .texteAide:after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-bottom: 8px solid #db5316;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
.toggleAide:hover .texteAide {
  visibility: visible;
  top: 30px;
  left: 50%;
  margin-left: -135px;
  z-index: 999;
}
.toggleAide.popup {
  display: none;
}
@media (max-width:600px) {
  .toggleAide.toggleJB {
    display: none;
  }
  .toggleAide.popup {
    display: initial;
  }
  .toggleAide .texteAide {
    right: 0;
  }
  .toggleAide:hover .texteAide {
    width: 80vw;
    max-height: 80vh;
    height: auto;
    background-color: white;
    color: black;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    box-sizing: border-box;
    overflow: auto;
  }
  .toggleAide::after {
    display: none;
  }
}

.snackBar {
  position: fixed;
  margin: 50vh auto;
  max-width: 300px;
  transform: translateY(-50%);
  padding: 10px;
  box-sizing: border-box;
  z-index: 999999999;
  background-color: rgba(0, 0, 0, 0.9);
  color: rgb(255, 255, 255);
  text-align: center;
  text-transform: uppercase;
  top: 0;
  left: 0;
  right: 0;
}
.snackBar .material-icons {
  margin-left: 5px;
  position: absolute;
  right: 5px;
  top: 5px;
}

.mat-dialog-container app-photo-webcam .header {
  display: flex;
  justify-content: flex-end;
}
.mat-dialog-container app-scan-qrcode .header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.popUp {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(30, 30, 40, 0.6);
  z-index: 99999;
}
.popUp .containerPopup {
  width: 92%;
  max-width: 600px;
  margin: 50vh auto;
  transform: translateY(-50%);
  background-color: rgb(255, 255, 255);
  border-radius: 4px;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.popUp .containerPopup .displayFlex {
  display: flex;
  justify-content: space-between;
}
.popUp .containerPopup .displayFlex .title {
  max-width: 95%;
}
.popUp .containerPopup p {
  width: 100%;
  margin-bottom: 20px;
  font-size: 1.1em;
}
.popUp .containerPopup p + .btn {
  margin-bottom: 10px;
  width: 100%;
}
.popUp .containerPopup .btn {
  font-size: 14px;
}
.popUp .containerPopup .title {
  text-transform: uppercase;
  font-size: 21px;
  font-family: "Barlow", sans-serif;
  color: rgba(88, 104, 118, 0.87);
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: normal;
}
.popUp .containerPopup .containerBtn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
@media (max-width:600px) {
  .popUp .containerPopup .containerBtn {
    justify-content: space-around;
  }
}
.popUp .containerPopup .close {
  margin-bottom: 20px;
  cursor: pointer;
}
.popUp .containerPopup .jb-checkbox-field {
  width: 100%;
}

.backdrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(30, 30, 40, 0.5);
  z-index: 99999;
}

/*popup Calendar*/
.flatpickr-calendar {
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.6) !important;
  font-family: "Barlow", sans-serif;
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #db5316 !important;
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month {
  color: rgb(255, 255, 255);
  fill: rgb(255, 255, 255);
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month:hover svg {
  fill: rgba(255, 255, 255, 0.5);
}
.flatpickr-calendar .flatpickr-months .flatpickr-month {
  background-color: #db5316;
  color: rgb(255, 255, 255);
  fill: rgb(255, 255, 255);
}
.flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin-top: 4px;
}
.flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month .flatpickr-monthDropdown-months {
  width: auto;
  flex-grow: 1;
  color: rgb(255, 255, 255);
  border: 0;
  padding: 0 0 2px 0;
  box-sizing: border-box;
  text-transform: uppercase;
}
.flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month .numInputWrapper {
  flex-wrap: 1;
  width: auto;
  margin-right: 10px;
}
.flatpickr-calendar .flatpickr-months .flatpickr-month .cur-year {
  margin-left: 10px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.1);
  color: rgb(255, 255, 255);
}
.flatpickr-calendar .flatpickr-months .flatpickr-month .numInputWrapper span {
  width: 0;
  padding: 0;
  border: none;
}
.flatpickr-calendar .flatpickr-months .flatpickr-month .numInputWrapper:hover {
  background: rgba(0, 0, 0, 0);
}
.flatpickr-calendar .flatpickr-months .flatpickr-month .numInputWrapper span {
  opacity: 1;
}
.flatpickr-calendar .flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgb(255, 255, 255);
}
.flatpickr-calendar .flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgb(255, 255, 255);
}
.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.1);
}
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekdays {
  background-color: #db5316;
  color: rgb(255, 255, 255);
}
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekdays .flatpickr-weekdaycontainer {
  background-color: #db5316;
  color: rgb(255, 255, 255);
}
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekdays .flatpickr-weekdaycontainer .flatpickr-weekday {
  background-color: #db5316;
  color: rgb(255, 255, 255);
}
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-days .dayContainer .flatpickr-day.selected {
  background-color: #575850;
  border-color: #575850;
}
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-days .dayContainer .flatpickr-day.today {
  border-color: rgba(219, 83, 22, 0.6);
}
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-days .dayContainer .flatpickr-day.flatpickr-disabled {
  border-radius: 0;
  background-color: rgba(145, 145, 145, 0.2);
  opacity: 0.3;
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: #db5316 !important;
}

/*flatpicker GLOBAL input*/
ng2-flatpickr {
  position: relative;
}
ng2-flatpickr:before {
  margin-top: 4px;
}
ng2-flatpickr .ng2-flatpickr-input-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
ng2-flatpickr .flatpickr-input {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  height: 100%;
  width: 99%;
  padding-left: 40px;
  box-sizing: border-box;
  border: 0;
  background-color: transparent;
}
ng2-flatpickr .flatpickr-input.select {
  padding-left: 40px;
}

.mat-dialog-content > .material-icons {
  width: 100%;
  text-align: right;
  border: none;
  color: #586876;
}
.mat-dialog-content > .material-icons:hover {
  background-color: transparent;
  color: rgb(165, 0, 0);
}

.form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.containerBtn {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.containerBtn.oneBtn {
  justify-content: flex-end;
}

@keyframes loadBef {
  0% {
    width: 0%;
    transform: translateX(0);
  }
  30% {
    width: 40%;
  }
  60% {
    width: 40%;
    transform: translateX(250%);
  }
  100% {
    width: 40%;
    transform: translateX(250%);
  }
}
@keyframes loadAft {
  0% {
    width: 0%;
    transform: translateX(0);
  }
  70% {
    width: 0%;
    transform: translateX(0);
  }
  90% {
    width: 40%;
  }
  100% {
    width: 40%;
    transform: translateX(250%);
  }
}
@keyframes pulseWarning {
  0% {
    background-color: rgb(165, 0, 0);
  }
  25% {
    background-color: rgb(255, 255, 255);
  }
  50% {
    background-color: rgb(165, 0, 0);
  }
  75% {
    background-color: rgb(255, 255, 255);
  }
  100% {
    background-color: rgb(165, 0, 0);
  }
}
@keyframes pulseWarningBorder {
  0% {
    border-color: rgb(165, 0, 0);
  }
  25% {
    border-color: #db5316;
  }
  50% {
    border-color: rgb(165, 0, 0);
  }
  75% {
    border-color: #db5316;
  }
  100% {
    border-color: rgb(165, 0, 0);
  }
}
@keyframes pulseWarningBackground {
  0% {
    background-color: rgb(165, 0, 0);
  }
  25% {
    background-color: rgb(255, 255, 255);
  }
  50% {
    background-color: rgb(165, 0, 0);
  }
  75% {
    background-color: rgb(255, 255, 255);
  }
  100% {
    background-color: rgb(165, 0, 0);
  }
}
@media screen and (min-width: 1100px) {
  .containerInfos .popUp .containerPopup .btn {
    font-size: 16px !important;
  }
}
/*FIL D'ARIANE*/
app-fil-ariane {
  margin: 0 0 25px;
  width: 100%;
}
app-fil-ariane span {
  font-weight: bold;
  cursor: pointer;
  transition: all ease 200ms;
  display: inline-block;
}
app-fil-ariane span:hover {
  color: #575850;
}
app-fil-ariane span.active {
  color: #db5316;
  font-weight: bold;
}
app-fil-ariane span.separator {
  margin: 0 5px;
  font-weight: 500;
  cursor: initial;
}
app-fil-ariane span.disabled {
  opacity: 0.5;
  font-weight: 500;
  cursor: no-drop;
}
app-fil-ariane span.disabled:hover {
  color: initial;
}

.cdk-overlay-container {
  z-index: 100000 !important;
}

.infosMDP,
.containerNewMdp {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(30, 30, 40, 0.1);
  border-radius: 4px;
  padding: 10px;
  box-sizing: border-box;
}
.infosMDP .infosText,
.containerNewMdp .infosText {
  font-size: 15px;
  font-family: "Barlow", sans-serif;
  color: rgba(88, 104, 118, 0.6);
  margin-bottom: 5px;
  font-weight: bold;
}
.infosMDP .container-criteres,
.containerNewMdp .container-criteres {
  display: flex;
}
.infosMDP .container-criteres .criteres-coche,
.containerNewMdp .container-criteres .criteres-coche {
  align-self: center;
  text-align: center;
  width: 75px;
}
.infosMDP .container-criteres .criteres-coche .material-icons,
.containerNewMdp .container-criteres .criteres-coche .material-icons {
  color: #689f38;
  font-size: 4.5em;
  font-weight: bold;
}
.infosMDP .container-criteres .criteresOk,
.containerNewMdp .container-criteres .criteresOk {
  padding-left: 0.98em;
}
.infosMDP .rule,
.containerNewMdp .rule {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-family: "Barlow", sans-serif;
  color: rgba(88, 104, 118, 0.6);
  margin-bottom: 5px;
}
.infosMDP .rule i,
.containerNewMdp .rule i {
  font-size: 0.98em;
}
.infosMDP .rule.valid,
.containerNewMdp .rule.valid {
  font-size: 15px;
  font-family: "Barlow", sans-serif;
  color: rgba(88, 104, 118, 0.5);
  margin-bottom: 5px;
}
.infosMDP .rule.valid i,
.containerNewMdp .rule.valid i {
  color: green;
  font-weight: bold;
}
.infosMDP .rule.invalid i,
.containerNewMdp .rule.invalid i {
  color: rgb(165, 0, 0);
  font-weight: bold;
}

/*-----------------------*/
/*--- FIN SCSS GLOBAL ---*/
/*-----------------------*/
/*---------------------------*/
/*--- SCSS GLOBAL PANIER ELEMENT ---*/
/*---------------------------*/
body panier-element .erreurs {
  font-size: 15px;
  font-family: "Barlow", sans-serif;
  color: #a50000;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  background-color: rgba(30, 30, 40, 0.05);
  padding: 5px;
  box-sizing: border-box;
  border-radius: 4px;
  margin-top: 2px;
}
body panier-element .erreurs .material-icons {
  margin-right: 8px;
}
body panier-element .menu-panier {
  position: relative;
}
body panier-element .menu-panier .btnPanier {
  position: relative;
  width: 32px;
  cursor: pointer;
}
body panier-element .menu-panier .btnPanier i {
  font-size: 32px;
}
body panier-element .menu-panier .btnPanier .nbItemsNotif {
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  background-color: rgb(165, 0, 0);
  border-radius: 50%;
  text-align: center;
}
body panier-element .menu-panier .btnPanier .nbItemsNotif p {
  color: rgb(255, 255, 255);
  font-size: 12px;
}
body panier-element .menu-panier .popupPanier {
  position: fixed;
  z-index: 9999;
  margin-top: 4px;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgb(255, 255, 255);
  color: rgba(30, 30, 40, 0.6);
  border-radius: 4px;
  box-shadow: 0 3px 3px rgba(30, 30, 40, 0.2);
  padding: 10px 0;
  box-sizing: border-box;
  text-align: center;
}
body panier-element .menu-panier .popupPanier > p .card-empty {
  padding: 0 10px;
  margin: 0;
}
body panier-element .menu-panier .popupPanier > .btn:nth-child(1) {
  margin-bottom: 10px;
  font-size: 0.9em;
}
body panier-element .menu-panier .popupPanier app-ligne-popup {
  border-bottom: 1px dashed rgba(30, 30, 40, 0.6);
  display: block;
  padding: 5px 10px;
  box-sizing: border-box;
}
body panier-element .menu-panier .popupPanier app-ligne-popup .ligneItem {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
body panier-element .menu-panier .popupPanier app-ligne-popup .ligneItem .priceUnitItem,
body panier-element .menu-panier .popupPanier app-ligne-popup .ligneItem .nameItem {
  font-weight: bold;
}
body panier-element .menu-panier .popupPanier app-ligne-popup .ligneItem .nameItem {
  width: 100%;
  text-align: left;
}
body panier-element .menu-panier .popupPanier app-ligne-popup .ligneItem.popup {
  padding-left: 10px;
  box-sizing: border-box;
  border-left: 1px dotted rgba(30, 30, 40, 0.2);
}
body panier-element .menu-panier .popupPanier app-ligne-popup .ligneItem.popup:last-child {
  margin-bottom: 5px;
}
body panier-element .menu-panier .popupPanier app-ligne-popup:nth-child(even) {
  background-color: rgba(30, 30, 40, 0.1);
}
body panier-element .menu-panier .popupPanier .totalPanier {
  padding: 10px 10px;
  box-sizing: border-box;
  text-align: right;
  font-weight: bold;
  color: #db5316;
}
body panier-element .menu-panier .popupPanier p.infos {
  font-weight: normal;
  font-size: 12px;
  background-color: rgba(255, 165, 0, 0.4);
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
  border-radius: 5px;
}
body panier-element .containerPanier {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}
body panier-element .containerPanier .textHaut,
body panier-element .containerPanier .textBas {
  width: 100%;
  margin: 20px 0;
}
body panier-element .containerPanier .allItems {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 96%;
  margin: 0 auto;
}
body panier-element .containerPanier .allItems app-ligne-panier {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #db5316;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem,
body panier-element .containerPanier .allItems app-ligne-panier .totalPanier {
  display: flex;
  background-color: rgb(255, 255, 255);
  color: rgba(30, 30, 40, 0.6);
  padding: 10px;
  border-radius: 5px;
  border: 2px solid #db5316;
  width: 100%;
  box-sizing: border-box;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem {
  justify-content: space-between;
  padding: 0;
  position: relative;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem .Infos {
  padding: 10px;
  width: 65%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem .Infos h3,
body panier-element .containerPanier .allItems app-ligne-panier .blocItem .Infos .duree,
body panier-element .containerPanier .allItems app-ligne-panier .blocItem .Infos .date,
body panier-element .containerPanier .allItems app-ligne-panier .blocItem .Infos .categorie {
  width: 100%;
  display: block;
  line-height: 1.8em;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem .Infos .prixUnit {
  font-weight: bold;
  font-size: 2.5em;
  color: #db5316;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem .Infos .prixUnit sup {
  font-size: 18px;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem .Infos .containerQty {
  text-align: center;
  width: 27%;
  min-width: 50px;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem .Infos .containerQty .mat-form-field {
  width: 100%;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem .img {
  position: relative;
  background-color: #575850;
  border-radius: 0 4px 4px 0;
  width: 35%;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem .img img {
  width: 100%;
  padding: 0;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem.blocPa {
  padding: 10px;
  box-sizing: border-box;
  flex-wrap: wrap;
  margin-top: 10px;
  position: relative;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem.blocPa .pA {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem.blocPa .pA:not(:last-child) {
  margin-bottom: 6px;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem.blocPa .pA .name {
  flex-grow: 2;
  font-weight: bold;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem.blocPa .pA .qty,
body panier-element .containerPanier .allItems app-ligne-panier .blocItem.blocPa .pA .prixUnit,
body panier-element .containerPanier .allItems app-ligne-panier .blocItem.blocPa .pA .prixTotal {
  flex-grow: 1;
  text-align: right;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem.blocPa .pA .qty {
  font-size: 0.92em;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem.blocPa .pA .prixTotal {
  font-weight: bold;
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem.blocPa:before {
  content: "";
  height: 13px;
  width: 10px;
  background-color: #db5316;
  display: block;
  position: absolute;
  top: -14px;
  left: 0;
  margin: 0 50%;
  transform: translateX(-50%);
}
body panier-element .containerPanier .allItems app-ligne-panier .blocItem .delete {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9999;
  cursor: pointer;
}
body panier-element .containerPanier .allItems app-ligne-panier .totalPanier {
  position: relative;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #db5316;
}
body panier-element .containerPanier .allItems app-ligne-panier .totalPanier .totalUnit {
  font-size: 1.5em;
  font-weight: bold;
}
body panier-element .containerPanier .allItems app-ligne-panier .totalPanier .totalUnit sup {
  font-size: 14px;
}
body panier-element .containerPanier .allItems app-ligne-panier .totalPanier:before {
  content: "";
  height: 13px;
  width: 10px;
  background-color: #db5316;
  display: block;
  position: absolute;
  top: -14px;
  left: 0;
  margin: 0 50%;
  transform: translateX(-50%);
}
body panier-element .containerPanier .containerTotalPanier {
  font-size: 15px;
  font-family: "Barlow", sans-serif;
  color: rgba(88, 104, 118, 0.6);
  margin-bottom: 5px;
  padding: 10px;
  box-sizing: border-box;
  max-width: 250px;
  width: 100%;
  border: 2px solid #db5316;
  border-radius: 4px;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
body panier-element .containerPanier .containerTotalPanier p.infos {
  font-weight: normal;
  font-size: 12px;
  background-color: rgba(255, 165, 0, 0.4);
  padding: 10px;
  margin: 10px;
  box-sizing: border-box;
  border-radius: 5px;
}
body panier-element .containerPanier .containerTotalPanier .txtTotal {
  width: 100%;
  text-align: center;
  font-size: 17px;
  font-family: "Barlow", sans-serif;
  color: rgba(88, 104, 118, 0.7);
}
body panier-element .containerPanier .containerTotalPanier .prixTotal {
  font-size: 3em;
  font-weight: bold;
  color: #db5316;
}
body panier-element .containerPanier .containerTotalPanier > div {
  text-align: center;
}
body panier-element[mode-popup] .erreurs {
  background-color: rgba(30, 30, 40, 0.2);
  width: 200px;
  position: absolute;
  z-index: 9999;
  display: none;
}
body panier-element app-panier-regles .panier-regles {
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
}
body .popupPanierElement .mat-dialog-container {
  background-color: rgb(255, 255, 255);
  color: rgba(30, 30, 40, 0.6);
  border-radius: 4px;
  box-shadow: 0 3px 3px rgba(30, 30, 40, 0.2);
  padding: 10px 0;
  box-sizing: border-box;
  text-align: center;
  max-height: 90vh;
}
body .popupPanierElement .mat-dialog-container .popupPanier {
  width: 100%;
}
body .popupPanierElement .mat-dialog-container .popupPanier > p.card-empty {
  padding: 0 10px;
  margin: 0;
}
body .popupPanierElement .mat-dialog-container .popupPanier > .btn:nth-child(1) {
  margin-bottom: 10px;
  font-size: 0.9em;
}
body .popupPanierElement .mat-dialog-container .popupPanier app-ligne-popup {
  border-bottom: 1px dashed rgba(30, 30, 40, 0.6);
  display: block;
  padding: 5px 10px;
  box-sizing: border-box;
}
body .popupPanierElement .mat-dialog-container .popupPanier app-ligne-popup .ligneItem {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
body .popupPanierElement .mat-dialog-container .popupPanier app-ligne-popup .ligneItem .priceUnitItem,
body .popupPanierElement .mat-dialog-container .popupPanier app-ligne-popup .ligneItem .nameItem {
  font-weight: bold;
}
body .popupPanierElement .mat-dialog-container .popupPanier app-ligne-popup .ligneItem .nameItem {
  width: 100%;
  text-align: left;
}
body .popupPanierElement .mat-dialog-container .popupPanier app-ligne-popup .ligneItem.popup {
  padding-left: 10px;
  box-sizing: border-box;
  border-left: 1px dotted rgba(30, 30, 40, 0.2);
}
body .popupPanierElement .mat-dialog-container .popupPanier app-ligne-popup .ligneItem.popup:last-child {
  margin-bottom: 5px;
}
body .popupPanierElement .mat-dialog-container .popupPanier app-ligne-popup:nth-child(even) {
  background-color: rgba(30, 30, 40, 0.1);
}
body .popupPanierElement .mat-dialog-container .popupPanier .totalPanier {
  padding: 10px 10px;
  box-sizing: border-box;
  text-align: right;
  font-weight: bold;
  color: #db5316;
}
body .popupPanierElement .mat-dialog-container .popupPanier p.infos {
  font-weight: normal;
  font-size: 12px;
  background-color: rgba(255, 165, 0, 0.4);
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
  border-radius: 5px;
}
@media screen and (min-width: 600px) {
  body panier-element .menu-panier .popupPanier {
    position: absolute;
    max-width: 500px;
    width: 350px;
    z-index: 99999;
  }
  body panier-element .containerPanier .allItems app-ligne-panier {
    margin: 0 auto 20px;
  }
  body panier-element .containerPanier .allItems app-ligne-panier .blocItem {
    min-width: 300px;
    max-width: 400px;
  }
}
@media screen and (min-width: 1100px) {
  body panier-element .containerPanier .allItems {
    width: 75%;
  }
}

/*-------------------------------*/
/*--- FIN SCSS GLOBAL PANIER ELEMENT ---*/
/*-------------------------------*/
/*---------------------------*/
/*--- SCSS PANIER ELEMENT ---*/
/*---------------------------*/
body {
  /* panier forfaits-ce.altiservice.com */
}
body .popupPanierElement .mat-dialog-container {
  max-height: 70vh;
  overflow: auto;
}
body .popupPanierElement .mat-dialog-container .popupPanier p {
  margin: 0;
}
body .popupPanierElement .mat-dialog-container .popupPanier app-ligne-popup .ligneItem .categoryItem {
  flex-grow: 1;
  text-align: left;
}
body .popupPanierElement .mat-dialog-container .popupPanier app-ligne-popup .ligneItem .qtyItem {
  margin: 0 10px;
}
body .popupPanierElement .mat-dialog-container .popupPanier app-ligne-popup .ligneItem.popup .nameItem {
  text-align: left;
  width: auto;
  flex-grow: 1;
}
body .popupPanierElement .mat-dialog-container .popupPanier .clearBtn.btn--raised--primary {
  background-color: white;
  border: 1px solid #db5316;
  color: #db5316;
}
body .popupPanierElement .mat-dialog-container .popupPanier .clearBtn.btn--raised--primary:hover, body .popupPanierElement .mat-dialog-container .popupPanier .clearBtn.btn--raised--primary:focus {
  opacity: 0.9;
  background-color: white;
  color: #db5316;
}
body panier-element[mode-popup=""] .btnPanier {
  color: #003370;
  font-size: 12px;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  text-transform: initial;
  position: initial;
  top: initial;
  left: initial;
  display: flex;
  align-items: center;
  text-align: left;
  width: auto;
}
body panier-element[mode-popup=""] .btnPanier::before {
  font-family: "Material Icons";
  font-size: 2.5em;
}
body panier-element[mode-popup=""] .btnPanier span {
  font-size: 0;
}
body panier-element[mode-popup=""] .btnPanier i {
  display: none;
}
body panier-element[mode-popup=""] .btnPanier:hover {
  color: #db5316;
}
body panier-element[mode-popup=""] .btnPanier::before {
  content: "\e8cb";
}
body panier-element[mode-popup=""] .btnPanier .nbItemsNotif {
  background-color: #db5316;
  margin-left: 5px;
  position: initial;
  display: flex;
  justify-content: center;
  align-items: center;
}
body panier-element[mode-popup=""] .btnPanier .nbItemsNotif p {
  margin: 0;
  font-size: 10px;
}
body panier-element:not([mode-popup=""]) .containerPanier .title {
  font-family: "Barlow", sans-serif;
  font-size: 55px;
  font-weight: bold;
  color: #586876;
  line-height: 1em;
}
@media (max-width: 870px) {
  body panier-element:not([mode-popup=""]) .containerPanier .title {
    font-size: 45px;
  }
}
@media (max-width:600px) {
  body panier-element:not([mode-popup=""]) .containerPanier .title {
    font-size: 35px;
  }
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems,
body panier-element:not([mode-popup=""]) .containerPanier .containerTotalPanier {
  margin: 0;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems {
  width: 68%;
  min-width: 68%;
  justify-content: flex-start;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier {
  width: 100%;
  min-width: 100%;
  margin: 0;
  margin-right: 1%;
  margin-bottom: 20px;
  padding: 0;
  border: none;
  display: block;
  box-sizing: border-box;
  background-color: #e2e8ee;
  border-radius: 5px;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier {
  width: 100%;
  min-width: 100%;
  margin-right: 0;
  border-radius: 0;
  border: none;
  color: #586876;
  background-color: #e2e8ee;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem p,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem span,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem span.price,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem p.libTotalPdt,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem p.libPrice,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .retrait,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .totalLib,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier p,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier span,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier span.price,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier p.libTotalPdt,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier p.libPrice,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .retrait,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .totalLib {
  margin: 0;
  color: #586876;
  font-size: 14px;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .btn--raised--primary > span,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .btn--raised--primary > span {
  color: white;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem h3,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .subtitle,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .pdtName,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .titleLivraison,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .produit,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .nbPersonne,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier h3,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .subtitle,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .pdtName,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .titleLivraison,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .produit,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .nbPersonne {
  font-family: "Barlow", sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: #586876;
  line-height: 1em;
  margin-bottom: 10px;
}
@media (max-width:600px) {
  body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem h3,
  body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .subtitle,
  body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .pdtName,
  body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .titleLivraison,
  body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .produit,
  body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .nbPersonne,
  body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier h3,
  body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .subtitle,
  body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .pdtName,
  body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .titleLivraison,
  body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .produit,
  body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .nbPersonne {
    font-size: 18px;
  }
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .prixUnit,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .totalUnit,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .pdtPrice,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .priceTotalPdt,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .price,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .total,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .prixUnit,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .totalUnit,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .pdtPrice,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .priceTotalPdt,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .price,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier .total {
  color: #db5316;
  font-weight: 500;
  font-size: 20px;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem::before,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier::before {
  display: none;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem.blocPa, body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem.totalPanier,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier.blocPa,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier.totalPanier {
  border-top: 1px dotted #575850;
  margin-top: 0;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem.blocPa .pA .prixUnit,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .totalPanier.blocPa .pA .prixUnit {
  color: #db5316;
  font-weight: 500;
  font-size: 14px;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .subtitle {
  width: 100%;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .Infos {
  width: 100%;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .Infos .subtitle {
  order: 1;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .Infos .categorie {
  order: 2;
  font-weight: bold;
  font-size: 1.2em;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .Infos .categorie .mat-form-field .mat-form-field-wrapper {
  padding: 0;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .Infos > p {
  order: 3;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .Infos .duree,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .Infos .date,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .Infos .prixUnit,
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .Infos .containerQty {
  order: 3;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .Infos .containerQty .mat-form-field .mat-form-field-wrapper {
  padding: 0;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .Infos .prixFalse {
  order: 4;
  width: 100%;
  text-align: left;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .img {
  background-color: #db5316;
  border-radius: 0;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .img:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  /* URL LOCAL A COMMENTER */
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .blocItem .delete {
  color: #575850;
  background-color: white;
  border-radius: 0;
  padding: 5px;
  top: 0;
  right: 0;
  z-index: 8 !important;
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .containerLignePanier.canal4507 .blocItem .img {
  /* URL LOCAL A COMMENTER */
}
body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier .containerLignePanier.canal4506 .blocItem .img {
  /* URL LOCAL A COMMENTER */
}
body panier-element:not([mode-popup=""]) .containerPanier .containerTotalPanier {
  width: 30%;
  min-width: 30%;
  border-radius: 0;
  border: 1px solid #003370;
  background-color: #003370;
  color: white;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 20px;
}
body panier-element:not([mode-popup=""]) .containerPanier .containerTotalPanier p,
body panier-element:not([mode-popup=""]) .containerPanier .containerTotalPanier .txtTotal,
body panier-element:not([mode-popup=""]) .containerPanier .containerTotalPanier .prixTotal,
body panier-element:not([mode-popup=""]) .containerPanier .containerTotalPanier .priceTotal {
  color: white;
  width: 100%;
  text-align: center;
}
body panier-element:not([mode-popup=""]) .containerPanier .containerTotalPanier .prixTotal,
body panier-element:not([mode-popup=""]) .containerPanier .containerTotalPanier .priceTotal {
  margin-bottom: 20px;
  line-height: 1em;
  font-size: 30px;
}
body panier-element:not([mode-popup=""]) .containerPanier .containerTotalPanier > .btn--normal--primary {
  margin-top: 20px;
  background-color: white;
}
body panier-element:not([mode-popup=""]) .containerPanier .containerTotalPanier > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body panier-element:not([mode-popup=""]) .containerPanier .containerTotalPanier > div > .btn.btn--normal--primary {
  margin-top: 20px;
  background-color: white;
}
body panier-element:not([mode-popup=""]) .containerPanier app-panier-regles {
  width: 100%;
}
@media (max-width: 939px) {
  body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier {
    width: 98%;
    min-width: 98%;
  }
}
@media (max-width: 870px) {
  body panier-element:not([mode-popup=""]) .containerPanier .containerTotalPanier {
    padding: 20px;
  }
}
@media (max-width:600px) {
  body panier-element:not([mode-popup=""]) .containerPanier .allItems {
    width: 100%;
    min-width: 100%;
  }
  body panier-element:not([mode-popup=""]) .containerPanier .allItems app-ligne-panier {
    width: 100%;
    min-width: 100%;
  }
  body panier-element:not([mode-popup=""]) .containerPanier .containerTotalPanier {
    width: 100%;
    min-width: 100%;
  }
}
body panier-element[idmodule=forfait-ce] .containerTotalPanier .btn--normal--primary {
  display: none;
}

/*-------------------------------*/
/*--- FIN SCSS PANIER ELEMENT ---*/
/*-------------------------------*//*# sourceMappingURL=panier.css.map */