:root {
  /*Colors*/
  --white-color: #FDFFF9;
  --black-color: #100E10;
  --white-text-color: #FDFFF9;
  --black-text-color: #100E10;
  --modal-background-color: rgba(16, 14, 16, 0.25);
  /*Entry colors*/
  --entry-border-color: #46453D;
  --entry-inactive-color: #FDFFF9;
  --entry-inactive-text-color: #3F403E;
  --entry-inactive-border-color: #A1A39E88;
  --entry-hover-color: #FFFDDD;
  --entry-unsave-color: #FFFDDD;
  --entry-focus-color: #FFF67F;
  --entry-active-text-color: #100E10;
  /*Neutral colors*/
  --neutral-light-color: #E6E8E1;
  --neutral-color: #A1A39E;
  --neutral-dark-color: #3F403E;
  /*Primary Colors*/
  --primary-purple-lighter-color:#F5ECFD;
  --primary-purple-light-color:#A155F1;
  --primary-purple-color:#450B84;
  --primary-purple-dark-color:#32085E;
  --primary-purple-darker-color:#140326;
  --primary-purple-text-color:#140326;
  /*Primary orange colors*/
  --primary-lighter-color: #FEF4EF;
  --primary-light-color: #FE8F5C;
  --primary-color: #FE5000;
  --primary-text-color: #FEF4EF;
  --primary-dark-color: #A23300;
  /*Secondary colors*/
  --secondary-color: #1264BC;
  --secondary-text-color: #E9F0F8;
  /*Selection colors*/
  --primary-select-color: #30BCED;
  --primary-select-white-color: #ECF8FD;
  --primary-select-black-color: #09232C;
  /*Success colors*/
  --success-light-color: #EAF6E8;
  --success-light-text-color: #083204;
  --success-color: #137709;
  --success-text-color: #EAF6E8;
  /*Error colors*/
  --error-light-color: #FFE9EA;
  --error-light-text-color: #083204;
  --error-color: #FF101F;
  --error-text-color: #EAF6E8;
  /*Warning colors*/
  --warning-color: #FFF67F;
  /*Infos colors*/
  --info-color: #689CD4;
  /*Shadows*/
  --primary-shadow: 0px 0px 10px rgba(16, 14, 16, 0.25), 0px 4px 4px rgba(16, 14, 16, 0.25);
  --secondary-shadow: 0px 0px 10px rgba(16, 14, 16, 0.1), 0px 2px 10px rgba(16, 14, 16, 0.15);
  --third-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  /*Spacings - padding*/
  --input-spacing: 0.75rem 1.5rem;
  --modal-spacing: 1.5rem;
  --modal-large-spacing: 1.5rem 3rem;
  --section-spacing: 1rem;
  /*Spacings - margin*/
  --label-mb-spacing: 0.5rem;
  --input-mb-spacing: 1rem;
}

.entry--success, .entry--error, .entry-search, .entry-search--fluid, .entry-search--loading, .entry-select {
  padding-right: 3rem !important;
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
}

.entry, .entry--fluid, .entry-search, .entry-search--fluid, .entry-search--loading, .entry-select {
  width: 100%;
  padding: 0.5rem 1.5rem;
  color: var(--entry-active-text-color);
  background-color: var(--entry-inactive-color);
  border: 0.125rem solid var(--entry-border-color);
  border-radius: 1rem;
  outline: none;
}

/*.entry:valid {
    @extend .entry--success;
}*/
/*.entry:invalid:focus {
    @extend .entry--error;
}*/
textarea {
  outline: none;
}

.entry::-webkit-input-placeholder, .entry--fluid::-webkit-input-placeholder, .entry-search::-webkit-input-placeholder, .entry-search--fluid::-webkit-input-placeholder, .entry-search--loading::-webkit-input-placeholder, .entry-select::-webkit-input-placeholder {
  color: var(--entry-border-color);
  opacity: 70%;
}

.entry:-ms-input-placeholder, .entry--fluid:-ms-input-placeholder, .entry-search:-ms-input-placeholder, .entry-search--fluid:-ms-input-placeholder, .entry-search--loading:-ms-input-placeholder, .entry-select:-ms-input-placeholder {
  color: var(--entry-border-color);
  opacity: 70%;
}

.entry::-ms-input-placeholder, .entry--fluid::-ms-input-placeholder, .entry-search::-ms-input-placeholder, .entry-search--fluid::-ms-input-placeholder, .entry-search--loading::-ms-input-placeholder, .entry-select::-ms-input-placeholder {
  color: var(--entry-border-color);
  opacity: 70%;
}

.entry::placeholder, .entry--fluid::placeholder, .entry-search::placeholder, .entry-search--fluid::placeholder, .entry-search--loading::placeholder, .entry-select::placeholder {
  color: var(--entry-border-color);
  opacity: 70%;
}

