header {
  width: 100%;
  background-color: #001524;
  height: 15svh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.navbar {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.navbar > a {
  margin-left: 1rem;
  margin-right: 5.8rem;
  width: 135px;
  height: 135px;
}
.navbar > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.navbar > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.navbar > ul > li {
  margin: 0 2.5rem;
}
.navbar > ul > li > a,
.navbar > ul > li > h2 {
  color: #FFFFFF;
  font-family: "Russo One", sans-serif;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 200;
}
.navbar > ul > li > a:hover,
.navbar > ul > li > h2:hover {
  color: #7180AC;
}

.menu-burger {
  display: none;
}

.composant {
  position: relative;
}
.composant #btn-nav {
  cursor: pointer;
}
.composant .menu-composant {
  width: 47vw;
  height: 30svh;
  position: absolute;
  top: 7svh;
  left: -100vw;
  background-color: #001524;
  border-radius: 0 0 0.5rem 0.5rem;
  transition: transform 0.3s ease;
  padding: 1rem;
}
.composant .menu-composant .list-compo {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
  gap: 1rem;
}
.composant .menu-composant .list-compo li {
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 0.5rem;
  overflow: hidden;
  border: 2px solid #7180AC;
  border-radius: 0.5rem;
  transition: transform 0.4s ease 0s;
  cursor: pointer;
  background-color: #172A37;
}
.composant .menu-composant .list-compo li:hover {
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: color;
  transform: scale(1.03);
  box-shadow: 2px 2px 6px rgba(255, 255, 255, 0.2), -2px -2px 6px rgba(255, 255, 255, 0.2);
}
.composant .menu-composant .list-compo li:hover a {
  transform: translateY(-10rem);
}
.composant .menu-composant .list-compo li a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 1rem;
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease 0s;
  top: 10rem;
}
.composant .menu-composant .list-compo li:nth-of-type(5) {
  height: 50%;
  grid-area: 1/5/3/6;
}

.connecter {
  margin: 0 3rem;
  position: relative;
}
.connecter > div {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}
.connecter > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.connecter > ul {
  position: absolute;
  top: 13svh;
  left: 50vw;
  background-color: #001524;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 0.5rem;
  border: 2px solid #7180AC;
  box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.2), -2px -2px 5px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}
