@charset "UTF-8";
body {
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #fff;
  background-color: #517557;
}

a {
  text-decoration: none;
  color: #fff;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #FFFFFF;
}

.container {
  max-width: 128rem;
  padding-inline: 2rem;
  width: 100%;
  margin-inline: auto;
  transition: 0.3s;
}

@media (min-width: 576px) {
  .container {
    padding-inline: 4rem;
  }
}
@media (min-width: 992px) {
  .container {
    padding-inline: 2rem;
  }
}
.title--h1 {
  font-family: "Climate Crisis", sans-serif;
  font-size: 3.7rem;
  font-size: clamp(3.7rem, 0.757rem + 9.196vw, 11rem);
  margin-bottom: 5.2rem;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.title--h2 {
  font-family: "Climate Crisis", sans-serif;
  font-size: 6rem;
  font-size: clamp(3rem, 2.143rem + 2.679vw, 6rem);
  letter-spacing: 2px;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.title--h3 {
  font-size: 2.2rem;
  font-size: clamp(1.6rem, 1.171rem + 0.714vw, 2.2rem);
}

.title--h4 {
  font-size: 1.8rem;
  font-size: clamp(1.4rem, 1.114rem + 0.476vw, 1.8rem);
}

/* poppins-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/poppins-v20-latin-regular.woff2") format("woff2"), url("../fonts/poppins-v20-latin-regular.woff") format("woff");
  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/poppins-v20-latin-700.woff2") format("woff2"), url("../fonts/poppins-v20-latin-700.woff") format("woff");
  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* climate-crisis-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Climate Crisis";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/climate-crisis-v3-latin-regular.woff2") format("woff2"), url("../fonts/climate-crisis-v3-latin-regular.woff") format("woff");
  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
.btn {
  border: solid 1px #FD7937;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  padding-block: 1.3rem;
  padding-left: 2.5rem;
  padding-right: 6.3rem;
  width: fit-content;
  position: relative;
  border-radius: 5rem;
  transition: 0.3s;
}

.btn:hover, .btn:focus, .btn:active {
  padding-left: 5rem;
  padding-right: 3.8rem;
}

.btn:hover::after, .btn:focus::after, .btn:active::after {
  width: calc(100% + 2px);
  transition: width 0.3s;
}

.btn--orange {
  background-color: #FD7937;
}

.btn::after {
  content: url("../img/arrow.svg");
  display: flex;
  padding-top: 1rem;
  padding-bottom: 0.6rem;
  padding-inline: 1rem;
  position: absolute;
  top: 0;
  width: 4.3rem;
  right: -1px;
  background-color: #FD7937;
  border-radius: 5rem;
  z-index: -1;
  transition: width 0.3s;
}

.btn--orange::after {
  z-index: 0;
  background-color: transparent;
}

.btn--round {
  padding: 1.4rem;
  background-color: #FD7937;
}

.btn--round::after {
  display: none;
}

.small-link {
  text-decoration: underline;
  margin-top: -1.5rem;
  font-size: 1.4rem;
}

.gradient-background {
  height: 100vh;
  width: 100vw;
  position: fixed;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #305740 0%, #ACC896 100%);
  z-index: -1;
}

@media (min-width: 576px) {
  .gradient-background {
    width: 85vw;
  }
}
@media (min-width: 1770px) {
  .gradient-background {
    width: 80vw;
  }
}
@keyframes shake {
  0% {
    transform: translate(3px, 0);
  }
  50% {
    transform: translate(-3px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes bounce {
  0% {
    bottom: 20px;
  }
  15% {
    bottom: 20px;
  }
  20% {
    bottom: 60px;
  }
  25% {
    bottom: 20px;
  }
  27% {
    bottom: 30px;
  }
  29% {
    bottom: 20px;
  }
  45% {
    bottom: 20px;
  }
  55% {
    bottom: 90px;
  }
  65% {
    bottom: 20px;
  }
  68% {
    bottom: 50px;
  }
  71% {
    bottom: 20px;
  }
  73% {
    bottom: 30px;
  }
  75% {
    bottom: 20px;
  }
  100% {
    bottom: 20px;
  }
}
@keyframes shadow-scale {
  0% {
    transform: scale(1, 1);
  }
  15% {
    transform: scale(1, 1);
  }
  20% {
    transform: scale(2, 2);
  }
  25% {
    transform: scale(1, 1);
  }
  27% {
    transform: scale(1.3, 1.3);
  }
  29% {
    transform: scale(1, 1);
  }
  45% {
    transform: scale(1, 1);
  }
  55% {
    transform: scale(4, 4);
  }
  65% {
    transform: scale(1, 1);
  }
  68% {
    transform: scale(1.8, 1.8);
  }
  71% {
    transform: scale(1, 1);
  }
  73% {
    transform: scale(1.5, 1.5);
  }
  75% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes move {
  0% {
    left: -150px;
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes tumble {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1080deg);
  }
}
.mover {
  animation-name: move;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-direction: alternate;
}

.tumbleweed {
  width: 80px;
  display: block;
  animation-name: tumble, move, bounce;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-direction: alternate, alternate, normal;
  position: absolute;
  opacity: 0;
}

.shadow {
  background: rgba(0, 0, 0, 0.25);
  width: 10px;
  height: 3px;
  border-radius: 100%;
  margin: auto;
  position: absolute;
  margin-left: 55px;
  bottom: 10px;
  animation-name: move, shadow-scale;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-direction: alternate, normal;
  position: absolute;
  opacity: 0;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 3rem;
}

@media (min-width: 576px) {
  .main-header .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .main-header .container {
    grid-template-columns: 1fr 3fr 1fr;
  }
}
.main-header__logo {
  max-width: 8rem;
  width: 100%;
}

@media (min-width: 576px) {
  .main-header__logo {
    max-width: 10rem;
  }
}
.main-header__logo svg {
  fill: #fff;
}

.main-header__nav {
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  visibility: hidden;
  height: 100vh;
  width: fit-content;
  min-width: 25.4rem;
  z-index: 10;
  transition: all 0.3s ease-in;
}

@media (min-width: 768px) {
  .main-header__nav {
    display: flex;
    align-items: center;
  }
}
.main-header__nav.menu--opened {
  visibility: visible;
}

@media (min-width: 768px) {
  .main-header__nav {
    overflow: visible;
    position: relative;
    visibility: visible;
    height: 100%;
  }
}
.main-header__nav .main-header__list {
  transform: translateX(200%);
  backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.1);
  height: 100%;
  padding-top: 11.8rem;
  padding-left: 3.2rem;
  transition: all 0.3s ease-in;
}

.main-header__nav.menu--opened .main-header__list {
  transform: translateX(0);
  transition: all 0.3s ease-in;
}

@media (min-width: 768px) {
  .main-header__nav .main-header__list {
    transform: translateX(0);
    backdrop-filter: none;
    background-color: transparent;
    padding: 0;
    height: fit-content;
    display: flex;
  }
  .main-header__nav__items:not(:first-of-type)::before {
    content: "";
    display: block;
    position: absolute;
    height: 0.6rem;
    width: 0.6rem;
    background-color: #fff;
    border-radius: 100%;
    top: calc(50% - 0.3rem);
    left: 0;
  }
}
.main-header__nav__items {
  padding-inline: 3.35rem;
  position: relative;
  font-size: 2rem;
  font-size: clamp(1.6rem, 1.486rem + 0.357vw, 2rem);
  padding-block: 0.5rem;
}

.main-header__nav__items:last-of-type {
  position: absolute;
  right: 0;
  bottom: 3rem;
}

@media (min-width: 768px) {
  .main-header__nav__items:last-of-type {
    display: none;
  }
}
.main-header__nav__items.is-active::after {
  content: "";
  background-color: #FD7937;
  width: 1rem;
  height: 2.8rem;
  display: block;
  position: absolute;
  top: 0;
  right: -0.5rem;
  border-radius: 1rem;
}

@media (min-width: 768px) {
  .main-header__nav__items.is-active::after {
    width: calc(100% - 2rem);
    height: 1rem;
    top: -4rem;
    right: 1rem;
  }
}
.main-header__nav__items a {
  color: #fff;
}

.main-header__log-out {
  display: none;
  justify-self: flex-end;
}

@media (min-width: 768px) {
  .main-header__log-out {
    display: flex;
  }
  .main-header__log-out:hover {
    animation: shake 150ms 2 linear;
  }
}
.menu-toggler {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 21px;
  z-index: 99;
  border: none;
  background-color: transparent;
  justify-self: flex-end;
}

@media (min-width: 768px) {
  .menu-toggler {
    display: none;
  }
}
.menu-toggler__line {
  position: absolute;
  top: 9px;
  height: 2px;
  width: 100%;
  background-color: #fff;
  transition: top 0.15s 0.15s, transform 0.15s;
}

.menu-toggler__line:first-of-type {
  top: 0;
  transition: top 0.15s 0.15s, transform 0.15s;
}

.menu-toggler__line:last-of-type {
  top: 18px;
}

.menu-toggler.menu--opened {
  height: 35px;
}

.menu-toggler.menu--opened .menu-toggler__line {
  top: 16px;
  transform: rotate(-45deg);
  transition: top 0.15s, transform 0.15s 0.15s;
}

.menu-toggler.menu--opened .menu-toggler__line:first-of-type {
  top: 16px;
  transform: rotate(45deg);
  transition: top 0.15s, transform 0.15s 0.15s;
}

.main-content .container {
  display: grid;
}

@media (min-width: 992px) {
  .main-content .container {
    display: grid;
    grid-template-columns: 199fr 26fr 163fr;
  }
}
@media (min-width: 9920px) {
  .main-content__intro {
    grid-area: 1/1/2/3;
  }
}
.main-content__intro .title--h1 {
  margin-top: 3rem;
}

@media (min-width: 576px) {
  .main-content__intro .title--h1 {
    margin-top: 8rem;
  }
}
.main-content__intro p {
  max-width: 50rem;
  margin-bottom: 5rem;
}

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

.main-content__intro__link .btn:last-of-type {
  margin-top: 1rem;
}

.main-content__picture {
  display: none;
}

@media (min-width: 376px) {
  .main-content__picture {
    width: 70%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: block;
  }
}
@media (min-width: 992px) {
  .main-content__picture {
    max-width: 50%;
    width: 100%;
    top: 122.05px;
  }
}
.main-content__picture img {
  width: 100%;
  border-radius: 10rem 0 0 0;
  object-fit: cover;
  max-height: 30rem;
}

@media (min-width: 576px) {
  .main-content__picture img {
    max-height: 100%;
    height: calc(100vh - 64rem);
  }
}
@media (min-width: 992px) {
  .main-content__picture img {
    border-radius: 30rem 0 0 0;
    height: calc(100vh - 12.205rem);
  }
}
.main-form {
  display: flex;
  flex-direction: column;
  max-width: 28rem;
  margin-bottom: 5.8rem;
}

@media (min-width: 576px) {
  .main-form {
    max-width: 35.2rem;
  }
}
.main-form input {
  border: none;
  background-color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.8rem;
  border-radius: 0.5rem;
}

@media (min-width: 576px) {
  .sections-page::after {
    content: url("../img/cactus-orange.svg");
    position: absolute;
    bottom: 0;
    left: 2rem;
    z-index: -1;
  }
}
.page-content .container {
  position: relative;
}

@media (min-width: 768px) {
  .page-content__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
  }
}
.page-content__header .btn {
  margin-top: 1.5rem;
  font-size: 1.4rem;
}

@media (min-width: 576px) {
  .page-content__header .btn {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .page-content__header .btn {
    margin-top: 0;
  }
}
@media (min-width: 1240px) {
  .page-content__header .btn {
    margin-right: 12.5rem;
  }
}
.page-content__sections {
  margin-top: 6rem;
  margin-inline: 5.2rem;
  height: 47rem;
  display: grid;
  grid-gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: center;
  align-items: center;
  overflow-y: scroll;
}

@media (min-width: 768px) {
  .page-content__sections {
    grid-gap: 7.1rem;
    scroll-snap-type: y mandatory;
  }
}
.sections-page .page-content__sections::-webkit-scrollbar {
  display: none !important;
}

.page-content__sections__subline {
  position: relative;
  padding: 2.9rem 5.2rem 1.4rem 5.2rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.2rem;
  transition: 0.5s;
}

.page-content__sections__subline::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #517557;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-top-left-radius: 20rem;
}

.sections__line__cell-wrapper {
  width: fit-content;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
  justify-self: center;
  height: 20.1rem;
  width: 100%;
}

.sections__line__cell-wrapper:nth-of-type(3n) {
  scroll-snap-align: start;
}

.cell-wrapper__picture {
  height: calc(100% - 37px);
  width: 100%;
}

.cell-wrapper__picture img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.cell-wrapper__options {
  background-color: #FFFFFF;
  padding: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cell-wrapper__options__buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cell-wrapper__title {
  color: #000000;
}

.options-btn {
  display: flex;
  align-items: center;
}

.sections-nav {
  position: absolute;
  right: 5rem;
  top: 50%;
  display: none;
}

@media (min-width: 992px) {
  .sections-nav {
    display: block;
  }
}
.sections-nav::after {
  content: url("../img/sections-arrow.svg");
  position: absolute;
  right: -0.5rem;
  bottom: calc(-100% - 12rem);
  display: none;
}

.sections-nav__list__items {
  background-color: #FD7937;
  width: 0.7rem;
  height: 0.7rem;
  margin-block: 2.2rem;
  border-radius: 100%;
  position: relative;
}

.sections-nav__list__items.is--active::before {
  content: "";
  border: 1px solid #FD7937;
  height: 1.4rem;
  width: 1.4rem;
  position: absolute;
  border-radius: 100%;
  top: -50%;
  left: -50%;
}

.overlay {
  transition: 0.5s;
}

.overlay.is-active {
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999998;
}

.popup .title {
  font-size: 3rem;
  letter-spacing: 1px;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .popup .title {
    font-size: 4rem;
  }
}
.popup {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  transform: translateY(-200%);
  transition: 0.5s;
}

.popup.is-active {
  transform: translateY(0);
  transition: 0.5s;
}

.popup .popup-content {
  max-width: 80%;
  width: 100%;
  margin-inline: auto;
  padding: 0.9rem 0.9rem 4rem 2.4rem;
  background-color: #517557;
}

.popup .close {
  float: right;
}

.popup .page-content__sections {
  height: 58rem;
  margin-inline: 2rem;
}

@media (min-width: 576px) {
  .popup .page-content__sections {
    margin-inline: 5.7rem;
  }
}
.popup-content .sections__line__cell-wrapper {
  cursor: pointer;
}

.page-content__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 6.8rem;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .page-content__wrapper {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }
}
@media (min-width: 1440px) {
  .container.container-xl {
    max-width: 100%;
    padding-inline: 50px;
    transition: 0.3s;
  }
  .container-xl .page-content__wrapper {
    grid-template-columns: 1200px 1fr;
  }
}
.page-content__overview {
  margin-top: 1.6rem;
  order: 1;
}

.overview__header {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .page-content__overview {
    order: 0;
  }
}
.overview__header__toggle {
  display: flex;
  gap: 1.6rem;
  max-width: 11.2rem;
  width: 100%;
  align-items: center;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 4.8rem;
  height: 2.4rem;
  opacity: 1;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFFFFF;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 3.4rem;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 1.4rem;
  width: 1.4rem;
  left: 0.4rem;
  bottom: 0.5rem;
  background-color: #FD7937;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

.toggle-slider:hover::before {
  background-color: rgba(253, 121, 55, 0.4);
}

#overview-toggle:checked + .toggle-slider:before {
  transform: translateX(2.2rem);
  background-color: #FD7937;
}

.toggle-icon {
  max-width: 2rem;
}

.overview__content__wrapper {
  width: 100%;
  height: fit-content;
  background-color: #517557;
  padding: 2.8rem;
}

.overview__content {
  background-color: #FFFFFF;
  height: 100%;
  width: 100%;
  color: rgba(0, 0, 0, 0.7);
  padding: 1.5rem;
  max-height: 62rem;
  overflow-y: scroll;
}

.overview__html {
  width: 100%;
  min-height: 68rem;
  border: none;
}

.section__code {
  max-width: 100%;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.page-content__form {
  background-color: #517557;
  padding-top: 2.7rem;
  padding-inline: 1.7rem;
}

@media (min-width: 576px) {
  .page-content__form {
    padding-right: 0;
  }
}
.form__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.form__wrapper {
  max-height: 62rem;
  overflow-y: scroll;
}

.form__wrapper__section {
  display: grid;
  grid-template-columns: 90% 50px;
}

.form__wrapper__section__content {
  height: 0;
  opacity: 0;
  transition: height 0.3s, opacity 0.4s;
  overflow: hidden;
}

.form__wrapper__section.is--open .form__wrapper__section__content {
  height: 100%;
  opacity: 1;
  overflow: visible;
  transition: height 0.3s, opacity 0.4s;
}

.arrow {
  transform: rotate(0deg);
  transition: transform 0.3s;
  border-radius: 100%;
  aspect-ratio: 1/1;
}

.arrow:hover, .arrow:focus {
  background-color: rgba(0, 0, 0, 0.2);
}

.form__wrapper__section.is--open .arrow, .arrow:active {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.form__wrapper__section__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FD7937;
  padding-block: 0.7rem;
  padding-inline: 0.9rem;
  margin-block: 2rem;
}

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

.delete-button img {
  max-height: 25px;
}

.section-form {
  margin-top: 2rem;
}

label {
  font-size: 1.4rem;
  opacity: 0.6;
}

.fields.content {
  margin-top: 5rem;
}

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

.section-form > div, .collection-type > div, .fields li div {
  margin-bottom: 2rem;
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
}

.collection-type {
  border: 1px solid white;
  padding: 2rem;
  border-radius: 1.3rem;
}

.collection-type div > div {
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
}

.repeater-list__item {
  margin-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.file__img {
  margin-bottom: 2rem;
}

.file_upload {
  border-bottom: 1px solid #FD7937;
  position: relative;
  height: 55px;
  border-radius: 1.3rem;
}

.file_upload::before {
  content: "Sélectionner un fichier";
  opacity: 0.5;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 0.6rem;
}

.file_upload[data-file-name]::before {
  content: attr(data-file-name);
  opacity: 1;
}

.file_upload::after {
  content: "";
  width: 55px;
  height: 55px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #FD7937;
  background-image: url("../img/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 3rem;
  border-radius: 1.3rem;
}

input[type=file] {
  width: 55px;
  height: 55px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9998;
  opacity: 0;
  cursor: pointer;
}

::placeholder {
  color: #FFFFFF;
  opacity: 0.5;
}

.section-form input:not([type=color]):not(#image):not(#illustration), .section-form select, .section-form textarea {
  padding-inline: 0.6rem;
  padding-block: 1rem;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid white;
  color: white;
  font-size: 1.5rem;
  border-radius: 1.3rem;
}

.layout-input {
  width: fit-content;
  display: flex;
  flex-direction: column;
}

.section-form .color-input {
  flex-direction: row;
  gap: 2rem;
}

.spacing-input__tabs {
  background-color: #FFFFFF;
  margin-top: 0.7rem;
}

.spacing-input__tab {
  padding-block: 0.3rem;
  padding-inline: 2rem;
  background-color: rgba(81, 117, 87, 0.6);
  color: #000000;
  font-size: 1.4rem;
}

.spacing-input__tab:hover {
  background-color: rgba(81, 117, 87, 0.3);
}

.spacing-input__tab.is--open {
  background-color: #FFFFFF;
}

.spacing-input__container {
  display: none;
  grid-template-columns: 2fr 3fr;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  color: #000000;
  padding-inline: 1rem;
  padding-bottom: 1rem;
  row-gap: 1rem;
}

@media (min-width: 576px) {
  .spacing-input__container {
    grid-template-columns: 1fr 3fr 3fr 3fr;
    row-gap: 0;
  }
}
.spacing-input__container.is--open {
  display: grid;
}

.top {
  display: none;
  grid-area: 2/1/3/2;
}

.bottom {
  display: none;
  grid-area: 3/1/4/2;
}

@media (min-width: 576px) {
  .top, .bottom {
    display: block;
  }
}
.resolution {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  grid-area: 1/1/4/2;
  margin-block: 1rem;
  height: 100%;
  place-items: center;
}

@media (min-width: 576px) {
  .resolution {
    grid-template-columns: repeat(3, 1fr);
    grid-area: 1/2/2/5;
    height: fit-content;
  }
}
.spacing-input__wrapper {
  max-width: 15rem;
  width: 100%;
  border: 1px dashed #D8DFE0;
  padding: 2.2rem;
  row-gap: 1rem;
  aspect-ratio: 1/1;
  position: relative;
  justify-self: center;
}

@media (min-width: 576px) {
  .spacing-input__wrapper {
    grid-row-start: 2;
    grid-row-end: 4;
  }
}
.spacing-input__center {
  aspect-ratio: 1/1;
  background-color: rgba(81, 117, 87, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spacing-input__wrapper select {
  position: absolute;
  font-size: 1.4rem;
  border: #D8DFE0;
  left: calc(50% - 4.5rem);
}

.spacing-input__padding-top {
  top: 1.1rem;
}

.spacing-input__padding-bottom {
  bottom: 1.1rem;
}

.section-form .image-input, .section-form .illustration-input {
  display: flex;
}

.image-input input, .illustration-input input {
  max-width: 25rem;
}

@media (min-width: 576px) {
  .image-input input, .illustration-input input {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .section-form .image-input, .section-form .illustration-input {
    flex-direction: column;
  }
}
.file, .alt {
  display: flex;
  flex-direction: column;
}

.file:last-child, .alt:last-child {
  width: 100%;
}

input[type=submit] {
  padding-right: 2.5rem;
  color: #FFFFFF;
  cursor: pointer;
}

input[type=submit]:hover {
  padding-right: 5rem;
}

input[type=submit]:after {
  display: none;
}

.page-content__form textarea {
  min-height: 18rem;
}

.submit-change {
  margin-bottom: 1.3rem;
}/*# sourceMappingURL=main.css.map */