#app {
  position: fixed;
  top: 35px;
  left: 0;
  right: 0;
  height: 100%;
}

#menu {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 80px);
  height: 32px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #434343;
}

#menu > a {
  text-decoration: none;
}

body {
  background-color: #363636;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}

#menu-lang-container {
  position: fixed;
  right: 0;
  top: 0;
  height: 35px;
  width: 80px;
  background-color: #333333;
  color: #3cc8ff;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

#message-intro-container {
  padding: 10% 23%;
}

.menu-link {
  color: #62aed1;
  font-size: large;
  font-family: Arial Black, Arial Bold, sans-serif;
  font-weight: bolder;
  padding: 2px 15px;
}

.hoverable-transparent:hover {
  background-color: transparent;
  border-bottom: solid 1px aqua;
}

#menu-language-en:hover, #menu-language-fr:hover, .contact-item-link:hover, .menu-link:hover, .calculator-number-representation:hover {
  background-color: #4f4f4f;
  border-bottom: solid 1px aqua !important;
}

.bio-link:hover {
  background-color: #4f4f4f;
  border-bottom: solid 1px white !important;
}

.folio-item-title:hover, span.resume-text:hover {
  border-bottom: solid 1px white !important;
}

.portfolio-label:hover {
  border-bottom: solid 2px white !important;
}

.hoverable {
  cursor: pointer;
  border-bottom: solid 1px transparent;
}

.menu-lang {
  padding: 3px;
  cursor: pointer;
  font-family: Arial Black, Arial Bold, sans-serif;
  font-weight: bolder;
  font-size: 15px;
}

.resume-sections {
  color: #778ca3;
  text-align: center;
  font-family: Arial Black, Arial Bold, sans-serif;
  font-weight: bolder;
}

.resume-date {
  color: white;
  font-size: 12px;
  font-family: Arial Narrow, Arial, sans-serif;
  font-style: italic;
}

.folio-container-certification-item > .resume-date {
  font-size: inherit;
}

#intro-container {
  height: 100%;
}

#cv-container {
  padding-left: 17.5%;
  padding-right: 17.5%;
}

.second-title {
  font-family: Arial Black, Arial Bold, sans-serif;
  font-weight: bolder;
  color: #7B89AA;
}

.work-element-title-holder {
  display: flex;
  column-gap: 6px;
  align-items: center;
}

.work-element-title-container {
  display: flex;
  flex-direction: column;
  padding-bottom: 5px;
}

.resume-text {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  color: #FFFFFF;
}

.resume-title {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  color: #ccdbfd;
}

.resume-link {
  font-family: Arial Black, Arial Bold, sans-serif;
  font-weight: bolder;
  font-style: italic;
  text-decoration: none;
  color: #4db8bd;
}

.ul-cv {
  color: #68b3d9;
}

.ul-work-section {
  color: #68b3d9;
  margin: 0 0 10px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.ul-work-title {
  color: #7B89AA;
  list-style: none;
  margin: 0;
  padding-top: 0;
  padding-bottom: 3px;
  padding-right: 0;
}

.contact-item-icon-mode {
  display: grid;
  grid-row-gap: 5px;
  justify-items: center;
  color: #62aed1;
  cursor: pointer;
  text-decoration: none;
  padding: 15px;
}

.contact-item-link {
  font-family: Arial Black, Arial Bold, sans-serif;
  font-weight: bold;
}

.contact-item {
  color: #62aed1;
  cursor: pointer;
  text-decoration: none;
  padding: 6px;
  font-size: larger;
}

#grid-picture-section > a {
  font-size: large;
}

#grid-picture-section-full-menu {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.bio-link {
  text-decoration: none;
  color: #eeeeee;
}

#bio-container-full {
  font-family: Arial Narrow, Arial, sans-serif;
  min-width: 175px;
  text-align: center;
}

#grid-container {
  display: grid;
  grid-gap: 3px;
  grid-template-columns: min-content;
  grid-template-rows: min-content;
  color: #434343;
  height: calc(100% - 38px);
  overflow-y: auto;
}

.full-width {
  width: 100%;
}

.twenty-percent-width {
  width: 20%;
}

#menu-img-profile {
  max-width: 150px;
  border-radius: 50%;
  border: solid grey 5px;
}

.grid-section {
  margin: 5px;
  background-color: #434343;
  color: #fff;
  border-radius: 5px;
  padding: 20px;
}

