/* ------------------- police d'écriture ------------------- */
@font-face {
  font-family: "Comic";
  src: url("font/comic.ttf");
}

@font-face {
  font-family: "Comic";
  font-style: italic;
  src: url("font/comici.ttf");
}

@font-face {
  font-family: "Comic";
  font-weight: bold;
  src: url("font/comicbd.ttf");
}

@font-face {
  font-family: "Comic";
  font-style: italic;
  font-weight: bold;
  src: url("font/comicz.ttf");
}

/* ------------------- corps de la page ------------------- */
body {
  display: flex;
  flex-direction: column;
  background-color: #b8d8e8;
  font-family:
    Comic Sans MS,
    Comic;
  margin: 0;
}

/* ------------------- texte défilant au dessus du header ------------------- */
marquee {
  color: #000091;
}

/* ------------------- blocpage1 (header et sous-menu) ------------------- */
#blocpage1 {
  margin: auto;
  width: 100%;
  margin-bottom: 20px;
}

/* ------------------- début style du header ------------------- */
header {
  margin: auto;
  background-color: rgba(0, 151, 255, 0.8);
  border: 0.1px solid rgba(0, 255, 255, 0.6);
  border-left: none;
  border-right: none;
}

/* correspond au titre dans le panneau (box) */
header h1 {
  font-size: 1.6em;
  color: #fff;
  text-align: center;
  position: relative;
  margin-top: 5px;
}

/* correspond au panneau dans le header*/
.box {
  border: 4px solid white;
  width: 380px;
  height: 100px;
  margin: 6px auto;
  background-color: #0000ff;
}

/* correspond au 2 images insérées dans le panneau */
header h1::before,
header h1::after {
  content: " ";
  background: url(images/fond/camion-h1.png) no-repeat;
  height: 53px;
  width: 38px;
  position: absolute;
  top: 38px;
}

/* correspond à l'image placé à gauche dans le panneau */
header h1::before {
  left: 15px;
}

/* correspond à l'image placé à droite dans le panneau */
header h1::after {
  right: 15px;
}

/* ------------------- début style du sous-menu ------------------- */
.sousmenu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}

.sousmenu li {
  display: flex;
  justify-content: center;
  width: 123px;
  /* min-width: 110px; */
  border: 2px solid #fff;
  background-color: #0000ff;
  border-radius: 5px;
  margin: 0 5px;
}

.sousmenu .fa-solid {
  font-size: 1.5em;
  margin-right: 5px;
}

.sousmenu li a {
  font-size: 0.8em;
  font-weight: bold;
  padding: 10px;
}

/* ------------------- blocpage2 (navleft et main) ------------------- */
#blocpage2 {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ------------------- debut style du navleft ------------------- */
nav {
  padding: 5px 10px 5px 5px;
  width: 230px;
  background-color: rgba(0, 150, 255, 0.3);
  border: 0.1px solid rgba(0, 150, 255, 0.7);
  box-shadow: 0 0 12px rgba(0, 150, 255, 0.35);
  border-radius: 10px;
  margin: 0 10px;
  /* transition: width 0.3s; */
}

.retract {
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
}

.menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 2px solid #ffffff;
  border-radius: 5px;
  color: #ffffff;
  background-color: #0000ff;
  width: 165px;
  padding-left: 10px;
  margin: 0 auto 5px 0;
}

.menu .fa-solid {
  margin-right: 10px;
}

.bouton {
  border: 2px solid #ffffff;
  border-radius: 10px;
  color: #ffffff;
  background-color: #0000ff;
  padding: 5px 10px 5px 10px;
  margin: 0 0 5px auto;
  cursor: pointer;
}

.dir {
  background-image: url("images/fond/dir.svg");
  background-repeat: no-repeat;
  color: white;
  font-size: 0.8em;
  font-weight: bold;
  width: 230px;
  height: 32px;
  padding: 7px;
  margin: -7px -10px 0 -40px;
  list-style: none;
}

/* début de code pour rétractation */
#nav-toggle {
  display: none;
}

/* Icônes inversées : fermer cachée, ouvrir visible */
#nav-toggle:checked~nav label.bouton i.close {
  display: none;
}

#nav-toggle:not(:checked)~nav label.bouton i.open {
  display: none;
}

#nav-toggle:checked~nav {
  width: 40px;
  padding: 5px;
}

/* cacher menu + liens */
#nav-toggle:checked~nav .menu {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
  width: 0;
  padding: 0;
  border: none;
}

#nav-toggle:checked~nav ul {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