.entry:not(select):-moz-read-only, .entry--fluid:not(select):-moz-read-only, .entry-search:not(select):-moz-read-only, .entry-search--fluid:not(select):-moz-read-only, .entry-search--loading:not(select):-moz-read-only, .entry-select:not(select):-moz-read-only {
  pointer-events: none;
  border: none;
  padding-left: 0;
  background-color: transparent;
}

.entry:not(select):read-only, .entry--fluid:not(select):read-only, .entry-search:not(select):read-only, .entry-search--fluid:not(select):read-only, .entry-search--loading:not(select):read-only, .entry-select:not(select):read-only {
  pointer-events: none;
  border: none;
  padding-left: 0;
  background-color: transparent;
}

.entry[value=""]:disabled, .entry--fluid[value=""]:disabled, .entry-search[value=""]:disabled, .entry-search--fluid[value=""]:disabled, .entry-search--loading[value=""]:disabled, .entry-select[value=""]:disabled {
  pointer-events: none;
  color: var(--neutral-color);
  border: 0.125rem solid var(--neutral-color);
}

.entry:hover, .entry--fluid:hover, .entry-search:hover, .entry-search--fluid:hover, .entry-search--loading:hover, .entry-select:hover {
  -webkit-box-shadow: var(--third-shadow);
          box-shadow: var(--third-shadow);
  color: var(--entry-active-text-color);
  background-color: var(--entry-hover-color);
  border: 0.125rem solid var(--entry-active-text-color);
}

.entry:focus, .entry--fluid:focus, .entry-search:focus, .entry-search--fluid:focus, .entry-search--loading:focus, .entry-select:focus {
  -webkit-box-shadow: var(--secondary-shadow);
          box-shadow: var(--secondary-shadow);
  color: var(--entry-active-text-color);
  background-color: var(--entry-focus-color);
  border: 0.125rem solid var(--entry-active-text-color);
}

.entry--fluid {
  width: 100%;
}

.entry--unsave {
  color: var(--entry-active-text-color);
  background-color: var(--entry-hover-color);
  border: 0.125rem solid var(--entry-active-text-color) !important;
}

.entry--success {
  color: var(--success-color);
  border: 0.125rem solid var(--success-color) !important;
  background-color: var(--success-light-color);
  background-image: url("../images/success.svg");
}

.entry--error {
  color: var(--error-color);
  border: 0.125rem solid var(--error-color) !important;
  background-color: var(--error-light-color);
  background-image: url("../images/error.svg");
}

.entry--editable {
  background: none;
  border: 0.125rem solid transparent;
  font-family: 'Bold';
  color: var(--primary-color);
}

.entry-search, .entry-search--fluid {
  background-image: url("../images/a-icon-search.svg");
}

.entry-search::-webkit-calendar-picker-indicator, .entry-search--fluid::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.entry-search--fluid {
  width: 100%;
}

.entry-select {
  background-image: url("../images/a-icon-select.svg");
  cursor: pointer;
}

.entry-date--error {
  color: var(--error-color);
  border: 0.125rem solid var(--error-color) !important;
  background-color: var(--error-light-color);
}

.primary-btn, .primary-btn--loading, .primary-btn--add, .primary-btn--save, .primary-btn--save--black, .primary-btn-update, .primary-btn-goto, .primary-btn--print, .primary-btn-add-diagram, .primary-btn--modify, .btn--mobile, .secondary-btn, .secondary-btn--loading, .secondary-btn--save, .secondary-btn-goto, .secondary-btn--invoicing, .secondary-btn--gen-doc, .secondary-btn--reconciliation, .third-btn, .third-btn--black, .third-btn--back-to-diagrams, .third-btn--fluid, .third-btn--clean, .third-btn--print, .primary-btn--secondary-color, .secondary-btn--black {
  -webkit-box-shadow: var(--primary-shadow);
          box-shadow: var(--primary-shadow);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.75rem 2.25rem;
  position: relative;
  border-radius: 10rem;
  border: none;
  overflow: hidden;
}