.connecter > ul li:nth-of-type(2) {
  border-top: 2px solid #7180AC;
  border-bottom: 2px solid #7180AC;
}
.connecter > ul li:nth-of-type(3) {
  border-bottom: 2px solid #7180AC;
}
.connecter > ul li {
  padding: 0.5rem 1rem;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.connecter a {
  font-family: "Poppins", sans-serif;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
}
.connecter a:hover {
  color: #7180AC;
}

.btn-close-list {
  display: none;
}

.divCo {
  margin-left: 5.8rem;
}

.co {
  transform: translateX(-46.5vw);
}

.comp {
  transform: translateX(79.5vw);
}

.list-compo li:first-of-type {
  background-image: url("/img/navbar/cpu.png");
}

.list-compo li:nth-of-type(2) {
  background-image: url("/img/navbar/mb.png");
}

.list-compo li:nth-of-type(3) {
  background-image: url("/img/navbar/gpu.png");
}

.list-compo li:nth-of-type(4) {
  background-image: url("/img/navbar/ram.png");
}

.list-compo li:nth-of-type(5) {
  background-image: url("/img/navbar/storage.png");
}

.list-compo li:nth-of-type(6) {
  background-image: url("/img/navbar/psu.png");
}

.list-compo li:nth-of-type(7) {
  background-image: url("/img/navbar/cooler.png");
}

.list-compo li:nth-of-type(8) {
  background-image: url("/img/navbar/boitier.png");
}

.list-compo li:last-of-type {
  background-image: url("/img/navbar/fan.png");
}

@media only screen and (max-width: 520px) {
  .navbar {
    background-color: #001524;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    justify-content: space-evenly;
    position: relative;
  }
  .navbar > a {
    margin-left: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
  }
  .navbar > ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    height: 85svh;
    width: 100%;
    position: absolute;
    top: 15svh;
    left: 100vw;
    background-color: #001524;
    transition: transform 0.3s ease;
    z-index: 2;
  }
  .navbar > ul a {
    font-size: 1.1rem;
  }
  .composant {
    z-index: 10;
  }
  .composant .menu-composant {
    min-width: 100vw;
    min-height: 100svh;
    left: 100vw;
    top: -40svh;
  }
  .composant .menu-composant .btn-close-list {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    z-index: 2;
  }
  .composant .menu-composant .list-compo {
    width: 100%;
    height: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 0.5rem;
  }
  .composant .menu-composant .list-compo li {
    width: 125px;
    height: 125px;
  }
  .composant .menu-composant .list-compo > li:nth-of-type(5) {
    grid-area: 3/1/4/2;
    height: 125px;
    width: 125px;
  }
  .connecter {
    margin-right: 1rem;
  }
  .connecter > div {
    width: 50px;
    height: 50px;
  }
  .connecter > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .connecter ul {
    left: 100vw;
    top: 15svh;
    z-index: 50;
  }
  .menu-burger {
    border-radius: 3px;
    width: 50px;
    margin-right: 1rem;
    height: 3rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
  }
  .menu-burger div {
    margin: auto;
    border-radius: 3px;
    width: 2.7rem;
    height: 0.3rem;
    background-color: #FFFFFF;
  }
  .comp {
    transform: translateX(-137svw);
  }
  .tel-menu {
    transform: translateX(-100svw);
  }
  .co {
    transform: translateX(-100svw);
  }
  .burger-active {
    transform: rotate(90deg);
  }
  .burger-active .menu-burger {
    background-color: #172A37;
  }
  .list-compo li:nth-of-type(3) {
    grid-area: 2/1/3/2;
  }
  .list-compo li:nth-of-type(4) {
    grid-area: 2/2/3/3;
  }
  .list-compo li:nth-of-type(6) {
    grid-area: 3/2/4/3;
  }
  .list-compo li:nth-of-type(7) {
    grid-area: 4/1/5/2;
  }
  .list-compo li:nth-of-type(8) {
    grid-area: 4/2/5/3;
  }
  .list-compo li:last-of-type {
    grid-area: 5/1/6/3;
  }
}
footer {
  width: 100%;
  height: 30svh;
  background-color: #001524;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
}
footer a img {
  width: 175px;
  object-fit: cover;
}
footer a {
  text-decoration: none;
  color: #FFFFFF;
}
footer a:hover {
  color: #7180AC;
}
footer h2 {
  border-bottom: 2px solid #7180AC;
  margin-bottom: 1svh;
}
footer div {
  margin-top: 2rem;
  align-self: flex-start;
  width: auto;
  height: 15svh;
}
footer div > ul {
  gap: 0.5rem;
  padding-left: 2%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
footer div:nth-of-type(2) ul {
  display: grid;
  grid-template-columns: auto auto;
  width: 13vw;
}

@media screen and (max-width: 767px) {
  footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5rem;
    height: auto;
  }
  footer > a {
    align-self: center;
  }
  footer div {
    margin-top: 0;
    margin-left: 2rem;
    height: auto;
  }
  footer div > ul {
    padding-left: 2%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  footer div > ul li {
    width: 100%;
  }
  footer div > ul li a {
    min-width: 100%;
  }
}
.section-login {
  width: 100%;
  height: 85svh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url("/img/prebuilds/spaceship.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-register {
  width: 100%;
  height: 85svh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url("/img/prebuilds/low.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.form-log-reg div:last-of-type {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-log-reg div:last-of-type > input {
  width: 1em;
  align-self: flex-start;
}

.form-log-reg,
.section-register form {
  width: 35%;
  min-height: 75%;
  border-radius: 0.5rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  background-color: #001524;
  align-self: center;
  box-shadow: 4px 4px 7px rgba(255, 255, 255, 0.2), -4px -4px 7px rgba(255, 255, 255, 0.2);
}
.form-log-reg h1,
.form-log-reg h2,
.section-register form h1,
.section-register form h2 {
  font-size: 1.3rem;
  font-weight: 400;
}
.form-log-reg div,
.section-register form div {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form-log-reg div label,
.section-register form div label {
  font-size: 1.1rem;
  align-self: flex-start;
  padding-bottom: 0.3em;
}
.form-log-reg div input,
.section-register form div input {
  background-color: #172A37;
  border: none;
  border-radius: 7px;
  width: 100%;
  height: 2rem;
  line-height: 100%;
  font-size: 0.9rem;
}
.form-log-reg button,
.section-register form button {
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  color: #001524;
  border-radius: 7px;
  font-size: 1.1rem;
  padding: 0.5rem 1.2rem;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
  cursor: pointer;
  margin-bottom: 0.5em;
}
.form-log-reg button:hover,
.section-register form button:hover {
  background-color: #172A37;
  color: #FFFFFF;
  transform: scale(0.95);
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.8);
}
.form-log-reg h2,
.section-register form h2 {
  border-top: 2px solid #7180AC;
  width: 100%;
  text-align: center;
  padding-top: 0.5em;
}
.form-log-reg a,
.section-register form a {
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  color: #001524;
  border-radius: 7px;
  font-size: 1.1rem;
  padding: 0.5rem 1.2rem;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
  margin-bottom: 0.5em;
}
.form-log-reg a:hover,
.section-register form a:hover {
  background-color: #172A37;
  color: #FFFFFF;
  transform: scale(0.95);
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.8);
}

.main-form {
  background-color: #172A37;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-form > section {
  margin: 3rem;
  background-color: #001524;
  min-width: 30vw;
  height: auto;
  border: 2px solid #7180AC;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-form > section a:hover {
  color: #7180AC;
}
.main-form > section h1 {
  text-align: center;
  padding: 1rem;
}
.main-form > section > form {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.main-form > section > form > div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main-form > section > form > div > div {
  height: 100%;
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1.2rem;
  margin: 0.5rem;
}
.main-form > section > form > div > div input {
  background-color: #172A37;
  width: 100%;
}
.main-form > section > form > div > div label {
  align-self: flex-start;
  margin-bottom: 0.3rem;
}
.main-form div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.main-form button {
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  color: #001524;
  border-radius: 7px;
  font-size: 1.1rem;
  padding: 0.5rem 1.2rem;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
  cursor: pointer;
  margin: 1rem;
  width: 10vw;
}
.main-form button:hover {
  background-color: #172A37;
  color: #FFFFFF;
  transform: scale(0.95);
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.8);
}

.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
}
.search-bar input {
  width: 15vw;
}

.js-role-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
}

