@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
html body {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  font-optical-sizing: auto;
}
html body a.btn {
  text-decoration: none;
  color: #fff;
  background-color: #D5A35B;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
html body a.btn:hover {
  background-color: #8d6b39;
  color: #fff;
}
html body a.btn-danger {
  background-color: #e74c3c;
  color: #fff;
}
html body a.btn-danger:hover {
  background-color: #c0392b;
  color: #fff;
}
html body input, html body select, html body textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #D5A35B;
  font-size: 16px;
  background-color: rgba(213, 163, 91, 0.1);
  font-family: "Roboto", sans-serif;
  color: #D5A35B;
  box-sizing: border-box;
}
html body input:focus, html body select:focus, html body textarea:focus {
  outline: none;
  border-color: #D5A35B;
  background-color: #fff;
}
html body input::placeholder, html body select::placeholder, html body textarea::placeholder {
  color: #999;
  font-weight: 400;
}
html body label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #D5A35B;
}
html body input[type=checkbox] {
  width: 45px;
  height: 45px;
  border: 1px solid #D5A35B;
  border-radius: 0px;
  display: block;
  background-color: #fff;
}
html body input[type=checkbox]:checked {
  background-color: #D5A35B;
}
html body button[type=submit] {
  background-color: #D5A35B;
  color: #fff;
  border: none;
  padding: 10px 20px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 300px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
html body button[type=submit] span {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
html body button[type=submit]:hover {
  background-color: #8d6b39;
  color: #fff;
}

html body#home section#hero {
  text-align: center;
  padding: 60px 0;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}
html body#home section#hero div.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
html body#home section#hero div.container h1 {
  text-transform: uppercase;
  color: #D5A35B;
  position: relative;
  display: block;
  padding: 0px 20px;
  text-align: center;
  width: 100%;
}
html body#home section#hero div.container h1 span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #D5A35B;
  background-color: #FFF;
  padding: 0px 20px;
}
html body#home section#hero div.container h1 span::before {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #D5A35B;
  z-index: -1;
}
html body#home section#hero div.container p {
  max-width: 800px;
}
html body#home section#form {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  padding: 0 30px;
}
html body#home section#form div.container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 800px) {
  html body#home section#form div.container {
    flex-direction: column;
  }
}
html body#home section#form div.container div.left {
  width: 30%;
  background-color: #D5A35B;
  background-image: url("../images/photo-cheque-kdo-IqJ87t5.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 800px) {
  html body#home section#form div.container div.left {
    width: 100%;
    height: 300px;
    background-position: center bottom 20%;
  }
}
html body#home section#form div.container div.right {
  width: 70%;
}
@media (max-width: 800px) {
  html body#home section#form div.container div.right {
    width: 100%;
  }
}
html body#home section#form div.container div.right form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}
html body#home section#form div.container div.right form div.form-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}
html body#home section#form div.container div.right form div.form-row div.form-group {
  width: 100%;
}
html body#home section#form div.container div.right form div.form-group {
  width: 100%;
}
html body#home section#form div.container div.right form div.form-group.checkbox-group {
  width: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
html body#home section#form div.container div.right form div.form-group.checkbox-group label {
  flex-shrink: 0;
  font-size: 14px;
  margin-left: 0px;
  width: calc(100% - 20px);
}
html body#home section#form div.container div.right form div.form-group.checkbox-group label a {
  color: #D5A35B;
  text-decoration: underline;
}

html body#cgv section#hero {
  text-align: center;
  padding: 60px 0;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}
html body#cgv section#hero div.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
html body#cgv section#hero div.container h1 {
  text-transform: uppercase;
  color: #D5A35B;
  position: relative;
  display: block;
  padding: 0px 20px;
  text-align: center;
  width: 100%;
}
html body#cgv section#hero div.container h1 span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #D5A35B;
  background-color: #FFF;
  padding: 0px 20px;
}
html body#cgv section#hero div.container h1 span::before {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #D5A35B;
  z-index: -1;
}
html body#cgv section#hero div.container p {
  max-width: 800px;
}
html body#cgv section#cgv {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}
html body#admin {
  background-color: #F4F4F4;
  color: #333;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