/*
 555px or less
*/
@media screen and (max-width: 555px) {
  #grid-container {
    grid-template-columns: inherit !important;
  }
  #message-intro-container {
    padding: 10% 13%;
  }
  #grid-picture-section {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
  #grid-self-presentation {
    text-align: justify;
    grid-column: 1 !important;
    grid-row: 2 !important;
    flex-direction: row !important;
  }
  #grid-picture-section-information {
    position: absolute !important;
    visibility: hidden !important;
  }
}
/*
 555px or more
*/
@media screen {
  #grid-picture-section {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    grid-column: 1;
    grid-row: 2;
  }
  #grid-self-presentation {
    flex-direction: column;
    grid-column: 2;
    grid-row: 2;
    display: flex;
    justify-content: center;
    text-align: justify;
    font-size: larger;
    font-family: Arial Black, Arial Bold, sans-serif;
    align-items: center;
  }
}
#folio-sort-label {
  max-height: 80px;
}

#div-select-label-sort {
  display: grid;
  grid-template-columns: 25% 25% 25%;
  column-gap: 10%;
  width: 100%;
  max-height: 80px;
}

@media screen and (max-width: 1358px) and (min-width: 950px) {
  #div-select-label-sort {
    display: grid;
    grid-template-columns: 25% 25%;
    column-gap: 25%;
    width: 100%;
    max-height: 80px;
  }
}
@media screen and (max-width: 950px) and (min-width: 250px) {
  #div-select-label-sort {
    display: grid;
    grid-template-columns: 25%;
    width: 100%;
    max-height: 80px;
  }
}
#folio-sort-desc {
  cursor: inherit !important;
}

/* When we show the label choices*/
.folio-sort-maximized {
  height: inherit !important;
}

.highlighted-folio-item {
  background-color: #444348;
}

.highlighted-cv-item {
  background-color: #444348;
  margin-bottom: 5px;
}

.highlighted-cv-label {
  background-color: #3c3c4d;
  font-style: italic;
  padding: 2px;
  color: #8b8799;
  border-radius: 25px;
}

.folio-sort {
  display: flex;
  justify-content: end;
  padding: 8px;
  height: 15px;
  border: solid 1px black;
  cursor: pointer;
}

.portfolio-label {
  font-family: Arial Black, Arial Bold, sans-serif;
  font-weight: bolder;
  display: flex;
  color: white;
  border: 1px solid #abc0d2;
  min-width: 90px;
  padding: 2px;
  height: 20px;
  justify-content: center;
  align-items: center;
  margin: 2px;
}

.portfolio-label-unselected {
  background-color: rgba(111, 127, 173, 0.6);
}

.portfolio-label-selected {
  background-color: #3c3c4d;
  font-style: italic;
  color: #8b8799;
}

.folio-label-flex-container {
  display: flex;
  justify-content: left;
}

.folio-container-item:nth-child(-n+3) {
  border-top: inherit;
}

.folio-container-item {
  padding: 20px;
  border-top: 1px #5e5e5e solid;
}

.label-flex {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.grid-third-container {
  display: grid;
  grid-template-columns: 33.33% 33.33% 33.33%;
}

#folio-container {
  max-height: 100%;
  overflow: auto;
  position: fixed;
  top: 35px;
  left: 0;
  right: 0;
  bottom: 0;
  padding-left: 5.5%;
  padding-right: 5.5%;
}

#folio-container-controls, #cv-container-controls {
  display: flex;
  justify-content: flex-end;
}

#folio-container-control-labels, #cv-container-control-labels {
  background-color: rgba(111, 127, 173, 0.6);
  color: white;
  font-weight: bold;
}

#folio-container-control-labels, #cv-container-control-labels-text > option {
  font-size: smaller;
}

#folio-container-control-label-container, #cv-container-control-label-container {
  display: flex;
  flex-direction: column;
  width: 35%;
}

#folio-container-control-labels-text, #cv-container-control-labels-text {
  color: white;
  font-size: smaller;
  font-style: italic;
}

#cv-container {
  position: fixed;
  top: 35px;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 100%;
  overflow: auto;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

#calculator-masking-not-checkbox {
  width: 20px;
  height: 20px;
}

#calculator-masking-operation {
  text-align: center;
  height: 25px;
}

.calculator-label-text {
  color: #7B89AA;
  font-family: Arial Black, Arial Bold, sans-serif;
  font-weight: bolder;
}

#calculator-operation-masking-inputs-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
}

.display-flex-row-items {
  display: flex;
  flex-direction: row;
}

.calculator-number-representation-line-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
}

#tool-container {
  position: fixed;
  top: 35px;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 100%;
  overflow-y: auto;
  padding-left: 12%;
  padding-right: 12%;
}

.work-element-holder {
  padding-bottom: 30px;
}

#cv-work-container {
  height: 100%;
}

.folio-container-certification-item {
  display: flex;
  flex-direction: row;
}

.folio-item-desc {
  font-family: Arial Narrow, Arial, sans-serif;
  font-style: italic;
  color: #ffffff;
}

.folio-item-title {
  font-family: Arial Black, Arial Bold, sans-serif;
  font-weight: bolder;
  text-decoration: none;
  color: rgb(230, 232, 232);
}

.unselected-tab {
  visibility: hidden;
}