input,
select,
textarea {
  background-color: #172A37;
  text-align: center;
}

input {
  background-color: #172A37;
  border-radius: 7px;
  border: none;
  height: 2rem;
}

@media screen and (max-width: 767px) {
  .form-log-reg,
  .section-register form {
    width: 95%;
    height: 65svh;
  }
  .main-form > section {
    min-width: 95vw;
  }
  .main-form > section form input {
    width: 60%;
    background-color: #172A37;
  }
  .main-form > section form textarea {
    min-width: 60%;
    min-height: 15svh;
  }
  .main-form button {
    width: 38vw;
  }
  .search-bar input {
    width: 90%;
  }
}
.build-card {
  color: #FFFFFF;
  background-color: #001524;
  min-width: 18vw;
  max-width: 18vw;
  min-height: 50svh;
  max-height: 50svh;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  border: 2px solid #001524;
  box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.2), -2px -2px 5px rgba(255, 255, 255, 0.2);
}
.build-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
}
.build-card > div:first-of-type {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  min-width: 18vw;
  max-width: 18vw;
  min-height: 50svh;
  max-height: 50svh;
}
.build-card > div:first-of-type > div {
  position: relative;
  overflow: hidden;
  width: 80%;
  aspect-ratio: 9/10;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 1rem;
}
.build-card > div:first-of-type > div > img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.build-card > div:first-of-type a {
  z-index: 5;
  position: relative;
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  color: #001524;
  border-radius: 7px;
  font-size: 1.1rem;
  padding: 0.5rem 1.2rem;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}
.build-card > div:first-of-type a:hover {
  background-color: #172A37;
  color: #FFFFFF;
  transform: scale(0.95);
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.8);
}
.build-card > div:last-of-type {
  backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.5);
  min-width: 18vw;
  max-width: 18vw;
  min-height: 50svh;
  max-height: 50svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  border-radius: 0.5rem;
  opacity: 0;
}
.build-card > div:last-of-type div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0.5rem;
}
.build-card > div:last-of-type div:first-of-type {
  margin-top: 3.5rem;
}
.build-card:hover {
  box-shadow: 2px 2px 6px rgba(255, 255, 255, 0.2), -2px -2px 6px rgba(255, 255, 255, 0.2);
  border: 2px solid #7180AC;
}
.build-card:hover > div:last-of-type {
  opacity: 1;
  border: 2px solid #7180AC;
}
.build-card:hover > div:last-of-type div {
  animation: buildcard 0.5s forwards;
}

