@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif !important;
  background-color: #f9f8fd;
}

body:has(.login-page),
body:has(.register-page),
body:has(.password-page) {
  background-color: #f6f5fb;
}

:root {
  --primary-color: #5b47e4;
  --light-color: #000bff0f;
}

.breadcrumb-item a {
  text-decoration: none;
  color: #ef4e23 !important;
  font-weight: 500 !important;
}

label {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 400;
  color: #495057;
}

.btns-footer-checkout {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hello {
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 1;
  font-weight: 500;
}
.hello span {
  margin-top: -2px;
}

.btn-primary {
  background-color: #ef4e23;
  border-color: #ef4e23;
  font-size: 15px;
  font-weight: 500;
}
.btn-primary:hover {
  background-color: rgb(231.6525423729, 62.125, 16.8474576271);
  border-color: rgb(231.6525423729, 62.125, 16.8474576271);
}

.bg-danger {
  color: #ef5454;
  background-color: rgba(239, 84, 84, 0.1529411765) !important;
  border-radius: 6px !important;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 500 !important;
  display: inline-block;
}

.bg-success {
  color: #36c74a;
  background-color: rgba(84, 239, 105, 0.2039215686) !important;
  border-radius: 6px !important;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 500 !important;
  display: inline-block;
}

.bg-secondary {
  color: #6d6d6d;
  background-color: rgba(109, 109, 109, 0.0745098039) !important;
  border-radius: 6px !important;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 500 !important;
  display: inline-block;
  text-transform: uppercase;
}

.color {
  color: #ef4e23;
  background-color: #fff1ed;
  font-weight: 500;
  padding: 2px 5px;
  display: inline;
}

p.info {
  font-size: 15px;
  color: #687480;
}

.title-page {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.title-page h2 {
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: -1px;
  color: #343a40;
}
.title-page h4 {
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: -1px;
  color: #343a40;
}
.title-page .toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
  font-size: 14px;
  font-weight: 500;
}
.title-page .toggle-wrapper label {
  margin-bottom: 0;
  margin-left: 0;
}
.title-page .toggle-wrapper .toggle-on,
.title-page .toggle-wrapper .toggle-off {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 14px;
}
.title-page .toggle-wrapper .toggle-on.btn {
  padding-right: 12px !important;
  font-weight: 500;
}
.title-page .toggle-wrapper .toggle-off.btn {
  padding-left: 12px !important;
  font-weight: 500;
}

.products-title-page .toggle-wrapper {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .products-title-page {
    flex-wrap: wrap;
  }
  .products-title-page .toggle-wrapper {
    margin-left: 0;
  }
}

.sidebar {
  background: #fff;
  color: #99a1b7;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 220px;
  padding: 20px;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  /* width */
}
.sidebar ::-webkit-scrollbar {
  width: 6px;
}
.sidebar {
  /* Track */
}
.sidebar ::-webkit-scrollbar-track {
  background-color: #f9f8fd;
  border-radius: 10px;
}
.sidebar {
  /* Handle */
}
.sidebar ::-webkit-scrollbar-thumb {
  background: #ef4e23;
  border-radius: 10px;
}
.sidebar {
  max-height: 100vh;
}
.sidebar .logo-sidebar {
  width: 100%;
  max-width: 120px !important;
}
.sidebar .logo {
  width: 100% !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  text-decoration: none;
}
.sidebar .logo img {
  max-width: 100%;
}
.sidebar .logo p {
  margin-left: 10px;
  font-size: 22px;
  letter-spacing: -0.6px;
  font-weight: 600;
  color: #495057;
}
.sidebar .main-menu-sidebar {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sidebar .main-menu-sidebar li {
  list-style: none;
}
.sidebar .main-menu-sidebar li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  color: #495057;
}
.sidebar .main-menu-sidebar li a svg {
  width: 18px;
}
.sidebar .main-menu-sidebar li .system-btn {
  background-color: #ef4e23;
  color: #fff;
}
.sidebar .main-menu-sidebar li .active {
  background-color: #fff1ed;
  color: #ef4e23;
}
.sidebar .config-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar .config-menu .btn {
  height: 50px;
  border-radius: 10px;
  background-color: #ef4e23;
  border: 1px solid #ef4e23;
  font-size: 15px;
}
.sidebar .config-menu .btn::after {
  display: none;
}
.sidebar .config-menu .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
}
.sidebar .config-menu .dropdown-menu li a {
  padding: 10px;
  min-height: 50px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 8px;
  font-weight: 500;
}
.sidebar .config-menu .dropdown-menu .user-info {
  padding: 0px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 0;
  background-color: #fff;
  margin-bottom: 20px;
}
.sidebar .config-menu .dropdown-menu .user-info img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}
.sidebar .config-menu .dropdown-menu .user-info .name {
  font-weight: 600;
}
.sidebar .config-menu .dropdown-menu .user-info .email {
  color: #adb5bd;
  font-size: 13px;
}
.sidebar .help-area a {
  width: 100%;
  padding: 20px 10px;
  font-size: 16px;
  background-color: #fff1ed;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  gap: 10px;
  color: #ef4e23;
}
.sidebar .help-area a svg {
  width: 20px;
}
@media screen and (max-width: 768px) {
  .sidebar {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .resp-btns {
    display: flex;
    gap: 5px;
    flex-direction: column;
  }
  .resp-btns button,
  .resp-btns a {
    font-size: 15px;
  }
}
.table-resp {
  overflow-x: scroll;
  width: 100%;
}

.add-new {
  background: #ef4e23;
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  text-decoration: none;
  font-size: 15px;
  display: none;
}
.add-new svg {
  width: 20px;
}
@media screen and (max-width: 768px) {
  .add-new {
    display: inline-flex;
  }
}

.popover-pos {
  margin: auto;
  border: none;
  border-radius: 12px;
  width: 350px;
  max-width: 90%;
  padding: 20px;
  text-align: center;
  color: #fff;
  background-color: #ef4e23;
}
.popover-pos p {
  margin: 0;
}
.popover-pos::backdrop {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.dropzone {
  max-width: 300px;
  border-radius: 14px;
}
.dropzone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.cards-home {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  width: 100%; /* Certifique-se de que o container ocupe a largura total */
  max-width: 100%; /* Garante que o container não seja restrito */
}
.cards-home .card-item {
  background-color: #fff;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.cards-home .card-item .card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cards-home .card-item h4 {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  color: #adb5bd;
  font-size: 14px;
}
.cards-home .card-item h4 .pop-btn {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
}
.cards-home .card-item h4 .pop-btn svg {
  width: 14px;
  border-radius: 0;
  padding: 0;
  height: auto;
  color: #687480;
  background-color: transparent;
}
.cards-home .card-item p {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  color: #495057;
}
.cards-home .card-faturamento {
  background-color: #fff1ed;
  border-color: #ef4e23;
}
.cards-home .card-faturamento svg {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  padding: 10px;
  background-color: #ef4e23;
  color: #fff;
}
.cards-home .card-lucro .feather-dollar-sign {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  padding: 10px;
  background-color: #ebfaf0;
  color: #36c76c;
}
.cards-home .card-despesas svg {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  padding: 10px;
  background-color: #ffccdb;
  color: #ff6692;
}
.cards-home .card-ticket svg {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  padding: 10px;
  color: #f8c20a;
  background-color: #fff9e5;
}
.cards-home .card-vendas svg {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  padding: 10px;
  color: #4e90ef;
  background-color: rgba(13, 110, 253, 0.168627451);
}
@media screen and (max-width: 768px) {
  .cards-home {
    grid-template-columns: repeat(1, 1fr);
  }
}

.notifyjs-bootstrap-success {
  background-image: none !important;
}

.notifyjs-bootstrap-base {
  padding: 6px 14px !important;
}

.graph {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}
.graph h4 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.graph h4 .pop-btn {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
}
.graph h4 .pop-btn svg {
  width: 20px;
  border-radius: 0;
  padding: 0;
  height: auto;
  color: #687480;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .graph {
    padding: 20px;
  }
}

.content {
  margin-left: 220px;
  padding: 20px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .content {
    margin-left: 0;
    padding: 0;
  }
}

.clear-search-btn {
  border: none;
  cursor: pointer;
  font-size: 15px;
  text-wrap: nowrap;
}

.content-pdv {
  margin-right: 400px;
}
.content-pdv .card-img-top {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background-color: #212529;
  transition: all ease 0.2s;
}
.content-pdv .card-img-top:hover {
  cursor: pointer;
  filter: brightness(0.5);
}
.content-pdv .product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
}
.content-pdv .product-card h5 {
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .content-pdv .product-card h5 {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.content-pdv .product-card .product-name {
  text-transform: uppercase;
  font-weight: 500;
  color: #687480;
  font-size: 14px;
  margin-bottom: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.content-pdv .product-card .low-stock {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  background-color: rgba(238, 44, 44, 0.8352941176);
}
.content-pdv .product-card .low-stock svg {
  width: 14px;
  height: 14px;
  margin-top: -2px;
}
.content-pdv .product-card .in-stock {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  background-color: rgba(54, 199, 107, 0.8431372549);
}
.content-pdv .product-card .in-stock svg {
  width: 14px;
  height: 14px;
  margin-top: -2px;
}
@media screen and (max-width: 768px) {
  .content-pdv {
    margin-right: 0;
  }
}

.content-area {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .content-area {
    padding: 20px;
  }
}

.sale-details-area {
  width: 500px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sale-details-area .divider {
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
  margin: 20px 0;
}
.sale-details-area ul {
  margin: 0;
  padding: 0;
}
.sale-details-area ul li {
  list-style: none;
}
.sale-details-area .sale-details {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  display: inline-block;
}
.sale-details-area .sale-details .sale-items-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sale-details-area .sale-details .sale-items-list li {
  list-style: none;
  text-wrap: balance;
}
.sale-details-area .print-receipt-btn {
  background-color: #ef4e23;
  border-color: #ef4e23;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  padding: 14px;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.users-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table {
  text-wrap: nowrap;
}
.table .status-switch:hover {
  cursor: pointer;
}
.table .product-name-table {
  font-weight: 500;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.table .form-check-input:checked {
  background-color: #68d279;
  border-color: #68d279;
}
.table .btn-warning {
  background-color: #fff1ed;
  border-color: #fff1ed;
  color: #ef4e23;
  display: flex;
  justify-content: center;
}
.table .btn-warning:hover {
  background-color: rgb(255, 221.1666666667, 211.5);
  color: #ef4e23;
  border-color: rgb(231.6525423729, 62.125, 16.8474576271);
}

.table td {
  vertical-align: middle;
  font-size: 14px;
}

.table th {
  font-weight: 600 !important;
}

@media screen and (min-width: 1024px) {
  .table-responsive {
    display: inline-table !important;
  }
}

.codigobarras {
  text-transform: uppercase;
}

.img-prod-list {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-area-pos {
  position: fixed;
  background-color: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  padding: 20px;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.cart-area-pos .cart-area-content {
  position: relative;
  height: 100%;
}
.cart-area-pos .cart-total-area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.cart-area-pos h4 {
  font-size: 20px;
  letter-spacing: -0.5px;
}
.cart-area-pos ul {
  margin: 0;
  padding: 14px 10px;
  border-radius: 12px;
  max-height: 320px;
  background-color: #f9f8fd;
  overflow-x: hidden;
  overflow-y: auto;
  /* width */
}
.cart-area-pos ul ::-webkit-scrollbar {
  width: 6px;
}
.cart-area-pos ul {
  /* Track */
}
.cart-area-pos ul ::-webkit-scrollbar-track {
  background-color: #f9f8fd;
  border-radius: 10px;
}
.cart-area-pos ul {
  /* Handle */
}
.cart-area-pos ul ::-webkit-scrollbar-thumb {
  background: #ef4e23;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .cart-area-pos ul {
    max-height: 240px;
  }
}
.cart-area-pos h5 {
  background-color: #fff3cd;
  font-size: 20px;
  font-weight: 600;
  padding: 30px;
  border-radius: 12px;
}
.cart-area-pos .cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  width: 100%;
  align-items: center;
}
.cart-area-pos .cart-item .photo-name {
  display: flex;
  align-items: center;
}
.cart-area-pos .cart-item img {
  border-radius: 12px;
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.cart-area-pos .cart-item .content-item .name-price span {
  display: block;
}
.cart-area-pos .cart-item .content-item .name-price .name-item {
  text-transform: uppercase;
  font-weight: 500;
  color: #687480;
  font-size: 13px;
  margin-bottom: 0;
}
.cart-area-pos .cart-item .content-item .name-price .price-item {
  font-weight: 600;
  color: #687480;
  font-size: 14px;
}
.cart-area-pos .cart-item .qt-btn {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cart-area-pos .cart-item input {
  width: 50px;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #e1e1e1;
}
.cart-area-pos .cart-item button {
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  font-weight: 600;
  padding: 5px 8px 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #687480;
  cursor: pointer;
}
.cart-area-pos .btns-order {
  display: grid;
  grid-template-columns: 80% auto;
  gap: 5px !important;
  align-items: center;
}
.cart-area-pos .btn-success {
  height: 80px;
  border-radius: 12px;
  background-color: #36c76c;
  border-color: #36c76c;
  text-transform: uppercase;
  font-weight: 500;
}
.cart-area-pos .btn-success:hover {
  background-color: rgb(48.557312253, 178.942687747, 97.1146245059);
  border-color: rgb(48.557312253, 178.942687747, 97.1146245059);
}
.cart-area-pos .btn-danger {
  height: 80px;
  background-color: red;
  border: none;
}
@media screen and (max-width: 768px) {
  .cart-area-pos {
    max-width: 100%;
    padding-top: 70px;
  }
  .cart-area-pos h4 {
    margin-bottom: 40px;
  }
}

.event-2024 {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(75, 34, 11, 0.73)), url("../img/natal-lion.webp");
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
}
.event-2024 .event-2024-content {
  max-width: 600px;
}
.event-2024 {
  text-align: center;
}
.event-2024 .btn-natal {
  background-color: #ef4e23;
  color: #fff;
  padding: 14px 20px;
  font-size: 15px;
  border-radius: 8px;
  display: inline-block;
  border: none;
}
.event-2024 h2 {
  color: #fff;
  font-size: 50px;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  font-style: 600 !important;
}
.event-2024 p {
  font-weight: 400;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .event-2024 h2 {
    font-size: 30px;
  }
  .event-2024 p {
    font-size: 15px;
    line-height: 1.8 !important;
  }
}
.event-2024 {
  margin-bottom: 30px;
}

.menu-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.menu-right i {
  cursor: pointer;
  font-size: 22px;
}

.table-content {
  padding: 30px;
  border-radius: 8px;
  background-color: #fff;
}

.login-page {
  background-color: #e1e1e1;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-page form {
  border-radius: 8px;
  background-color: #fff;
}

.credit-card {
  width: 400px;
  max-width: 100%;
  height: 250px;
  background-color: #303030;
  color: #fff;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.credit-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
}
.credit-card .card-header .chip {
  width: 60px;
}
.credit-card .card-number {
  font-size: 24px;
}

.header-subscribe {
  margin-top: 40px;
  margin-bottom: 60px;
}
.header-subscribe .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-subscribe .container a {
  text-decoration: none;
}
.header-subscribe .container .btn-logout {
  text-decoration: none;
  background-color: #f9f8fd;
  border: 1px solid #e1e1e1;
  padding: 10px 20px;
  border-radius: 8px;
  color: #495057;
  font-weight: 500;
  font-size: 15px;
}

.form-container-subscribe {
  max-width: 900px;
}
.form-container-subscribe .title-page {
  text-align: center;
  justify-content: center;
}

.sub-form {
  display: grid;
}
.sub-form .btn {
  height: 50px;
  border-radius: 12px;
  display: block;
  margin-top: 40px;
}
.sub-form p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  margin-top: 20px;
  color: #99a1a8;
}
.sub-form p a {
  text-decoration: none;
  color: #303030;
  font-weight: 500;
}
.sub-form p a:hover {
  text-decoration: underline;
}
.sub-form .options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.sub-form .options .form-check {
  margin: 0;
  padding: 0;
}
.sub-form .options .form-check-label {
  padding: 30px;
  width: 100%;
}
.sub-form .options .form-check h4 {
  letter-spacing: -0.5px;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}
.sub-form .options .form-check h2 {
  display: flex;
  font-weight: 600;
  letter-spacing: -1px;
  font-size: 50px;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.sub-form .options .form-check h2 small {
  font-size: 13px;
  letter-spacing: -0.2px;
}
@media screen and (max-width: 768px) {
  .sub-form .options {
    grid-template-columns: 1fr;
  }
}
.sub-form input[type=radio] {
  display: none;
}
.sub-form input[type=radio]:not(:disabled) ~ label {
  cursor: pointer;
}
.sub-form input[type=radio]:disabled ~ label {
  color: hsl(150, 5%, 75%);
  border-color: hsl(150, 5%, 75%);
  box-shadow: none;
  cursor: not-allowed;
}
.sub-form label {
  height: 100%;
  display: block;
  background: white;
  border-radius: 20px;
  margin-bottom: 1rem;
  position: relative;
}
.sub-form label ul {
  text-align: left;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 0px;
  padding-top: 30px;
  border-top: 1px solid #e1e1e1;
}
.sub-form label ul li {
  list-style: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sub-form label ul li i {
  font-size: 22px;
  margin-top: -2px;
}
.sub-form label ul li .bx-x {
  font-size: 22px;
}
.sub-form input[type=radio]:checked + label {
  background: #ef4e23;
  color: hsl(215, 0%, 100%);
}
.sub-form input[type=radio]:checked + label::after {
  color: hsl(215, 5%, 25%);
  border: 2px solid #ef4e23;
  content: "selecionado";
  color: #ef4e23;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  top: -25px;
  left: 70%;
  transform: translateX(-50%);
  height: 50px;
  line-height: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  text-align: center;
  border-radius: 8px;
  background: white;
  box-shadow: 0px 2px 5px -2px hsla(0, 0%, 0%, 0.25);
}
.sub-form input[type=radio]#control_05:checked + label {
  background: red;
  border-color: red;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent;
  color: #ef4e23;
}

.dropdown-menu {
  padding: 10px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dropdown-item svg {
  width: 18px;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: transparent;
  color: #ef4e23;
}

#clients-table,
#products-table,
#sales-table,
#expenses-table {
  padding: 20px 0;
}

#purchases-table a {
  text-decoration: none;
  font-weight: 500;
  transition: all ease 0.3s;
}
#purchases-table a:hover {
  color: #ef4e23;
}

#client-selection #search-results {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 183px;
  overflow: hidden;
  overflow-y: scroll;
}
#client-selection #search-results .client-result {
  padding: 10px;
  border-radius: 4px;
  background-color: #f8f8f8;
}
#client-selection #search-results .client-result:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}

.products-list-order {
  margin-bottom: 14px;
}

#final-order-summary {
  padding: 0;
}

#client-form #search-results {
  max-height: 200px;
  overflow-y: scroll;
}
#client-form #search-results .client-result {
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}
#client-form #search-results .client-result:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

