@charset "UTF-8";
:root {
  --color-brand-500: #E94E1B;
}

body {
  font-family: "Barlow", sans-serif;
}
body.managed {
  padding-top: 80px;
}

.text-center {
  text-align: center;
}

.form-toggle {
  display: flex;
  flex-direction: row;
}

.custome-toggle-label {
  height: 20px;
  line-height: 20px;
}
.custome-toggle-label label {
  margin: 0px !important;
  height: 20px;
  line-height: 20px;
  font-size: 13px;
  color: #121826 !important;
}

.custom-toggle input[type=checkbox] {
  display: none;
}

.custom-toggle {
  position: relative;
  width: 32px;
  height: 20px;
  margin-right: 12px;
}
.custom-toggle.active .toggle-label {
  background-color: #66bb6a; /* Couleur de fond du toggle actif */
}
.custom-toggle.active .toggle-label::after {
  transform: translateX(12px); /* Déplacez la poignée vers la droite lorsque le toggle est activé */
}

.hidden-checkbox {
  display: none;
}

.toggle-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ccc; /* Couleur de fond du toggle inactif */
  border-radius: 15px; /* Coins arrondis */
  cursor: pointer;
}

.toggle-label::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff; /* Couleur de la poignée du toggle */
  transition: transform 0.2s ease-in-out;
}

.hidden-checkbox:checked + .toggle-label {
  background-color: #66bb6a; /* Couleur de fond du toggle actif */
}

.hidden-checkbox:checked + .toggle-label::after {
  transform: translateX(12px); /* Déplacez la poignée vers la droite lorsque le toggle est activé */
}

.checkbox {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background-color: white;
  border: 1px solid #6D727F;
  display: inline-block;
  cursor: pointer;
  position: relative;
  top: 3px;
  margin-right: 8px;
}
.checkbox.checked {
  background-color: var(--color-brand-500);
  border: 1px solid var(--color-brand-500);
}
.checkbox.checked i {
  position: absolute;
  top: 4px;
  left: 4px;
  color: white;
  display: inline-block;
  font-size: 9px;
}
.checkbox input {
  display: none;
}
.checkbox i {
  display: none;
}

#messengerModal .modal-dialog {
  max-width: 680px;
}

#message-dialog {
  max-height: 400px;
  overflow: scroll;
  padding-bottom: 12px;
}
#message-dialog .message-item {
  text-align: right;
  margin-bottom: 4px;
}
#message-dialog .message-item.message-admin {
  text-align: left;
}
#message-dialog .message-item.message-admin .message-content {
  background: var(--Grey-200, #E6E7EB);
  color: var(--Grey-900, #121826);
}
#message-dialog .message-item .message-content {
  display: inline-block;
  background-color: var(--color-brand-500);
  color: white;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  line-height: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  max-width: 60%;
  text-align: left;
}
#message-dialog .message-item .message-content .message-text {
  word-wrap: break-word;
}
#message-dialog .message-item .message-content .message-date {
  display: none;
}
#message-dialog .message-item .message-attachments {
  padding-top: 8px;
}
#message-dialog .message-item .message-attachments .message-attachment {
  cursor: pointer;
  position: relative;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  padding-left: 12px;
  padding-right: 12px;
  border: 1px solid #E4E4E7;
  padding-top: 6px;
  padding-bottom: 6px;
  margin-bottom: 8px;
  margin-right: 8px;
  padding-left: 32px;
}
#message-dialog .message-item .message-attachments .message-attachment .icon {
  position: absolute;
  height: 24px;
  top: 10px;
  left: 12px;
  width: 12px;
}
#message-dialog .message-item .message-attachments .message-attachment .icon img {
  width: 100%;
}
#message-dialog .message-item .message-attachments .message-attachment .name {
  font-size: 12px;
  font-weight: 600;
}
#message-dialog .message-item .message-attachments .message-attachment .size {
  font-size: 10px;
  line-height: 11px;
  color: var(--Grey-500, #6D727F);
}