@keyframes buildcard {
  0% {
    transform: scale(0.5, 0.5);
  }
  25% {
    opacity: 1;
  }
  50% {
    transform: scale(1.03, 1.03);
  }
  100% {
    transform: scale(1, 1);
  }
}
.build-home {
  min-width: 18vw;
  max-width: 18vw;
  min-height: 50svh;
  max-height: 50svh;
  color: #FFFFFF;
  background-color: #001524;
  border-radius: 0.5rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  position: relative;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  border: 2px solid #001524;
  box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.2), -2px -2px 5px rgba(255, 255, 255, 0.2);
}
.build-home h3 {
  font-size: 1.5rem;
  font-weight: 400;
}
.build-home > div {
  position: relative;
  overflow: hidden;
  width: 80%;
  aspect-ratio: 9/10;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 1rem;
}
.build-home > div img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.build-home a {
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  color: #001524;
  border-radius: 7px;
  font-size: 1.1rem;
  padding: 0.5rem 1.2rem;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}
.build-home a:hover {
  background-color: #172A37;
  color: #FFFFFF;
  transform: scale(0.95);
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 767px) {
  .build-card {
    min-width: 80svw;
    max-width: 80svw;
    min-height: 60svh;
    max-height: 60svh;
  }
  .build-card > div:first-of-type {
    min-width: 80vw;
    max-width: 80vw;
    min-height: 60svh;
    max-height: 60svh;
  }
  .build-card > div:last-of-type {
    min-width: 80svw;
    max-width: 80svw;
    min-height: 60svh;
    max-height: 60svh;
  }
  .build-home {
    min-width: 80svw;
    max-width: 80svw;
    min-height: 60svh;
    max-height: 60svh;
  }
}
.hero {
  background-image: url("/img/herohome.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 80svh;
  width: 100%;
  color: #FFFFFF;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero div {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  height: 30svh;
  margin-right: 15vw;
}
.hero div h1 {
  font-family: "Russo One", sans-serif;
  font-size: 3rem;
  font-weight: 500;
}
.hero div h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}
.hero div a {
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  color: #001524;
  border-radius: 7px;
  font-size: 1.1rem;
  padding: 0.5rem 1.2rem;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}
.hero div a:hover {
  background-color: #172A37;
  color: #FFFFFF;
  transform: scale(0.95);
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.8);
}

.home-news {
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
}
.home-news h2 {
  font-family: "Russo One", sans-serif;
}
.home-news > article {
  margin: 0;
}