.primary-btn::after, .primary-btn--loading::after, .primary-btn--add::after, .primary-btn--save::after, .primary-btn--save--black::after, .primary-btn-update::after, .primary-btn-goto::after, .primary-btn--print::after, .primary-btn-add-diagram::after, .primary-btn--modify::after, .btn--mobile::after, .secondary-btn::after, .secondary-btn--loading::after, .secondary-btn--save::after, .secondary-btn-goto::after, .secondary-btn--invoicing::after, .secondary-btn--gen-doc::after, .secondary-btn--reconciliation::after, .third-btn::after, .third-btn--black::after, .third-btn--back-to-diagrams::after, .third-btn--fluid::after, .third-btn--clean::after, .third-btn--print::after, .primary-btn--secondary-color::after, .secondary-btn--black::after {
  z-index: -1;
  content: "";
  display: block;
  position: absolute;
  height: 0;
  width: 0;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.primary-btn:disabled, .primary-btn--loading:disabled, .primary-btn--add:disabled, .primary-btn--save:disabled, .primary-btn--save--black:disabled, .primary-btn-update:disabled, .primary-btn-goto:disabled, .primary-btn--print:disabled, .primary-btn-add-diagram:disabled, .primary-btn--modify:disabled, .btn--mobile:disabled, .secondary-btn:disabled, .secondary-btn--loading:disabled, .secondary-btn--save:disabled, .secondary-btn-goto:disabled, .secondary-btn--invoicing:disabled, .secondary-btn--gen-doc:disabled, .secondary-btn--reconciliation:disabled, .third-btn:disabled, .third-btn--black:disabled, .third-btn--back-to-diagrams:disabled, .third-btn--fluid:disabled, .third-btn--clean:disabled, .third-btn--print:disabled, .primary-btn--secondary-color:disabled, .secondary-btn--black:disabled {
  -webkit-box-shadow: none;
          box-shadow: none;
  pointer-events: none;
}

.primary-btn:hover, .primary-btn--loading:hover, .primary-btn--add:hover, .primary-btn--save:hover, .primary-btn--save--black:hover, .primary-btn-update:hover, .primary-btn-goto:hover, .primary-btn--print:hover, .primary-btn-add-diagram:hover, .primary-btn--modify:hover, .btn--mobile:hover, .secondary-btn:hover, .secondary-btn--loading:hover, .secondary-btn--save:hover, .secondary-btn-goto:hover, .secondary-btn--invoicing:hover, .secondary-btn--gen-doc:hover, .secondary-btn--reconciliation:hover, .third-btn:hover, .third-btn--black:hover, .third-btn--back-to-diagrams:hover, .third-btn--fluid:hover, .third-btn--clean:hover, .third-btn--print:hover, .primary-btn--secondary-color:hover, .secondary-btn--black:hover {
  -webkit-box-shadow: var(--secondary-shadow);
          box-shadow: var(--secondary-shadow);
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

.primary-btn:active, .primary-btn--loading:active, .primary-btn--add:active, .primary-btn--save:active, .primary-btn--save--black:active, .primary-btn-update:active, .primary-btn-goto:active, .primary-btn--print:active, .primary-btn-add-diagram:active, .primary-btn--modify:active, .btn--mobile:active, .secondary-btn:active, .secondary-btn--loading:active, .secondary-btn--save:active, .secondary-btn-goto:active, .secondary-btn--invoicing:active, .secondary-btn--gen-doc:active, .secondary-btn--reconciliation:active, .third-btn:active, .third-btn--black:active, .third-btn--back-to-diagrams:active, .third-btn--fluid:active, .third-btn--clean:active, .third-btn--print:active, .primary-btn--secondary-color:active, .secondary-btn--black:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.primary-btn:active::after, .primary-btn--loading:active::after, .primary-btn--add:active::after, .primary-btn--save:active::after, .primary-btn--save--black:active::after, .primary-btn-update:active::after, .primary-btn-goto:active::after, .primary-btn--print:active::after, .primary-btn-add-diagram:active::after, .primary-btn--modify:active::after, .btn--mobile:active::after, .secondary-btn:active::after, .secondary-btn--loading:active::after, .secondary-btn--save:active::after, .secondary-btn-goto:active::after, .secondary-btn--invoicing:active::after, .secondary-btn--gen-doc:active::after, .secondary-btn--reconciliation:active::after, .third-btn:active::after, .third-btn--black:active::after, .third-btn--back-to-diagrams:active::after, .third-btn--fluid:active::after, .third-btn--clean:active::after, .third-btn--print:active::after, .primary-btn--secondary-color:active::after, .secondary-btn--black:active::after {
  padding-bottom: 100%;
  width: 100%;
  opacity: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.primary-btn, .primary-btn--loading, .primary-btn--add, .primary-btn--save, .primary-btn--save--black, .primary-btn-update, .primary-btn-goto, .primary-btn--print, .primary-btn-add-diagram, .primary-btn--modify {
  font-weight: 700;
  background-color: var(--primary-color);
  color: var(--primary-lighter-color);
}

.btn--mobile {
  display: block;
  width: 100%;
  border-radius: 1rem;
}

.btn--square {
  padding-top: 1.25rem;
  padding-left: 1.25rem;
  padding-bottom: 1.25rem;
  padding-right: 1.25rem;
  border-radius: 1rem;
}

.btn--square img {
  width: 2.5rem;
  height: 2.5rem;
}

.primary-btn::after, .primary-btn--loading::after, .primary-btn--add::after, .primary-btn--save::after, .primary-btn--save--black::after, .primary-btn-update::after, .primary-btn-goto::after, .primary-btn--print::after, .primary-btn-add-diagram::after, .primary-btn--modify::after {
  background: var(--primary-dark-color);
}

.primary-btn:disabled, .primary-btn--loading:disabled, .primary-btn--add:disabled, .primary-btn--save:disabled, .primary-btn--save--black:disabled, .primary-btn-update:disabled, .primary-btn-goto:disabled, .primary-btn--print:disabled, .primary-btn-add-diagram:disabled, .primary-btn--modify:disabled {
  background-color: var(--neutral-color);
}

.secondary-btn, .secondary-btn--loading, .secondary-btn--save, .secondary-btn-goto, .secondary-btn--invoicing, .secondary-btn--gen-doc, .secondary-btn--reconciliation {
  background-color: var(--primary-lighter-color);
  color: var(--primary-color);
  font-weight: 600;
}

.secondary-btn::after, .secondary-btn--loading::after, .secondary-btn--save::after, .secondary-btn-goto::after, .secondary-btn--invoicing::after, .secondary-btn--gen-doc::after, .secondary-btn--reconciliation::after {
  background: var(--primary-light-color);
}

.secondary-btn:active, .secondary-btn--loading:active, .secondary-btn--save:active, .secondary-btn-goto:active, .secondary-btn--invoicing:active, .secondary-btn--gen-doc:active, .secondary-btn--reconciliation:active {
  color: var(--white-text-color);
}

.secondary-btn:disabled, .secondary-btn--loading:disabled, .secondary-btn--save:disabled, .secondary-btn-goto:disabled, .secondary-btn--invoicing:disabled, .secondary-btn--gen-doc:disabled, .secondary-btn--reconciliation:disabled {
  color: var(--white-text-color);
  background-color: var(--neutral-color);
}

.third-btn, .third-btn--black, .third-btn--back-to-diagrams, .third-btn--fluid, .third-btn--clean, .third-btn--print {
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  overflow: hidden;
}

.third-btn::after, .third-btn--black::after, .third-btn--back-to-diagrams::after, .third-btn--fluid::after, .third-btn--clean::after, .third-btn--print::after {
  background-color: var(--primary-color);
}

.third-btn--black, .third-btn--back-to-diagrams {
  color: var(--black-color);
  border: 1px solid var(--black-color);
}

.third-btn--black::after, .third-btn--back-to-diagrams::after {
  background-color: var(--neutral-color);
}

.third-btn:hover, .third-btn--black:hover, .third-btn--back-to-diagrams:hover, .third-btn--fluid:hover, .third-btn--clean:hover, .third-btn--print:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.third-btn:active, .third-btn--black:active, .third-btn--back-to-diagrams:active, .third-btn--fluid:active, .third-btn--clean:active, .third-btn--print:active {
  color: var(--white-text-color);
}

.third-btn--disabled {
  color: var(--neutral-color);
  border-color: 1px solid var(--neutral-color);
}

.third-btn--fluid {
  margin-left: 0px;
  width: 100%;
}

.primary-btn--secondary-color {
  font-family: Bold;
  background-color: var(--secondary-color);
  color: var(--secondary-text-color);
}

.secondary-btn--black {
  font-family: Bold;
  color: var(--black-color);
  background-color: transparent;
}

/*Buttons with icons*/
.primary-btn--loading {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/loader-white.svg");
}

.primary-btn--add {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/a-icon-plus-white.svg");
}

.primary-btn--save {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/a-icon-save-white.svg");
}

.primary-btn--save--black {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/a-icon-save-black.svg");
  color: var(--neutral-dark-color);
}

.primary-btn-update {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/a-icon-update.svg");
}

.primary-btn-goto {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/a-icon-arrow-goto-white.svg");
}

.third-btn--back-to-diagrams {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/a-diagram-black.svg");
}

.third-btn--clean {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/icon-clean-orange.svg");
}

.third-btn--print {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/print-orange.svg");
}

.primary-btn--print {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/print-white.svg");
}

.primary-btn-add-diagram {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/a-icon-new-diagram-white.svg");
}

.secondary-btn--loading {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/loader-orange.svg");
}

.secondary-btn--save {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/a-icon-save-orange.svg");
}

.secondary-btn-goto {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/a-icon-arrow-goto-orange.svg");
}

.primary-btn--modify {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/a-icon-modification.svg");
  color: var(--inputs-yellow-text-color);
  background-color: var(--yellow-editable-color);
  border: 2px solid var(--inputs-yellow-text-color);
  -webkit-box-shadow: var(--secondary-shadow);
          box-shadow: var(--secondary-shadow);
}

.primary-btn--modify::after {
  display: none;
}

.secondary-btn--invoicing {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/invoicing-orange.svg");
}

.secondary-btn--gen-doc {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/generate-document-orange.svg");
}

.secondary-btn--reconciliation {
  padding-left: 4rem;
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-image: url("../images/reconciliation-orange.svg");
}

.square-btn {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  background-color: var(--primary-lighter-color);
  -webkit-box-shadow: var(--third-shadow);
          box-shadow: var(--third-shadow);
  cursor: pointer;
}

.link {
  color: var(--primary-light-color);
  font-weight: 600;
  text-decoration: underline;
}

.primary-link, .secondary-link, .neutral-link, .neutral-link:hover,
.neutral-link:focus,
.neutral-link:active {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  line-height: 1rem;
  -o-text-decoration-line: none;
  -webkit-text-decoration-line: none;
  -ms-text-decoration-line: none;
  text-decoration-line: none;
}

.primary-link:hover, .secondary-link:hover, .neutral-link:hover,
.primary-link:focus,
.secondary-link:focus,
.neutral-link:focus,
.primary-link:active,
.secondary-link:active,
.neutral-link:active {
  -o-text-decoration-line: underline;
  -webkit-text-decoration-line: underline;
  -ms-text-decoration-line: underline;
  text-decoration-line: underline;
  color: var(--primary-color);
}

.primary-link {
  color: var(--primary-color);
}

.secondary-link {
  color: var(--secondary-color);
}

.neutral-link {
  color: var(--white-text-color);
}

.neutral-link:hover,
.neutral-link:focus,
.neutral-link:active {
  color: var(--white-text-color);
}

/*Sample*/
/*
    <label class="check-box">
        <input id="" type="checkbox" class="check-box__input" />
        <span class="check-box__img"></span>
        <span class="check-box__text">Checkbox 1</span>
    </label>*/
.check-box, .check-box-diagram {
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /*white*/
}

.check-box .check-box__input, .check-box-diagram .check-box__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.check-box .check-box__text, .check-box-diagram .check-box__text {
  padding-left: 0.5rem;
  max-width: calc(100% - 1.5rem);
}

.check-box .check-box__img, .check-box-diagram .check-box__img {
  display: inline-block;
  height: 1.5rem;
  width: 1.5rem;
  background-image: url("../images/checkbox-empty.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
}

.check-box input[type="checkbox"] ~ .check-box__img, .check-box-diagram input[type="checkbox"] ~ .check-box__img {
  background-image: url("../images/checkbox-empty.svg");
}

.check-box input[type="checkbox"]:checked ~ .check-box__img, .check-box-diagram input[type="checkbox"]:checked ~ .check-box__img {
  background-image: url("../images/checkbox-checked.svg");
}

.check-box input[type="checkbox"]:disabled ~ .check-box__img, .check-box-diagram input[type="checkbox"]:disabled ~ .check-box__img {
  pointer-events: none;
  background-image: url("../images/checkbox-empty-disabled.svg");
}

.check-box input[type="checkbox"]:disabled:checked ~ .check-box__img, .check-box-diagram input[type="checkbox"]:disabled:checked ~ .check-box__img {
  pointer-events: none;
  background-image: url("../images/checkbox-checked-disabled.svg");
}

.check-box input[type="checkbox"] ~ .check-box__img--white, .check-box-diagram input[type="checkbox"] ~ .check-box__img--white {
  background-image: url("../images/checkbox-empty-white.svg");
}

.check-box input[type="checkbox"]:checked ~ .check-box__img--white, .check-box-diagram input[type="checkbox"]:checked ~ .check-box__img--white {
  background-image: url("../images/checkbox-checked-white.svg");
}

.check-box-diagram input[type="checkbox"]:checked ~ .check-box__img {
  background-image: url("../images/checkbox-checked-diagram.svg");
}

.check-box-diagram .check-box__img {
  width: 1.5rem;
  height: 1.5rem;
  background-size: 1.5rem;
  background-image: url("../images/checkbox-empty-diagram.svg");
}

.check-box-diagram input[type="checkbox"] ~ .check-box__img {
  background-image: url("../images/checkbox-empty.svg");
  background-image: url("../images/checkbox-empty-diagram.svg");
}

.switch[type="checkbox"] {
  position: relative;
  width: 48px;
  height: 22px;
  -webkit-appearance: none;
  background: #3F403E;
  outline: none;
  cursor: pointer;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: background 300ms linear;
  transition: background 300ms linear;
}

.switch:checked[type="checkbox"] {
  background: var(--primary-color);
}

.switch[type="checkbox"]::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  background: #A1A39E;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: left 300ms ease-in-out;
  transition: left 300ms ease-in-out;
}

.switch:checked[type="checkbox"]::before {
  left: 28px;
  background: #100E10;
}

/*Sample*/
/*
    <label class="radio">
        <input id="" type="radio" name = "" class="radio__input" />
        <span class="radio__img"></span>
        <span class="radio__text">Radio 1</span>
    </label>*/
.radio {
  margin: 0;
  margin-right: 1.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Hide the browser's default radio */
  /* Create a custom radio */
}

.radio .radio__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.radio .radio__text {
  padding-left: 0.5rem;
}

.radio .radio__img {
  display: inline-block;
  height: 1.5rem;
  width: 1.5rem;
  background-image: url("../images/radio-empty.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
}

.radio input[type="radio"] ~ .radio__img {
  background-image: url("../images/radio-empty.svg");
}

.radio input[type="radio"]:checked ~ .radio__img {
  background-image: url("../images/radio-checked.svg");
}

.radio input[type="radio"]:disabled ~ .radio__img {
  pointer-events: none;
  background-image: url("../images/radio-empty-disabled.svg");
}

.radio input[type="radio"]:disabled:checked ~ .radio__img {
  opacity: 0.3;
  pointer-events: none;
  background-image: url("../images/radio-checked-disabled.svg");
}

.radio input[type="radio"]:disabled ~ .radio__text {
  opacity: 0.3;
  pointer-events: none;
}

/*SAMPLE

<ul class="multiple-choice">
    <li>
        <label class="multiple-choice__wrapper">
            <input type="checkbox" class="multiple-choice__input"/>
            <span class="multiple-choice__text">                                        
                Lundi
            </span>
        </label>
    </li>
    <li>
        <label class="multiple-choice__wrapper">
            <input type="checkbox" class="multiple-choice__input"/>
            <span class="multiple-choice__text">
                Mardi
            </span>
        </label>
    </li>
    <li>
        <label class="multiple-choice__wrapper">
            <input type="checkbox" class="multiple-choice__input" />
            <span class="multiple-choice__text">
                Mercredi
            </span>
        </label>
    </li>
</ul>
*/
.multiple-choice {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
}

.multiple-choice li {
  display: inline-block;
}

.multiple-choice li:first-child .multiple-choice__text {
  border-radius: 1rem 0.5rem 0.5rem 1rem;
}

.multiple-choice li:last-child .multiple-choice__text {
  border-radius: 0.5rem 1rem 1rem 0.5rem;
}

.multiple-choice .multiple-choice__wrapper {
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.multiple-choice .multiple-choice__wrapper .multiple-choice__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.multiple-choice .multiple-choice__wrapper .multiple-choice__text {
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  border: 1px solid var(--black-color);
}

.multiple-choice .multiple-choice__wrapper input[type="checkbox"]:checked ~ .multiple-choice__text {
  font-weight: bold;
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 1px solid var(--primary-color);
  -webkit-box-shadow: var(--secondary-shadow);
          box-shadow: var(--secondary-shadow);
}

.multiple-choice .multiple-choice__wrapper input[type="checkbox"]:disabled ~ .multiple-choice__text {
  pointer-events: none;
}

.multiple-choice .multiple-choice__wrapper input[type="checkbox"]:disabled:checked ~ .multiple-choice__text {
  pointer-events: none;
}

.form__label {
  margin-bottom: var(--label-mb-spacing);
}

.form__input {
  margin-bottom: var(--input-mb-spacing);
}

.legend {
  font-size: 1.5rem;
  font-weight: 600;
  border: none;
}

/***********/
/*  BLOCK  */
/***********/
.alert-area {
  z-index: 10000;
  position: fixed;
  top: -12rem;
  width: 100%;
  color: white;
  pointer-events: none;
}

.alert-area *,
.alert-area {
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

/*************/
/*  ELEMENT  */
/*************/
.alert-area__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  height: 1rem;
  width: 1rem;
  pointer-events: auto;
}

.alert-area__close path {
  fill: var(--alert-text-color);
}

.alert-area__close:hover {
  cursor: pointer;
}

.alert-area__footer {
  width: 100%;
  height: auto;
}

.alert-area__footer path {
  fill: var(--alert-color);
}

.alert-area__text {
  padding: 1rem;
  margin: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: var(--alert-text-color);
  background-color: var(--alert-color);
  list-style: none;
  pointer-events: auto;
}

.alert-area__text li {
  margin-bottom: 0.5rem;
}

/**************/
/*  MODIFIER  */
/**************/
.alert-area--error {
  --alert-color: var(--error-color);
  --alert-text-color: var(--white-color);
}

.alert-area--success {
  --alert-color: var(--success-color);
  --alert-text-color: var(--white-color);
}

.alert-area--warning {
  --alert-color: var(--warning-color);
  --alert-text-color: var(--black-color);
}

.alert-area--info {
  --alert-color: var(--info-color);
  --alert-text-color: var(--black-color);
}

.h-table tbody tr:first-child td {
  padding-top: 1rem !important;
}

.h-table th {
  margin-bottom: 0.5rem;
}

.h-table th, .h-table td {
  padding: 0.5rem 1.5rem;
}

@media screen and (max-width: 460px) {
  .h-table th, .h-table td {
    padding: 0.5rem;
  }
}

.h-table .h-table__th, .h-table .h-table__left-th, .h-table .h-table__right-th {
  background-color: var(--neutral-dark-color);
  color: var(--white-color);
}

.h-table .h-table__left-th {
  border-radius: 1rem 0 0 1rem;
}

.h-table .h-table__right-th {
  border-radius: 0 1rem 1rem 0;
}

body {
  background-color: var(--white-color);
}

header {
  background-color: var(--white-color);
}

.main-view {
  min-height: 100vh;
  background-color: var(--white-color);
  /*
        Sample :
        <section class="title">
            <h1>Titre</h1>
            <ol class="title__breadcrump">
                <li>
                    <a href="">link</a>
                </li>                   
                <li>link</li>
            </ol>
        </section>
    */
  /*
        Sample:
        <div class="menu">   
            <h2 class="menu__title">Title</h2>
            <h3 class="menu__subtitle">Subtitle</h3>
            <div id="" class="menu__item">
                <label>Item</label>
            </div>       
        </div>
    */
  /*
        Sample:
        <div class="main-section">
            <div class="main-section__header">
                <!--Header-->
            </div>
            <div class="main-section__content">
                <!--Content-->
            </div>
        </div>
    */
}

.main-view .content-section, .main-view .menu, .main-view .main-section, .main-view .modal-container .modal-container__fg, .modal-container .main-view .modal-container__fg {
  color: var(--black-color);
  background: var(--white-color);
  border-radius: 1rem;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  overflow: hidden;
  margin-bottom: 3rem;
}

.main-view .title {
  width: 100%;
  overflow: hidden;
  /*
            Sample :
             <ol class="title__breadcrump">
                <li>
                    <a href="">link</a>
                </li>                   
                <li>link</li>
            </ol>
        */
}

.main-view .title h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  min-height: 4.5rem;
  margin-bottom: 1.5rem;
  font-family: Bold;
  font-size: 3rem;
  color: var(--black-text-color);
}

.main-view .title .title__breadcrump {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.main-view .title .title__breadcrump li {
  font-family: Regular;
  max-height: 2.5rem;
  margin-left: -2.5rem;
  overflow: hidden;
}

.main-view .title .title__breadcrump li a {
  border-radius: 1.25rem 0 0 1.25rem;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background-color: var(--white-color);
  cursor: pointer;
  text-decoration: none;
  display: block;
  padding: 0.45rem 3.3rem 0.45rem 1.45rem;
  height: 100%;
  width: 100%;
}

.main-view .title .title__breadcrump li:first-child {
  margin-left: 0;
}

.main-view .title .title__breadcrump li:last-child {
  font-family: Bold;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 1.25rem;
  padding: 0.5rem 1.5rem 0.5rem 1.5rem;
}

.main-view .title .title__breadcrump a {
  text-decoration: none;
  color: var(--black-color);
}

.main-view .title .title__breadcrump a:hover {
  background-color: var(--primary-light-color);
  color: var(--black-color);
}

.main-view .title .title__breadcrump .title__breadcrump--mobile {
  display: none;
}

@media all and (max-width: 500px) {
  .main-view .title .title__breadcrump li:not(:last-child):not(.title__breadcrump--mobile) {
    display: none;
  }
  .main-view .title .title__breadcrump {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 12px 0;
  }
  .main-view .title .title__breadcrump li {
    width: 100%;
    margin-left: 0;
  }
  .main-view .title .title__breadcrump li a {
    width: 100%;
    border-radius: 20px;
  }
  .main-view .title .title__breadcrump .title__breadcrump--mobile {
    display: block;
    color: var(--main-orange-color);
    border: 1px solid var(--main-orange-color);
    border-radius: 20px 0 0 20px;
    background-color: white;
    cursor: pointer;
    text-decoration: none;
    display: block;
    padding: 7px 53px 7px 23px;
    height: 100%;
    margin-left: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
  .main-view .title .title__breadcrump li:last-child {
    margin-left: -23px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
  }
  .main-view .title .title__breadcrump--mobile > img {
    height: 16px;
    width: auto;
  }
}

.main-view .menu {
  text-align: center;
  position: -webkit-sticky;
  position: sticky;
  top: 10rem;
  vertical-align: top;
  overflow: hidden;
}

.main-view .menu .menu__title {
  margin-top: 0;
}

.main-view .menu .menu__items {
  padding: 0;
  margin: 0;
}

.main-view .menu .menu__items li {
  list-style: none;
  cursor: pointer;
  text-align: left;
  margin-bottom: 0.5rem;
}

.main-view .main-section {
  vertical-align: top;
  overflow-x: auto;
}

.main-view .main-section .main-section__header h2 {
  margin-top: 0;
}

.main-view .main-section .main-section__content {
  text-align: start;
}

/*<div class="modal-container">
    <div class="modal-container__fg">
        <div class="modal-container__fg__header">
            <span class="modal-container__fg__header__title">{ title }</span>
            <span class="modal-container__fg__header__close"></span>
        </div>
        <div>
            { ... }
        </div>
    </div>
</div>*/
.modal-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  padding: 1rem;
  background-color: var(--modal-background-color);
  overflow: auto;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}

.modal-container .modal-container__fg .modal-container__fg__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
}

.modal-container .modal-container__fg .modal-container__fg__header .modal-container__fg__header__close {
  cursor: pointer;
  background-image: url("../images/a-icon-cross-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 1rem;
  width: 1rem;
  margin-left: 1.5rem;
}

.modal-container--heighter {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.modal-container--heighter .modal-container__fg {
  margin-top: 1.5rem;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf");
  font-weight: 600;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf");
  font-weight: 700;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.ttf");
  font-weight: 900;
}

html, body {
  font-family: "Montserrat";
  padding: 0;
  margin: 0;
  width: 100%;
}

html {
  font-size: 100%;
}

body {
  font-size: 1rem;
}

.title-font {
  font-size: 2rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .title-font {
    font-size: 3rem;
  }
}

.subtitle-font, .main-view .menu .menu__title, .main-view .main-section .main-section__header h2, .modal-container .modal-container__fg .modal-container__fg__header .modal-container__fg__header__title {
  font-size: 1.5rem;
  font-weight: 600;
}

.text-font {
  font-size: 1rem;
}

.legend-font {
  font-size: 0.75rem;
}

.--white-color {
  color: var(--white-text-color);
}

.--black-color {
  color: var(--black-text-color);
}

.--error-color {
  color: var(--error-color);
}

.--success-color {
  color: var(--success-color);
}

:root {
  /*size of tapBar*/
  --tapBar-icon-size:1.5rem;
  --tapBar-padding-size:1rem;
  --tapBar-font-size:0.6rem;
  /* Margin for the top of tapbar*/
  --tapBar-margin-top: 1.5rem;
}

@media screen and (max-width: 360px) {
  :root {
    --tapBar-font-size:0.55rem;
  }
}

body.body--tapBar {
  padding-bottom: calc( var(--tapBar-icon-size) + (var(--tapBar-padding-size) * 2) + var(--tapBar-font-size) + var(--tapBar-margin-top) + 1.5rem + 3.5rem);
}

.tap-bar {
  color: var(--black-color);
  background-color: var(--white-color);
  -webkit-box-shadow: var(--secondary-shadow);
          box-shadow: var(--secondary-shadow);
  z-index: 99999;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
  width: 90%;
  padding-top: var(--tapBar-padding-size);
  padding-right: 0.5rem;
  padding-bottom: var(--tapBar-padding-size);
  padding-left: 0.5rem;
  border-radius: 1rem;
  -webkit-backdrop-filter: brightness(1.3) blur(10px);
          backdrop-filter: brightness(1.3) blur(10px);
  background-blend-mode: inherit;
}

.tap-bar > div > div {
  gap: 1rem;
}

@media screen and (max-width: 360px) {
  .tap-bar {
    width: calc(100% - 24px);
    bottom: 1rem;
  }
}

.tap-bar .tap-bar__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tap-bar .tap-bar__item-image {
  height: var(--tapBar-icon-size);
  width: var(--tapBar-icon-size);
  margin-bottom: 0.5rem;
}

.tap-bar .tap-bar__item-span {
  display: block;
  font-size: var(--tapBar-font-size);
  color: var(--neutral-color);
}

.tap-bar__item--active .tap-bar__item-span {
  color: var(--black-color);
}

.body--progress-bar {
  padding-bottom: 5.5rem;
}

.progress-Bar a {
  text-decoration: none;
}

.progress-Bar__content__tab {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
  width: 0;
  text-align: center;
}

.progress-Bar__content__tab:not(:last-child) {
  margin-right: 16px;
}

.progress-Bar {
  background-color: var(--white-color);
  -webkit-box-shadow: var(--third-shadow);
          box-shadow: var(--third-shadow);
  position: fixed;
  bottom: 0;
  left: 0;
}

.progress-Bar__text {
  display: inline-block;
  font-size: 0.625rem;
  color: var(--neutral-color);
  margin-bottom: .5rem;
}

.step {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
  display: block;
  height: 1rem;
  width: 100%;
  border-radius: 0.25rem;
  background-color: var(--primary-light-color);
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.step--active {
  background-color: var(--primary-color);
}

.step--last {
  border-radius: 0.25rem 0.5rem 0.5rem 0.25rem;
}

.step--first {
  border-radius: 0.5rem 0.25rem 0.25rem 0.5rem;
}

.step--active + .progress-Bar__text {
  color: var(--black-color);
}

.tabs__container {
  background-color: var(--neutral-light-color);
}
/*# sourceMappingURL=asclepios-style.css.map */