@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Gabarito";
}

.container {
  padding-left: 5%;
  padding-right: 5%;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero {
  padding-top: 100px;
  min-height: 100vh;
  height: 100vh;
}

.flex-container {
  display: flex;
}

.subtitle {
  font-family: "Gabarito";
  font-weight: 400;
  background-color: #9fd897;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

/* FOOTER */
#sub-footer {
  background-color: rgb(255, 255, 255);
}

#sub-footer .container {
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
#sub-footer .container img {
  height: 20px;
}

#sub-footer span {
  color: rgb(32, 32, 32);
  font-size: 12px;
}

#footer {
  background-color: #86d07c;
}
#footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
}
#footer .col-links span {
  font-size: 16px;
}
#footer .col-links ul {
  list-style-type: none;
  margin-top: 10px;
}
#footer .col-links ul li a {
  font-size: 13px;
  font-family: "Lato";
}
#footer .col-links ul li a:hover {
  text-decoration: underline;
}
#footer img {
  filter: brightness(0%);
  height: 50px;
}
#footer .col-text {
  max-width: 275px;
}
#footer .col-text a {
  background-color: black;
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  display: block;
  margin-top: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
#footer .col p {
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.2rem;
  margin-bottom: 10px;
}
#footer .col a {
  font-size: 13px;
}
#footer .col a:hover {
  text-decoration: underline;
}

/* CURSOR */
.cursor {
  display: block;
  width: 20px;
  height: 20px;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #9bd696;
  pointer-events: none;
  z-index: 111;
  mix-blend-mode: difference;
  transition: all 0.2s ease-out;
  animation: moveCursor1 0.5s infinite alternate;
}
@media screen and (max-width: 867px) {
  .cursor {
    display: none;
  }
}

.expand {
  background: transparent;
  animation: moveCursor2 0.5s forwards;
  border: 1px solid rgba(0, 0, 0, 0.5411764706);
}

@keyframes moveCursor1 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.8);
  }
}
@keyframes moveCursor2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gabarito";
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  font-family: "Lato";
  line-height: 1.4rem;
}

.hero-title {
  font-size: 56px;
  line-height: 1em;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 28px;
}

.hero-section .container {
  padding-top: 150px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  flex: 1;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  background: transparent;
  z-index: 1000;
}

nav ul {
  display: flex;
  gap: 35px;
  list-style-type: none;
}

nav ul li a {
  text-decoration: none;
  color: black;
  transition: 0.3s ease;
}

nav a {
  position: relative;
  z-index: 1;
}
nav a::before {
  content: "";
  width: 0%;
  height: 10px;
  position: absolute;
  background-color: #86d07d;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: 0.3s ease;
}
nav a:hover::before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  background-color: #86d07d;
  left: 0;
  bottom: 0;
  z-index: -1;
}

nav a.active::before {
  content: "";
  width: 100%;
}

.logo span,
a {
  font-family: "Gabarito";
  text-decoration: none;
  color: black;
}

.logo span {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.logo,
.contact {
  width: 200px;
}

.contact {
  display: flex;
  justify-content: flex-end;
}

.contact a {
  background-color: rgb(16, 16, 16);
  padding: 10px 25px;
  color: white !important;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.contact a:hover {
  background-color: #d4a373;
}

.account-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.account-container .logout-icon {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 5px;
  transition: 0.3s ease;
}
.account-container .logout-icon:hover {
  transform: translateX(5px);
}
.account-container .user-container {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #86d07d;
  padding: 5px;
  border-radius: 50px;
  padding-right: 25px;
}
.account-container .user-container span {
  font-size: 14px;
  text-transform: capitalize;
}
.account-container .user-container img {
  background-color: rgb(255, 255, 255);
  border-radius: 100%;
  padding: 2px;
  width: 26px;
  height: 26px;
  margin-top: -0.45px;
  -o-object-fit: contain;
     object-fit: contain;
}

#contact_page .col-l {
  width: 40%;
  min-width: 400px;
}

#contact_page .col-r {
  max-width: 400px;
  margin-top: 50px;
}

#contact_page .hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 100px;
  margin-top: 50px;
}

.tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.tag {
  background-color: rgba(0, 0, 0, 0.042);
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 13px;
  border: 1px solid rgba(0, 0, 0, 0.105);
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}

.tags img {
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

#home .hero {
  min-height: 100vh;
  margin-bottom: -80px;
}