/* media queries pour supprimer le .bouton de .retract et rendre visible 
le nav et le .menu en cas de dépassement du @media screen*/
@media screen and (min-width: 1600px) {
  .bouton {
    display: none;
  }

  .menu {
    width: 205px !important;
    height: 36px !important;
    border: 2px solid #ffffff !important;
    background-color: #0000ff !important;
    padding-left: 10px !important;
  }

  nav {
    width: 230px !important;
    padding: 5px 10px 5px 5px !important;
  }

  /* important Outrepasse :checked */

  nav .menu,
  nav ul {
    opacity: 1 !important;
    /* Outrepasse la règle d'opacité de :checked */
    pointer-events: auto !important;
  }
}

/* ------------------- debut style du main ------------------- */
main {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-right: 10px;
  min-height: 1800px;
  background-color: rgba(69, 175, 250, 0.8);
  border: 0.1px solid rgba(0, 255, 255, 0.6);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.4);
  border-radius: 10px;
  padding: 20px 10px 5px;
  font-size: 0.9em;
  color: darkblue;
  max-width: 1500px;
}

main p,
main ul,
main h3 {
  margin-top: 0;
}

h3 {
  margin-bottom: 14.4px;
}

section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

section p {
  flex: 1 1 300px;
  /* prend l’espace restant */
  min-width: 0;
  /* TRÈS IMPORTANT pour autoriser le shrink */
  text-align: left;
}

section img {
  max-width: 100%;
}

figcaption {
  text-align: center;
}

.double {
  justify-content: space-around;
  flex-wrap: wrap;
}

.pageBreak {
  margin-bottom: 0;
}

.fontBlack {
  color: black;
}

.fontDimGray {
  color: dimgray
}

.fontRed {
  color: red;
}

.fontGreen {
  color: darkgreen;
}

.fontBlue {
  color: blue;
}

.fontDarkBlue {
  color: darkblue;
}

/* ------------------- debut style du footer ------------------- */
footer {
  width: 100%;
  margin: 0;
  text-align: center;
  font-weight: bolder;
  font-size: medium;
  color: #000091;
}

/* ------------------- differents styles diverses ------------------- */

/* style des compteurs en bas de chaque page de cours */
.compteur {
  font-size: medium;
  font-weight: normal;
  margin: 0;
  text-align: center;
  color: #ffffff;
}

/* Enlève l'effet de style sur les pages déjà visité */
a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s;
}

/* Quand le visiteur pointe sur le lien */
a:hover {
  color: #000091;
}

#enCours a {
  color: #00ffff;
}

a.liennormaux {
  color: #000091;
}

a:hover .liennormaux {
  color: #000091;
}

/* souligne un texte */
.souligne {
  text-decoration: underline;
}

/* retrait comme un blockquote */
.retrait {
  display: block;
  margin-left: 40px;
}

/* ---------- Page compte ---------- */
.stat-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-value {
  min-width: 70px;
  text-align: right;
}

/* évite l'espacement du paragraphe */
.line {
  display: inline;
  line-height: 1.8;
}

.form {
  border: 2px solid #000091;
  border-radius: 5px;
  background-color: transparent;
  color: #0000ff;
  padding: 5px;
  margin-bottom: 10px;
  margin-right: 10px;
  box-shadow: 5px 4px 3px #000091;
  outline: none;
}

.form2 {
  border: 2px solid #000091;
  border-radius: 5px;
  padding: 4px;
  cursor: pointer;
  background-color: rgb(0, 150, 255);
  font-weight: bold;
  box-shadow: 5px 4px 3px #000091;
  background: linear-gradient(deepskyblue, blue);
}

/* ------------------- page inscription ------------------- */
.inscription {
  margin-left: 30px;
}

.nonRetrait {
  margin-left: -30px;
}

.retraitRight {
  margin-right: 20px;
}

.espacement {
  display: block;
  margin-bottom: 5px;
}

.form3 {
  background-color: rgba(167, 213, 246, 0.8);
  color: #000091;
  border: none;
  border-radius: 5px;
  outline: none;
  margin-bottom: 15px;
  padding-left: 10px;
  width: 50%;
  min-width: 200px;
  height: 30px;
}

.form3.pageBreak {
  margin-bottom: 5px;
}

.form3.select-large {
  width: 100%;
}

.right {
  display: block;
  text-align: right;
  color: #000091;
}

.marginTopSept {
  margin-top: 7px;
}

.marginTop0 {
  margin-top: 0;
}

.marginTop {
  margin-top: 15px;
}

.marginDoubleTop {
  margin-top: 30px;
}

