:root {
  --primary-color: #02926E;  /* DC1186 */
  --secondary-color: white;
  --success-color: #02926E;  /* DC1186 */
  /* --primary-color: #620062;
  --success-color: #620062;
  --secondary-color: #fff; */
  --danger-color: #f44336;
  --done-color: #8bc34a;
  --light-success-color: rgba(34, 41, 41, 0.8);
  --fast-transition-time: 300ms;
  --transition-time: 500ms;
  --gap: 1rem;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.fb_reset {
  font-size: unset !important;
}
.loader {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--fast-transition-time),
    visibility var(--fast-transition-time);
}
body {
  background: var(--secondary-color);
  color: #777;
  line-height: 1.328571;
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
}
body.modal-open {
  overflow: hidden;
}
body.loading .loader {
  visibility: visible;
  opacity: 1;
}
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#app ::-webkit-scrollbar-thumb:hover {
  background: #888;
}
#app ::-webkit-scrollbar-thumb {
  background: #aaa;
}
#app ::-webkit-scrollbar {
  width: 7px;
}
#app ::-webkit-scrollbar-track {
  background: #eee;
}
button,
input,
select,
textarea {
  outline: none;
  color: #666;
}
textarea {
  height: 80px;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #bbb;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #bbb;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #bbb;
}
input::placeholder,
textarea::placeholder {
  color: #bbb;
}
a {
  text-decoration: none;
  color: unset;
}
ul {
  list-style: none;
}
.pointer {
  cursor: pointer;
}
.hover-bg:hover {
  background-color: rgba(138, 172, 213, 0.31);
}
i.hover-primary:hover {
  color: var(--primary-color) !important;
}
.semi-transparent {
  opacity: 0.5;
}
.grid {
  display: grid;
  gap: 1rem;
}
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.5rem;
}
.col-1 {
  grid-column: span 1;
}
.col-2 {
  grid-column: span 2;
}
.col-3 {
  grid-column: span 3;
}
.col-4 {
  grid-column: span 4;
}
.col-5 {
  grid-column: span 5;
}
.col-6 {
  grid-column: span 6;
}
.col-7 {
  grid-column: span 7;
}
.col-8 {
  grid-column: span 8;
}
.col-9 {
  grid-column: span 9;
}
.col-10 {
  grid-column: span 10;
}
.col-11 {
  grid-column: span 11;
}
.col-12 {
  grid-column: span 12;
}
.flex {
  display: flex !important;
}
.none {
  display: none !important;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-gap > * {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.flex-gap > :first-child {
  margin-left: 0;
}
.flex-gap > :last-child {
  margin-right: 0;
}
.flex-auto {
  flex: auto;
}
.flex-1 {
  flex: 1;
}
.space-between {
  display: flex;
  justify-content: space-between;
}
.space-around {
  display: flex;
  justify-content: space-around;
}
.center {
  justify-content: center;
}
.center,
.center-v {
  display: flex;
  align-items: center;
}
.center-h {
  display: flex;
  justify-content: center;
}
.hover-underline:hover,
.underline {
  text-decoration: underline;
}
.fa {
  font-size: 16px;
}
.indicator {
  font-size: 3rem;
}
h4 {
  line-height: 1.5rem;
  font-size: 1.1rem;
}
h5 {
  line-height: 1.2rem;
  font-size: 1rem;
}
h6 {
  line-height: 1rem;
  font-size: 0.8rem;
}
.bold {
  font-weight: 700;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.word-break {
  word-break: break-all;
}
.block {
  display: block;
  width: 100%;
}
.p {
  padding: 1rem;
}
.p-h {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.p-v {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.p-l {
  padding-left: 1rem;
}
.p-r {
  padding-right: 1rem;
}
.p-t {
  padding-top: 1rem;
}
.p-b {
  padding-bottom: 1rem;
}
.p-l-0 {
  padding-left: 0 !important;
}
.p-r-0 {
  padding-right: 0 !important;
}
.p-t-0 {
  padding-top: 0 !important;
}
.p-b-0 {
  padding-bottom: 0 !important;
}
.p-half {
  padding: 0.5rem;
}
.m {
  margin: 1rem !important;
}
.m-0 {
  margin: 0 !important;
}
.m-h {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.m-v {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.m-l-0 {
  margin-left: 0 !important;
}
.m-r-0 {
  margin-right: 0 !important;
}
.m-t-0 {
  margin-top: 0 !important;
}
.m-b-0 {
  margin-bottom: 0 !important;
}
.m-l {
  margin-left: 1rem !important;
}
.m-r {
  margin-right: 1rem !important;
}
.m-t {
  margin-top: 1rem !important;
}
.m-b {
  margin-bottom: 1rem !important;
}
.m-l-half {
  margin-left: 0.5rem !important;
}
.m-r-half {
  margin-right: 0.5rem !important;
}
.m-t-half {
  margin-top: 0.5rem !important;
}
.m-b-half {
  margin-bottom: 0.5rem !important;
}
.m-half {
  margin: 0.5rem !important;
}
.m-auto-l {
  margin-left: auto !important;
}
.m-auto {
  margin: auto;
}
.round {
  border-radius: 0.5rem !important;
}
.no-round {
  border-radius: 0 !important;
}
.border-success {
  border: 1px solid var(--success-color);
}
.border-t {
  border-top: 1px solid;
}
.border-b {
  border-bottom: 1px solid;
}
.border-l {
  border-left: 1px solid;
}
.border-r {
  border-right: 1px solid;
}
.dropzone {
  border: 1px solid var(--success-color);
  min-height: 200px;
  border-radius: 0.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 100px));
  gap: 0.5rem;
  grid-gap: 0.5rem;
}
.dropzone .new-image-item {
  width: 100px;
  height: 100px;
  background-color: #d3d3d3;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: grey;
  position: relative;
  border: 1px solid grey;
  overflow: hidden;
}
.dropzone .new-image-item.plus {
  cursor: pointer;
}
.dropzone .new-image-item img {
  width: 100%;
  height: 100%;
}
.dropzone .new-image-item .close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
}
.no-border {
  border: none !important;
}
form .button {
  margin: 0;
}
.button {
  display: inline-block;
  font-weight: 700;
  color: #555;
  cursor: pointer;
  margin: 0 0.5rem;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 0.5rem;
  text-align: center;
}
.button.simple {
  padding: 0;
  border: none;
  background-color: transparent;
}
.button.simple:hover {
  color: #ddd;
}
.button.small {
  border-radius: 0.8rem;
  padding: 0.5rem 0.8rem;
}
.button.success {
  background-color: var(--success-color);
  color: #fff;
}
.button.success.ghost {
  border: 1px solid var(--success-color);
  color: var(--success-color);
  background-color: unset;
}
.button.success.ghost:hover {
  color: #fff;
}
.button.success:hover {
  background-color: var(--success-color);
  opacity: 0.9;
}
.button.primary {
  background-color: var(--primary-color);
  color: #fff;
}
.button.danger {
  background-color: #f44336;
  color: #fff;
}
.button.danger:hover {
  background-color: #f77066;
}
.button.round {
  border-radius: 1.5rem;
}
.button.loading {
  color: transparent !important;
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}
.button.loading:after {
  content: " ";
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #fff;
  border-color: #fff transparent #fff transparent;
  -webkit-animation: spinner 1.2s linear infinite;
  animation: spinner 1.2s linear infinite;
  left: calc(50% - 7px);
  top: calc(50% - 9px);
}
.button.error {
  color: transparent;
  position: relative;
  pointer-events: none;
  background-color: var(--danger-color) !important;
}
.button.error:after {
  content: "X";
  font-size: 1rem;
  color: #fff;
  position: absolute;
  display: block;
  left: calc(50% - 7px);
  top: calc(50% - 9px);
}
.button.done {
  color: transparent;
  position: relative;
  pointer-events: none;
  background-color: var(--done-color) !important;
}
.button.done:after {
  content: "\f00c";
  font-family: Font Awesome\5 Free;
  font-size: 1rem;
  color: #fff;
  position: absolute;
  display: block;
  left: calc(50% - 7px);
  top: calc(50% - 9px);
}
.button.disabled {
  opacity: 0.75;
  pointer-events: none;
}
.input-item {
  display: block;
}
.input-item .input-title {
  color: var(--success-color);
  margin-bottom: 0.25rem;
  margin-left: 0.25rem;
  display: block;
}
.input-item .input-icon,
.input-item input,
.input-item textarea {
  border-radius: 0.5rem;
  border: 1px solid var(--success-color);
  padding: 0.5rem 1rem;
  width: 100%;
}
.input-item .input-icon.round,
.input-item input.round,
.input-item textarea.round {
  border-radius: 1.5rem;
}
.input-item .input-icon[type="checkbox"],
.input-item input[type="checkbox"],
.input-item textarea[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}
.input-item select {
  border-radius: 0.5rem;
  border: 1px solid var(--success-color);
  height: 34px;
  width: 100%;
  background-color: #fff;
  padding: 0.5rem 1rem;
}
.input-item .input-icon {
  padding: 0;
  display: flex;
  overflow: hidden;
  align-items: center;
}
.input-item .input-icon .icon {
  color: var(--success-color);
  padding: 0 0.5rem;
}
.input-item .input-icon input {
  border: none;
  border-radius: 0;
  border-left: 1px solid var(--success-color);
}
.input-item .input-error {
  color: #f44336;
}
.select {
  background-color: #f7f7f7;
  border: 1px solid #a9a9a9;
  padding: 0.2rem;
  border-radius: 0.5rem;
  margin-top: 0.25rem;
}
.select option[disabled] {
  background: #f5f5f5;
  color: #9e9e9e;
}
.bg-transparent {
  background: transparent !important;
}
.bg-white {
  background: #fff;
}
.bg-primary {
  background: var(--primary-color) !important;
}
.bg-secondary {
  background: var(--secondary-color) !important;
}
.bg-success {
  background: var(--success-color) !important;
}
.bg-lightgray {
  background-color: #f8f9fa !important;
}
.text-white {
  color: #fff;
}
.text-gray {
  color: grey;
}
.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.text-success {
  color: var(--success-color) !important;
}
.fill-success {
  fill: var(--success-color);
}
.floating-shopping-card {
  overflow-y: auto;
  max-height: 300px;
}
.floating-shopping-card .small-product-card .product-image {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
}
.full-modal {
  position: fixed;
  top: -100vh;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 999999;
  transition: top var(--transition-time);
}
.full-modal#flomil-modal {
  display: flex;
  flex-flow: column;
  text-align: center;
}
.full-modal#flomil-modal .modal-left {
  background-image: url(/front/img/minorista.jpg);
  background-size: cover;
  background-position: 50%;
  flex-flow: column;
  position: relative;
}
.full-modal#flomil-modal .modal-left:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(87, 11, 55, 0.61);
}
.full-modal#flomil-modal .modal-right {
  background-image: url(/front/img/mayorista.jpg);
  background-size: cover;
  background-position: 50%;
  flex-flow: column;
  position: relative;
}
.full-modal#flomil-modal .modal-right:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.47);
}
.full-modal#flomil-modal h2 {
  color: #fff;
  font-size: 2.3rem;
  z-index: 0;
}
.full-modal#flomil-modal h4 {
  color: #fff;
  font-size: 1rem;
  margin: 0.5rem 0;
  z-index: 0;
}
.full-modal#flomil-modal button {
  margin-top: 1rem;
  z-index: 0;
}
.full-modal#flomil-modal button i {
  margin-left: 0.5rem;
}
.full-modal#flomil-modal .modal-logo {
  width: 100px;
  height: auto;
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
}
.full-modal#flomil-modal img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.full-modal.is-active {
  top: 0;
}
.wellcome h2 {
  font-size: 2rem;
  color: #fff;
}
.wellcome h4 {
  font-size: 1.2rem;
  color: #fff;
}
.VueCarousel.inside-bullets {
  position: relative;
}
.VueCarousel.inside-bullets .VueCarousel-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.VueCarousel.inside-bullets .VueCarousel-pagination .VueCarousel-dot {
  outline: none;
  background-color: #d3d3d3 !important;
}
.VueCarousel.inside-bullets
  .VueCarousel-pagination
  .VueCarousel-dot.VueCarousel-dot--active {
  background-color: var(--primary-color) !important;
}
.social-medias {
  display: flex;
  flex-flow: column;
  position: fixed;
  bottom: 0.5rem;
  left: 0.5rem;
}
.social-medias a {
  margin: 0.25rem 0;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
}
.social-medias a i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1),
    0 0 0 1px rgba(10, 10, 10, 0.02);
  font-size: 28px;
}
.social-medias a .fa-linkedin {
  background-color: #0e76a8;
}
.social-medias a .fa-facebook {
  background-color: #3b5998;
}
.social-medias a .fa-instagram {
  background-color: #e4717a;
}
.social-medias a .fa-youtube {
  background-color: #c4302b;
}
.social-medias a .fa-whatsapp {
  background-color: #25d366;
}
.body .banner .tns-slider {
  width: 100% !important;
}
.body .banner .tns-item {
  width: 100% !important;
  padding: 0 !important;
}
.body .banner .banner-item,
.body .banner img {
  width: 100% !important;
}
.body .category ul li {
  cursor: pointer;
  transition: color var(--fast-transition-time);
}
.body .category ul li.active,
.body .category ul li:hover {
  color: var(--success-color);
}
.body .category ul li:first-child {
  margin-right: -1.5rem;
}
.body .category ul .h-separator {
  border-right: 1px solid #888;
  margin: 0 2.5rem;
}
.body article {
  width: 100%;
}
.body article.admin {
  margin-right: 0 !important;
}
.body aside {
  position: fixed;
  right: 0.5rem;
}
.body footer {
  position: relative;
}
.body footer ul li {
  margin: 0.8rem 0;
}
.body footer .powered_qoctel {
  width: 170px;
  height: auto;
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
}
.product-counter {
  border: 1px solid;
  padding: 0.25rem 0.5rem;
  display: flex;
  align-items: center;
  border-radius: 4px;
  max-width: 100px;
}
.product-counter i.disabled {
  color: #d3d3d3;
  pointer-events: none;
}
.product-counter i:hover {
  color: var(--success-color);
}
.purchasing-card {
  padding-bottom: 20px !important;
}
.purchasing-card .card-header .process-item {
  position: relative;
  border-bottom: 2px solid var(--success-color);
  color: #bebebe;
}
.purchasing-card .card-header .process-item:last-child:before {
  content: none;
}
.purchasing-card .card-header .process-item .circle {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  position: absolute;
  right: -8px;
  bottom: -8px;
  background-color: #fff;
  z-index: 10;
}
.purchasing-card .card-header .process-item.active {
  color: var(--success-color);
}
.purchasing-card .card-header .process-item.active svg {
  fill: var(--success-color);
}
.purchasing-card .card-header .process-item.active .circle {
  background-color: var(--success-color);
}
.purchasing-card .card-header .process-item svg {
  width: 30px;
  margin-right: 0.5rem;
  fill: #bebebe;
}
.card-80 .card-body,
.card-80 .card-header {
  width: 80%;
  margin: 0 auto;
}
.wish-button {
  position: absolute;
  top: 15px;
  right: 20px;
  color: grey;
  font-size: 1.4rem;
}
.wish-button:hover {
  color: #a9a9a9;
}
.wish-button.wished {
  color: #f44336;
}
.shadow {
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1),
    0 0 0 1px rgba(10, 10, 10, 0.02);
}
.card {
  background-color: #fff;
  padding: 1rem;
}
.card .card-tabs {
  background-color: #fff;
  border-radius: 1.5rem;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  align-items: stretch;
  justify-content: center;
  text-align: center;
  box-shadow: 1px 1px 3px 1px var(--success-color);
}
.card .card-tabs .card-tab {
  color: var(--success-color);
  flex: 1;
  padding: 0.5rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card .card-tabs .card-tab:first-of-type {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.card .card-tabs .card-tab:last-of-type {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.card .card-tabs .card-tab.active {
  color: #fff;
  background-color: var(--success-color);
}
.card .card-simple-tabs {
  display: flex;
  text-align: center;
}
.card .card-simple-tabs .card-tab {
  color: var(--success-color);
  padding: 0 0.5rem;
  cursor: pointer;
  border-right: 1px solid var(--success-color);
}
.card .card-simple-tabs .card-tab:last-child {
  border-right: none;
}
.card-icon {
  width: 90px;
  background-color: #d3d3d3;
  border-radius: 1rem;
  text-align: center;
  color: #fff;
  padding: 1rem 0.2rem;
  cursor: pointer;
}
.card-icon.active {
  background-color: var(--success-color);
}
.address-list {
  margin-top: 0.5rem;
}
.address-list .address-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ccc;
}
.address-list .address-item .address-radio {
  margin: 0 0.5rem;
}
.address-list .address-item .address-info {
  flex: auto;
}
.address-list .address-item .address-info small {
  color: grey;
}
.address-list .address-item i {
  color: var(--success-color);
  cursor: pointer;
}
.item-actions {
  display: flex;
  border: 1px solid var(--success-color);
  padding: 0.5rem;
  border-radius: 0.25rem;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  color: var(--success-color);
}
.item-actions .actions {
  display: flex;
  margin-left: 1rem;
}
.item-actions .actions i {
  width: 25px;
  margin: 0 0.15rem;
  cursor: pointer;
}
.item-actions.active {
  background-color: var(--success-color);
  color: #fff;
}
.table-container {
  width: 100%;
  overflow-x: auto;
  background-color: #fff;
  color: var(--primary-color);
}
.table-container .table {
  border-collapse: collapse;
  width: 100%;
}
.table-container .table .sticky-header th {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}
.table-container .table .cell-center {
  text-align: center;
  vertical-align: middle;
}
.table-container .table.table-hover tr:hover td {
  background-color: #f7f7f7;
}
.table-container .table.border,
.table-container .table.border td,
.table-container .table.border th {
  border: 1px solid #ccc;
}
.table-container .table tr.active {
  border-left: 4px solid var(--success-color);
}
.table-container .table tr td,
.table-container .table tr th {
  vertical-align: top;
  font-weight: 400;
  padding: 0.8rem 0.5rem;
}
.table-container.striped tr:first-child {
  background-color: #fff;
}
.table-container.striped tr:nth-child(2n) {
  background-color: rgba(214, 211, 255, 0.56);
}
.table-container.striped tr:nth-child(odd) {
  background-color: #fff;
}
.table-container.lines tr {
  border-bottom: 1.5px solid #ddd;
}
.description-cell {
  max-width: 430px;
}
.purchase-table tr .purchase-delete {
  display: none;
}
.purchase-table tr:hover .purchase-delete {
  display: block;
}
.product-preview {
  display: flex;
}
.product-preview .product-image {
  background-color: #fff;
  min-width: 150px;
  max-width: 150px;
  min-height: 150px;
  max-height: 150px;
  padding: 0.5rem;
  overflow: hidden;
}
.product-preview .product-image img {
  width: 100%;
  height: 100%;
}
.product-preview .product-info {
  flex: auto;
  margin-left: 1.5rem;
}
.product-preview .product-info .product-price {
  padding: 0 0.5rem;
  width: 200px;
}
.product-preview .product-info .product-price input {
  border: none;
  width: 100%;
  padding: 0.5rem;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  outline: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  transition: opacity var(--fast-transition-time);
  opacity: 0;
}
.modal.is-active {
  display: unset;
}
.modal .modal-content {
  background-color: #fff;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.modal .modal-content .modal-header {
  padding: 1rem 0;
  position: relative;
  display: flex;
  align-items: center;
}
.modal .modal-content .modal-header .modal-title {
  flex: auto;
}
.modal .modal-content .modal-header .modal-close {
  width: 20px;
  text-align: center;
  color: var(--success-color);
  cursor: pointer;
}
.modal .modal-content .modal-body,
.modal .modal-content .modal-bottom {
  padding: 1rem 0;
}
.content {
  width: 100%;
}
.content.admin .cart-toggle {
  display: none !important;
}
#alert-modal {
  position: fixed;
  top: 0;
  padding: 0.5rem 1rem;
  z-index: 99999;
  border-radius: 0.5rem;
  margin-left: 50%;
  transform: translate(-50%, 10px);
  color: #fff;
  transition: var(--transition-time);
  opacity: 0;
  pointer-events: none;
  text-align: center;
}
#alert-modal.error {
  background-color: #f44336 !important;
}
#alert-modal.success {
  background-color: var(--success-color);
}
#alert-modal.active {
  opacity: 1;
  pointer-events: unset;
}
.dropdown {
  position: relative;
}
.dropdown .dropdown-menu {
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 90;
  padding: 8px 0;
  border-radius: 4px;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1),
    0 0 0 1px rgba(10, 10, 10, 0.02);
  min-width: 200px;
  margin-top: 0.25rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--fast-transition-time),
    visibility var(--fast-transition-time);
}
.dropdown .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
}
.dropdown .dropdown-menu.dropdown-right {
  left: unset;
  right: 0;
}
.dropdown .dropdown-menu.dropdown-center {
  left: 50%;
  transform: translate(-50%);
}
.dropdown .dropdown-menu .small-product-card:last-child {
  border-bottom: none;
}
.dropdown .dropdown-menu .dropdown-item {
  padding: 8px 0;
  color: #4a4a4a;
  display: block;
  padding: 0.6rem 1rem;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
}
.dropdown .dropdown-menu .dropdown-item i {
  width: 20px;
}
.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #f5f5f5;
  color: #0a0a0a;
}
.item-list {
  padding: 8px 0;
}
.item-list .item {
  color: #4a4a4a;
  display: block;
  padding: 0.6rem 1rem;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1.5px solid #ddd;
}
.item-list .item:last-of-type {
  border-bottom: none;
}
.item-list .item:hover {
  background-color: #f5f5f5;
  color: #0a0a0a;
}
.small-product-card {
  display: flex;
  padding: 0.2rem 0.5rem;
  border-bottom: 1.5px solid #ddd;
}
.small-product-card .product-image {
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
}
.small-product-card .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.small-product-card .product-info {
  flex: auto;
  padding: 0 0.4rem;
  position: relative;
}
.small-product-card .product-info .product-title {
  font-size: 0.9rem;
}
.small-product-card .product-info .product-title:hover {
  text-decoration: underline;
}
.small-product-card .product-info .product-price {
  font-weight: 700;
  color: var(--success-color);
  margin-top: 0.25rem;
}
.small-product-card .product-info .product-counter {
  position: absolute;
  right: 34px;
  bottom: 8px;
  padding: 0.2rem 0.35rem;
  font-size: 0.9rem;
  background: #fff;
}
.small-product-card .product-info .product-counter .product-counter-amount {
  margin: 0 0.8rem;
}
.shopping-cart {
  display: flex;
  flex-flow: column;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 50px);
  z-index: 800;
  display: none;
  background-color: #fff;
  overflow: hidden;
}
.shopping-cart .shopping-cart-header {
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-weight: 700;
  color: #696969;
  border-bottom: 2px solid var(--success-color);
  position: relative;
}
.shopping-cart .shopping-cart-header .close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  font-size: 1.2rem;
  cursor: pointer;
}
.shopping-cart .shopping-cart-body {
  flex: auto;
  overflow-y: auto;
}
.shopping-cart .shopping-cart-body .empty-cart {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-content: center;
}
.shopping-cart .shopping-cart-body .empty-cart i {
  font-size: 3rem;
}
.shopping-cart .shopping-cart-footer {
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-weight: 700;
  background-color: var(--success-color);
  text-align: center;
  opacity: 0.7;
  pointer-events: none;
}
.shopping-cart .shopping-cart-footer:hover {
  opacity: 0.9;
}
.shopping-cart .shopping-cart-footer.active {
  opacity: 1;
  pointer-events: unset;
}
.config-card {
  box-shadow: none !important;
}
.state-button {
  text-align: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #fff;
  cursor: pointer;
  display: inline-block;
}
.state-button.ADMINISTRADOR,
.state-button.CLIENT,
.state-button.En.proceso {
  background-color: #f4d03f;
}
.state-button.En.almacén,
.state-button.WAREHOUSE {
  background-color: #eb984e;
}
.state-button.Despachado,
.state-button.SELLER,
.state-button.WHOLESALER {
  background-color: #5499c7;
}
.state-button.ASSISTANT,
.state-button.Finalizado {
  background-color: #58d68d;
}
.state-button.Cancelado,
.state-button.EXECUTIVE,
.state-button.FRANCHISE {
  background-color: #cd6155;
}
.user-profile.advanced .card-user .card {
  background-color: #f8f9fa !important;
  color: grey;
}
.user-profile.advanced .card-user .card .card-header {
  color: var(--success-color);
}
.user-profile.advanced .card-user .card .card-header .avatar-name {
  color: #fff;
  background-color: var(--success-color);
}
.user-profile.advanced .card-user .card svg {
  stroke: grey;
}
.user-profile.advanced .card {
  box-shadow: none;
}
.advanced .card-tabs {
  box-shadow: none;
  border-radius: 0 !important;
}
.advanced .card-tabs .card-tab {
  border-radius: 0 !important;
  background-color: #f8f9fa;
  padding: 1.5rem;
}
.advanced .card-tabs .card-tab.active {
  background-color: var(--primary-color);
  color: #fff;
}
.advanced .purchasing-card {
  border-radius: 0;
}
.advanced .purchasing-card .process-item {
  border-radius: 0 !important;
  background-color: #f8f9fa;
  padding: 1.2rem;
  text-transform: uppercase;
  border-bottom: none !important;
}
.advanced .purchasing-card .process-item.advanced-active {
  background-color: var(--primary-color);
  color: #fff;
}
.advanced .purchasing-card .process-item .circle,
.advanced .purchasing-card .process-item svg {
  display: none;
}
.body.advanced .section {
  padding-top: 2rem;
}
.body.advanced .section .section-title {
  display: unset;
}
.section-title {
  display: none;
}
.user-image {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
@-webkit-keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.show-sidebar .sidebar {
  left: 0;
}
.show-sidebar .overlay {
  z-index: 999;
  opacity: 1;
}
.show-cart .shopping-cart {
  display: flex;
}
.show-cart .circle {
  z-index: unset !important;
}
.show-cart .cart-toggle .fa-shopping-basket {
  display: none;
}
.show-cart .cart-toggle .fa-times {
  display: unset;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));  /*180px*/
  gap: 0.8rem;
  padding: 0 0.8rem;
}
.product-grid .product-card {
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1),
    0 0 0 1px rgba(10, 10, 10, 0.02);
  font-size: 14px;
  display: flex;
  flex-flow: column;
}
.product-grid .product-card.advanced {
  background-color: #fff;
}
.product-grid .product-card.advanced .product-description {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}
.product-grid .product-card.advanced .product-price {
  font-size: 1.1rem;
}
.product-grid .product-card.advanced .product-counter input {
  font-size: 1rem;
}
.product-grid .product-card:hover .product-card-header .product-image {
  transform: scale(1.3);
}
.product-grid .product-card .product-card-header {
  min-height: 200px;
  max-height: 200px;
  overflow: hidden;
}
.product-grid .product-card .product-card-header .product-image {
  min-height: 200px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  position: relative;
  transition: var(--fast-transition-time);
}
.product-grid .product-card .product-card-body {
  color: #fff;
  flex: auto;
  padding: 1rem 0.7rem 0 0.7rem;
}
.product-grid .product-card .product-card-body .product-category {
  color: #d3d3d3;
}
.product-grid .product-card .product-card-body .product-price {
  margin-bottom: 0.5rem;
}
.product-grid .product-card .product-card-bottom {
  padding: 1rem 0.7rem 1rem 0.7rem;
}
.product-grid .product-card .product-card-button {
  height: 45px;
}
.pagination {
  display: flex;
}
.pagination .pag-item {
  width: 40px;
  height: 40px;
  background-color: #fff;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}
.pagination .pag-item.disabled {
  background-color: #f1f1f1 !important;
  pointer-events: none;
}
.pagination .pag-item.active,
.pagination .pag-item:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.cart-toggle {
  width: 60px;
  height: 60px;
  line-height: 64px;
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  background-color: var(--success-color);
  border-radius: 50%;
  z-index: 100;
  text-align: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1),
    0 0 0 1px rgba(10, 10, 10, 0.02);
}
.cart-toggle i {
  font-size: 1.5rem;
}
.cart-toggle i.fa-times {
  display: none;
}
.product-detail {
  padding-bottom: 60px;
}
.product-detail .purchase-button {
  height: 45px;
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  border-radius: 0;
  margin: 0;
}
.purchase-button-arrow {
  color: var(--success-color) !important;
}
.purchase-button-arrow i {
  background-color: var(--success-color);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  line-height: 25px;
  text-align: center;
  color: #fff;
}
.purchase-button-arrow i.fa-angle-left {
  margin-right: 0.5rem;
}
.purchase-button-arrow i.fa-angle-right {
  margin-left: 0.5rem;
}
.purchase-big-button {
  height: 50px;
  background: var(--success-color);
  border: none;
  width: 100vw;
  position: fixed !important;
  margin: 0 !important;
  left: 0;
  bottom: 0;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1),
    0 0 0 1px rgba(10, 10, 10, 0.05);
}
.long-product-card {
  background: #fff;
  overflow: hidden;
  padding: 1rem;
}
.long-product-card .long-product-card-header {
  position: relative;
  display: flex;
  align-content: center;
  justify-content: space-between;
}
.long-product-card .long-product-card-header .route .route-item {
  padding: 0 0.25rem;
  cursor: pointer;
}
.long-product-card .long-product-card-header .route .route-item:hover {
  text-decoration: underline;
}
.long-product-card .long-product-card-body {
  position: relative;
}
.long-product-card .long-product-card-body .product-image {
  height: 300px;
  width: 300px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
}
.long-product-card .long-product-card-body .product-images {
  display: flex;
  justify-content: center;
}
.long-product-card .long-product-card-body .product-images .thumnail-image {
  width: 60px;
  height: 60px;
  max-width: 60px;
  margin: 0 0.25rem;
}
.long-product-card
  .long-product-card-body
  .product-images
  .thumnail-image.active {
  border: 1.5px solid var(--success-color);
}
.long-product-card .long-product-card-body .product-banner {
  position: relative;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  font-weight: 700;
  height: 40px;
  margin: 0.5rem 0;
  line-height: 40px;
  width: 100%;
  max-width: 500px;
}
.long-product-card .long-product-card-body .product-banner:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 20px 20px 20px 20px;
  border-color: transparent #fff transparent transparent;
}
.long-product-card .long-product-card-body .product-info {
  flex: auto;
}
.long-product-card .long-product-card-body .product-info .product-name {
  color: var(--primary-color);
  font-size: 2.2rem;
}
.long-product-card .long-product-card-body .product-info .product-price {
  font-size: 1.5rem;
  margin: 0.5rem 0;
  font-weight: 400;
}
.long-product-card .long-product-card-body .product-info .wish-button {
  top: 0;
  right: 5px;
}
.sidebar {
  color: #fff;
  background-color: var(--primary-color);
  width: 75%;
  max-width: 240px;
  position: fixed;
  height: 100vh;
  top: 0;
  left: -240px;
  z-index: 1000;
  padding: 1rem;
  transition: left var(--transition-time);
}
.sidebar .sidebar-menu .sidebar-item .sidebar-item-title {
  font-weight: 700;
  padding: 0.5rem 0.5rem;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.sidebar .sidebar-menu .sidebar-item .sidebar-item-title svg {
  fill: #fff;
  width: 30px;
  height: 30px;
  margin-right: 0.5rem;
}
.sidebar .sidebar-menu .sidebar-item .sidebar-item-title:hover {
  background-color: rgba(138, 172, 213, 0.31);
}
.sidebar .sidebar-menu .sidebar-item .sidebar-item-title.active {
  background: #fff;
  color: var(--success-color);
  border-radius: 0.5rem;
}
.sidebar .sidebar-menu .sidebar-item .sidebar-item-title.active svg {
  fill: var(--success-color);
}
.sidebar .sidebar-menu .sidebar-item .sidebar-submenu {
  list-style: circle;
}
.sidebar .sidebar-menu .sidebar-item .sidebar-submenu .sidebar-subitem {
  padding: 0.5rem;
  margin-left: 48px;
  cursor: pointer;
}
.sidebar .sidebar-menu .sidebar-item .sidebar-submenu .sidebar-subitem:hover {
  background-color: rgba(138, 172, 213, 0.31);
}
.sidebar .sidebar-menu .sidebar-item .sidebar-submenu .sidebar-subitem.active {
  background: #fff;
  color: var(--success-color);
}
.search-bar .search-input {
  display: flex;
  align-content: center;
  width: 100%;
  height: 50px;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1),
    0 0 0 1px rgba(10, 10, 10, 0.02);
}
.search-bar .search-input li:hover {
  background-color: #f5f5f5;
}
.search-bar .search-input input {
  width: 100%;
  background-color: transparent;
}
.search-box {
  display: flex;
  padding: 0.5rem;
  background: #fff;
  border-radius: 0.5rem;
}
.search-box input {
  border: none;
  flex: auto;
}
footer {
  color: #fff;
  padding: 1rem;
  display: grid !important;
  grid-template-columns: 1fr;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.67);
  z-index: -1;
  opacity: 0;
  transition: z-index var(--transition-time), opacity var(--transition-time);
}
.logo {
  height: 60px;
}
.logo img {
  height: 40px;
  margin-top: 10px;
}
.login-card {
  padding: 1rem 1.5rem 2rem 1.5rem;
}
.login-card .login-card-separator {
  border-right: 2px solid var(--success-color);
}
.login-card .login-card-body .login-section,
.login-card .login-card-body .register-section {
  max-width: 450px;
  margin: 0 auto;
}
.login-card .login-card-body.show-login .register-section,
.login-card .login-card-body.show-register .login-section {
  display: none;
}
.login-card .login-card-body.show-login.isFlomil .register-section,
.login-card .login-card-body.show-register.isFlomil .login-section {
  display: none !important;
}
.cols-2 {
  grid-template-columns: repeat(2, calc((100% - var(--gap) * 1) / 2));
}
.min-l,
.min-m,
.min-s,
.min-xl {
  display: none !important;
}
body {
  font-size: 14px;
  padding-top: 50px;
}
.header {
  position: fixed !important;
  width: 100%;
  top: 0;
}
.header.advanced .header-message {
  display: block;
}
.header.advanced span,
.header .header-message {
  display: none;
}
.header .shoppipng-badge {
  position: relative;
}
.header .shoppipng-badge .badge {
  content: "";
  position: absolute;
  top: -9px;
  right: 5px;
  background: red;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 12px;
  text-align: center;
}
.nav {
  position: fixed !important;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .max-s {
    display: none !important;
  }
  body {
    font-size: 16px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .modal {
    padding-top: 2rem;
  }
  .modal .modal-content {
    border-radius: 1rem;
    width: calc(100% - 2rem);
  }
}
@media screen and (min-width: 576px) {
  .col-s-1 {
    grid-column: span 1;
  }
  .col-s-2 {
    grid-column: span 2;
  }
  .col-s-3 {
    grid-column: span 3;
  }
  .col-s-4 {
    grid-column: span 4;
  }
  .col-s-5 {
    grid-column: span 5;
  }
  .col-s-6 {
    grid-column: span 6;
  }
  .col-s-7 {
    grid-column: span 7;
  }
  .col-s-8 {
    grid-column: span 8;
  }
  .col-s-9 {
    grid-column: span 9;
  }
  .col-s-10 {
    grid-column: span 10;
  }
  .col-s-11 {
    grid-column: span 11;
  }
  .col-s-12 {
    grid-column: span 12;
  }
}
@media screen and (min-width: 768px) {
  .col-m-1 {
    grid-column: span 1;
  }
  .col-m-2 {
    grid-column: span 2;
  }
  .col-m-3 {
    grid-column: span 3;
  }
  .col-m-4 {
    grid-column: span 4;
  }
  .col-m-5 {
    grid-column: span 5;
  }
  .col-m-6 {
    grid-column: span 6;
  }
  .col-m-7 {
    grid-column: span 7;
  }
  .col-m-8 {
    grid-column: span 8;
  }
  .col-m-9 {
    grid-column: span 9;
  }
  .col-m-10 {
    grid-column: span 10;
  }
  .col-m-11 {
    grid-column: span 11;
  }
  .col-m-12 {
    grid-column: span 12;
  }
  .full-modal#flomil-modal {
    flex-flow: row;
  }
  .max-m {
    display: none !important;
  }
  .min-m {
    display: block !important;
  }
  .search-bar {
    padding: 0 1rem;
  }
  .search-bar .search-input {
    height: unset;
    border-radius: 0.5rem;
    height: 100%;
    max-width: 540px;
    min-width: 300px;
  }
  .product-detail {
    padding: 0;
  }
  .shopping-cart {
    min-width: 300px;
    max-width: 300px;
    height: calc(100vh - 120px);
    border-radius: 1.5rem;
    position: fixed;
    right: 0.5rem;
    left: unset;
    bottom: 80px;
    height: calc(100vh - 200px);
    box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1),
      0 0 0 1px rgba(10, 10, 10, 0.02);
  }
  body {
    padding-top: 110px;
  }
  .home .side-bar-admin {
    left: 0;
    top: 50px;
  }
  .home .content.admin {
    margin-left: calc(240px + 1rem);
    width: calc(100% - 240px - 1rem);
  }
  .overlay {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .col-l-1 {
    grid-column: span 1;
  }
  .col-l-2 {
    grid-column: span 2;
  }
  .col-l-3 {
    grid-column: span 3;
  }
  .col-l-4 {
    grid-column: span 4;
  }
  .col-l-5 {
    grid-column: span 5;
  }
  .col-l-6 {
    grid-column: span 6;
  }
  .col-l-7 {
    grid-column: span 7;
  }
  .col-l-8 {
    grid-column: span 8;
  }
  .col-l-9 {
    grid-column: span 9;
  }
  .col-l-10 {
    grid-column: span 10;
  }
  .col-l-11 {
    grid-column: span 11;
  }
  .col-l-12 {
    grid-column: span 12;
  }
  .full-modal#flomil-modal h2 {
    font-size: 3.1rem;
  }
  .full-modal#flomil-modal h4 {
    font-size: 1.5rem;
  }
  .wellcome h2 {
    font-size: 3rem;
  }
  .wellcome h4 {
    font-size: 1.5rem;
  }
  .max-l {
    display: none !important;
  }
  .min-l {
    display: block !important;
  }
  .card-l {
    box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1),
      0 0 0 1px rgba(10, 10, 10, 0.02);
    border-radius: 1.5rem;
  }
  .m-h-l {
    margin: 0 1rem;
  }
  .category {
    border-radius: 0.5rem;
  }
  .shopping-cart {
    display: flex;
    height: calc(100vh - 120px);
    bottom: 0.5rem;
    right: 1rem;
  }
  .cart-toggle {
    display: none !important;
  }
  .body {
    padding-top: 0.25rem;
  }
  article {
    margin-right: calc(300px + 1rem);
  }
  article .banner,
  article .category {
    margin: 0 1rem;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 1rem;
  }
  .product-grid.advanced {
    gap: 0.7rem;
    padding: 0 0.7rem;
  }
  .long-product-card {
    box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1),
      0 0 0 1px rgba(10, 10, 10, 0.02);
    border-radius: 1.5rem;
    margin: 0 1rem 1rem;
  }
  .long-product-card.description {
    padding: 2rem 1rem;
  }
  footer {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem 3rem;
  }
  .login-card {
    margin: 0 1rem;
    border-radius: 1.5rem;
  }
  .cols-l-3 {
    grid-template-columns: repeat(3, calc((100% - var(--gap) * 2) / 3));
  }
  .header.advanced span {
    display: unset;
  }
  .long-product-card .long-product-card-body {
    display: flex;
  }
  .long-product-card .long-product-card-body .product-image-container {
    margin-right: 1rem;
  }
  .long-product-card
    .long-product-card-body
    .product-image-container
    .product-image {
    width: 400px;
    height: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .col-xl-1 {
    grid-column: span 1;
  }
  .col-xl-2 {
    grid-column: span 2;
  }
  .col-xl-3 {
    grid-column: span 3;
  }
  .col-xl-4 {
    grid-column: span 4;
  }
  .col-xl-5 {
    grid-column: span 5;
  }
  .col-xl-6 {
    grid-column: span 6;
  }
  .col-xl-7 {
    grid-column: span 7;
  }
  .col-xl-8 {
    grid-column: span 8;
  }
  .col-xl-9 {
    grid-column: span 9;
  }
  .col-xl-10 {
    grid-column: span 10;
  }
  .col-xl-11 {
    grid-column: span 11;
  }
  .col-xl-12 {
    grid-column: span 12;
  }
  .full-modal#flomil-modal .modal-logo {
    width: 150px;
    top: calc(50% - 75px);
    left: calc(50% - 75px);
  }
  .max-xl {
    display: none !important;
  }
  .product-grid.advanced {
    grid-template-columns: repeat(4, 1fr);
  }
  .login-card .login-card-body {
    display: flex;
  }
  .login-card .login-card-body .login-card-separator {
    display: block;
    margin: 0 1.5rem;
  }
  .login-card .login-card-body .login-section,
  .login-card .login-card-body .register-section {
    display: block !important;
    flex: 1;
  }
  .body.advanced .section {
    padding: 3rem 100px 0 100px;
  }
}
@media (max-width: 575.98px) {
  .card .card-header.complex {
    flex-flow: column;
  }
  .card .card-header.complex > * {
    margin: 0.25rem 0;
  }
}
@media (max-width: 767.98px) {
  .category ul li {
    width: 100%;
  }
}
.advanced .header[data-v-88bb3cb2] {
  background-color: #f8f9fa;
}
.advanced .header .login-button[data-v-88bb3cb2],
.advanced .header .register-button[data-v-88bb3cb2] {
  color: var(--primary-color);
}
@media screen and (min-width: 768px) {
  .advanced .header a[data-v-88bb3cb2],
  .advanced .header i[data-v-88bb3cb2],
  .advanced .header span[data-v-88bb3cb2] {
    color: #777;
  }
}
.header[data-v-88bb3cb2] {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 50px;
  background-color: var(--primary-color);
}
.header .header-left .email i[data-v-88bb3cb2],
.header .header-left .phone i[data-v-88bb3cb2] {
  margin-right: 0.25rem;
}
.admin .nav {
  width: calc(100% - 240px - 1rem);
}
.nav {
  height: 60px;
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  z-index: 20;
  background-color: var(--secondary-color);
}
.nav .search-bar {
  flex: auto;
  height: 40px;
}
.nav .small-product-card:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}


/* mis clases agregadas */