#home .content-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1500px;
  margin: 0 auto;
  padding-right: 5%;
}
#home .content-container p {
  max-width: 500px;
}
#home .content-container img {
  margin-top: 50px;
  height: 80vh;
  width: 43%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

#home .col-l {
  width: 40%;
  min-width: 600px;
}

#home .col-r {
  width: 60%;
  display: flex;
  gap: 50px;
}

#home .content-container p {
  margin-bottom: 30px;
}

.data-inner {
  background-color: white;
  border-radius: 20px;
  padding: 50px 80px;
  box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.068);
  display: flex;
  justify-content: space-between;
}

.data-container {
  padding-top: 0 !important;
}

.data-inner {
  margin-top: -50px;
}

.data-inner .col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.data-inner .col span:first-child {
  font-size: 28px;
  font-weight: 700;
}

.full-btn {
  background-color: rgb(23, 23, 23);
  color: white;
  border-radius: 10px;
  padding: 10px 20px;
  display: flex;
  gap: 15px;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
}

.full-btn img {
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.stripe-btn {
  border-radius: 10px;
  padding: 10px 20px;
  display: flex;
  gap: 15px;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid rgb(22, 22, 22);
}

.btn-container {
  display: flex;
  gap: 25px;
}

.section-content .inner-container {
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  gap: 100px;
  align-items: center;
}

.section-content .inner-container:nth-child(even) {
  flex-direction: row-reverse;
}

.section-content .inner-container .col-content {
  width: 40%;
}

.section-content .inner-container .col-img {
  width: -moz-fit-content;
  width: fit-content;
  height: 500px;
}

.section-content .inner-container .col-img img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.hero-title span {
  position: relative;
}
.hero-title span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 30px;
  background-color: #86d07d;
  bottom: 0;
  z-index: -1;
}

.hero-section {
  min-height: 100vh;
}

#team .content-container {
  margin-bottom: 50px;
  max-width: 500px;
}
#team h2 span {
  position: relative;
}
#team h2 span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 30px;
  background-color: #86d07d;
  bottom: 0;
  z-index: -1;
}
#team .flex-container {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
#team .flex-container .card {
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}
#team .flex-container .card:hover {
  transform: translateY(-5px);
}
#team .flex-container .card:hover .linkedin-icon {
  background-color: rgb(103, 186, 255);
}
#team .flex-container .card .image-container {
  position: relative;
}
#team .flex-container .card .member-picture {
  height: 300px;
  width: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
#team .flex-container .card .linkedin-icon {
  position: absolute;
  left: 20px;
  top: 20px;
  transition: 0.3s ease;
  background-color: rgba(255, 255, 255, 0.626);
  padding: 7px;
  width: 30px;
  height: 30px;
  border-radius: 5px;
}
#team .flex-container .card .content {
  margin-top: 20px;
}
#team .flex-container .card .content span {
  font-size: 22px;
}
#team .flex-container .card .content span strong {
  text-transform: uppercase;
}

.CTA {
  background-color: #f3f3f3;
  padding: 50px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.CTA h3 {
  font-size: 38px;
  font-weight: 700 !important;
}
.CTA p {
  margin-bottom: 20px;
}
.CTA .col-l {
  width: 50%;
}
.CTA .carbon-asset {
  width: 100%;
  max-width: 600px;
  position: absolute;
  right: -50px;
  bottom: -50px;
}
.CTA .testimonial .icon-container {
  display: flex;
  margin-top: 0px;
  margin-bottom: 40px;
  align-items: center;
}
.CTA .testimonial span {
  margin-right: 20px;
  font-weight: 700;
  font-size: 22px;
  color: #4b8f4e;
  line-height: 0;
}
.CTA .testimonial img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  border: 2px solid #f3f3f3;
}
.CTA .testimonial img:nth-child(n+2) {
  margin-left: -10px;
}

@keyframes scaleAnimation {
  0% {
    transform: scale(1) rotate(0);
  }
  50% {
    transform: scale(0.95) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.image {
  opacity: 0.8;
}

#product {
  background-color: #f7f7f7;
}
#product .flex-container {
  justify-content: center;
  gap: 50px;
  align-items: center;
}
#product .col-l img {
  max-width: 300px;
  height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}