#sales-table_wrapper .payment-method {
  font-weight: 500 !important;
}

.btns-group-table {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btns-group-table .btn {
  font-size: 15px !important;
  font-weight: 500;
}

.menu {
  background-color: #fff;
  margin-left: 220px;
  padding: 20px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}
.menu .menu-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .menu {
    margin-left: 0;
  }
  .menu .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}

.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 25px;
}
.main-menu .logo-company {
  display: none;
}

.main-menu li {
  display: none;
}

.main-menu li a {
  text-decoration: none;
  color: #495057;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
}
.main-menu li a svg {
  width: 18px;
}

.user-menu {
  gap: 10px;
  display: flex;
  align-items: center;
}

.user-btn {
  background-color: #fff1ed;
  color: #ef4e23;
  border-radius: 50%;
  font-weight: 600;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  line-height: 1;
  font-size: 16px;
  cursor: pointer;
}

.dropdown-toggle::after {
  display: none;
}

.user-btn:focus {
  outline: none;
  box-shadow: none;
}

.burger-menu {
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  display: none;
}

.dropdown-menu {
  min-width: 200px;
}

.user-info {
  padding: 10px;
  text-align: left;
}

.user-info .name {
  font-weight: bold;
}

.dropdown-item {
  padding: 10px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #212529;
  z-index: 999;
  padding-top: 60px;
  overflow-y: auto;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-menu ul li hr {
  margin: 0;
  border-top: 1px solid #fff;
}

.mobile-menu ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}
.mobile-menu ul li a svg {
  width: 18px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 3em;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .burger-menu {
    display: block;
  }
  .main-menu {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pos-page #product-list {
    margin-top: 20px;
    margin-bottom: 40px;
    padding: 0 8px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .pos-page #product-list .product-item {
    padding: 0;
    margin: 0;
  }
}
.pos-page .add-new {
  display: none !important;
}
.pos-page .main-menu .logo-company {
  display: block;
}
.pos-page .main-menu .logo-company img {
  max-height: 50px;
  width: auto;
}
.pos-page .main-menu li {
  display: flex;
}
.pos-page .main-menu li a {
  color: #ef4e23;
  font-size: 15px;
  background-color: #fff1ed;
  padding: 8px 15px;
  border-radius: 8px;
}
.pos-page .sidebar {
  display: none;
}
.pos-page .content {
  margin-left: 0;
}
@media screen and (min-width: 1024px) {
  .pos-page .cart-area-pos {
    display: flex;
    justify-content: space-between;
  }
}
.pos-page .menu {
  margin-right: 400px;
  margin-left: 0;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  .pos-page .menu {
    margin-right: 0;
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  div.dataTables_wrapper div.dataTables_length,
  div.dataTables_wrapper div.dataTables_filter,
  div.dataTables_wrapper div.dataTables_info,
  div.dataTables_wrapper div.dataTables_paginate {
    text-align: left;
    margin-bottom: 0px;
    margin-top: 10px;
  }
  div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    margin-top: 10px;
    justify-content: start !important;
  }
}
.page-landing .color {
  color: #ef4e23;
}
.page-landing .container {
  max-width: 1140px;
}
.page-landing .btn {
  border-radius: 60px;
  height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page-landing img {
  max-width: 100%;
  height: auto;
}
.page-landing .header {
  padding: 15px 0;
  background: #ef4e23;
  position: sticky;
  top: 0;
  z-index: 100;
}
.page-landing .header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-landing .header .header-content .logo {
  display: flex;
  align-items: center;
  gap: 40px;
}
.page-landing .header .header-content .logo img {
  width: 180px;
}
.page-landing .header .header-content ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
.page-landing .header .header-content ul li {
  list-style: none;
}
.page-landing .header .header-content ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
}
@media (max-width: 768px) {
  .page-landing .header .header-content ul {
    display: none;
  }
}
.page-landing .header .header-content .entrar-btn {
  color: #ef4e23;
  background-color: #fff;
  font-weight: 500;
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 15px;
}
.page-landing .header .header-content .assinar-btn {
  color: #fff;
  font-weight: 500;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 15px;
}
@media (max-width: 768px) {
  .page-landing .header .header-content .assinar-btn {
    display: none;
  }
}
.page-landing .hero {
  background-color: #ef4e23;
}
.page-landing .hero .hero-content {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.page-landing .hero .hero-content .hero-image-right {
  padding-top: 10px;
  padding-bottom: 30px;
  position: relative;
}
.page-landing .hero .hero-content .hero-image-right .stats-hero-one {
  position: absolute;
  left: -50px;
  top: 65%;
  background-color: #fff;
  padding: 5px;
  padding-right: 12px;
  border-radius: 4px;
  display: inline-flex;
  gap: 14px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-landing .hero .hero-content .hero-image-right .stats-hero-one {
    left: 10px;
    top: 70%;
    text-align: left;
  }
}
.page-landing .hero .hero-content .hero-image-right .stats-hero-one p {
  word-wrap: normal;
  color: #adb5bd;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}
.page-landing .hero .hero-content .hero-image-right .stats-hero-one span {
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
}
.page-landing .hero .hero-content .hero-image-right .stats-hero-one i {
  border-radius: 4px;
  font-size: 20px;
  color: #36c76c;
  background-color: #cfffdf;
  padding: 10px;
}
.page-landing .hero .hero-content .hero-image-right .stats-hero-two {
  position: absolute;
  right: -50px;
  top: 45%;
  background-color: #fff;
  padding: 5px;
  padding-right: 12px;
  border-radius: 4px;
  display: inline-flex;
  gap: 14px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-landing .hero .hero-content .hero-image-right .stats-hero-two {
    top: 50%;
    right: 10px;
    text-align: left;
  }
}
.page-landing .hero .hero-content .hero-image-right .stats-hero-two p {
  color: #adb5bd;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}
.page-landing .hero .hero-content .hero-image-right .stats-hero-two span {
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
}
.page-landing .hero .hero-content .hero-image-right .stats-hero-two i {
  border-radius: 4px;
  font-size: 20px;
  color: #4e90ef;
  background-color: #d6e7ff;
  padding: 10px;
}
.page-landing .hero .hero-content .content-hero-index .hello {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  color: #fff;
  opacity: 0.8;
}
.page-landing .hero .hero-content .content-hero-index .hello i {
  font-size: 20px;
}
@media (max-width: 768px) {
  .page-landing .hero .hero-content .content-hero-index .hello {
    font-size: 15px;
    width: 100%;
    justify-content: center;
    margin-top: 30px;
  }
}
.page-landing .hero .hero-content .content-hero-index .lead {
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.8;
  max-width: 500px;
}
@media (max-width: 768px) {
  .page-landing .hero .hero-content .content-hero-index .lead {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
.page-landing .hero .hero-content .content-hero-index h1 {
  font-weight: 600;
  letter-spacing: -2px;
  color: #fff;
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .page-landing .hero .hero-content .content-hero-index h1 {
    font-size: 30px;
    letter-spacing: -1px;
    margin-bottom: 20px;
  }
}
.page-landing .hero .hero-content .assinar-btn {
  background-color: #fff;
  color: #ef4e23;
  font-weight: 500;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
}
.page-landing .hero .hero-content .planos-btn {
  color: #fff;
  opacity: 0.8;
  font-weight: 400;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .page-landing .hero .hero-content {
    grid-template-columns: 1fr;
    padding: 0 10px;
    padding-bottom: 20px;
    gap: 10px;
    text-align: center;
  }
  .page-landing .hero .hero-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .page-landing .hero .hero-content p {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .page-landing .hero .btns-hero {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}
.page-landing .whats-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #48a91f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 50%;
  text-decoration: none;
  padding: 16px;
  z-index: 999999;
}
.page-landing .whats-btn i {
  font-size: 30px;
  line-height: 1;
}
.page-landing .elements {
  padding: 80px 0;
}
.page-landing .elements .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.page-landing .elements .element-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.page-landing .elements .element-content h1 {
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: -1px;
  margin-bottom: 40px;
}
.page-landing .elements .element-content .color {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
  font-weight: 500;
}
.page-landing .elements .element-content .color i {
  font-size: 20px;
}
.page-landing .elements .element-content .cards-area-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.page-landing .elements .element-content .cards-area-benefits .card-benefit {
  border-radius: 8px;
  padding: 20px;
  background-color: #f6f5fb;
}
.page-landing .elements .element-content .cards-area-benefits .card-benefit i {
  font-size: 24px;
  color: #ef4e23;
  margin-bottom: 20px;
}
.page-landing .elements .element-content .cards-area-benefits .card-benefit p {
  margin-bottom: 0;
  font-size: 15px;
}
.page-landing .elements .element-content .cards-area-benefits .card-benefit h4 {
  font-size: 18px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .page-landing .elements .element-content .cards-area-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .page-landing .elements .element-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .page-landing .elements .element-content .color {
    justify-content: center;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .page-landing .elements .reverse-element {
    display: flex;
    gap: 20px;
    flex-direction: column-reverse;
  }
}
.page-landing .plans {
  padding: 80px 0;
  background-color: #f6f5fb;
}
.page-landing .plans .container {
  max-width: 850px;
}
.page-landing .plans .plans-title {
  margin-bottom: 60px;
}
.page-landing .plans .plans-title h1 {
  font-weight: 600;
  letter-spacing: -1px;
}
@media screen and (max-width: 768px) {
  .page-landing .plans .plans-title h1 {
    font-size: 30px;
  }
}
.page-landing .plans .plans-title p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4e23;
  gap: 5px;
  font-weight: 500;
}
.page-landing .plans .plans-title p i {
  font-size: 20px;
}
.page-landing .plans .plans-content .plans-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.page-landing .plans .plans-content .plans-box .plan {
  background-color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 40px 30px;
}
.page-landing .plans .plans-content .plans-box .plan hr {
  margin: 2rem 0;
  opacity: 0.1;
}
.page-landing .plans .plans-content .plans-box .plan h2 {
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ef4e23;
}
.page-landing .plans .plans-content .plans-box .plan h1 {
  font-weight: 600;
  letter-spacing: -1px;
}
.page-landing .plans .plans-content .plans-box .plan h1 small {
  font-size: 16px;
}
.page-landing .plans .plans-content .plans-box .plan .assinar-btn {
  background-color: #ef4e23;
  width: 100%;
  color: #fff;
  font-weight: 500;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 8px;
  text-decoration: none;
}
.page-landing .plans .plans-content .plans-box .plan ul {
  text-align: left;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.page-landing .plans .plans-content .plans-box .plan ul li {
  list-style: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.page-landing .plans .plans-content .plans-box .plan ul li i {
  color: #ef4e23;
  font-size: 22px;
  margin-top: -2px;
}
.page-landing .plans .plans-content .plans-box .plan ul li .bx-x {
  color: #303030;
  font-size: 22px;
  opacity: 0.5;
}
.page-landing .plans .plans-content .plans-box .plan ul li del {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .page-landing .plans .plans-content .plans-box {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .page-landing .plans {
    padding: 60px 0;
  }
}
.page-landing .faq {
  padding: 80px 0;
}
.page-landing .faq .container {
  max-width: 800px;
}
.page-landing .footer {
  padding: 60px 0;
}
.page-landing .footer img {
  opacity: 0.1;
  transition: all ease 0.2s;
}
.page-landing .footer img:hover {
  opacity: 1;
}
.page-landing .benefits-img-area {
  width: 100%;
  height: 650px;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-landing .benefits-img-area {
    height: 400px;
    border-radius: 8px;
  }
}
.page-landing .benefits-img-area .depo {
  width: 90%;
  padding: 16px;
  background-color: #ef4e23;
  color: #fff;
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 12px;
  text-align: center;
}
.page-landing .benefits-img-area .depo p {
  font-size: 15px;
}
.page-landing .benefits-img-area .depo span {
  font-weight: 500;
}
.page-landing .benefits-img-area .benefits-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
}

.login-page a,
.register-page a {
  color: #ef4e23;
  text-decoration: none;
  font-weight: 500;
}

.login-page > .container,
.register-page > .container,
.password-page > .container {
  max-width: 600px;
}

.logo-auth {
  margin-top: 40px;
  margin-bottom: 20px;
}
.logo-auth img {
  opacity: 0.1;
}

.terms p {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

.pass-forgot {
  font-size: 14px;
  font-weight: 500;
  color: #666 !important;
}

.login-page .form-container,
.register-page .form-container {
  background: #fff;
  padding: 30px;
  max-width: 100%;
  border-radius: 20px;
}
.login-page .form-container label,
.register-page .form-container label {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .login-page .form-container,
  .register-page .form-container {
    margin: 10px;
    padding: 20px;
  }
}
.login-page .form-container .btn,
.register-page .form-container .btn {
  margin-bottom: 20px;
}
.login-page .form-container h2,
.register-page .form-container h2 {
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 0;
}
.login-page .form-container p,
.register-page .form-container p {
  font-size: 14px;
  font-weight: 500;
}

.password-page .logo-lion-top {
  display: block;
  margin-top: 40px;
  margin-bottom: 20px;
  opacity: 0.1;
}
.password-page .form-login-container {
  background: #fff;
  padding: 30px;
  max-width: 100%;
  border-radius: 20px;
}
.password-page .form-login-container h2 {
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 0;
}
.password-page .btn {
  font-size: 15px;
}
.password-page label {
  font-size: 14px;
}
.password-page a {
  color: #ef4e23;
  font-size: 14px;
  font-weight: 500;
}