.marginTripleTop {
  margin-top: 60px;
}

/* système d'icône dans le formulaire */
.inscription .input-icon {
  position: relative;
  width: 50%;
  min-width: 200px;
}

.forgot .input-icon {
  position: relative;
  width: 50%;
  min-width: 300px;
}

.input-icon input {
  width: 100%;
  box-sizing: border-box;
  padding-left: 35px;
  padding-right: 40px;
}

fieldset .input-icon .fa-user,
fieldset .input-icon .fa-envelope,
fieldset .input-icon .fa-lock {
  position: absolute;
  top: 32px;
  left: 10px;
}

.inscription .input-icon .fa-user,
.inscription .input-icon .fa-lock,
.inscription .input-icon .fa-envelope {
  position: absolute;
  top: 7px;
  left: 10px;
}

/* icône œil */
.toggle-password {
  position: absolute;
  top: 32px;
  right: 10px;
  cursor: pointer;
}

legend {
  font-size: 1.2em;
  padding: 0 10px;
  /* espace à gauche et à droite du texte */
}

fieldset {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: solid 1px #000091;
  border-radius: 5px;
  box-shadow: 5px 4px 3px #0000ff;
  padding: 30px;
  width: 70%;
  margin: 10px auto;
}

fieldset li {
  list-style: none;
  margin-bottom: 10px;
}

.emo {
  font-size: 1.2em;
}

/* ------------------- page smileys ------------------- */
.contour {
  background-color: rgba(244, 247, 248, 0.4);
  border-radius: 5px;
  margin: 10px;
  padding-top: 15px;
}

/* ------------------- page Chatbox ------------------- */
.date {
  display: inline;
  line-height: 1.8;
  font-size: 0.8em;
  color: rgb(0, 255, 255);
}

.smiley {
  display: inline-block;
  text-align: center;
  margin: 0 5px 10px 5px;
}

/* Billet dans commentaire */
.insides {
  background-color: rgba(160, 218, 255, 0.4);
  border-radius: 5px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  margin-top: 10px;
}

.commentaire {
  padding: 5px;
  background-color: rgba(238, 247, 253, 0.4);
  min-height: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.block_titre {
  background: linear-gradient(blue, deepskyblue);
  color: white;
  height: 30px;
  border-radius: 5px 5px 0px 0px;
}

.titre_forum {
  margin-left: 10px;
  font-weight: bolder;
  font-size: medium;
}

.date_forum {
  text-align: right;
  margin-top: -22px;
  margin-right: 10px;
}

.contenu_forum {
  margin: 5px 5px 0 10px;
}

.signature {
  display: block;
  margin: 10px 5px 3px auto;
  text-align: right;
}

textarea {
  resize: vertical;
  overflow: hidden;
  width: 100%;
  min-height: 100px;
  max-height: 500px;
}

.conteneurForm {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.sujet {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
}

.travaux {
  margin-top: 40px;
  margin-bottom: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a.lien {
  border: 2px solid #000091;
  border-radius: 5px;
  padding: 4px;
  cursor: pointer;
  font-weight: bold;
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.4);
  background: linear-gradient(deepskyblue, blue);
  margin-right: 5px;
}

.sanslien {
  border: 2px solid #000091;
  border-radius: 5px;
  padding: 4px;
  font-weight: bold;
  background: linear-gradient(deepskyblue, blue);
  margin-right: 5px;
}

/* ------------------- Wysiwyg + Bbcode ------------------- */
#editor {
  width: 100%;
  resize: vertical;
  overflow: auto;
  min-height: 100px;
  max-height: 500px;
  border: 2px solid #000091;
  border-radius: 5px;
  box-shadow: 5px 4px 3px #000091;
  margin-bottom: 10px;
}

#editor a {
  color: #000091;
}

#toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
  margin-bottom: 5px;
  border: none;
}

/* Boutons Quill = anciens onglets */
#toolbar button,
#toolbar select {
  display: flex;
  align-items: center;
  width: auto;
  background-color: #a8d2f0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 6px 10px;
  margin: 2px;
  transition:
    background-color 0.15s,
    box-shadow 0.15s;
}

/* Hover */
#toolbar button:hover,
#toolbar select:hover {
  background-color: #7fbbe6;
}

/* Bouton actif (bold, italic, etc.) */
#toolbar .ql-active {
  background-color: #3f87c5;
  color: #fff;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
}

/* ------------------- icônes modifier / supprimer ------------------- */
/* Billet sur forum */
.inside {
  background-color: rgba(160, 218, 255, 0.4);
  border-radius: 5px;
  margin-bottom: 15px;
}