.home-builds {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  background-image: url("/img/bgBuildHome.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-builds > h2 {
  background-color: #001524;
  width: 100%;
}
.home-builds > div {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  width: 80%;
  border-radius: 2rem;
  padding: 2rem;
}

.home-news > h2:first-of-type,
.home-builds > h2:first-of-type {
  font-family: "Russo One", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  line-height: 8svh;
  height: 8svh;
  color: #FFFFFF;
}

.pagination {
  font-family: "Poppins", sans-serif;
  color: #FFFFFF;
  height: 7svh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.pagination > span {
  margin: 5px;
}
.pagination > span > a {
  text-decoration: none;
  color: #FFFFFF;
}

@media screen and (max-width: 767px) {
  .home-builds > div {
    flex-direction: column;
    gap: 2rem;
  }
  .hero {
    justify-content: center;
  }
  .hero div {
    margin: 0;
  }
}
.profile {
  width: 100%;
  height: auto;
  background-color: #172A37;
  display: flex;
  flex-direction: column;
}
.profile h1 {
  font-size: 1.3rem;
  text-align: center;
}

.info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-top: 2rem;
  height: 30svh;
}
.info > div:first-of-type {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 100%;
  margin-right: 6rem;
}
.info > div:first-of-type > div:first-of-type {
  width: 250px;
  height: 250px;
  border-radius: 100%;
  overflow: hidden;
}
.info > div:first-of-type > div:first-of-type img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.info > div:first-of-type div:nth-of-type(2) {
  height: 100%;
  width: 60%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
}
.info > div:first-of-type div:nth-of-type(2) > p {
  height: 60%;
  width: 80%;
  font-size: 0.9rem;
  text-align: justify;
}
.info > div:first-of-type > div:last-of-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  height: 50%;
}
.info > div:first-of-type > div:last-of-type > a {
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  color: #001524;
  border-radius: 7px;
  font-size: 1.1rem;
  padding: 0.5rem 1.2rem;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
  width: 100%;
}
.info > div:first-of-type > div:last-of-type > a:hover {
  background-color: #172A37;
  color: #FFFFFF;
  transform: scale(0.95);
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.8);
}
.info > div:last-of-type {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.info > div:last-of-type p {
  padding: 0.5rem;
}

.mes-builds {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.caroussel {
  overflow: hidden;
  height: 51svh;
  width: auto;
  margin: 3rem;
}
.caroussel .slide {
  width: 19vw;
  height: 100%;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  gap: 2rem;
}
.caroussel .slide > article:first-of-type {
  margin-left: 0.5vw;
}

#left-btn,
#right-btn {
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  width: 4rem;
  height: 4rem;
}
#left-btn svg,
#right-btn svg {
  width: 100%;
  height: 100%;
  color: #7180AC;
}

@media screen and (max-width: 767px) {
  .info {
    height: auto;
  }
  .info > div:first-of-type {
    flex-direction: column;
    height: auto;
    margin: 0;
  }
  .info > div:first-of-type > div:first-of-type {
    width: 150px;
    height: 150px;
  }
  .info > div:first-of-type div:nth-of-type(2) {
    width: 90%;
  }
  .info > div:first-of-type div:nth-of-type(2) > p {
    width: 100%;
  }
  .info > div:first-of-type > div:last-of-type {
    margin: 1rem;
    gap: 1rem;
    flex-direction: row;
    width: 80%;
  }
  .info > div:first-of-type > div:last-of-type a {
    width: 50%;
  }
  .mes-builds {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .caroussel {
    margin: 0;
    height: 61svh;
  }
  .caroussel .slide {
    width: 81vw;
  }
  #left-btn,
  #right-btn {
    width: 2rem;
    height: 2rem;
  }
}
.compo-index {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  color: #FFFFFF;
  row-gap: 2rem;
  background-color: #172A37;
}
.compo-index article:last-of-type {
  margin-bottom: 2rem;
}

.compo-card {
  width: 50vw;
  height: 20svh;
  background: #001524;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: height 0.3s ease-in-out, transform 0.3s ease-in-out;
  box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.2), -2px -2px 5px rgba(255, 255, 255, 0.2);
}
.compo-card:hover {
  height: 30svh;
  transform: scale(1.03);
  box-shadow: 2px 2px 6px rgba(255, 255, 255, 0.2), -2px -2px 6px rgba(255, 255, 255, 0.2);
  border: 2px solid #7180AC;
}
.compo-card > div:first-of-type {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 20svh;
}
.compo-card > div:first-of-type > div:nth-of-type(2) {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  width: 60%;
  height: auto;
}
.compo-card > div:first-of-type > div:nth-of-type(2) > a {
  margin-left: 2rem;
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  color: #001524;
  border-radius: 7px;
  font-size: 1.1rem;
  padding: 0.5rem 1.2rem;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}
.compo-card > div:first-of-type > div:nth-of-type(2) > a:hover {
  background-color: #172A37;
  color: #FFFFFF;
  transform: scale(0.95);
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.8);
}
.compo-card > div:first-of-type > div:nth-of-type(2) > p:first-of-type {
  width: 40%;
  text-align: center;
}
.compo-card > div:first-of-type > div:nth-of-type(2) > p:nth-of-type(2),
.compo-card > div:first-of-type > div:nth-of-type(2) > p:last-of-type {
  width: 30%;
  text-align: right;
}
.compo-card > div:first-of-type > div:nth-of-type(3) {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  color: #FFFFFF;
}
.compo-card > div:last-of-type {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  height: 10svh;
  border-top: 2px solid #7180AC;
}
.compo-card > div:last-of-type P {
  text-align: center;
}
.compo-card form {
  display: flex;
}
.compo-card form button {
  align-self: center;
  justify-self: center;
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  width: 3rem;
  height: 3rem;
}
.compo-card form button svg {
  width: 100%;
  height: 100%;
  color: #7180AC;
}