.selected-tab-link {
  border-bottom: solid 2px rgba(0, 255, 255, 0.15) !important;
}

.selected-lang {
  border-bottom: solid 2px rgba(0, 255, 255, 0.15) !important;
}

.unselected-lang {
  border-bottom: solid 2px #333333 !important;
}

.selected-tab {
  visibility: visible;
}

#calculator-masking-container {
  gap: 20px;
}

.hexeditor-display-groups {
  font-family: monospace, monospace;
  font-size: 18px;
}

.hexeditor-hex-groups {
  gap: 10px;
  justify-content: space-between;
}

.calculator-number-representation {
  padding: 5px;
  color: white;
}

.calculator-number-representation-position-marker {
  color: #71a6bf;
}

#calculator-number-representation-hex,
#calculator-number-representation-dec,
#calculator-number-representation-octal,
#calculator-number-representation-bin {
  width: 100%;
  background-color: #444;
  color: white;
}

#calculator-left-masking-number,
#calculator-right-masking-number,
#calculator-masking-result {
  grid-row-start: 5;
  letter-spacing: 5px;
  background-color: #444;
  color: white;
  text-align: right;
}

input, select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#calculator-left-masking-number, #calculator-right-masking-number {
  width: 100%;
}

#calculator-masking-result {
  grid-row-start: 5;
  width: 90%;
}

#calculator-result-wrapper {
  display: flex;
  justify-content: right;
}

#calculator-masking-operation {
  background-color: #a2a2b7;
  width: 100%;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loader-loading-square {
  position: fixed;
  width: 25px;
  height: 25px;
  background: #b1afaf;
  animation-name: spin;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  clip-path: inset();
}

.loader-circle {
  position: fixed;
  width: 50px;
  height: 50px;
  background: #4d4d4d;
  clip-path: circle();
}

#loader {
  background-color: #434343;
  z-index: 1000;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hidden {
  display: none !important;
}

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

#tab-holder {
  height: 100%;
}

.hexeditor-actions {
  font-size: 45px;
  font-weight: bolder;
  cursor: pointer;
}

.hexeditor-actions:disabled {
  cursor: not-allowed !important;
}

.hexeditor-action-save {
  font-size: 20px;
}

#hexeditor-file-upload {
  color: transparent;
  width: 70px;
}

span.hexeditor-byte-character::selection, .hexeditor-selected-byte, span.hexeditor-preview-character::selection, .hexeditor-selected-byte {
  color: white;
  text-shadow: #FC0 1px 0 10px;
}

.hexeditor-byte-character:hover, .hexeditor-preview-character:hover {
  background: lightblue;
}

.hexeditor-byte-character, .hexeditor-preview-character {
  cursor: pointer;
}

.hexeditor-byte-insertion-character {
  color: #aaa7d0;
}

#hexeditor-hex-container:focus, #hexeditor-hex-container:focus-visible,
#hexeditor-hex-container > *:focus, #hexeditor-hex-container > *:focus-visible {
  caret-color: transparent;
}

.hexeditor-hex-group-input {
  font-family: monospace, monospace;
  font-size: 18px;
  text-transform: uppercase;
  outline: none;
  height: 24px;
}

#hexeditor-hex-container {
  display: grid;
  justify-items: center;
  align-content: baseline;
  height: 100%;
}

#hexeditor-hex-container.hexeditor-hex-8bits {
  width: 544px;
}

#hexeditor-hex-container.hexeditor-hex-16bits {
  width: 526px;
}

#hexeditor-hex-container.hexeditor-hex-32bits {
  width: 511px;
}

#hexeditor-hex-container.hexeditor-hex-64bits {
  width: 565px;
}

#hexeditor-hex-position-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: monospace, monospace;
  font-size: 18px;
  padding-right: 6px;
  padding-left: 6px;
}

#hexeditor-hex-position-container > span {
  height: 24px;
  padding-right: 9px;
  padding-left: 9px;
  background-color: #2d2d2d;
}

.hexeditor-hex-64bits {
  grid-template-columns: repeat(24, fit-content(50px));
}

.hexeditor-hex-32bits {
  grid-template-columns: repeat(20, fit-content(50px));
}

.hexeditor-hex-16bits {
  grid-template-columns: repeat(18, fit-content(50px));
}

.hexeditor-hex-8bits {
  grid-template-columns: repeat(16, fit-content(50px));
}

/*
    8n = 64 bits
    4n  = 32 bits
    2n  = 16 bits
    1n  = 8 bits
*/
.hexeditor-hex-64bits > span:nth-child(8n), .hexeditor-hex-32bits > span:nth-child(4n),
.hexeditor-hex-16bits > span:nth-child(2n) {
  padding-right: 15px;
}

.hexeditor-hex-8bits > span:nth-child(1n) {
  padding-right: 12px;
}