#product .content-header {
  max-width: 500px;
}
#product .col-r {
  max-width: 50%;
}
#product .block-container {
  margin: 35px 0;
}
#product .block-container .block {
  padding: 25px;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: relative;
  transition: 0.3s ease;
}
#product .block-container .block span {
  font-weight: 700;
  font-size: 45px;
  position: absolute;
  left: 25px;
  top: -20px;
  color: #86d07d;
}
#product .block-container .block h3 {
  margin-bottom: 10px;
  margin-top: 20px;
}
#product .block-container .b4 {
  background-color: white;
  position: relative;
}
#product .block-container .b4 img {
  width: 70px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  transform: scale(-1) rotate(-90deg);
  transition: 0.3s ease;
  padding: 10px;
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: white;
}
#product .block-container .b4 .link-title {
  color: black;
  font-size: 38px;
  margin-top: 35px;
}
#product .block-container .b4:hover {
  background-color: transparent;
}
#product .block-container .b4:hover img {
  bottom: 20px;
  right: 0px;
  background-color: #86d07d;
}
#product .block-container .block-header {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-end;
}
#product .block-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 25px;
  grid-row-gap: 45px;
  justify-items: stretch;
}
#product .b1 {
  grid-area: 1/1/2/2;
}
#product .b2 {
  grid-area: 1/2/2/3;
}
#product .b3 {
  grid-area: 2/1/3/2;
}
#product .b4 {
  grid-area: 2/2/3/3;
}

#value .flex-container {
  justify-content: space-between;
  align-items: flex-start;
}
#value .inner-container {
  background-color: #86d07d;
  padding: 35px;
  max-width: 750px;
  border-radius: 20px;
  position: relative;
}
#value .inner-container::before {
  content: "";
  position: absolute;
  left: -12px;
  bottom: -5px;
  z-index: 10;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 20px 40px 20px;
  border-color: transparent transparent #86d07d transparent;
  transform: rotate(-15deg);
}

#methodology {
  padding-top: 100px;
}
#methodology .text-container {
  max-width: 600px;
}

.section_body_methodology {
  background-color: #86d07d;
}
.section_body_methodology .methodology {
  text-align: center;
  margin-bottom: 40px;
}
.section_body_methodology .methodology ol {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  list-style-type: none;
  justify-content: stretch;
  flex-wrap: wrap;
}
.section_body_methodology .methodology ol li {
  background-color: rgb(248, 248, 248);
  border-radius: 20px;
  padding: 25px;
  width: 32%;
}

#methodoly-table ol:nth-child(even) {
  background-color: red;
}
#methodoly-table .main-container {
  padding: 50px 0;
  max-width: 800px;
  margin: 0 auto;
}
#methodoly-table .modern-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: center;
  margin: 40px 0;
}
#methodoly-table .modern-table th,
#methodoly-table .modern-table td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}
#methodoly-table .modern-table th {
  background-color: #f2f2f2;
  color: #333;
  font-weight: bold;
}
#methodoly-table .modern-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}
#methodoly-table .modern-table tbody tr:hover {
  background-color: #ddd;
}
#methodoly-table .modern-table tbody td:first-child {
  text-align: left;
}
#methodoly-table .modern-table tbody td {
  font-weight: bold;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
}

#menu-container {
  transition: 0.6s ease;
}

.account-container {
  display: flex;
  gap: 20px;
  align-items: center;
}
.account-container li {
  list-style-type: none;
}

.logo,
.account-container {
  width: 200px;
}
.logo a:hover,
.account-container a:hover {
  text-decoration: underline;
}