#message-footer {
  height: auto;
  position: relative;
  margin-bottom: 12px;
}
#message-footer textarea {
  border-radius: 12px;
  border: 1px solid var(--Grey-200, #E6E7EB);
  background: var(--White, #FFF);
  width: 100%;
  padding: 12px;
}
#message-footer textarea:focus {
  border: 1px solid var(--Grey-200, #E6E7EB);
  outline: none;
  box-shadow: none;
}
#message-footer input {
  margin-left: 24px;
  height: 60px;
  border: none;
  background: none;
  width: calc(100% - 48px);
}
#message-footer input:focus {
  outline: none;
}
#message-footer button {
  position: relative;
  height: 36px;
  line-height: 36px;
  border-radius: 8px;
  background: var(--color-brand-500);
  border: none;
  color: white;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  padding-left: 16px;
  padding-right: 16px;
}

.ui-datepicker {
  background: var(--Grey-100, #F3F4F6) !important;
}

/* Button */
.btn {
  height: 40px;
  line-height: 40px;
  padding: 0px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}
.btn.btn-default {
  background-color: #E94E1B;
  color: #fff;
}
.btn.btn-primary {
  background-color: #F3F4F6;
  color: #6D727F;
}
.btn.btn-secondary {
  border: 1px solid var(--Grey-200, #E6E7EB);
  background-color: white;
  color: var(--Grey-900, #121826);
}
.btn.btn-danger {
  background-color: #D7524F;
  color: white;
}
.btn.btn-large {
  height: 40px;
  line-height: 40px;
  font-size: 15px;
}
.btn.btn-small {
  height: 32px;
  line-height: 32px;
  padding: 0px 12px;
  font-size: 12px;
}
.btn.btn-stretch {
  width: 100%;
}

.notice {
  border-radius: 6px;
  background: var(--Info-50, #EFF6FF);
  padding: 8px 16px;
  color: var(--Info-900, #1E3A8A);
  font-size: 13px;
  font-weight: 500;
}

.badge {
  background-color: #F3F4F6;
  color: #6B7280;
  height: 24px;
  line-height: 24px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 8px;
}
.badge.badge-success, .badge.badge-available, .badge.badge-accepted, .badge.badge-active {
  background-color: #DCFCE7;
  color: #166534;
}
.badge.badge-warning, .badge.badge-rejected {
  background: #F9EFEA;
  color: #FC6E27;
}

.text-right {
  text-align: right;
}

.modal-buttons {
  padding-top: 16px;
  margin-bottom: 8px;
  text-align: right;
}
.modal-buttons .btn {
  margin-left: 6px;
}

.modal-header .btn-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #F3F4F6;
  padding: 0px !important;
  font-size: 8px;
  font-weight: bold;
}

.modal-backdrop {
  background-color: rgb(4, 7, 17);
}
.modal-backdrop.show {
  opacity: 0.65;
}

.modal-empty {
  padding-top: 40px;
  padding-bottom: 40px;
}
.modal-empty p {
  margin-bottom: 24px !important;
  margin-top: 24px !important;
}

.modal-content {
  border-radius: 16px;
}

.modal-header {
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 32px;
  border: none;
}
.modal-header h1 {
  font-size: 15px !important;
  font-weight: 500;
}

.modal-body {
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 0px;
}
.modal-body p {
  font-size: 14px;
  line-height: normal;
  color: #6D727F;
  margin-bottom: 32px;
}

.form-info {
  font-size: 13px;
  font-style: italic;
  color: #6D727F;
  margin-bottom: 16px;
  margin-top: -12px;
}

#loginModal .logo {
  text-align: center;
  margin-bottom: 30px;
}
#loginModal .logo img {
  width: 120px;
}

select {
  background-color: #E6E7EB;
}

.datepicker {
  background-color: #E6E7EB;
}

.selectric {
  background-color: #E6E7EB !important;
  border-radius: 8px !important;
  border: none !important;
}
.selectric .button {
  background: none !important;
  background-color: #E6E7EB !important;
}

.form-money {
  position: relative;
}
.form-money .currency {
  left: 12px;
  bottom: 1px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  color: #6D727F;
  font-size: 13px;
}
.form-money input {
  padding-left: 46px;
}

.form-multiple ul {
  margin: 0px;
  padding: 0px;
}
.form-multiple ul li {
  list-style: none;
  display: inline-block;
}
.form-multiple ul li input[type=checkbox] {
  background-color: black;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #6D727F;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #e6e7eB;
  font-size: 13px;
  line-height: 40px;
  padding: 0px 12px;
}
.form-control:read-only {
  background-color: #F3F4F6;
  margin-bottom: 24px;
}

textarea.form-control {
  padding-top: 12px;
  line-height: 20px;
  padding-bottom: 12px;
}

.form-submit {
  padding-top: 16px;
  margin-bottom: 8px;
  text-align: right;
}
.form-submit .btn {
  margin-left: 6px;
}

.layout.connected .layout_nav {
  top: 50px;
}

select {
  display: none;
}

.text-right {
  text-align: right;
}

.alert {
  margin-top: 24px;
  background-color: #E94E1B;
  color: white;
  position: relative;
  padding: 16px !important;
  line-height: 22px;
}
.alert button {
  position: absolute;
  top: 12px !important;
  right: -54px !important;
}

.layout_account {
  padding-top: 60px;
}
.layout_account .nav ul {
  margin: 0px;
  padding: 0px;
}
.layout_account .nav ul li {
  list-style: none;
  height: 36px;
  margin-bottom: 4px;
}
.layout_account .nav ul li a {
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.layout_account .nav ul li a span {
  font-size: 24px;
  position: relative;
  top: 4px;
  left: -2px;
  margin-right: 8px;
}
.layout_account .title {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 24px;
}
.layout_account .sub_title {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 24px;
  color: var(--Grey-900, #121826);
}
.layout_account .separator {
  height: 1px;
  background-color: var(--Grey-200, #E6E7EB);
  margin-top: 32px;
  margin-bottom: 24px;
}
.layout_account .status {
  margin-bottom: -32px;
  margin-top: 8px;
  border-radius: 8px;
  padding-left: 12px;
  padding-right: 12px;
  line-height: 32px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 24px;
  color: white;
  background-color: var(--color-brand-500);
  display: inline-block;
}
.layout_account .company {
  border-radius: 12px;
  background: var(--Grey-100, #F3F4F6);
  padding: 12px;
  display: flex;
  flex-direction: row;
}
.layout_account .company div.media {
  margin-bottom: 12px;
}
.layout_account .company div.media img {
  mix-blend-mode: multiply;
  width: 60px;
}
.layout_account .company .name {
  padding-left: 24px;
  line-height: 64px;
  font-size: 16px;
  font-weight: bold;
}
.layout_account .purchases {
  margin-top: 24px;
}
.layout_account .purchases table {
  width: 100%;
}
.layout_account .purchases table tr td {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  padding-top: 12px;
  padding-bottom: 12px;
}
.layout_account .purchases table tr td .id, .layout_account .purchases table tr td .date {
  color: var(--Grey-500, #6D727F);
  font-weight: 400;
}
.layout_account .purchases table tr td .form-control {
  margin: 0px;
}
.layout_account .purchases table tr + tr td {
  border-top: 1px solid var(--Grey-200, #E6E7EB);
}
.layout_account .docs {
  margin-top: 24px;
}
.layout_account .docs ul {
  margin: 0px;
  padding: 0px;
  margin-bottom: 24px;
}
.layout_account .docs ul li {
  list-style-type: none;
  display: inline-block;
  line-height: 44px;
  background: var(--Grey-100, #F3F4F6);
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 22px;
  margin-right: 12px;
}
.layout_account .docs ul li.active {
  background: var(--color-brand-500, #F3F4F6);
  color: white;
}
.layout_account .docs ul li a {
  text-decoration: none;
  font-size: 13px;
  color: inherit;
}
.layout_account .docs table {
  width: 100%;
}
.layout_account .docs table tr td {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.layout_account .docs table tr td .id, .layout_account .docs table tr td .date {
  color: var(--Grey-500, #6D727F);
  font-weight: 400;
}
.layout_account .docs table tr + tr td {
  border-top: 1px solid var(--Grey-200, #E6E7EB);
}
.layout_account .refunds {
  margin-top: 64px;
}
.layout_account .refunds table {
  width: 100%;
}
.layout_account .refunds table tr td {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.layout_account .refunds table tr td .id, .layout_account .refunds table tr td .date {
  color: var(--Grey-500, #6D727F);
  font-weight: 400;
}
.layout_account .refunds table tr + tr td {
  border-top: 1px solid var(--Grey-200, #E6E7EB);
}

.layout_shop {
  margin-top: 45px;
  margin-bottom: 180px;
}
.layout_shop .categories ul {
  margin: 0px;
  padding: 0px;
}
.layout_shop .categories ul li {
  display: inline-block;
  height: 28px;
  padding: 0px 12px;
  border-radius: 100px;
  border: 1px solid var(--Grey-200, #E6E7EB);
  font-size: 11px;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
}
.layout_shop .categories ul li:hover, .layout_shop .categories ul li.active {
  background-color: var(--color-brand-500);
  border: 1px solid var(--color-brand-500);
  color: white;
}
.layout_shop .categories ul li a {
  text-decoration: none;
  color: inherit;
}
.layout_shop .link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.layout_shop .products {
  padding-top: 32px;
}
.layout_shop .product {
  margin-bottom: 36px;
}
.layout_shop .product .product_media {
  height: 220px;
  background-color: #F3F4F6;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}
.layout_shop .product .product_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.layout_shop .product .product_media .product_media_overflow {
  top: 0px;
  left: 0px;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  display: flex;
  height: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.layout_shop .product .product_media .product_media_overflow .product_media_overflow_inner {
  background-color: white;
  border-radius: 8px;
  font-size: 14px;
  line-height: 24px;
  padding-left: 12px;
  padding-right: 12px;
}
.layout_shop .product .product_date {
  color: var(--color-brand-500);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 6px;
}
.layout_shop .product .product_date span {
  position: relative;
  top: 1px;
}
.layout_shop .product .product_name {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 8px;
}
.layout_shop .product .product_name span {
  font-weight: 400;
}
.layout_shop .product .product_name span.original {
  text-decoration: line-through;
  color: var(--Grey-500, #6D727F);
  margin-left: 10px;
  font-size: 14px;
  position: relative;
  top: -2px;
}
.layout_shop .product .product_supplier {
  color: var(--Grey-500, #6D727F);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-decoration-line: underline;
  margin-bottom: 16px;
}
.layout_shop .product .product_supplier a {
  color: var(--Grey-500, #6D727F);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-decoration-line: underline;
}
.layout_shop .product .product_categories ul {
  margin: 0px;
  padding: 0px;
}
.layout_shop .product .product_categories ul li {
  display: inline-block;
  height: 28px;
  padding: 0px 12px;
  border-radius: 100px;
  border: 1px solid var(--Grey-200, #E6E7EB);
  font-size: 11px;
  font-weight: 500;
  line-height: 28px;
}

.layout_product {
  padding-top: 44px;
  padding-bottom: 120px;
}
.layout_product .media {
  height: 455px;
  background-color: #F3F4F6;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
.layout_product .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.layout_product .gallery {
  margin-bottom: 64px;
  display: flex;
  gap: 10px;
}
.layout_product .gallery .gallery_item {
  cursor: pointer;
  width: 70px;
  margin-bottom: 12px;
}
.layout_product .gallery .gallery_item img {
  width: 100%;
  border-radius: 8px;
}
.layout_product .name {
  color: var(--Grey-900, #121826);
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 85.714% */
  margin-bottom: 8px;
}
.layout_product .supplier {
  color: var(--Grey-500, #6D727F);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-decoration-line: underline;
  margin-bottom: 24px;
}
.layout_product .supplier a {
  color: var(--Grey-500, #6D727F);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-decoration-line: underline;
}
.layout_product .date {
  color: var(--color-brand-500, #E94E1B);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 120% */
  margin-bottom: 8px;
}
.layout_product .date span {
  margin-right: 12px;
}
.layout_product .address {
  color: var(--color-brand-500, #E94E1B);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 120% */
}
.layout_product .address span {
  margin-right: 12px;
}
.layout_product .address p {
  margin-top: 4px;
  margin-left: 30px;
}
.layout_product .description {
  color: var(--Grey-900, #121826);
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 24px;
}
.layout_product .separator {
  background: var(--Grey-200, #E6E7EB);
  height: 1px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.layout_product .info {
  background: var(--Grey-100, #F3F4F6);
  border-radius: 12px;
  padding: 28px;
  font-weight: 500;
}
.layout_product .info p {
  margin-bottom: 8px;
}
.layout_product .categories ul {
  margin: 0px;
  padding: 0px;
}
.layout_product .categories ul li {
  display: inline-block;
  height: 28px;
  padding: 0px 12px;
  border-radius: 100px;
  border: 1px solid var(--Grey-200, #E6E7EB);
  font-size: 11px;
  font-weight: 500;
  line-height: 28px;
  text-transform: uppercase;
}
.layout_product .categories ul li a {
  text-decoration: none;
  color: inherit;
}
.layout_product .action {
  margin-top: 24px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .layout_product .action {
    flex-direction: column;
    align-items: center;
  }
}
.layout_product .action a.btn-default {
  height: 48px;
  line-height: 48px;
  padding-left: 42px;
  padding-right: 42px;
}
@media screen and (max-width: 768px) {
  .layout_product .action a.btn-default {
    width: 100%;
  }
}
.layout_product .action .left_slot {
  height: 48px;
  line-height: 48px;
  padding-left: 32px;
  font-size: 15px;
  font-weight: 500;
}
.layout_product .action .stock_out {
  border-radius: 8px;
  padding: 12px;
  padding-left: 18px;
  padding-right: 18px;
  border: 1px solid #E6E7EB;
  font-weight: 500;
  font-size: 14px;
}
.layout_product .action .stock_out img {
  width: 38px;
  top: -2px;
  position: relative;
  margin-right: 8px;
}
.layout_product .info {
  margin-top: 32px;
}
.layout_product .link {
  text-decoration: none;
  color: inherit;
}
.layout_product .suggest_title {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 24px;
}
.layout_product .suggests {
  padding-top: 32px;
}
.layout_product .product .product_media {
  height: 180px;
  background-color: #F3F4F6;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}
.layout_product .product .product_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.layout_product .product .product_media .product_media_overflow {
  top: 0px;
  left: 0px;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  display: flex;
  height: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.layout_product .product .product_media .product_media_overflow .product_media_overflow_inner {
  background-color: white;
  border-radius: 8px;
  font-size: 14px;
  line-height: 24px;
  padding-left: 12px;
  padding-right: 12px;
}
.layout_product .product .product_date {
  color: var(--color-brand-500);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 6px;
}
.layout_product .product .product_name {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 8px;
}
.layout_product .product .product_supplier {
  color: var(--Grey-500, #6D727F);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-decoration-line: underline;
  margin-bottom: 16px;
}
.layout_product .product .product_categories ul {
  margin: 0px;
  padding: 0px;
}
.layout_product .product .product_categories ul li {
  display: inline-block;
  height: 28px;
  padding: 0px 12px;
  border-radius: 100px;
  border: 1px solid var(--Grey-200, #E6E7EB);
  font-size: 11px;
  font-weight: 500;
  line-height: 28px;
}

.layout_cart .product_media {
  height: 88px;
  border-radius: 12px;
  background-color: #F3F4F6;
  overflow: hidden;
}
.layout_cart .product_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.layout_cart .product_name {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 7px;
}
.layout_cart .product_date {
  color: var(--Orange, #E94E1B);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 128.571% */
  margin-bottom: 7px;
  padding-left: 32px;
  position: relative;
}
.layout_cart .product_date span {
  top: 0px;
  left: 0px;
  font-size: 20px;
  position: absolute;
  margin-right: 8px;
  top: 0px;
}
.layout_cart .product_address {
  color: var(--Orange, #E94E1B);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 128.571% */
  margin-bottom: 8px;
  padding-left: 32px;
  position: relative;
}
.layout_cart .product_address span {
  top: 0px;
  left: 0px;
  font-size: 20px;
  position: absolute;
  margin-right: 8px;
  top: 3px;
}
.layout_cart .separator {
  background: var(--Grey-200, #E6E7EB);
  height: 1px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.layout_cart .form-credit {
  display: none;
}

.layout_wallet h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

.wallet {
  margin-bottom: 16px;
}
.wallet.wallet_empty .wallet_header {
  cursor: default;
}
.wallet.open .wallet_body {
  display: block;
}
.wallet .wallet_header {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--Grey-100, #F3F4F6);
  border-radius: 12px;
  padding: 12px;
  padding-left: 16px;
  padding-right: 16px;
  justify-content: space-between;
}
.wallet .wallet_header .wallet_title {
  flex: 1;
}
.wallet .wallet_header .wallet_amount {
  flex: 1;
  font-weight: 600;
  text-align: right;
}
.wallet .wallet_body {
  display: none;
}
.wallet .wallet_body .wallet_no_purchase {
  padding: 12px;
  padding-left: 16px;
  padding-right: 16px;
}
.wallet .wallet_body .wallet_purchases .wallet_purchase {
  padding: 12px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.wallet .wallet_body .wallet_purchases .wallet_purchase .wallet_purchase_name span {
  display: inline-block;
  margin-right: 32px;
}
header#header {
  padding-top: 40px;
  padding-bottom: 0px;
}
header#header.public .container {
  max-width: 1080px;
}
header#header.public .logo img {
  height: 44px;
}
header#header.public a.btn {
  background: var(--Orange, #E94E1B);
  height: 40px;
  display: inline-block;
  border-radius: 20px;
  color: white;
  padding-left: 16px;
  padding-right: 16px;
  line-height: 40px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  header#header.public a.btn {
    display: none;
  }
  header#header.public .logo {
    text-align: center;
  }
  header#header.public .logo img {
    height: 44px;
  }
}
header#header .logo img {
  height: 40px;
}
header#header .logo img.custom {
  position: relative;
  top: -20px;
  height: 80px;
}
header#header .connected {
  display: flex;
  justify-content: flex-end;
}
header#header .connected a {
  display: block;
  color: inherit;
  text-decoration: none;
}
header#header .connected .account {
  height: 40px;
  line-height: 40px;
  border-radius: 100px;
  background: var(--Grey-100, #F3F4F6);
  font-size: 14px;
  font-weight: 500;
  padding-left: 16px;
  padding-right: 16px;
}
header#header .connected .wallet {
  height: 40px;
  line-height: 40px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  padding-left: 16px;
  padding-right: 16px;
  margin-right: 16px;
  position: relative;
  cursor: pointer;
}
header#header .connected .wallet span {
  font-size: 20px;
  position: relative;
  top: 3px;
  left: -2px;
  margin-right: 4px;
}
header#header .connected .messenger {
  height: 40px;
  line-height: 40px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  padding-left: 16px;
  padding-right: 16px;
  margin-right: 16px;
  position: relative;
  cursor: pointer;
}
header#header .connected .messenger span {
  font-size: 20px;
  position: relative;
  top: 3px;
  left: -2px;
  margin-right: 4px;
}
header#header .connected .messenger .counter {
  position: absolute;
  left: 24px;
  top: 20px;
  font-size: 8px;
  background-color: #dc3656;
  width: 12px;
  height: 12px;
  border-radius: 10px;
  line-height: 12px;
  text-align: center;
  color: white;
}

.layout_login .modal-dialog {
  width: 360px;
}
.layout_login .modal-dialog .forget {
  display: block;
  text-align: center;
  color: var(--Grey-500, #6D727F);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  text-decoration-line: underline;
  margin-top: 24px;
  margin-bottom: 24px;
}

.layout_login {
  padding-top: 90px;
}
.layout_login .title {
  font-size: 24px;
  margin-bottom: 32px;
}
.layout_login .forget {
  display: block;
  text-align: center;
  color: var(--Grey-500, #6D727F);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  text-decoration-line: underline;
  margin-top: 24px;
  margin-bottom: 24px;
}

.layout_forget_password {
  padding-top: 90px;
}
.layout_forget_password .title {
  font-size: 24px;
  margin-bottom: 32px;
}
.layout_forget_password .forget {
  display: block;
  text-align: center;
  color: var(--Grey-500, #6D727F);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  text-decoration-line: underline;
  margin-top: 24px;
  margin-bottom: 24px;
}

.layout_platform_signup {
  padding-top: 90px;
}
.layout_platform_signup .title {
  font-size: 24px;
  margin-bottom: 32px;
}

.layout_checkout_success {
  text-align: center;
  padding-top: 64px;
}
.layout_checkout_success .illu img {
  width: 200px;
}
.layout_checkout_success .title {
  margin-top: 12px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 16px;
}
.layout_checkout_success .content {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 32px;
}
.layout_checkout_success .content b {
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .layout_home {
    width: 100%;
    overflow: hidden;
  }
}

.layout_home_header {
  text-align: center;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(233, 78, 27, 0.1) 100%);
}
.layout_home_header .container {
  max-width: 1080px;
}
.layout_home_header h1 {
  margin-top: 120px;
  margin-left: 120px;
  margin-right: 120px;
  color: var(--Grey-900, #121826);
  text-align: center;
  font-family: Barlow;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px; /* 108.333% */
  margin-bottom: 24px;
}
.layout_home_header h1 strong {
  color: var(--Orange, #E94E1B);
  font-weight: 600;
}
.layout_home_header p {
  color: var(--Grey-500, #6D727F);
  text-align: center;
  font-family: Barlow;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 160% */
  margin-bottom: 56px;
}
.layout_home_header a {
  display: inline-block;
  padding-left: 24px;
  padding-right: 24px;
  height: 56px;
  line-height: 56px;
  border-radius: 100px;
  background: var(--Orange, #E94E1B);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  color: white;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .layout_home_header h1 {
    margin-top: 60px;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.layout_home_faq {
  margin-top: 120px;
}
.layout_home_faq h2 {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
  text-align: center;
}
.layout_home_faq .layout_home_faq_items {
  padding-top: 52px;
}
.layout_home_faq .layout_home_faq_item {
  border-bottom: 1px solid var(--Grey-200, #E6E7EB);
  text-align: left;
}
.layout_home_faq .layout_home_faq_item .layout_home_faq_item_title {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
  padding-right: 50px;
  cursor: pointer;
}
.layout_home_faq .layout_home_faq_item .layout_home_faq_item_title .open {
  position: absolute;
  top: 24px;
  right: 0px;
}
.layout_home_faq .layout_home_faq_item .layout_home_faq_item_content {
  color: var(--Grey-500, #6D727F);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  display: none;
  padding-bottom: 24px;
  padding-right: 50px;
}
.layout_home_faq .layout_home_faq_item.active .layout_home_faq_item_content {
  display: block;
}

.layout_home_header_features {
  margin-top: 76px;
  margin-bottom: 64px;
  text-align: center;
}
.layout_home_header_features .container {
  max-width: 1080px;
}
.layout_home_header_features ul {
  margin: 0px;
}
.layout_home_header_features ul li {
  display: inline-block;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  margin-left: 24px;
  margin-right: 24px;
}
.layout_home_header_features ul li svg {
  position: relative;
  margin-right: 8px;
  top: -2px;
}
@media screen and (max-width: 768px) {
  .layout_home_header_features ul {
    margin: 0px;
    padding: 0px;
  }
  .layout_home_header_features ul li {
    margin: 0px;
    padding: 0px;
    display: block;
    margin-bottom: 12px;
    padding-left: 30px;
    text-align: left;
  }
}

.layout_home_header_screen .container {
  max-width: 1080px;
}
.layout_home_header_screen img {
  margin-left: -50px;
  width: calc(100% + 100px);
}
@media screen and (max-width: 768px) {
  .layout_home_header_screen img {
    margin-left: 0px;
    width: 100%;
  }
}

.layout_home_administrator {
  padding-top: 124px;
  text-align: center;
}
.layout_home_administrator .container {
  max-width: 1080px;
}
.layout_home_administrator h2 {
  color: var(--Grey-900, #121826);
  margin-bottom: 16px;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
}
.layout_home_administrator p {
  color: var(--Grey-500, #6D727F);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 160% */
}
.layout_home_administrator .layout_home_administrator_features {
  padding-top: 64px;
}
.layout_home_administrator .layout_home_administrator_feature {
  border-radius: 20px;
  background: #FEF4F1;
  padding: 48px 32px;
  text-align: left;
  min-height: 348px;
}
.layout_home_administrator .layout_home_administrator_feature .layout_home_administrator_feature_icon {
  width: 66px;
  height: 66px;
  margin-bottom: 48px;
  border-radius: 12px;
  background: var(--Orange, #E94E1B);
  text-align: center;
  line-height: 66px;
}
.layout_home_administrator .layout_home_administrator_feature h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 12px;
}
.layout_home_administrator .layout_home_administrator_feature p {
  color: var(--Grey-500, #6D727F);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .layout_home_administrator .layout_home_administrator_feature {
    margin-bottom: 30px;
  }
}

.layout_home_activity {
  padding-top: 180px;
  text-align: left;
}
.layout_home_activity .container {
  max-width: 1080px;
}
.layout_home_activity h3 {
  margin-bottom: 40px;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
.layout_home_activity ul {
  padding: 0px;
  margin: 0px;
}
@media screen and (max-width: 768px) {
  .layout_home_activity ul {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    padding-left: 40px;
  }
}
.layout_home_activity ul li {
  list-style: none;
  display: flex;
  height: 40px;
  margin-bottom: 24px;
  line-height: 40px;
  color: var(--Grey-900, #121826);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 200% */
}
.layout_home_activity .layout_home_activity_icon {
  background-color: var(--Orange, #E94E1B);
  width: 40px;
  height: 40px;
  border-radius: 20px;
  line-height: 34px;
  text-align: center;
  margin-right: 16px;
}
.layout_home_activity img {
  position: relative;
  left: 40px;
  top: -40px;
  width: 130%;
}
@media screen and (max-width: 1480px) {
  .layout_home_activity img {
    left: 0px;
    width: 120%;
  }
}
@media screen and (max-width: 1380px) {
  .layout_home_activity img {
    left: 0px;
    width: 110%;
  }
}
@media screen and (max-width: 1200px) {
  .layout_home_activity img {
    left: 0px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .layout_home_activity img {
    margin-top: 60px;
    width: 80%;
    top: 0px;
    left: 4%;
  }
}

.layout_home_bonus {
  padding-top: 124px;
  text-align: center;
}
.layout_home_bonus .container {
  max-width: 1080px;
}
.layout_home_bonus h2 {
  color: var(--Grey-900, #121826);
  margin-bottom: 16px;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  margin-left: 240px;
  margin-right: 240px;
  line-height: 40px;
}
.layout_home_bonus p {
  color: var(--Grey-500, #6D727F);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 160% */
}
.layout_home_bonus .layout_home_bonus_features {
  padding-top: 64px;
}
.layout_home_bonus .layout_home_bonus_feature {
  border-radius: 20px;
  background: #FEF4F1;
  padding: 48px 32px;
  text-align: left;
  height: 372px;
}
.layout_home_bonus .layout_home_bonus_feature .layout_home_bonus_feature_icon {
  width: 66px;
  height: 66px;
  margin-bottom: 48px;
  border-radius: 12px;
  text-align: center;
  line-height: 66px;
}
.layout_home_bonus .layout_home_bonus_feature h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 12px;
}
.layout_home_bonus .layout_home_bonus_feature p {
  color: var(--Grey-500, #6D727F);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .layout_home_bonus h2 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .layout_home_bonus .layout_home_bonus_feature {
    margin-bottom: 30px;
  }
}

.layout_home_demo {
  padding-bottom: 90px;
}
.layout_home_demo .container {
  max-width: 1080px;
}
.layout_home_demo a {
  display: inline-block;
  height: 56px;
  border-radius: 100px;
  background: var(--White, #FFF);
  padding-left: 24px;
  padding-right: 24px;
  line-height: 54px;
  text-decoration: none;
  color: var(--Orange, #E94E1B);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .layout_home_demo a {
    margin-bottom: 24px;
  }
}

.layout_home_demo_wrapper {
  padding-top: 30px;
  padding-left: 52px;
  margin-top: 224px;
  border-radius: 32px;
  background: var(--Orange, #E94E1B);
  box-shadow: 0px 6px 12px 0px rgba(143, 143, 143, 0.1), 0px 23px 23px 0px rgba(143, 143, 143, 0.09), 0px 51px 31px 0px rgba(143, 143, 143, 0.05), 0px 90px 36px 0px rgba(143, 143, 143, 0.01), 0px 141px 40px 0px rgba(143, 143, 143, 0);
  height: 468px;
  text-align: left;
  background-image: url("/static/assets/card.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 400px;
}
@media screen and (max-width: 768px) {
  .layout_home_demo_wrapper {
    padding-top: 64px;
    height: 800px;
    background-position: bottom -300px;
  }
}

.layout_home_demo_title {
  color: white;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
  width: 45%;
  margin-bottom: 52px;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .layout_home_demo_title {
    line-height: 32px;
    width: 80%;
  }
}

.layout_footer {
  text-align: left;
  color: var(--Grey-400, #9EA3AE);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-top: 120px;
}
.layout_footer .wrapper {
  border-top: 1px solid var(--Grey-200, #E6E7EB);
  padding-top: 32px;
  padding-bottom: 32px;
}
.layout_footer ul {
  text-align: right;
}
.layout_footer ul li {
  display: inline-block;
  margin-left: 32px;
}
.layout_footer ul li a {
  color: var(--Grey-900, #121826);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .layout_footer {
    text-align: center;
  }
  .layout_footer ul {
    margin: 0px;
    padding: 0px;
  }
  .layout_footer ul li {
    margin: 0px;
    padding: 0px;
    text-align: center;
    display: block;
  }
}

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