@charset "UTF-8";
:root {
  --primary-color: #15734e;
  --secondary-color: #348061;
  --tertiaire-color: #030f0a;
  --quaternaire-color: #030f0a;
  --background-color: #e7e7e7;
  --background-color-light: #ffffff;
  --background-color-dark: #2c2c2c;
  --site-max-width: 1800px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "M Plus Rounded 1c", sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

@media (max-width: 768px) {
  :root {
    --site-max-width: 100%;
    /* Allow full width on phones */
  }
}
body {
  overflow-x: hidden;
  background-color: var(--background-color);
  width: 100%;
}
body .header {
  position: fixed;
  top: 0;
  left: 0;
  background: #f0f0f0;
  width: 100%;
  height: 80px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 5;
}
body .header .navbar {
  position: relative;
  max-width: var(--site-max-width);
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .header .navbar ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
body .header .navbar ul li {
  display: flex;
  margin: 0 10px;
  gap: 35px;
}
body .header .navbar ul li a {
  white-space: nowrap;
}
body .header .navbar ul li a img {
  height: 56px;
}
body .header .navbar ul li a.btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
  text-transform: uppercase;
}
body .header .navbar ul li a.btn:hover {
  background-color: var(--secondary-color);
}
body .header .navbar ul li a.links {
  position: relative;
  color: var(--primary-color);
  font-size: 1.3rem;
  width: fit-content;
}
body .header .navbar ul li a.links::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}
body .header .navbar ul li a.links:hover {
  color: var(--secondary-color);
}
body .header .navbar ul li a.links:hover::after {
  width: 100%;
}
body .header .navbar .img__resp {
  display: none;
}
body .header .navbar .menu-toggle,
body .header .navbar .menu-close {
  display: none;
  font-size: 2.3rem;
  color: var(--tertiaire-color);
}
body .header .navbar a {
  white-space: nowrap;
}
body .header .navbar a img {
  height: 38px;
}
@media screen and (max-width: 300px) {
  body .header .navbar ul {
    justify-content: center;
  }
  body .header .navbar ul li {
    margin: 0;
  }
  body .header .navbar ul li a img {
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  body.show-mobile-menu {
    overflow: hidden;
  }
  body.show-mobile-menu header::before {
    content: "";
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.2);
    z-index: 10;
  }
  body.show-mobile-menu .header .navbar .nav-menu {
    left: 0;
  }
  body.show-mobile-menu .header .navbar #menu-open-button {
    z-index: 3;
  }
  body .header {
    height: 60px;
  }
  body .header .navbar {
    padding: 0 10px;
  }
  body .header .navbar .img__resp {
    display: flex;
    white-space: nowrap;
  }
  body .header .navbar .img__resp img {
    height: 45px;
  }
  body .header .navbar .nav-menu {
    background: #fff;
    position: fixed;
    top: 0;
    left: -300px;
    height: 100%;
    width: 300px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 100px;
    padding: 100px 0px 60px 0px;
    transition: left 0.2s ease;
    z-index: 11;
  }
  body .header .navbar .nav-menu #menu-close-button {
    position: absolute;
    display: block;
    right: 30px;
    top: 30px;
    font-size: 1.6rem;
    color: var(--tertiaire-color);
  }
  body .header .navbar .nav-menu .nav-item {
    display: flex;
    flex-direction: column;
  }
  body .header .navbar #menu-open-button {
    position: absolute;
    display: block;
    right: 20px;
    font-size: 1.6rem;
    color: var(--tertiaire-color);
  }
}
body .cookies-container {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px;
  width: 100%;
  max-width: 650px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  z-index: 10;
}
body .cookies-container .cookies-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
body .cookies-container .cookies-content p {
  font-size: 0.9rem;
  color: #4e4e4e;
  margin-bottom: 20px;
}
body .cookies-container .cookies-content .btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}
body .cookies-container .cookies-content .btns button {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 115px;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
body .cookies-container .cookies-content .btns button:hover {
  background-color: var(--secondary-color);
}
body .cookies-container .cookies-content .btns a {
  position: relative;
  color: var(--primary-color);
  font-size: 0.9rem;
  width: fit-content;
}
body .cookies-container .cookies-content .btns a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}
body .cookies-container .cookies-content .btns a:hover {
  color: var(--secondary-color);
}
body .cookies-container .cookies-content .btns a:hover::after {
  width: 100%;
}
body .home {
  position: relative;
  height: 85vh;
  max-width: var(--site-max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 0 20px;
}
body .home .text {
  margin-top: 100px;
}
body .home .text h2 {
  font-weight: 700;
  font-family: "M Plus Rounded 1c", sans-serif;
  font-size: 3.2rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
body .home .text h4 {
  color: #4e4e4e;
  font-size: 1.3rem;
}
body .home form {
  max-width: 1000px;
}
body .home form .input-field {
  background: white;
  padding: 7px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
body .home form .input-field input {
  width: 100%;
  padding: 10px 8px;
  border-radius: 5px;
  border: none;
  font-size: 0.9rem;
  background: #ebebeb;
}
body .home form .input-field input:focus {
  outline: #15734e 2px solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
body .home form button {
  margin-top: 15px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  width: fit-content;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
}
body .home form button:hover {
  background-color: var(--secondary-color);
}
body .home .btn-link {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  width: fit-content;
}
body .home .btn-link:hover {
  background-color: var(--secondary-color);
}
body .home .frontphoto {
  position: absolute;
  top: 0;
  right: -382px;
  width: 67%;
  height: 134%;
  background: #15734e;
  transform: rotate(20deg);
  z-index: -10;
}
body .home .frontphoto img {
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 100px);
  transform: translate(-50%, -50%) rotate(-20deg);
  width: 450px;
}
@media screen and (max-width: 1550px) {
  body .home form {
    max-width: 1100px;
  }
  body .home .frontphoto img {
    display: none;
  }
}
@media screen and (max-width: 1350px) {
  body .home form {
    max-width: 1100px;
  }
  body .home .frontphoto {
    display: none;
  }
}
@media screen and (max-width: 895px) {
  body .home .text h2 {
    font-size: 2.7rem;
  }
  body .home .text h4 {
    color: #4e4e4e;
    font-size: 1.2rem;
  }
  body .home form .input-field input {
    padding: 8px;
    font-size: 0.8rem;
  }
  body .home form button {
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 750px) {
  body .home .text h2 {
    font-size: 2.1rem;
    white-space: nowrap;
  }
  body .home .text h4 {
    color: #4e4e4e;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  body .home form button {
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 510px) {
  body .home .text h2 {
    font-size: 1.3rem;
    white-space: nowrap;
  }
  body .home .text h4 {
    color: #4e4e4e;
    font-size: 0.9rem;
    max-width: fit-content;
    white-space: normal;
  }
  body .home form button {
    font-size: 0.85rem;
  }
}
body .information {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: fit-content;
  padding: 80px 0px;
  background: white;
}
body .information h5 {
  color: #4e4e4e;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
body .information h2 {
  font-size: 2.8rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
body .information .boxes {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1300px;
  width: 100%;
  margin-top: 25px;
  gap: 30px;
}
body .information .boxes .arrow-pointer {
  display: flex;
  align-items: center;
  justify-content: center;
}
body .information .boxes .arrow-pointer span {
  width: 35px;
  height: 35px;
  font-size: 1.5rem;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .information .boxes .swiper-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .information .boxes .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  padding: 20px 55px;
  border: 1px solid #ebebeb;
  border-radius: 10px;
}
body .information .boxes .box span {
  font-size: 4.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
body .information .boxes .box h6 {
  font-size: 1.2rem;
}
body .information .boxes .box p {
  max-width: 230px;
  font-size: 0.9rem;
  text-align: center;
  color: #4e4e4e;
}
@media screen and (max-width: 1250px) {
  body .information h2 {
    font-size: 1.7rem;
  }
  body .information .swiper {
    width: 100%;
    padding: 20px 0;
  }
  body .information .swiper-slide {
    display: flex;
    justify-content: center;
  }
  body .information .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    z-index: 10;
  }
  body .information .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
  }
  body .information .boxes .arrow-pointer {
    display: none;
  }
  body .information .boxes .box {
    border: none;
    width: 450px;
    cursor: pointer;
  }
  body .information .boxes .box:active {
    cursor: grabbing;
  }
}
@media screen and (max-width: 480px) {
  body .information h2 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 399px) {
  body .information h2 {
    font-size: 1.35rem;
  }
}
@media (min-width: 1250px) {
  body .information .swiper-pagination {
    display: none;
  }
}
body .information .information-content {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
body .information .information-content h2 {
  font-size: 2.6rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
body .information .information-content p {
  color: #4e4e4e;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  body .information .information-content h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  body .information .information-content p {
    text-align: center;
    font-size: 1rem;
  }
}
@media screen and (max-width: 399px) {
  body .information .information-content h2 {
    font-size: 1.35rem;
  }
  body .information .information-content p {
    font-size: 1rem;
  }
}
body .information .contact__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
body .information .contact__form h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
body .information .contact__form label {
  display: block;
  font-size: 1rem;
  color: #161616;
  margin-bottom: 5px;
}
body .information .contact__form input,
body .information .contact__form textarea {
  width: 100%;
  padding: 10px 8px;
  border-radius: 5px;
  border: none;
  font-size: 0.9rem;
  background: #fff;
}
body .information .contact__form input:focus,
body .information .contact__form textarea:focus {
  outline: #15734e 2px solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
body .information .contact__form textarea {
  height: 150px;
  resize: vertical;
}
body .information .contact__form button {
  margin-top: 15px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  width: fit-content;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
}
body .information .contact__form button:hover {
  background-color: var(--secondary-color);
}
@media screen and (max-width: 600px) {
  body .information {
    padding: 20px 25px;
  }
  body .information h5 {
    text-align: center;
  }
  body .information .contact__form {
    padding: 10px;
    gap: 8px;
  }
  body .information .contact__form h3 {
    font-size: 1.2rem;
  }
  body .information .contact__form label {
    font-size: 0.9rem;
  }
  body .information .contact__form input,
  body .information .contact__form textarea {
    font-size: 0.85rem;
    padding: 8px 6px;
  }
  body .information .contact__form button {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
}
body .over-ons {
  position: relative;
  height: 85vh;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 0 20px;
}
body .over-ons .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
body .over-ons .content h1 {
  font-weight: 700;
  font-family: "M Plus Rounded 1c", sans-serif;
  font-size: 3.2rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
body .over-ons .content h2 {
  font-weight: 700;
  font-family: "M Plus Rounded 1c", sans-serif;
  font-size: 2.7rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}
body .over-ons .content p {
  color: #3f3f3f;
  font-size: 1.3rem;
  max-width: 1150px;
}
body .over-ons .content .content__btn {
  margin-top: 20px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  width: fit-content;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
}
body .over-ons .content .content__btn:hover {
  background-color: var(--secondary-color);
}
@media screen and (max-width: 480px) {
  body .over-ons .content h1 {
    font-size: 2.3rem;
  }
  body .over-ons .content h2 {
    text-align: center;
    font-size: 1rem;
  }
}
@media screen and (max-width: 429px) {
  body .over-ons .content h1 {
    font-size: 1.8rem;
  }
  body .over-ons .content h2 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 895px) {
  body .over-ons .text h2 {
    font-size: 2.7rem;
  }
  body .over-ons .text h4 {
    color: #4e4e4e;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 750px) {
  body .over-ons .text h2 {
    font-size: 2.1rem;
    white-space: nowrap;
  }
  body .over-ons .text h4 {
    color: #4e4e4e;
    font-size: 0.9rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 510px) {
  body .over-ons .text h2 {
    font-size: 1.3rem;
    white-space: nowrap;
  }
  body .over-ons .text h4 {
    color: #4e4e4e;
    font-size: 0.9rem;
    max-width: fit-content;
    white-space: normal;
  }
}
body .branches__choice {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: fit-content;
  padding: 80px 0px;
  background: white;
}
body .branches__choice .branches__choice__content {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
body .branches__choice .branches__choice__content h2 {
  font-size: 2.6rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  text-align: center;
}
body .branches__choice .branches__choice__content p {
  color: #4e4e4e;
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  body .branches__choice .branches__choice__content h2 {
    font-size: 1.8rem;
    text-align: center;
  }
  body .branches__choice .branches__choice__content p {
    text-align: center;
    font-size: 1rem;
  }
}
@media screen and (max-width: 399px) {
  body .branches__choice .branches__choice__content h2 {
    font-size: 1.7rem;
  }
  body .branches__choice .branches__choice__content p {
    font-size: 1rem;
  }
}
body .branches__choice .branches__choice__content .branches__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 850px;
  margin: 0 auto;
}
body .branches__choice .branches__choice__content .branches__list .branch-item {
  border-radius: 8px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .branches__choice .branches__choice__content .branches__list .branch-item h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 8px;
  text-align: center;
}
body .branches__choice .branches__choice__content .branches__list .branch-item span {
  color: var(--primary-color);
  font-size: 2.7rem;
  text-align: center;
}
@media screen and (max-width: 900px) {
  body .branches__choice .branches__choice__content .branches__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
body .dashboard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 70px;
  height: fit-content;
  background: #fff;
  padding: 80px 65px;
}
@media screen and (max-width: 600px) {
  body .dashboard {
    gap: 30px;
    padding: 80px 20px;
  }
  body .dashboard.padding {
    padding: 60px 0px;
  }
}
body .dashboard .text {
  margin-top: 50px;
}
body .dashboard .text h2 {
  font-weight: 700;
  font-size: 3.2rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
body .dashboard .text p {
  color: #4e4e4e;
  font-weight: 500;
  font-size: 1.3rem;
}
@media screen and (max-width: 600px) {
  body .dashboard .text {
    margin: 0;
  }
  body .dashboard .text h2 {
    font-size: 2.4rem;
  }
  body .dashboard .text p {
    font-size: 1.2rem;
  }
}
body .dashboard .btn-filter {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 1001;
  background: var(--primary-color);
  padding: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}
body .dashboard .btn-filter span {
  color: #fff;
  font-size: 1.3rem;
}
body .dashboard .btn-filter:hover {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}
@media screen and (max-width: 600px) {
  body .dashboard .btn-filter {
    display: flex;
  }
}
body .dashboard .box-sector {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 16px;
  width: 100%;
  height: fit-content;
}
@media screen and (max-width: 600px) {
  body .dashboard .box-sector {
    display: flex;
    flex-direction: column;
  }
  body .dashboard .box-sector .boxing:last-child {
    width: 100%;
    flex-direction: column;
  }
}
@media screen and (max-width: 950px) {
  body .dashboard .box-sector .filter-box {
    display: none;
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 100%;
    margin: 80px 0 0 0;
    z-index: 1000;
  }
  body .dashboard .box-sector .filter-box h3 {
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  body .dashboard .box-sector .filter-box.active {
    display: block;
  }
}
body .dashboard .box-sector .boxing {
  grid-column: span 1;
}
body .dashboard .box-sector .boxing h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
body .dashboard .box-sector .boxing .search-box {
  background: var(--background-color);
  border-radius: 8px;
  padding: 20px;
}
body .dashboard .box-sector .boxing .search-box .search {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}
body .dashboard .box-sector .boxing .search-box .search label {
  display: block;
  font-size: 1rem;
  color: #161616;
  margin-bottom: 5px;
}
body .dashboard .box-sector .boxing .search-box .search input,
body .dashboard .box-sector .boxing .search-box .search select {
  width: 100%;
  padding: 10px 8px;
  border-radius: 5px;
  border: none;
  font-size: 0.9rem;
  background: #fff;
}
body .dashboard .box-sector .boxing .search-box .search input:focus,
body .dashboard .box-sector .boxing .search-box .search select:focus {
  outline: #15734e 2px solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
body .dashboard .box-sector .boxing .search-box .btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  width: 100%;
}
body .dashboard .box-sector .boxing .search-box .btn:hover {
  background-color: var(--secondary-color);
}
body .dashboard .box-sector .boxing .search-btn {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
body .dashboard .box-sector .boxing .search-btn input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  border: none;
  outline: none;
  box-shadow: inset 0 0 0 1px #ccc;
}
body .dashboard .box-sector .boxing .search-btn input[type=checkbox]:checked {
  background-color: #15734e;
  box-shadow: none;
}
body .dashboard .box-sector .boxing .search-btn input[type=checkbox]:checked::after {
  content: "✓";
  color: white;
  font-size: 14px;
  position: absolute;
  top: -0.5px;
  left: 1px;
  line-height: 18px;
}
body .dashboard .box-sector .boxing:last-child {
  display: flex;
  flex-wrap: wrap;
  background: transparent;
  gap: 16px;
}
body .dashboard .box-sector .boxing:last-child .box {
  position: relative;
  flex: 0 0 calc(33.333% - 10.67px);
  background: var(--background-color);
  border-radius: 8px;
  height: fit-content;
}
body .dashboard .box-sector .boxing:last-child .box .box-inner {
  position: relative;
  height: 100%;
  width: 100%;
}
body .dashboard .box-sector .boxing:last-child .box .box-inner .image {
  position: relative;
  width: 100%;
  height: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  overflow: hidden;
}
body .dashboard .box-sector .boxing:last-child .box .box-inner .image::before {
  content: "Nieuw";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 5px;
  transform: translate(-50%, -50%) rotate(-15deg);
  z-index: 2;
  color: #fff;
  background: var(--primary-color);
  font-weight: 600;
}
body .dashboard .box-sector .boxing:last-child .box .box-inner .image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
body .dashboard .box-sector .boxing:last-child .box .box-inner .image p {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  padding: 5px 12px;
  font-size: 0.9rem;
  background: var(--primary-color);
  border-radius: 8px;
  font-weight: 500;
}
body .dashboard .box-sector .boxing:last-child .box .box-inner .image p:last-child {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
  color: var(--primary-color);
  background: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .dashboard .box-sector .boxing:last-child .box .box-inner .image p:last-child span {
  font-size: 1rem;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
body .dashboard .box-sector .boxing:last-child .box .texts {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  gap: 5px;
  height: fit-content;
}
body .dashboard .box-sector .boxing:last-child .box .texts h4 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
}
body .dashboard .box-sector .boxing:last-child .box .texts .line {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  width: 100%;
  margin-bottom: 5px;
}
body .dashboard .box-sector .boxing:last-child .box .texts .line p {
  font-size: 0.9rem;
  color: #4e4e4e;
  font-weight: 500;
}
body .dashboard .box-sector .boxing:last-child .box .texts .line p.color {
  color: #4e4e4e;
  font-weight: 300;
}
body .dashboard .box-sector .boxing:last-child .box .texts .line span {
  font-size: 1.3rem;
  color: var(--secondary-color);
  font-weight: 600;
}
body .dashboard .background-color {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
}
body .dashboard .background-color.active {
  display: block;
}
body .dashboard .pop-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: #fff;
  z-index: 1000;
  padding: 15px 35px;
  border-radius: 3px;
}
body .dashboard .pop-container .buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 10px;
  margin-top: 15px;
}
body .dashboard .pop-container .buttons button {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 150px;
  width: 100%;
}
body .dashboard .pop-container .buttons button:hover {
  background-color: var(--secondary-color);
}
body .dashboard .pop-container #tijd-keuze-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  width: 100%;
}
body .dashboard .pop-container #tijd-keuze-container label {
  font-size: 1rem;
  color: #161616;
  margin-bottom: 5px;
}
body .dashboard .pop-container #tijd-keuze-container select {
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: none;
  font-size: 0.9rem;
  background: #ebebeb;
  margin-bottom: 20px;
  text-align: center;
}
body .dashboard .pop-container #tijd-keuze-container select:focus {
  outline: #15734e 2px solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
body .dashboard .pop-container #tijd-keuze-container .tk-btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  width: 100%;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
}
body .dashboard .pop-container #tijd-keuze-container .tk-btn:hover {
  background-color: var(--secondary-color);
}
body .dashboard .pop-container.active {
  display: flex;
}
body .dashboard .popup-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 680px;
  background: #fff;
  z-index: 1000;
  padding: 45px 20px;
  border-radius: 5px;
  gap: 25px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  visibility: hidden;
  pointer-events: none;
}
body .dashboard .popup-container.active {
  display: flex;
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
body .dashboard .popup-container .close-btn-pop {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  color: #4e4e4e;
  font-size: 1.5rem;
  cursor: pointer;
}
body .dashboard .popup-container .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 580px;
}
body .dashboard .popup-container .col:last-child {
  align-items: flex-start;
  overflow-y: auto;
}
body .dashboard .popup-container .col:last-child::-webkit-scrollbar {
  width: 0;
  height: 0;
}
body .dashboard .popup-container .col .img {
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.0274509804);
  border-radius: 8px;
  padding: 5px;
}
body .dashboard .popup-container .col .img img {
  height: 350px;
  width: auto;
  object-fit: contain;
  display: block;
}
body .dashboard .popup-container .col h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
body .dashboard .popup-container .col .price {
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
}
body .dashboard .popup-container .col .text {
  font-size: 0.9rem;
  color: #4e4e4e;
  font-weight: 500;
  margin: 0 0 20px 0;
  max-width: 100%;
  width: 100%;
}
body .dashboard .popup-container .col select {
  width: 75px;
  padding: 8px;
  border-radius: 5px;
  border: none;
  font-size: 0.9rem;
  background: #ebebeb;
  margin-bottom: 20px;
  margin-left: 2px;
  text-align: center;
}
body .dashboard .popup-container .col select:focus {
  outline: #15734e 2px solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
body .dashboard .popup-container .col .btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 30px;
}
body .dashboard .popup-container .col .btns button {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  width: 100%;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
}
body .dashboard .popup-container .col .btns button:hover {
  background-color: transparent;
  color: var(--primary-color);
}
body .dashboard .popup-container .col .btns button:last-child {
  background-color: transparent;
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  width: 100%;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
}
body .dashboard .popup-container .col .btns button:last-child:hover {
  background-color: var(--primary-color);
  color: #fff;
}
body .dashboard .popup-container .col .ingredients-remove,
body .dashboard .popup-container .col .add_extra {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
body .dashboard .popup-container .col .ingredients-remove:last-child,
body .dashboard .popup-container .col .add_extra:last-child {
  margin-top: 20px;
}
body .dashboard .popup-container .col .ingredients-remove:last-child div label,
body .dashboard .popup-container .col .add_extra:last-child div label {
  font-size: 0.9rem;
  font-weight: 500;
}
body .dashboard .popup-container .col .ingredients-remove div,
body .dashboard .popup-container .col .add_extra div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background: #fcfcfc;
  padding: 6px 8px;
  cursor: pointer;
}
body .dashboard .popup-container .col .ingredients-remove div input,
body .dashboard .popup-container .col .add_extra div input {
  width: 18px;
  height: 18px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 4px;
  background-color: white;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  border: none;
  outline: none;
  box-shadow: inset 0 0 0 1px #ccc;
}
body .dashboard .popup-container .col .ingredients-remove div input[type=checkbox]:checked,
body .dashboard .popup-container .col .add_extra div input[type=checkbox]:checked {
  background-color: #15734e;
  box-shadow: none;
}
body .dashboard .popup-container .col .ingredients-remove div label,
body .dashboard .popup-container .col .add_extra div label {
  font-size: 1rem;
  color: #4e4e4e;
  font-weight: 500;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
body .dashboard .popup-container .col .ingredients-remove .remove-btn,
body .dashboard .popup-container .col .add_extra .remove-btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
}
body .dashboard .popup-container .col .ingredients-remove .remove-btn:hover,
body .dashboard .popup-container .col .add_extra .remove-btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
}
@media screen and (max-width: 600px) {
  body .dashboard .popup-container {
    flex-direction: column;
    width: 95%;
    overflow-y: auto;
  }
  body .dashboard .popup-container .col {
    height: fit-content;
    margin-top: 10px;
    overflow-y: hidden;
  }
  body .dashboard .popup-container .col .img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-height: 350px;
    width: 100%;
  }
  body .dashboard .popup-container .col .img img {
    height: 100%;
    width: auto;
  }
  body .dashboard .popup-container .col h2 {
    font-size: 1.4rem;
    text-align: center;
    white-space: nowrap;
  }
}
body .dashboard .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 50px 20px 20px 20px;
  height: fit-content;
}
body .dashboard .container .banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  width: 100%;
  max-width: 1700px;
  border-radius: 8px;
  background: var(--background-color-light);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
body .dashboard .container .banner .banner__image {
  position: relative;
  width: 100%;
}
body .dashboard .container .banner .banner__image img {
  width: 100%;
  height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  object-fit: cover;
  display: block;
}
body .dashboard .container .banner .banner__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 150px;
  gap: 150px;
  width: 100%;
  max-height: 212px;
}
body .dashboard .container .banner .banner__content .img {
  max-height: 140px;
  display: flex;
  align-items: center;
}
body .dashboard .container .banner .banner__content .img img {
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}
body .dashboard .container .banner .banner__content .information-cards {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 600px;
}
body .dashboard .container .banner .banner__content .information-cards .inner-card {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 150px;
}
body .dashboard .container .banner .banner__content .information-cards .inner-card .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
body .dashboard .container .banner .banner__content .information-cards .inner-card .info .card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  width: 100%;
}
body .dashboard .container .banner .banner__content .information-cards .inner-card .info .card span {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 600;
}
body .dashboard .container .banner .banner__content .information-cards .inner-card .info .card p,
body .dashboard .container .banner .banner__content .information-cards .inner-card .info .card a {
  font-size: 0.9rem;
  color: #4e4e4e;
  font-weight: 500;
}
body .dashboard .container .order-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 1700px;
}
body .dashboard .container .order-details .progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
}
body .dashboard .container .order-details .progress-bar .progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  color: #c0c0c0;
}
body .dashboard .container .order-details .progress-bar .progress-step span {
  font-size: 32px;
  background: #e0e0e0;
  border-radius: 50%;
  padding: 10px;
  transition: background 0.3s ease, color 0.3s ease;
}
body .dashboard .container .order-details .progress-bar .progress-step p {
  margin-top: 8px;
  font-size: 0.9rem;
  text-align: center;
}
body .dashboard .container .order-details .progress-bar .progress-step.active {
  color: #15734e;
}
body .dashboard .container .order-details .progress-bar .progress-step.active span {
  background: #15734e;
  color: white;
}
body .dashboard .container .order-details .progress-bar .progress-step.active:not(:last-child)::after {
  background: #15734e;
}
body .dashboard .container .order-details .progress-bar .progress-step.cancelled {
  color: #b43535;
}
body .dashboard .container .order-details .progress-bar .progress-step.cancelled span {
  background: #b43535;
  color: white;
}
body .dashboard .container .order-details .progress-bar .progress-step.cancelled:not(:last-child)::after {
  background: #b43535;
}
body .dashboard .container .order-details .progress-bar .progress-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -50%;
  width: 100%;
  height: 4px;
  background: #e0e0e0;
  z-index: -1;
}
body .dashboard .container .order-details .cards {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  width: 100%;
  gap: 16px;
}
body .dashboard .container .order-details .cards .card {
  padding: 10px 10px 20px 10px;
  grid-column: span 5;
  background: var(--background-color-light);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
body .dashboard .container .order-details .cards .card .title h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
}
body .dashboard .container .order-details .cards .card .title p {
  font-size: 0.8rem;
  color: #4e4e4e;
  font-weight: 500;
  margin-bottom: 10px;
}
body .dashboard .container .order-details .cards .card .input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  margin-bottom: 5px;
  gap: 10px;
}
body .dashboard .container .order-details .cards .card .input h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: black;
}
body .dashboard .container .order-details .cards .card .input .item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
body .dashboard .container .order-details .cards .card .input .item .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
}
body .dashboard .container .order-details .cards .card .input p {
  font-size: 0.9rem;
  color: #4e4e4e;
  font-weight: 500;
}
body .dashboard .container .order-details .cards .card .input p.status {
  background: var(--primary-color);
  color: white;
  padding: 3px 5px;
  border-radius: 3px;
  text-transform: capitalize;
}
body .dashboard .container .order-details .cards .card .input p.status.Geannuleerd {
  background: #b43535;
}
body .dashboard .container .order-details .cards .card .input p.share {
  color: #3698f4;
  cursor: pointer;
}
body .dashboard .container .order-details .cards .card:last-child {
  padding: 0;
}
body .dashboard .container .order-details .cards .card:last-child iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}
body .dashboard .container .grid-layout {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  max-width: 1700px;
  width: 100%;
  gap: 16px;
}
body .dashboard .container .grid-layout .grid.first {
  grid-column: span 3;
  background: var(--background-color-light);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: fit-content;
}
body .dashboard .container .grid-layout .grid.first .grid__title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: var(--primary-color);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
body .dashboard .container .grid-layout .grid.first .grid__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .dashboard .container .grid-layout .grid.first .grid__content .grid__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: fit-content;
  padding: 18px 13px;
  border-bottom: 1px solid #ebebeb;
  cursor: pointer;
}
body .dashboard .container .grid-layout .grid.first .grid__content .grid__item:last-child {
  border-bottom: none;
}
body .dashboard .container .grid-layout .grid.first .grid__content .grid__item p {
  font-size: 1rem;
  font-weight: 600;
  color: #4e4e4e;
  text-align: center;
}
body .dashboard .container .grid-layout .grid.first .grid__content .grid__item.active {
  background: rgba(21, 115, 77, 0.8235294118);
  color: #fff;
}
body .dashboard .container .grid-layout .grid.first .grid__content .grid__item.active p {
  color: #fff;
}
body .dashboard .container .grid-layout .grid.second {
  position: relative;
  grid-column: span 8;
}
body .dashboard .container .grid-layout .grid.second .grid__selector {
  position: relative;
  background: var(--background-color-light);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: fit-content;
  gap: 10px;
  padding: 0px 10px;
  height: 50px;
}
body .dashboard .container .grid-layout .grid.second .grid__selector .grid__search {
  background: #cacaca;
  border-radius: 100px;
  padding: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
body .dashboard .container .grid-layout .grid.second .grid__selector .grid__search span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
}
body .dashboard .container .grid-layout .grid.second .grid__selector .scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  flex: 1;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 100%;
  cursor: grab;
  user-select: none;
}
body .dashboard .container .grid-layout .grid.second .grid__selector .scroll-wrapper::-webkit-scrollbar {
  display: none;
}
body .dashboard .container .grid-layout .grid.second .grid__selector .scroll-wrapper.dragging {
  cursor: grabbing;
}
body .dashboard .container .grid-layout .grid.second .grid__selector .scroll-wrapper.dragging .grid__cat {
  cursor: grabbing;
}
body .dashboard .container .grid-layout .grid.second .grid__selector .scroll-wrapper .grid__cat {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  cursor: grab;
  user-select: none;
}
body .dashboard .container .grid-layout .grid.second .grid__selector .scroll-wrapper .grid__cat .grid__item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10px 15px;
  border-right: 1px solid #ebebeb;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