.compo-card-img {
  width: 150px;
  height: 150px;
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  overflow: hidden;
}
.compo-card-img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .compo-card {
    width: 95vw;
    height: 35svh;
  }
  .compo-card:hover {
    height: 45svh;
  }
  .compo-card > div:first-of-type {
    height: 35svh;
    position: relative;
  }
  .compo-card > div:first-of-type > div:nth-of-type(2) {
    flex-direction: column;
    gap: 1rem;
    width: 50%;
    height: 100%;
    padding: 1rem 0;
  }
  .compo-card > div:first-of-type > div:nth-of-type(2) p {
    display: block;
    min-width: 100%;
  }
  .compo-card > div:first-of-type form {
    position: absolute;
    top: 0.1rem;
    left: 0.1rem;
  }
  .compo-card > div:first-of-type form button {
    width: 2rem;
    height: 2rem;
  }
}
.titre-main-page {
  background-color: #172A37;
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #FFFFFF;
  text-align: center;
  height: 10svh;
  line-height: 10svh;
}

.section-news {
  width: 100%;
  background-color: #001524;
  color: #FFFFFF;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
}
.section-news h2,
.section-news h3 {
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
}
.section-news h2 span,
.section-news h3 span {
  border-bottom: 2px solid #7180AC;
}
.section-news .news-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  width: 100%;
  margin: 2rem;
}
.section-news .news-content > article {
  width: 60%;
}
.section-news .news-content > article > h3 {
  margin-bottom: 1.5rem 0 1rem 0;
}
.section-news .news-content > article > p {
  text-align: justify;
  margin: 1rem 0;
}
.section-news .news-content > aside {
  width: 20%;
  border: 2px solid #7180AC;
  border-radius: 0.5rem;
  align-self: flex-start;
  text-align: center;
}
.section-news .news-content > aside > h3 {
  margin: 1rem;
}
.section-news .news-content > aside > ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
}
.section-news .news-content > aside > ul > li a {
  text-decoration: none;
  color: #FFFFFF;
}

.news-index-cards {
  background-color: #172A37;
  min-height: 38svh;
  width: 70%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  padding: 1rem;
  margin: 2rem;
  border-radius: 0.5rem;
}
.news-index-cards > div:first-of-type {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
}
.news-index-cards > div:first-of-type h2 {
  width: 90%;
  text-align: center;
}
.news-index-cards > div:first-of-type > p {
  padding: 1rem 0;
  width: 80%;
  text-align: justify;
  font-size: 0.9rem;
}
.news-index-cards > div:first-of-type > a {
  font-family: "Russo One", sans-serif;
  text-decoration: none;
  color: #7180AC;
}
.news-index-cards > div:first-of-type > a:hover {
  color: #FFFFFF;
}
.news-index-cards > div:last-of-type {
  width: 50%;
  height: 100%;
}
.news-index-cards > div:last-of-type > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-new,
.news-new section,
.news-new form,
.news-new form > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.news-new {
  background-color: #172A37;
}
.news-new > section {
  border-radius: 2rem;
  border: 2px solid #7180AC;
  margin: 2rem;
  background-color: #001524;
}
.news-new > section > a:hover {
  color: #7180AC;
}
.news-new > section button {
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  color: #001524;
  border-radius: 7px;
  font-size: 1.1rem;
  padding: 0.5rem 1.2rem;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}
.news-new > section button:hover {
  background-color: #172A37;
  color: #FFFFFF;
  transform: scale(0.95);
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.8);
}

.news-new form > div {
  margin: 0.3rem;
}