.logo {
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo img {
  width: 40px;
  transition: 0.3s;
}
.logo:hover {
  transform: scale(95%);
}
.logo:hover img {
  transform: rotate(45deg);
}

.separator {
  background-color: black;
  width: 1px;
  height: 15px;
}

.login a {
  background-color: #86d07d;
  padding: 8px 20px;
  border-radius: 50px;
}

#register {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
#register form {
  width: 100%;
  background-color: white;
  box-shadow: 2px 0px 30px 10px rgba(0, 0, 0, 0.1);
  padding: 45px;
  padding-bottom: 25px;
  padding-top: 25px;
  border-radius: 25px;
  max-width: 550px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#register form span {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px !important;
  display: block;
}
#register form span strong {
  color: #86d07d;
}
#register .label-container {
  display: flex;
  gap: 25px;
}
#register input,
#register textarea {
  border: none;
  background-color: rgba(0, 0, 0, 0.029);
  padding: 10px 10px;
  border-radius: 10px;
  margin-top: 10px;
  width: 100%;
  margin-bottom: 10px;
}
#register input:focus,
#register textarea:focus {
  outline: 0.5px solid rgba(0, 0, 0, 0.281);
}
#register label {
  font-size: 12px;
}
#register .label {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  width: 100%;
}
#register input[type=submit] {
  background-color: black;
  font-size: 16px;
  color: white;
  padding: 10px 50px;
  border: none;
  border-radius: 50px;
  margin-top: 20px;
  display: block;
  cursor: pointer;
  font-family: "Gabarito";
}
#register .bg-img {
  position: absolute;
  width: 800px;
  bottom: -50px;
  right: -100px;
}
#register p {
  font-size: 13px;
  padding-top: 10px;
}
#register p a {
  color: #4b8e4e;
}
#register p a:hover {
  text-decoration: underline;
}
#register .invalid-feedback span {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: rgb(235, 94, 94);
}
#register .form-check {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: -20px;
}
#register .form-check .form-check-input {
  width: -moz-fit-content;
  width: fit-content;
}

#capp {
  margin-top: 75px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  /* Style pour la backdrop (arrière-plan obscurci) */
  /* Style pour la popup */
}
#capp .bg-img {
  width: 1000px !important;
  height: 1000px !important;
  position: absolute;
  right: -200px;
  bottom: -450px;
  z-index: -1;
}
#capp .container_buttons_links_header_carbon_app .btn {
  margin-top: 15px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 50px;
}
#capp .container_buttons_links_header_carbon_app .btn a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
#capp .container_buttons_links_header_carbon_app .btn a img {
  width: 20px;
  height: 20px;
  -o-object-fit: fill;
     object-fit: fill;
  transition: 0.3s ease;
}
#capp .container_buttons_links_header_carbon_app .btn .btn-img {
  background-color: #86d07c;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.3s ease;
}
#capp .container_buttons_links_header_carbon_app .btn .btn-img:hover img {
  transform: rotate(10deg);
}
#capp .container_buttons_links_header_carbon_app .btn .btn-img-light {
  transition: 0.3s ease;
}
#capp .container_buttons_links_header_carbon_app .btn .btn-img-light:hover {
  transform: translateX(5px);
}
#capp input,
#capp textarea {
  border: none;
  background-color: rgba(0, 0, 0, 0.029);
  padding: 10px 10px;
  border-radius: 10px;
  margin-top: 10px;
  width: 100%;
  margin-bottom: 10px;
}
#capp input:focus,
#capp textarea:focus {
  outline: 0.5px solid rgba(0, 0, 0, 0.281);
}
#capp label {
  font-size: 12px;
}
#capp #backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
#capp #popupForm {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  z-index: 2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#capp .box-l {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 400px;
  background-color: white;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.123);
  padding: 40px;
  border-radius: 25px;
  max-width: 480px;
}
#capp .box-r {
  width: 40%;
}
#capp .flex-container {
  gap: 100px;
  align-items: center;
}
#capp span.title {
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}
#capp .carbon_app_new_entry_main {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
#capp .carbon_app_new_entry_main .box {
  background-color: rgb(240, 240, 240);
  min-width: 100px;
  width: 100%;
  max-width: 120px;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  transition: 0.3s ease;
}
#capp .carbon_app_new_entry_main .box:hover {
  background-color: #86d07c;
}
#capp .carbon_app_new_entry_main .box:hover img {
  transform: translateX(5px);
}
#capp .carbon_app_new_entry_main .box h3 {
  margin-bottom: 0px;
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
}
#capp .carbon_app_new_entry_main .box img {
  width: 20px;
  height: 20px;
  -o-object-fit: fill;
     object-fit: fill;
  transition: 0.3s ease;
}
#capp .carbon_app_new_entry_main .box .btn_carbon_app_new_entry_main {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.new_entry {
  min-height: 100vh;
  margin-top: 75px;
}
.new_entry .back-btn {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s ease;
}
.new_entry .back-btn img {
  width: 15px;
  height: 15px;
  -o-object-fit: fill;
     object-fit: fill;
  transform: rotate(180deg);
  transition: 0.3s ease;
}
.new_entry .back-btn:hover {
  transform: translateX(-5px);
}
.new_entry .box {
  max-width: 400px;
  background-color: #86d07c;
  padding: 30px;
  border-radius: 20px;
}
.new_entry .box .header-container {
  display: flex;
  gap: 20px;
}
.new_entry .box .header-container img {
  width: 20px;
  height: 20px;
  -o-object-fit: fill;
     object-fit: fill;
}
.new_entry .label-container {
  display: flex;
  gap: 25px;
}
.new_entry form {
  max-width: 350px;
}
.new_entry input,
.new_entry textarea,
.new_entry select {
  border: none;
  background-color: rgba(255, 255, 255, 0.396);
  padding: 10px 10px;
  border-radius: 10px;
  margin-top: 10px;
  width: 100%;
  margin-bottom: 10px;
}
.new_entry select {
  padding-right: 10px;
}
.new_entry input:focus,
.new_entry textarea:focus,
.new_entry select:focus {
  outline: 0.5px solid rgba(0, 0, 0, 0.281);
}
.new_entry label {
  font-size: 16px;
}
.new_entry .label {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  width: 100%;
}
.new_entry input[type=submit] {
  background-color: black;
  font-size: 16px;
  color: white;
  padding: 10px 50px;
  border: none;
  border-radius: 50px;
  margin-top: 20px;
  display: block;
  cursor: pointer;
  font-family: "Gabarito";
  transition: 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}