.commentaire {
  position: relative;
  padding-left: 10px;
  /* espace pour les icônes à gauche */
  margin-bottom: 15px;
}

.inside {
  position: relative;
  padding-left: 0;
  /* espace pour les icônes à gauche */
  margin-bottom: 15px;
}

.commentaire .line {
  margin: 0;
}

.actions-commentaire-top {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  gap: 6px;
}

.actions-commentaire-bottom {
  position: absolute;
  bottom: 2px;
  right: 2px;
}

.actions-commentaire-top button {
  border: none;
  background: none;
  cursor: pointer;
  color: blue;
  font-size: 1rem;
  padding: 0;
}

.actions-commentaire-top button:hover {
  color: darkblue;
}

.actions-billet {
  position: absolute;
  bottom: 20px;
  right: 5px;
  display: flex;
  gap: 6px;
}

/* boutons */
.actions-billet button {
  border: none;
  background: none;
  cursor: pointer;
  color: blue;
  font-size: 1rem;
  padding: 0;
}

.actions-billet button:hover {
  color: darkblue;
}

.btn-citer {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  background: blue;
  color: white;
  font-size: 0.7rem;
  padding: 3px 10px;
  text-decoration: none;
  cursor: pointer;
}

/* ------------------- Affichage pour [quote]------------------- */
.ql-editor blockquote.ql-locked-quote {
  border-left: 5px solid darkblue;
  padding-left: 5px;
  margin: 6px 0 6px 20px;
  /* verrouillé */
  pointer-events: none;
  user-select: none;
}

/* ------------------- poubelle pour supprimer les discussions------------------- */
/* Code chatbox à trier et ranger  */

.post {
  display: flex;
  margin-bottom: 20px;
  margin-right: 20px;
}

.pseudo {
  max-width: 200px;
  word-wrap: break-word;
  margin-top: -5px;
  margin-left: 10px;
  margin-right: 5px;
}

.msg {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  min-width: 0;
  flex-wrap: nowrap;
}

.msg .content {
  position: relative;
  flex: 1;
  margin-left: 25px;
  padding: 5px 15px 10px 10px;
  background-color: rgba(185, 241, 254, 0.3);
  border-radius: 8px;
  color: #0000ff;
  box-shadow: 5px 4px 3px #0000ff;
  word-break: break-word;
}

.msg .content::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  border: 16px solid transparent;
  border-right-color: rgba(185, 241, 254, 0.3);
  border-left: 0;
  border-top: 0;
  margin-left: -16px;
}

.envoiMessage {
  width: 100%;
  margin: 10px auto;
}

.envoiMessage .form3 {
  width: 85%;
  margin-right: 10px;
}

/* Bouton */
.deleteBtn {
  background: none;
  border: none;
  color: blue;
  cursor: pointer;
  font-size: 0.9em;
  white-space: nowrap;
}

.deleteBtn:hover {
  color: darkblue;
}

/* ------------------- pagination ------------------- */
/* comportement spécial UNIQUEMENT forum */
.forum-page {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.forum-page .contenu {
  flex-grow: 1;
}

.forum-page #pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 10px;
}

/* accueil / forum */
#pagination {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: end;
  margin-top: 50px;
  margin-bottom: 10px;
}

/* ------------------- bounce ------------------- */
html {
  scroll-behavior: smooth;
}

.backToUp {
  /* prend la taille qu'il reste pour que le arrow soit en flex-end*/
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 30px;
}

.arrow {
  display: flex;
  border: solid #ffffff;
  color: #ffffff;
  padding: 10px 5px;
  border-radius: 10px;
  margin: 10px;
  animation: slide 1s ease-in-out infinite;
}

.arrow:hover {
  color: #ffffff;
  border: solid #ffffff;
}

@keyframes slide {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 10px);
  }
}

#erreur,
#message {
  margin-bottom: 0;
}

/* ------------------- Toggle chatbox public / staff ------------------- */
.toggle-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}

.toggle-checkbox {
  display: none;
  /* on cache la checkbox réelle */
}

.toggle-label {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  /* <- hauteur réduite */
  background: blue;
  border-radius: 20px;
  /* <- arrondi proportionnel */
  cursor: pointer;
  transition: background 0.3s;
  margin-right: 10px;
}

.toggle-switch {
  position: absolute;
  top: 1px;
  /* <- ajusté */
  left: 1px;
  /* <- ajusté */
  width: 18px;
  /* <- légèrement plus petit */
  height: 18px;
  /* <- légèrement plus petit */
  background: white;
  border-radius: 50%;
  transition: left 0.3s;
}