@media screen and (max-width: 767px) {
  .news-index-cards,
  .news-cards {
    flex-direction: column-reverse;
    height: auto;
    width: 90%;
  }
  .news-index-cards > div:first-of-type,
  .news-cards > div:first-of-type {
    width: 100%;
    height: auto;
  }
  .news-index-cards > div:first-of-type h2,
  .news-cards > div:first-of-type h2 {
    height: auto;
    width: 80%;
    line-height: 2rem;
    margin: 0.5rem;
  }
  .news-index-cards > div:first-of-type p,
  .news-cards > div:first-of-type p {
    height: auto;
    width: 100%;
  }
  .news-index-cards > div:last-of-type,
  .news-cards > div:last-of-type {
    width: 100%;
  }
  .news-index-cards a:last-of-type,
  .news-cards a:last-of-type {
    margin-top: 2rem;
  }
  .section-news {
    width: 100%;
    background-color: #001524;
    color: #FFFFFF;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
  }
  .section-news h2,
  .section-news h3 {
    font-family: "Russo One", sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
  }
  .section-news h2 span,
  .section-news h3 span {
    border-bottom: 2px solid #7180AC;
  }
  .section-news .news-content {
    flex-direction: column;
    width: 100%;
  }
  .section-news .news-content > article {
    width: 90%;
  }
  .section-news .news-content > aside {
    margin-top: 2rem;
    width: 90%;
    align-self: center;
    justify-self: flex-end;
    text-align: center;
  }
}
.space-ship {
  background-image: url("/img/prebuilds/spaceship.jpg");
}

.high-end {
  background-image: url("/img/prebuilds/high.png");
}

.mid-budget {
  background-image: url("/img/prebuilds/medium.png");
}

.low-cost {
  background-image: url("/img/prebuilds/low.png");
}

.space-ship,
.high-end,
.mid-budget,
.low-cost {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 60svh;
  backdrop-filter: blur(10px);
}
.space-ship > div,
.high-end > div,
.mid-budget > div,
.low-cost > div {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
}

.prebuild-title {
  background-color: #001524;
  text-align: center;
  font-family: "Russo One", sans-serif;
  height: 8svh;
  line-height: 8svh;
  font-weight: 400;
  font-size: 1.1rem;
}

.section-comu {
  width: 90%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  align-items: center;
  justify-items: center;
  background-color: #172A37;
  padding: 3rem;
  margin: auto;
  row-gap: 4rem;
}

.builder {
  background-color: #172A37;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.builder a {
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  color: #001524;
  border-radius: 7px;
  font-size: 1.1rem;
  padding: 0.5rem 1.2rem;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}
.builder a:hover {
  background-color: #172A37;
  color: #FFFFFF;
  transform: scale(0.95);
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.8);
}
.builder section:first-of-type {
  width: 100%;
  height: 80svh;
  background-image: url("/img/heroBuilder3.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 3rem;
}
.builder section:first-of-type > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 40%;
  margin-right: 10%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}
.builder section:first-of-type > div > h1 {
  font-weight: 400;
  text-align: center;
}
.builder section:first-of-type > div > p {
  margin-top: 2rem;
  width: 80%;
  text-align: justify;
}
.builder .forge-comp {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.builder .forge-comp > h2 {
  font-weight: 400;
  text-align: center;
}
.builder .forge-comp > p {
  width: 50%;
  text-align: center;
}
.builder > .forge-comp:last-of-type div {
  margin: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
}
.builder > .forge-comp:last-of-type form > button {
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  color: #001524;
  border-radius: 7px;
  font-size: 1.1rem;
  padding: 0.5rem 1.2rem;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}
.builder > .forge-comp:last-of-type form > button:hover {
  background-color: #172A37;
  color: #FFFFFF;
  transform: scale(0.95);
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.8);
}

.ligne {
  height: 13svh;
  width: 3px;
  background-color: #7180AC;
  border-radius: 2rem;
  margin: 1rem;
}