.new_entry input[type=submit]:hover {
  background-color: rgba(0, 0, 0, 0.676);
}
.new_entry .container {
  position: relative;
}

.table_main .container {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.table_main .container .header-content span {
  display: block;
  font-family: "Gabarito";
  text-transform: capitalize;
  font-size: 20px;
}
.table_main .container #aside-section {
  position: sticky;
  position: -webkit-sticky;
  top: 100px;
  width: 35%;
}
.table_main .container #aside-section .aside-header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.table_main .container #aside-section .aside-header img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50px;
  background-color: white;
  padding: 5px;
}
.table_main .container #aside-section #table-scroll {
  height: 90% !important;
  overflow: auto;
  margin-top: 25px;
}
.table_main .container #aside-section .overview-icon {
  width: 16px;
  height: 16px;
  -o-object-fit: fill;
     object-fit: fill;
  transition: 0.3s ease;
}
.table_main .container #aside-section .overview-btn {
  font-size: 12px;
}
.table_main .container #aside-section .overview-btn a {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: flex-end;
  background-color: rgba(255, 255, 255, 0.859);
  padding: 4px 10px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 6px;
}
.table_main .container #aside-section .overview-btn a:hover {
  background-color: white;
}
.table_main .container #aside-section .overview-btn a:hover img {
  transform: translate(5px);
}
.table_main .container #aside-section .box {
  position: sticky;
  top: 100px;
  background-color: #86d07d;
  width: 35%;
  padding: 30px;
  border-radius: 20px;
  width: 100%;
  max-height: 85vh;
  height: 90vh;
  padding-bottom: 50px;
}
.table_main .container #aside-section .box .btn-delete {
  width: 20px;
  height: 20px;
  -o-object-fit: fill;
     object-fit: fill;
  padding: 5px;
  transition: 0.3s ease;
}
.table_main .container #aside-section .box .btn-delete:hover {
  background-color: rgb(255, 122, 122);
  border-radius: 50px;
}
.table_main .container #aside-section .box table {
  width: 100%;
}
.table_main .container #aside-section .box table tr:nth-child(2n+0) {
  background-color: rgba(255, 255, 255, 0.444);
}
.table_main .container #aside-section .box table td {
  padding: 2.5px 4px;
}
.table_main .container #aside-section .box table th {
  padding-bottom: 10px;
}
.table_main .container .body-container {
  margin-top: 100px;
  width: 55%;
}
.table_main .container .body-container p {
  max-width: 400px;
}
.table_main .container .body-container .box-container {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.table_main .container .body-container .box {
  background-color: rgb(246, 246, 246);
  padding: 30px;
  border-radius: 20px;
}

#full_data_view table {
  width: 80%;
}
#full_data_view table tr:nth-child(2n+0) {
  background-color: rgba(255, 255, 255, 0.444);
}
#full_data_view table td {
  padding: 2.5px 4px;
}
#full_data_view table th {
  padding-bottom: 10px;
}/*# sourceMappingURL=style.css.map */