html body#admin #preheader {
  background-color: #D5A35B;
}
html body#admin #preheader div.container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
html body#admin #preheader div.container a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 5px;
  color: #D5A35B;
  background-color: #fff;
  transition: all 0.3s ease;
}
html body#admin #preheader div.container a:hover {
  background-color: #5d4119;
  color: #fff;
}
html body#admin .orders-table, html body#admin .order-detail {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 20px 0;
}
html body#admin .orders-table table, html body#admin .order-detail table {
  width: 100%;
  border-collapse: collapse;
}
html body#admin .orders-table table thead, html body#admin .order-detail table thead {
  background-color: #D5A35B;
}
html body#admin .orders-table table thead th, html body#admin .order-detail table thead th {
  padding: 15px 10px;
  text-align: left;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  border-bottom: 2px solid #8d6b39;
}
html body#admin .orders-table table tbody tr, html body#admin .order-detail table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}
html body#admin .orders-table table tbody tr:hover, html body#admin .order-detail table tbody tr:hover {
  background-color: #f9f9f9;
}
html body#admin .orders-table table tbody tr:last-child, html body#admin .order-detail table tbody tr:last-child {
  border-bottom: none;
}
html body#admin .orders-table table tbody tr td, html body#admin .order-detail table tbody tr td {
  padding: 12px 10px;
  vertical-align: top;
  font-size: 14px;
}
html body#admin .orders-table table tbody tr td .status-processed, html body#admin .order-detail table tbody tr td .status-processed {
  background-color: #28a745;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}
html body#admin .orders-table table tbody tr td .status-pending, html body#admin .order-detail table tbody tr td .status-pending {
  background-color: #ffc107;
  color: #212529;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}
html body#admin h1 {
  color: #D5A35B;
  margin-bottom: 30px;
  font-weight: 700;
}
html body#admin .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
html #pagination .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
html #pagination .pagination a {
  text-decoration: none;
  color: #D5A35B;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #D5A35B;
  color: #fff;
}
html #pagination .pagination span {
  color: #D5A35B;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #D5A35B;
  color: #fff;
}
html #pagination .pagination .pagination-current {
  color: #D5A35B;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #D5A35B;
  color: #fff;
}
html #payplug {
  background-color: #ffda0a;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  padding-top: 10px;
  margin-top: 30px;
}
html #payplug h2 {
  background-image: url("../images/payplug-TRfLacq.jpeg");
  background-size: 40px 40px;
  background-position: top -3px left;
  background-repeat: no-repeat;
  font-size: 24px;
  padding-left: 40px;
  font-weight: 700;
  text-transform: uppercase;
}
html #payplug .no-payment {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
}
html #formLogin {
  max-width: 500px;
  margin: 0 auto;
}
html #formLogin form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../assets/styles/app.scss%22,%22../../assets/styles/_global.scss%22,%22../../assets/styles/_home.scss%22,%22../../assets/styles/_cgv.scss%22,%22../../assets/styles/_admin.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAQ;ACCJ;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;;AAEJ;EACI;EACA;;AACA;EACI;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;;AAEJ;EACI;EACA;;;AClGR;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKZ;EACI;;AAMZ;EACI;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;;AACA;EANJ;IAOQ;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;AACA;EAPJ;IAQQ;IACA;IACA;;;AAGR;EACI;;AACA;EAFJ;IAGQ;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;;AAIR;EACI;;AACA;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;;AACA;EACI;EACA;;;AChHhC;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKZ;EACI;;AAIZ;EACI;EACA;EACA;;ACnDR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AACA;EACI;EACA;EACA;EACA;;AACA;EACG;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACC;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAKJ;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAQxB;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAKJ;EACI;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEJ;EACI;EACA;EACA;EACA;EACA;;AAGR;EACI;EACA;;AACA;EACI;EACA;EACA%22,%22file%22:%22app.output.css%22%7D */