.main-bg-s {
  background-attachment: fixed;
  background-color: #172A37;
  background-image: url("/img/showBuild.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.secBuildShow {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  row-gap: 2rem;
}
.secBuildShow .hautShow {
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #001524;
  width: 55vw;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.2), -2px -2px 5px rgba(255, 255, 255, 0.2);
}
.secBuildShow .hautShow > div:nth-of-type(1) {
  width: 30%;
  padding: 0.5rem;
}
.secBuildShow .hautShow > div:nth-of-type(1) img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.secBuildShow .hautShow > div:nth-of-type(2) {
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  row-gap: 1rem;
}
.secBuildShow .hautShow > div:nth-of-type(2) h1 {
  font-weight: 400;
}
.secBuildShow .hautShow > div:nth-of-type(2) > p {
  width: 80%;
  text-align: justify;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  white-space: normal;
}
.secBuildShow .hautShow > div:nth-of-type(2) > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.secBuildShow .hautShow > div:nth-of-type(2) > div > a {
  margin-left: 3rem;
}
.secBuildShow article:last-of-type {
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .space-ship,
  .high-end,
  .mid-budget,
  .low-cost {
    background-repeat: repeat;
    height: auto;
  }
  .space-ship > div,
  .high-end > div,
  .mid-budget > div,
  .low-cost > div {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .section-comu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
  }
  .secBuildShow .hautShow {
    flex-direction: column;
    min-width: 90vw;
  }
  .secBuildShow .hautShow > div:nth-of-type(1) {
    width: 90%;
  }
  .secBuildShow .hautShow > div:nth-of-type(2) {
    width: 100%;
  }
  .secBuildShow .hautShow > div:nth-of-type(2) > p {
    width: 90%;
  }
  .builder section:first-of-type > div {
    width: 100%;
    margin: 0;
  }
  .builder .forge-comp p {
    width: 95%;
    text-align: justify;
  }
}
.main-show {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  min-height: 60svh;
  background-color: #172A37;
  gap: 2rem;
}
.main-show nav {
  margin-top: 2rem;
}
.main-show nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 0.5rem;
}
.main-show nav ul li {
  border-left: 2px solid #7180AC;
}
.main-show nav ul li:last-of-type {
  border-right: 2px solid #7180AC;
}
.main-show nav ul li {
  width: 10vw;
  text-align: center;
}
.main-show nav ul li a {
  font-size: 1.1rem;
}
.main-show nav ul li a:hover {
  color: #7180AC;
}
.main-show h1 {
  text-align: center;
  font-weight: 400;
}
.main-show .table-div {
  width: 100%;
  display: flex;
  justify-content: center;
}
.main-show .table-div .table {
  max-width: 80%;
  margin-bottom: 2rem;
  border-collapse: collapse;
  row-gap: 0.3rem;
}
.main-show .table-div .table th {
  border-bottom: 2px solid #7180AC;
}
.main-show .table-div .table td {
  max-width: 30vw;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-show .table-div .table td img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.main-show .table-div .table th,
.main-show .table-div .table td {
  padding: 0.5rem;
  text-align: center;
}
.main-show .table-div .table select {
  height: 100%;
  background-color: #172A37;
}
.main-show .table-div div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.main-show .table-div div > button, .main-show .table-div div > a {
  width: 10vw;
  height: 2svh;
  margin: 1rem;
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .main-show {
    width: 100%;
  }
  .main-show > nav {
    width: 100%;
  }
  .main-show > nav ul {
    width: 100%;
  }
  .main-show > nav ul li {
    width: 27vw;
  }
  .main-show > nav ul li a {
    font-size: 1.2rem;
  }
  .main-show .table-div {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }
  .main-show .table-div td {
    white-space: nowrap;
    max-width: 50vw;
  }
  .main-show .table-div td button {
    width: 2rem;
    height: 2rem;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

a {
  text-decoration: none;
}

body {
  width: 100%;
  background-color: #001524;
}

main {
  margin-top: 15svh;
  background-color: #001524;
  width: 100%;
  min-height: 85svh;
}

.compo-card > button,
.js-role-form > button,
.main-show button,
.main-show td a {
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

svg {
  width: 100%;
  height: 100%;
}
svg:hover {
  color: #7180AC;
}

.apiError {
  color: #EF404B;
  text-align: center;
}

.flash-message {
  position: fixed;
  top: 16svh;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.2), -2px -2px 5px rgba(255, 255, 255, 0.2);
  animation: slideDown 0.3s ease-out;
}
.flash-message.flash-success {
  background-color: #00CDFF;
  border: 1px solid #00CDFF;
}
.flash-message.flash-error {
  background-color: #EF404B;
  border: 1px solid #EF404B;
}
.flash-message.flash-warning {
  background-color: #7180AC;
  border: 1px solid #7180AC;
}
.flash-message.flash-info {
  background-color: #172A37;
  border: 1px solid #7180AC;
}

.flash-close {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.flash-close:hover {
  color: #7180AC;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