body .dashboard .container .grid-layout .grid.second .grid__selector .scroll-wrapper .grid__cat .grid__item.active {
  background: rgba(21, 115, 77, 0.8235294118);
  color: #fff;
}
body .dashboard .container .grid-layout .grid.second .grid__selector .search__input {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 40px;
  display: none;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
body .dashboard .container .grid-layout .grid.second .grid__selector .search__input.active {
  display: flex;
}
body .dashboard .container .grid-layout .grid.second .grid__selector .search__input input {
  width: 100%;
  height: 100%;
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
  font-size: 0.9rem;
  background: #ebebeb;
}
body .dashboard .container .grid-layout .grid.second .grid__selector .search__input input:focus {
  outline: #15734e 2px solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
body .dashboard .container .grid-layout .grid.second .grid__selector .search__input button {
  background-color: var(--primary-color);
  color: #fff;
  padding: 8px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  width: fit-content;
  display: flex;
  align-items: center;
}
body .dashboard .container .grid-layout .grid.second .grid__selector .search__input button:hover {
  background-color: var(--secondary-color);
}
body .dashboard .container .grid-layout .grid.second .grid__items {
  display: flex;
  flex-direction: column;
}
body .dashboard .container .grid-layout .grid.second .grid__items .grid__column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
body .dashboard .container .grid-layout .grid.second .grid__items .grid__column .grid__category {
  margin-top: 20px;
}
body .dashboard .container .grid-layout .grid.second .grid__items .grid__column .grid__category h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
}
body .dashboard .container .grid-layout .grid.second .grid__items .grid__column .row {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
body .dashboard .container .grid-layout .grid.second .grid__items .grid__column .row .grid__item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 50%;
  height: fit-content;
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--background-color-light);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
body .dashboard .container .grid-layout .grid.second .grid__items .grid__column .row .grid__item .col {
  position: relative;
  margin-bottom: 20px;
}
body .dashboard .container .grid-layout .grid.second .grid__items .grid__column .row .grid__item .col h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}
body .dashboard .container .grid-layout .grid.second .grid__items .grid__column .row .grid__item .col .price {
  font-size: 0.9rem;
  color: #4e4e4e;
  font-weight: 500;
  margin-bottom: 5px;
}
body .dashboard .container .grid-layout .grid.second .grid__items .grid__column .row .grid__item .col p {
  font-size: 0.8rem;
  color: #4e4e4e;
  font-weight: 400;
  margin-bottom: 5px;
  max-width: 95%;
  width: 100%;
}
body .dashboard .container .grid-layout .grid.second .grid__items .grid__column .row .grid__item .col.img {
  height: 120px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .dashboard .container .grid-layout .grid.second .grid__items .grid__column .row .grid__item .col.img img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
body .dashboard .container .grid-layout .grid.second .grid__items .grid__column .row .grid__item .btn-add {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--primary-color);
  color: #fff;
  padding: 5px;
  height: 35px;
  width: 35px;
  border-radius: 115px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .dashboard .container .grid-layout .grid.second .grid__items .grid__column .row .grid__item .btn-add:hover {
  background-color: var(--secondary-color);
}
body .dashboard .container .grid-layout .grid.second .grid__items .grid__column .row .grid__item .btn-add span {
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
}
body .dashboard .container .grid-layout .grid.second .grid__items .grid__column .row .grid__item .bottom {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 20px;
}
body .dashboard .container .grid-layout .grid.second .grid__items .grid__column .row .grid__item .bottom p {
  font-size: 0.9rem;
  color: #fff;
  background: var(--primary-color);
  padding: 3px 6px;
  border-radius: 4px;
  font-weight: 500;
}
body .dashboard .container .grid-layout .grid.third {
  grid-column: span 3;
  background: var(--background-color-light);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: fit-content;
}
body .dashboard .container .grid-layout .grid.third .grid__title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: var(--primary-color);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
body .dashboard .container .grid-layout .grid.third .resp-btn,
body .dashboard .container .grid-layout .grid.third .resp__title {
  display: none;
}
body .dashboard .container .grid-layout .grid.third .grid__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  height: fit-content;
  padding: 10px 15px;
  border-bottom: 1px solid #ebebeb;
  cursor: pointer;
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__item:last-child {
  border-bottom: none;
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__item h4 {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 1.1rem;
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__item .extras {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__item .extras p {
  font-size: 1rem;
  font-weight: 500;
  color: #111111;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__item .right {
  position: absolute;
  right: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__item .right .price {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 500;
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__item .right .delete-item {
  color: #4e4e4e;
  font-size: 1.2rem;
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0px;
  gap: 10px;
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__sub .grid__sub__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0px 15px;
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__sub .grid__sub__item .price {
  font-size: 1rem;
  color: var(--secondary-color);
  font-weight: 600;
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__sub .grid__sub__item.border {
  padding-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__sub .grid__sub__item:last-child {
  margin-top: 5px;
  padding-bottom: 5px;
  border-bottom: none;
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__sub .grid__sub__item input {
  width: 100%;
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
  font-size: 0.9rem;
  background: #ebebeb;
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__sub .grid__sub__item input:focus {
  outline: #15734e 2px solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__sub .grid__sub__item .btn-check {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  height: 41px;
  width: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  pointer-events: auto;
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__sub .grid__sub__item .btn-check:hover {
  background-color: var(--secondary-color);
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__sub button {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  width: 100%;
}
body .dashboard .container .grid-layout .grid.third .grid__content .grid__sub button:hover {
  background-color: var(--secondary-color);
}
@media screen and (max-width: 600px) {
  body .dashboard .container {
    padding: 0;
  }
  body .dashboard .container .banner {
    border-radius: 0;
    box-shadow: none;
  }
  body .dashboard .container .banner .banner__image {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
  }
  body .dashboard .container .banner .banner__image img {
    border-radius: 0;
    width: 140%;
  }
  body .dashboard .container .banner .banner__content {
    padding: 20px 10px;
  }
  body .dashboard .container .banner .banner__content .img {
    display: none;
  }
  body .dashboard .container .banner .banner__content .information-cards {
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
  }
  body .dashboard .container .banner .banner__content .information-cards .inner-card {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 5px;
  }
  body .dashboard .container .banner .banner__content .information-cards .inner-card .info {
    align-items: center;
  }
  body .dashboard .container .banner .banner__content .information-cards .inner-card .info .card {
    justify-content: center;
  }
  body .dashboard .container .grid-layout {
    display: flex;
    padding: 10px 15px;
  }
  body .dashboard .container .grid-layout .grid.first {
    display: none;
  }
  body .dashboard .container .grid-layout .grid.second {
    overflow-x: hidden;
    padding: 5px 0px;
  }
  body .dashboard .container .grid-layout .grid.second .grid__items .grid__column.clicked__items {
    padding: 0 5px;
  }
  body .dashboard .container .grid-layout .grid.second .grid__items .grid__column.clicked__items .row {
    flex-direction: column;
    gap: 10px;
  }
  body .dashboard .container .grid-layout .grid.second .grid__items .grid__column.clicked__items .row .grid__item {
    width: 100%;
  }
  body .dashboard .container .grid-layout .grid.second .grid__items .grid__column.clicked__items .row .grid__item .col h4 {
    font-size: 1rem;
  }
  body .dashboard .container .grid-layout .grid.third {
    display: flex;
    position: fixed;
    padding: 10px;
    z-index: 1005;
    background: none;
    box-shadow: none;
  }
  body .dashboard .container .grid-layout .grid.third .grid__title {
    display: none;
  }
  body .dashboard .container .grid-layout .grid.third .resp-btn {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 95%;
    display: flex;
    height: fit-content;
    padding: 8px 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--primary-color);
    z-index: 1005;
    border-radius: 50px;
    cursor: pointer;
  }
  body .dashboard .container .grid-layout .grid.third .resp-btn span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
  }
  body .dashboard .container .grid-layout .grid.third .resp-btn h5 {
    font-size: 1rem;
    color: #fff;
    margin-top: 2px;
  }
  body .dashboard .container .grid-layout .grid.third .resp-btn p {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: var(--secondary-color);
    color: #fff;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
  }
  body .dashboard .container .grid-layout .grid.third form.grid__content.clicked__items {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    z-index: 1008;
    padding: 15px 0px;
    overflow-y: auto;
    justify-content: flex-start;
    display: none;
  }
  body .dashboard .container .grid-layout .grid.third form.grid__content.clicked__items.active {
    display: flex;
  }
  body .dashboard .container .grid-layout .grid.third form.grid__content.clicked__items .resp__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0px 15px;
    margin-bottom: 20px;
  }
  body .dashboard .container .grid-layout .grid.third form.grid__content.clicked__items .resp__title h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  body .dashboard .container .grid-layout .grid.third form.grid__content.clicked__items .resp__title button span {
    font-size: 1.5rem;
    color: #4e4e4e;
  }
  body .dashboard .container .grid-layout .grid.third form.grid__content.clicked__items .grid__sub {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    margin-top: auto;
  }
}
body .footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: fit-content;
  padding: 30px 0px 20px 0px;
  background: var(--background-color);
  max-width: var(--site-max-width);
  width: 100%;
  margin: 0 auto;
}
body .footer .footer-logo {
  display: flex;
  align-items: center;
  width: 100%;
}
body .footer .footer-logo img {
  height: 50px;
  width: auto;
}
body .footer .footer-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  margin-top: 25px;
  gap: 300px;
}
body .footer .footer-content .footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body .footer .footer-content .footer-inner h2 {
  font-size: 1.2rem;
}
body .footer .footer-content .footer-inner a {
  position: relative;
  color: var(--primary-color);
  font-size: 1rem;
  width: fit-content;
  white-space: nowrap;
}
body .footer .footer-content .footer-inner a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}
body .footer .footer-content .footer-inner a:hover {
  color: var(--secondary-color);
}
body .footer .footer-content .footer-inner a:hover::after {
  width: 100%;
}
body .footer .footer-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
body .footer .footer-text p {
  font-size: 1rem;
  color: #4e4e4e;
}
body .footer .footer-text p a {
  position: relative;
  color: var(--primary-color);
  font-size: 1rem;
  width: fit-content;
}
body .footer .footer-text p a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}
body .footer .footer-text p a:hover {
  color: var(--secondary-color);
}
body .footer .footer-text p a:hover::after {
  width: 100%;
}
@media screen and (max-width: 1833px) {
  body .footer {
    padding: 30px 20px 20px 20px;
  }
}
@media screen and (max-width: 500px) {
  body .footer .footer-logo {
    padding-left: 10px;
  }
  body .footer .footer-logo img {
    height: 40px;
  }
  body .footer .footer-content {
    gap: 0;
    padding: 0px 15px;
    display: flex;
    justify-content: space-between;
  }
  body .footer .footer-content .footer-inner {
    gap: 8px;
  }
  body .footer .footer-content .footer-inner h2 {
    font-size: 1.1rem;
  }
  body .footer .footer-content .footer-inner a {
    font-size: 0.7rem;
  }
  body .footer .footer-text p {
    font-size: 0.8rem;
  }
  body .footer .footer-text p a {
    font-size: 0.8rem;
  }
}
body .login {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  margin: 0 auto;
  background: url(../../../../assets/images/menumaat/backgroundplus.png) no-repeat center center fixed;
  background-size: cover;
}
body .login h2 {
  font-size: 2.3rem;
  color: #fff;
  margin-bottom: 30px;
}
body .login .container__steps {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
  max-width: 650px;
  padding: 20px 25px;
  background: #f0f0f0;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-top: 2px solid #818181;
}
body .login .container__steps p {
  color: #000;
  font-size: 1rem;
}
body .login form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 500px;
  width: 100%;
  padding: 20px 25px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
body .login form.register {
  max-width: 650px;
}
body .login form .form_image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0px;
}
body .login form .form_image img {
  height: 35px;
}
body .login form .form_step {
  display: none;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
body .login form .form_step.active {
  display: flex;
}
body .login form .form_step .texts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
body .login form .form_step .texts h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}
body .login form .form_step .texts p {
  font-size: 0.9rem;
  color: #4e4e4e;
  font-weight: 500;
}
body .login form .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 10px;
}
body .login form .btns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 10px;
}
body .login form .login__input {
  width: 100%;
  padding: 7px 0px;
  border-radius: 8px;
}
body .login form .login__input label {
  display: block;
  font-size: 1rem;
  color: #161616;
  margin-bottom: 5px;
}
body .login form .login__input input,
body .login form .login__input select {
  width: 100%;
  padding: 10px 8px;
  border-radius: 5px;
  border: none;
  font-size: 0.9rem;
  background: #ebebeb;
}
body .login form .login__input input:focus,
body .login form .login__input select:focus {
  outline: #15734e 2px solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
body .login form .login_input {
  width: 100%;
}
body .login form .login_input label a {
  position: relative;
  color: var(--primary-color);
  font-size: 1rem;
  width: fit-content;
}
body .login form .login_input label a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}
body .login form .login_input label a:hover {
  color: var(--secondary-color);
}
body .login form .login_input label a:hover::after {
  width: 100%;
}
body .login form .login_input input {
  font-size: 0.9rem;
  background: #ebebeb;
}
body .login form .login__input__links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}
body .login form .login__input__links a {
  position: relative;
  color: var(--primary-color);
  font-size: 0.9rem;
  width: fit-content;
}
body .login form .login__input__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}
body .login form .login__input__links a:hover {
  color: var(--secondary-color);
}
body .login form .login__input__links a:hover::after {
  width: 100%;
}
body .login form button {
  margin-top: 15px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  width: 100%;
}
body .login form button:hover {
  background-color: var(--secondary-color);
}
@media screen and (max-width: 560px) {
  body .login {
    padding: 0px 30px;
  }
  body .login h2 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 465px) {
  body .login {
    padding: 0px 20px;
  }
  body .login h2 {
    font-size: 1.4rem;
  }
  body .login form .login__input input {
    font-size: 0.8rem;
  }
  body .login form .login_input {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  body .login form .login_input label {
    font-size: 0.9rem;
  }
  body .login form .login__input__links {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  body .login form .login__input__links a {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 690px) {
  body .register {
    padding: 0px 25px;
  }
  body .register h2 {
    font-size: 1.8rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 490px) {
  body .register h2 {
    font-size: 1.7rem;
  }
  body .register .container__steps {
    display: none;
  }
  body .register form .form_step {
    gap: 0px;
  }
  body .register form .form_step .row {
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
  }
  body .register form .form_step .login__input.last {
    margin-bottom: 20px;
  }
  body .register form .form_step .login__input.last input {
    width: 100%;
  }
}
@media screen and (max-width: 460px) {
  body .register h2 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 400px) {
  body .register h2 {
    font-size: 1.2rem;
  }
  body .register form .login_input input {
    font-size: 0.7rem;
  }
  body .register form .login_input label {
    font-size: 0.8rem;
  }
  body .register form .login_input label a {
    font-size: 0.8rem;
  }
}

/*# sourceMappingURL=styles.css.map */