.toggle-checkbox:checked+.toggle-label .toggle-switch {
  left: 23px;
  /* <- décalage pour s’adapter à la largeur */
}

.toggle-checkbox:checked+.toggle-label {
  background: blue;
}

.toggle-text {
  font-weight: bold;
  color: blue;
  transition: color 0.3s;
}

.toggle-checkbox:checked~.toggle-text {
  color: blue;
}

/* ------------------- info ------------------- */
.info {
  background-color: rgba(238, 247, 253, 0.4);
  padding: 5px;
  border-radius: 5px;
}

/* ------------------- details / summary ------------------- */
details {
  background-color: rgba(238, 247, 253, 0.4);
  padding: 5px;
  border-radius: 5px;
  color: blue;
}

summary {
  cursor: pointer;
  margin-bottom: 15px;
}

summary:hover {
  text-decoration: underline;
}

/* ------------------- Tableaux annexe fimo / fco ------------------- */
table {
  width: 100%;
  table-layout: fixed;
  margin-top: 15px;
  border-collapse: collapse;
}

table:not(.borderRadius) th {
  border: 1px solid rgba(0, 0, 145, 0.5);
}

table:not(.borderRadius) td {
  border: 1px solid rgba(0, 0, 145, 0.5);
  padding: 5px;
}

.fontBlack th {
  border: 1px solid black !important;
}

.fontBlack td {
  border: 1px solid black !important;
  padding: 5px;
}

.centre {
  text-align: center;
}

/* ----------------- borderRadius ----------------- */
.borderRadius {
  width: 100%;
  color: darkblue;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  /* effet carte Material */
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.20),
    0 12px 28px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.borderRadius td {
  padding: 8px;
  border-right: 1px solid rgba(0, 0, 145, 0.15);
  border-bottom: 1px solid rgba(0, 0, 145, 0.15);
}

.borderRadius:hover {
  background: rgba(0, 120, 255, 0.08);
}

.borderRadius {
  transition: background 0.15s ease;
}

/* ----------------- page RSE (cellule tableau) ----------------- */
.uneCellule {
  width: 12.5%;
  background-color: rgba(238, 247, 253, 0.4);
}

.deuxCellule {
  width: 25%;
  background-color: rgba(238, 247, 253, 0.4);
}

.troisCellule {
  width: 37.5%;
  background-color: rgba(238, 247, 253, 0.4);
}

.quatreCellule {
  width: 50%;
  background-color: rgba(238, 247, 253, 0.4);
}

.cinqCellule {
  width: 62.5%;
  background-color: rgba(238, 247, 253, 0.4);
}

.sixCellule {
  width: 75%;
  background-color: rgba(238, 247, 253, 0.4);
}

.septCellule {
  width: 87.5%;
  background-color: rgba(238, 247, 253, 0.4);
}

.huitCellule {
  width: 100%;
  background-color: rgba(238, 247, 253, 0.4);
}

.soixante {
  width: 60%;
  background-color: rgba(238, 247, 253, 0.4);
}

.quatreVingtCinq {
  width: 85%;
  background-color: rgba(238, 247, 253, 0.4);
}

hr {
  border: none;
  border-top: 1px solid darkblue;
  width: 80%;
}

/* ----------------- page RSE ----------------- */
.strike-red {
  text-decoration: line-through;
  text-decoration-color: red;
}

/* ----------------- page CV ----------------- */
.infoBis {
  background-color: rgba(238, 247, 253, 0.4);
  padding: 10px;
  border-radius: 5px 5px 0 0;
}

.photo {
  margin-right: 20px;
  margin-top: 10px;
  padding: 5px;
  height: 120px;
  width: auto;
  border-radius: 10%;
}

.topBanner {
  display: flex;
  justify-content: space-between;
}

.topBanner p {
  margin: 60px 0 20px 20px;
  font-size: x-large;

}

aside hr {
  width: 90%;
}

aside {
  padding: 20px 20px 0 20px;
}

.container {
  display: flex;
  padding-top: 30px;
  gap: 20px;
  border: solid 3px rgba(238, 247, 253, 0.4);
  border-radius: 0 0 5px 5px;
}

.column1 {
  width: 30%;
}

.column2 {
  width: 70%;
  margin-right: 10px;
}

.tableCv th,
.tableCv td {
  border: none !important;
}

.devWeb {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.redimension {
  display: flex;
  margin: auto;
  max-width: 80%;
  border-radius: 5px;
}

.skin {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.eurotruck {
  vertical-align: middle;
}