/* ==========================================================================
  Estilos bases ou helpers
========================================================================== */
/*COLORS*/
/* OPACITY */
/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap" rel="stylesheet');
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
.container {
  padding-right: 5%;
  padding-left: 5%;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 2000px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

main {
  position: relative;
  margin-left: 12rem;
  margin-top: 4rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  main {
    margin-left: 3.2rem;
  }
}

.wrapper {
  width: 100%;
  padding: 1rem;
}
.wrapper .title {
  border-top: 1px solid #CCC;
  width: 25rem;
  border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;
  display: flex;
  justify-content: center;
  border-radius: 5px 5px 0px 0px;
}
@media (max-width: 767px) {
  .wrapper .title {
    width: 100%;
  }
}
.wrapper .wrapper-block {
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border: 1px solid #CCC;
  border-radius: 0px 5px 5px 5px;
}
@media (max-width: 767px) {
  .wrapper .wrapper-block {
    border-radius: 0px 0px 5px 5px;
  }
}
.wrapper .wrapper-block .block-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #CCC;
  padding: 1rem;
  gap: 3rem;
}
@media (max-width: 767px) {
  .wrapper .wrapper-block .block-header {
    justify-content: center;
  }
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #2295ba;
  line-height: 2rem;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  h1 {
    font-size: 1rem;
  }
}

a {
  text-decoration: none;
  color: currentColor;
  transition: all ease-in-out 0.25s;
}

input {
  font-family: "Poppins", sans-serif;
}

li {
  list-style: none;
}

button {
  border: none;
  font-family: "Poppins", sans-serif;
  transition: all ease-in-out 0.25s;
}

.btn {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 1px;
}

/* ==========================================================================
  COMMONS
========================================================================== */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  padding-right: 24px;
  padding-left: 24px;
  background: #FFF;
  border-bottom: 1px solid #CCC;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 10;
}
@media (max-width: 767px) {
  .header-main {
    padding-right: 12px;
    padding-left: 12px;
  }
}
.header-main .logo {
  width: 120px;
  height: 90px;
}
.header-main .logo img {
  width: 100%;
  height: 100%;
}
.header-main .logout .icon {
  width: 27px;
  height: 27px;
  fill: #2295ba;
}

.menu-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 172px;
  background: #2295ba;
  color: #FFF;
  padding-top: 5rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .menu-wrapper {
    width: 60px;
  }
}
.menu-wrapper .menu-desktop {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .menu-wrapper .menu-desktop {
    display: none;
  }
}
.menu-wrapper .menu-desktop a {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.menu-wrapper .menu-desktop a .icon {
  width: 28px;
  height: 28px;
  fill: #FFF;
}
.menu-wrapper .menu-desktop ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.menu-wrapper .menu-mobile {
  display: none;
}
@media (max-width: 767px) {
  .menu-wrapper .menu-mobile {
    display: flex;
    justify-content: center;
  }
}
.menu-wrapper .menu-mobile .icon {
  width: 28px;
  height: 28px;
  fill: #FFF;
}

/* ==========================================================================
  PAGES
========================================================================== */
.page-login .login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, hsl(197, 62%, 45%) 0%, hsl(197, 62%, 45%) 0%, hsl(194, 52%, 76%) 100%);
}
.page-login .login-wrapper .form-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  background: #FFF;
  border: 1px solid #CCC;
  border-radius: 15px;
  gap: 4rem;
  padding: 2rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
@media (max-width: 767px) {
  .page-login .login-wrapper .form-block {
    width: 90%;
    gap: 2rem;
    padding: 1rem;
  }
}
.page-login .login-wrapper .form-block .title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 1px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-login .login-wrapper .form-block .title {
    font-size: 1.5rem;
  }
}
.page-login .login-wrapper .form-block .title span {
  font-weight: 200;
}
.page-login .login-wrapper .form-block form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
}
.page-login .login-wrapper .form-block form .form-text {
  text-align: center;
  white-space: nowrap;
}
.page-login .login-wrapper .form-block form .field {
  display: flex;
  justify-content: center;
  width: 100%;
}
.page-login .login-wrapper .form-block form .field input {
  width: 54%;
  padding: 0.7rem;
  border: 1px solid #CCC;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .page-login .login-wrapper .form-block form .field input {
    width: 82%;
  }
}
.page-login .login-wrapper .form-block form .action {
  display: flex;
  justify-content: center;
  width: 100%;
}
.page-login .login-wrapper .form-block form .action button {
  width: 30%;
  padding: 0.6rem;
  background: #2295ba;
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
  transition: all ease-in 0.25s;
}
.page-login .login-wrapper .form-block form .action button:hover {
  opacity: 0.7;
}
.page-login .login-wrapper .form-block form .msg {
  background: #f08080;
  color: #FFF;
  padding: 0.5rem;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in 0.25s;
}
.page-login .login-wrapper .form-block form .msg.msg-active {
  opacity: 1;
  visibility: visible;
}

.block-content .product-block {
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: lowercase;
  width: 100%;
  border-spacing: 0.6rem;
}
@media (max-width: 767px) {
  .block-content .product-block {
    font-size: 0.8rem;
    border-spacing: 0.4rem;
  }
}
.block-content .product-block tr {
  display: table-row;
  text-align: center;
}
.block-content .product-block tr th {
  color: #2295ba;
}
.block-content .product-block th::first-letter, .block-content .product-block td::first-letter {
  text-transform: uppercase !important;
}
.block-content .product-block .images {
  width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .block-content .product-block .images {
    width: 86px;
    height: 86px;
  }
}
.block-content .product-block .images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.block-content .product-block .name {
  text-align: left;
}
@media (max-width: 767px) {
  .block-content .product-block .name {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .block-content .product-block .category {
    display: none;
  }
}
.block-content .product-block .price {
  font-weight: 600;
}
@media (max-width: 767px) {
  .block-content .product-block .price {
    display: none;
  }
}
.block-content .product-block .status .available {
  width: 1.2rem;
  height: 1.2rem;
  fill: #52b788;
}

.page-home .btn {
  padding: 0.5rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.page-home .btn.import {
  background: #52b788;
  color: #FFF;
  display: flex;
  gap: 10px;
}
.page-home .btn.import:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .page-home .btn.import .text-btn {
    display: none;
  }
}
.page-home .btn.import .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
}
.page-home .btn.back {
  background-color: #2295ba;
  color: #FFF;
  gap: 10px;
}
.page-home .btn.back:hover {
  opacity: 0.7;
}
.page-home .btn.back .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
  margin-bottom: 3px;
}
.page-home .btn-export {
  background: #52b788;
  color: #FFF;
  display: flex;
}
.page-home .btn-export:hover {
  opacity: 0.7;
}
.page-home .msg {
  opacity: 0;
  visibility: hidden;
  display: none;
  background: #fcefb4;
  padding: 1rem;
  border-radius: 5px;
  font-weight: 400;
  letter-spacing: 0.03rem;
  transition: all ease-in 0.25s;
}
.page-home .msg.msg-active {
  opacity: 1;
  visibility: visible;
  display: block;
}
.page-home .not-product {
  width: 100%;
  text-align: center;
  padding: 4rem;
  font-size: 1rem;
  font-weight: 400;
}
.page-home .not-product span {
  background: #fcefb4;
  padding: 1rem;
  border-radius: 6px;
}
.page-home .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}
.page-home .pagination .page-box {
  border: 1px solid #2295ba;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2295ba;
  cursor: pointer;
}
.page-home .pagination .page-box:hover {
  background: #2295ba;
  color: #FFF;
}
.page-home .pagination .page-box.-hide {
  opacity: 0.5;
  pointer-events: none;
}
.page-home .pagination .page-box.-active {
  background: #2295ba;
  color: #FFF;
}
.page-home .pagination .interval {
  display: flex;
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: flex-end;
  font-weight: 800;
  font-size: 0.9rem;
  color: #2295ba;
  pointer-events: none;
}
.page-home .quantity-product {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: #2295ba;
}
.page-home .filter-action {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #2295ba;
  border: 1px solid #2295ba;
  padding: 0.5rem;
  border-radius: 5px;
  color: #FFF;
  cursor: pointer;
}
.page-home .filter-action:hover {
  opacity: 0.7;
}
.page-home .filter-action span {
  line-height: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-home .filter-action .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
}
.page-home .popup-filter {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  display: flex;
  justify-content: flex-end;
  transform: translate(100%, 0%);
  transition: transform 0.3s ease-in;
}
.page-home .popup-filter.-show {
  transform: translate(0%, 0%);
  opacity: 1;
  visibility: visible;
}
.page-home .popup-filter.-show .overlay-filter {
  opacity: 1;
  visibility: visible;
}
.page-home .popup-filter .popup-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.page-home .popup-filter .popup-header .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 1rem;
  height: 1rem;
  fill: #2295ba;
  cursor: pointer;
}
.page-home .popup-filter .filter-wrapper {
  background: #FFF;
  width: 32%;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 1rem;
  overflow: auto;
  z-index: 9;
}
.page-home .popup-filter .filter-wrapper h3 {
  text-align: center;
  font-size: 1rem;
  color: #2295ba;
}
.page-home .popup-filter .filter-wrapper form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.page-home .popup-filter .filter-wrapper form .field-title {
  font-size: 1rem;
  font-weight: 500;
  color: #2295ba;
}
.page-home .popup-filter .filter-wrapper form .field {
  font-size: 0.9rem;
  font-weight: 300;
}
.page-home .popup-filter .filter-wrapper form .field input {
  all: unset;
  border: 1px solid #000;
  width: 10px;
  height: 10px;
  display: inline-block;
  cursor: pointer;
}
.page-home .popup-filter .filter-wrapper form .field input:checked {
  background-color: #2295ba;
  border: 1px solid #2295ba;
  width: 10px;
  height: 10px;
}
.page-home .popup-filter .filter-wrapper form .field label {
  cursor: pointer;
  text-transform: lowercase;
}
.page-home .popup-filter .filter-wrapper form .field input:checked + label {
  color: #2295ba;
  text-decoration: underline;
}
.page-home .popup-filter .filter-wrapper form .field-action button {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #2295ba;
  color: #FFF;
  cursor: pointer;
  text-transform: uppercase;
}
.page-home .popup-filter .filter-wrapper form .field-action button:hover {
  opacity: 0.7;
}
.page-home .popup-filter .overlay-filter {
  background: rgba(106, 108, 108, 0.6);
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: backdrop-filter 0.4s ease, opacity 0.4s ease;
  transition: backdrop-filter 0.4s ease, opacity 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease-in;
}
.page-home .search {
  width: 45%;
}
@media (max-width: 767px) {
  .page-home .search {
    width: 72%;
  }
}
.page-home .search form {
  position: relative;
  width: 100%;
}
.page-home .search form input {
  border: 1px solid #CCC;
  padding: 0.4rem 1rem;
  width: 100%;
  border-radius: 5px 5px 5px 5px;
}
.page-home .search form input:focus {
  outline: #CCC;
}
.page-home .search form button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2295ba;
  right: 0;
  top: 0;
  transform: translate(0%, 0%);
  height: 100%;
  width: 15%;
  border: 1px solid #2295ba;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.page-home .search form button:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .page-home .search form button {
    width: 24%;
  }
}
.page-home .search form button .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
}

.block-content .product-block {
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: lowercase;
  width: 100%;
  border-spacing: 0.6rem;
}
@media (max-width: 767px) {
  .block-content .product-block {
    font-size: 0.8rem;
    border-spacing: 0.4rem;
  }
}
.block-content .product-block tr {
  display: table-row;
  text-align: center;
}
.block-content .product-block tr th {
  color: #2295ba;
}
.block-content .product-block th::first-letter, .block-content .product-block td::first-letter {
  text-transform: uppercase !important;
}
.block-content .product-block .images {
  width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .block-content .product-block .images {
    width: 86px;
    height: 86px;
  }
}
.block-content .product-block .images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.block-content .product-block .name {
  text-align: left;
}
@media (max-width: 767px) {
  .block-content .product-block .name {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .block-content .product-block .category {
    display: none;
  }
}
.block-content .product-block .price {
  font-weight: 600;
}
@media (max-width: 767px) {
  .block-content .product-block .price {
    display: none;
  }
}
.block-content .product-block .status .available {
  width: 1.2rem;
  height: 1.2rem;
  fill: #52b788;
}

.page-search .btn {
  padding: 0.5rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.page-search .btn.import {
  background: #52b788;
  color: #FFF;
  display: flex;
  gap: 10px;
}
.page-search .btn.import:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .page-search .btn.import .text-btn {
    display: none;
  }
}
.page-search .btn.import .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
}
.page-search .btn.back {
  background-color: #2295ba;
  color: #FFF;
  gap: 10px;
}
.page-search .btn.back:hover {
  opacity: 0.7;
}
.page-search .btn.back .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
  margin-bottom: 3px;
}
.page-search .btn-export {
  background: #52b788;
  color: #FFF;
  display: flex;
}
.page-search .btn-export:hover {
  opacity: 0.7;
}
.page-search .msg {
  opacity: 0;
  visibility: hidden;
  display: none;
  background: #fcefb4;
  padding: 1rem;
  border-radius: 5px;
  font-weight: 400;
  letter-spacing: 0.03rem;
  transition: all ease-in 0.25s;
}
.page-search .msg.msg-active {
  opacity: 1;
  visibility: visible;
  display: block;
}
.page-search .not-product {
  width: 100%;
  text-align: center;
  padding: 4rem;
  font-size: 1rem;
  font-weight: 400;
}
.page-search .not-product span {
  background: #fcefb4;
  padding: 1rem;
  border-radius: 6px;
}
.page-search .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}
.page-search .pagination .page-box {
  border: 1px solid #2295ba;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2295ba;
  cursor: pointer;
}
.page-search .pagination .page-box:hover {
  background: #2295ba;
  color: #FFF;
}
.page-search .pagination .page-box.-hide {
  opacity: 0.5;
  pointer-events: none;
}
.page-search .pagination .page-box.-active {
  background: #2295ba;
  color: #FFF;
}
.page-search .pagination .interval {
  display: flex;
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: flex-end;
  font-weight: 800;
  font-size: 0.9rem;
  color: #2295ba;
  pointer-events: none;
}
.page-search .quantity-product {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: #2295ba;
}
.page-search .filter-action {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #2295ba;
  border: 1px solid #2295ba;
  padding: 0.5rem;
  border-radius: 5px;
  color: #FFF;
  cursor: pointer;
}
.page-search .filter-action:hover {
  opacity: 0.7;
}
.page-search .filter-action span {
  line-height: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-search .filter-action .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
}
.page-search .popup-filter {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  display: flex;
  justify-content: flex-end;
  transform: translate(100%, 0%);
  transition: transform 0.3s ease-in;
}
.page-search .popup-filter.-show {
  transform: translate(0%, 0%);
  opacity: 1;
  visibility: visible;
}
.page-search .popup-filter.-show .overlay-filter {
  opacity: 1;
  visibility: visible;
}
.page-search .popup-filter .popup-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.page-search .popup-filter .popup-header .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 1rem;
  height: 1rem;
  fill: #2295ba;
  cursor: pointer;
}
.page-search .popup-filter .filter-wrapper {
  background: #FFF;
  width: 32%;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 1rem;
  overflow: auto;
  z-index: 9;
}
.page-search .popup-filter .filter-wrapper h3 {
  text-align: center;
  font-size: 1rem;
  color: #2295ba;
}
.page-search .popup-filter .filter-wrapper form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.page-search .popup-filter .filter-wrapper form .field-title {
  font-size: 1rem;
  font-weight: 500;
  color: #2295ba;
}
.page-search .popup-filter .filter-wrapper form .field {
  font-size: 0.9rem;
  font-weight: 300;
}
.page-search .popup-filter .filter-wrapper form .field input {
  all: unset;
  border: 1px solid #000;
  width: 10px;
  height: 10px;
  display: inline-block;
  cursor: pointer;
}
.page-search .popup-filter .filter-wrapper form .field input:checked {
  background-color: #2295ba;
  border: 1px solid #2295ba;
  width: 10px;
  height: 10px;
}
.page-search .popup-filter .filter-wrapper form .field label {
  cursor: pointer;
  text-transform: lowercase;
}
.page-search .popup-filter .filter-wrapper form .field input:checked + label {
  color: #2295ba;
  text-decoration: underline;
}
.page-search .popup-filter .filter-wrapper form .field-action button {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #2295ba;
  color: #FFF;
  cursor: pointer;
  text-transform: uppercase;
}
.page-search .popup-filter .filter-wrapper form .field-action button:hover {
  opacity: 0.7;
}
.page-search .popup-filter .overlay-filter {
  background: rgba(106, 108, 108, 0.6);
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: backdrop-filter 0.4s ease, opacity 0.4s ease;
  transition: backdrop-filter 0.4s ease, opacity 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease-in;
}
.page-search .search {
  width: 45%;
}
@media (max-width: 767px) {
  .page-search .search {
    width: 72%;
  }
}
.page-search .search form {
  position: relative;
  width: 100%;
}
.page-search .search form input {
  border: 1px solid #CCC;
  padding: 0.4rem 1rem;
  width: 100%;
  border-radius: 5px 5px 5px 5px;
}
.page-search .search form input:focus {
  outline: #CCC;
}
.page-search .search form button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2295ba;
  right: 0;
  top: 0;
  transform: translate(0%, 0%);
  height: 100%;
  width: 15%;
  border: 1px solid #2295ba;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.page-search .search form button:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .page-search .search form button {
    width: 24%;
  }
}
.page-search .search form button .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
}

.page-files .btn {
  padding: 0.5rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.page-files .btn.import {
  background: #52b788;
  color: #FFF;
  display: flex;
  gap: 10px;
}
.page-files .btn.import:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .page-files .btn.import .text-btn {
    display: none;
  }
}
.page-files .btn.import .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
}
.page-files .btn.back {
  background-color: #2295ba;
  color: #FFF;
  gap: 10px;
}
.page-files .btn.back:hover {
  opacity: 0.7;
}
.page-files .btn.back .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
  margin-bottom: 3px;
}
.page-files .btn-export {
  background: #52b788;
  color: #FFF;
  display: flex;
}
.page-files .btn-export:hover {
  opacity: 0.7;
}
.page-files .msg {
  opacity: 0;
  visibility: hidden;
  display: none;
  background: #fcefb4;
  padding: 1rem;
  border-radius: 5px;
  font-weight: 400;
  letter-spacing: 0.03rem;
  transition: all ease-in 0.25s;
}
.page-files .msg.msg-active {
  opacity: 1;
  visibility: visible;
  display: block;
}
.page-files .not-product {
  width: 100%;
  text-align: center;
  padding: 4rem;
  font-size: 1rem;
  font-weight: 400;
}
.page-files .not-product span {
  background: #fcefb4;
  padding: 1rem;
  border-radius: 6px;
}
.page-files .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}
.page-files .pagination .page-box {
  border: 1px solid #2295ba;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2295ba;
  cursor: pointer;
}
.page-files .pagination .page-box:hover {
  background: #2295ba;
  color: #FFF;
}
.page-files .pagination .page-box.-hide {
  opacity: 0.5;
  pointer-events: none;
}
.page-files .pagination .page-box.-active {
  background: #2295ba;
  color: #FFF;
}
.page-files .pagination .interval {
  display: flex;
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: flex-end;
  font-weight: 800;
  font-size: 0.9rem;
  color: #2295ba;
  pointer-events: none;
}
.page-files .quantity-product {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: #2295ba;
}
.page-files .filter-action {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #2295ba;
  border: 1px solid #2295ba;
  padding: 0.5rem;
  border-radius: 5px;
  color: #FFF;
  cursor: pointer;
}
.page-files .filter-action:hover {
  opacity: 0.7;
}
.page-files .filter-action span {
  line-height: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-files .filter-action .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
}
.page-files .popup-filter {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  display: flex;
  justify-content: flex-end;
  transform: translate(100%, 0%);
  transition: transform 0.3s ease-in;
}
.page-files .popup-filter.-show {
  transform: translate(0%, 0%);
  opacity: 1;
  visibility: visible;
}
.page-files .popup-filter.-show .overlay-filter {
  opacity: 1;
  visibility: visible;
}
.page-files .popup-filter .popup-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.page-files .popup-filter .popup-header .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 1rem;
  height: 1rem;
  fill: #2295ba;
  cursor: pointer;
}
.page-files .popup-filter .filter-wrapper {
  background: #FFF;
  width: 32%;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 1rem;
  overflow: auto;
  z-index: 9;
}
.page-files .popup-filter .filter-wrapper h3 {
  text-align: center;
  font-size: 1rem;
  color: #2295ba;
}
.page-files .popup-filter .filter-wrapper form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.page-files .popup-filter .filter-wrapper form .field-title {
  font-size: 1rem;
  font-weight: 500;
  color: #2295ba;
}
.page-files .popup-filter .filter-wrapper form .field {
  font-size: 0.9rem;
  font-weight: 300;
}
.page-files .popup-filter .filter-wrapper form .field input {
  all: unset;
  border: 1px solid #000;
  width: 10px;
  height: 10px;
  display: inline-block;
  cursor: pointer;
}
.page-files .popup-filter .filter-wrapper form .field input:checked {
  background-color: #2295ba;
  border: 1px solid #2295ba;
  width: 10px;
  height: 10px;
}
.page-files .popup-filter .filter-wrapper form .field label {
  cursor: pointer;
  text-transform: lowercase;
}
.page-files .popup-filter .filter-wrapper form .field input:checked + label {
  color: #2295ba;
  text-decoration: underline;
}
.page-files .popup-filter .filter-wrapper form .field-action button {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #2295ba;
  color: #FFF;
  cursor: pointer;
  text-transform: uppercase;
}
.page-files .popup-filter .filter-wrapper form .field-action button:hover {
  opacity: 0.7;
}
.page-files .popup-filter .overlay-filter {
  background: rgba(106, 108, 108, 0.6);
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: backdrop-filter 0.4s ease, opacity 0.4s ease;
  transition: backdrop-filter 0.4s ease, opacity 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease-in;
}
.page-files .search {
  width: 45%;
}
@media (max-width: 767px) {
  .page-files .search {
    width: 72%;
  }
}
.page-files .search form {
  position: relative;
  width: 100%;
}
.page-files .search form input {
  border: 1px solid #CCC;
  padding: 0.4rem 1rem;
  width: 100%;
  border-radius: 5px 5px 5px 5px;
}
.page-files .search form input:focus {
  outline: #CCC;
}
.page-files .search form button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2295ba;
  right: 0;
  top: 0;
  transform: translate(0%, 0%);
  height: 100%;
  width: 15%;
  border: 1px solid #2295ba;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.page-files .search form button:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .page-files .search form button {
    width: 24%;
  }
}
.page-files .search form button .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
}
.page-files .file .form-file {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50vh;
  gap: 1rem;
}
.page-files .file .form-file .field-title h3 {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
}
.page-files .file .form-file label {
  cursor: pointer;
}
.page-files .file .form-file label:hover {
  opacity: 0.7;
}
.page-files .file .form-file label .icon {
  width: 8rem;
  height: 8rem;
  fill: #2295ba;
}
.page-files .file .form-file .btn-file {
  background-color: #52b788;
  color: #FFF;
  padding: 1rem;
  border-radius: 5px;
  cursor: pointer;
}
.page-files .file .form-file .btn-file:hover {
  opacity: 0.7;
}
.page-files .file input[type=file] {
  display: none;
}

.block-content .product-block {
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: lowercase;
  width: 100%;
  border-spacing: 0.6rem;
}
@media (max-width: 767px) {
  .block-content .product-block {
    font-size: 0.8rem;
    border-spacing: 0.4rem;
  }
}
.block-content .product-block tr {
  display: table-row;
  text-align: center;
}
.block-content .product-block tr th {
  color: #2295ba;
}
.block-content .product-block th::first-letter, .block-content .product-block td::first-letter {
  text-transform: uppercase !important;
}
.block-content .product-block .images {
  width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .block-content .product-block .images {
    width: 86px;
    height: 86px;
  }
}
.block-content .product-block .images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.block-content .product-block .name {
  text-align: left;
}
@media (max-width: 767px) {
  .block-content .product-block .name {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .block-content .product-block .category {
    display: none;
  }
}
.block-content .product-block .price {
  font-weight: 600;
}
@media (max-width: 767px) {
  .block-content .product-block .price {
    display: none;
  }
}
.block-content .product-block .status .available {
  width: 1.2rem;
  height: 1.2rem;
  fill: #52b788;
}

.page-categories .btn {
  padding: 0.5rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.page-categories .btn.import {
  background: #52b788;
  color: #FFF;
  display: flex;
  gap: 10px;
}
.page-categories .btn.import:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .page-categories .btn.import .text-btn {
    display: none;
  }
}
.page-categories .btn.import .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
}
.page-categories .btn.back {
  background-color: #2295ba;
  color: #FFF;
  gap: 10px;
}
.page-categories .btn.back:hover {
  opacity: 0.7;
}
.page-categories .btn.back .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
  margin-bottom: 3px;
}
.page-categories .btn-export {
  background: #52b788;
  color: #FFF;
  display: flex;
}
.page-categories .btn-export:hover {
  opacity: 0.7;
}
.page-categories .msg {
  opacity: 0;
  visibility: hidden;
  display: none;
  background: #fcefb4;
  padding: 1rem;
  border-radius: 5px;
  font-weight: 400;
  letter-spacing: 0.03rem;
  transition: all ease-in 0.25s;
}
.page-categories .msg.msg-active {
  opacity: 1;
  visibility: visible;
  display: block;
}
.page-categories .not-product {
  width: 100%;
  text-align: center;
  padding: 4rem;
  font-size: 1rem;
  font-weight: 400;
}
.page-categories .not-product span {
  background: #fcefb4;
  padding: 1rem;
  border-radius: 6px;
}
.page-categories .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}
.page-categories .pagination .page-box {
  border: 1px solid #2295ba;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2295ba;
  cursor: pointer;
}
.page-categories .pagination .page-box:hover {
  background: #2295ba;
  color: #FFF;
}
.page-categories .pagination .page-box.-hide {
  opacity: 0.5;
  pointer-events: none;
}
.page-categories .pagination .page-box.-active {
  background: #2295ba;
  color: #FFF;
}
.page-categories .pagination .interval {
  display: flex;
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: flex-end;
  font-weight: 800;
  font-size: 0.9rem;
  color: #2295ba;
  pointer-events: none;
}
.page-categories .quantity-product {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: #2295ba;
}
.page-categories .filter-action {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #2295ba;
  border: 1px solid #2295ba;
  padding: 0.5rem;
  border-radius: 5px;
  color: #FFF;
  cursor: pointer;
}
.page-categories .filter-action:hover {
  opacity: 0.7;
}
.page-categories .filter-action span {
  line-height: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-categories .filter-action .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
}
.page-categories .popup-filter {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  display: flex;
  justify-content: flex-end;
  transform: translate(100%, 0%);
  transition: transform 0.3s ease-in;
}
.page-categories .popup-filter.-show {
  transform: translate(0%, 0%);
  opacity: 1;
  visibility: visible;
}
.page-categories .popup-filter.-show .overlay-filter {
  opacity: 1;
  visibility: visible;
}
.page-categories .popup-filter .popup-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.page-categories .popup-filter .popup-header .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 1rem;
  height: 1rem;
  fill: #2295ba;
  cursor: pointer;
}
.page-categories .popup-filter .filter-wrapper {
  background: #FFF;
  width: 32%;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 1rem;
  overflow: auto;
  z-index: 9;
}
.page-categories .popup-filter .filter-wrapper h3 {
  text-align: center;
  font-size: 1rem;
  color: #2295ba;
}
.page-categories .popup-filter .filter-wrapper form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.page-categories .popup-filter .filter-wrapper form .field-title {
  font-size: 1rem;
  font-weight: 500;
  color: #2295ba;
}
.page-categories .popup-filter .filter-wrapper form .field {
  font-size: 0.9rem;
  font-weight: 300;
}
.page-categories .popup-filter .filter-wrapper form .field input {
  all: unset;
  border: 1px solid #000;
  width: 10px;
  height: 10px;
  display: inline-block;
  cursor: pointer;
}
.page-categories .popup-filter .filter-wrapper form .field input:checked {
  background-color: #2295ba;
  border: 1px solid #2295ba;
  width: 10px;
  height: 10px;
}
.page-categories .popup-filter .filter-wrapper form .field label {
  cursor: pointer;
  text-transform: lowercase;
}
.page-categories .popup-filter .filter-wrapper form .field input:checked + label {
  color: #2295ba;
  text-decoration: underline;
}
.page-categories .popup-filter .filter-wrapper form .field-action button {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #2295ba;
  color: #FFF;
  cursor: pointer;
  text-transform: uppercase;
}
.page-categories .popup-filter .filter-wrapper form .field-action button:hover {
  opacity: 0.7;
}
.page-categories .popup-filter .overlay-filter {
  background: rgba(106, 108, 108, 0.6);
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: backdrop-filter 0.4s ease, opacity 0.4s ease;
  transition: backdrop-filter 0.4s ease, opacity 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease-in;
}
.page-categories .search {
  width: 45%;
}
@media (max-width: 767px) {
  .page-categories .search {
    width: 72%;
  }
}
.page-categories .search form {
  position: relative;
  width: 100%;
}
.page-categories .search form input {
  border: 1px solid #CCC;
  padding: 0.4rem 1rem;
  width: 100%;
  border-radius: 5px 5px 5px 5px;
}
.page-categories .search form input:focus {
  outline: #CCC;
}
.page-categories .search form button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2295ba;
  right: 0;
  top: 0;
  transform: translate(0%, 0%);
  height: 100%;
  width: 15%;
  border: 1px solid #2295ba;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.page-categories .search form button:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .page-categories .search form button {
    width: 24%;
  }
}
.page-categories .search form button .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
}

.page-catalogo .btn {
  padding: 0.5rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.page-catalogo .btn.import {
  background: #52b788;
  color: #FFF;
  display: flex;
  gap: 10px;
}
.page-catalogo .btn.import:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .page-catalogo .btn.import .text-btn {
    display: none;
  }
}
.page-catalogo .btn.import .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
}
.page-catalogo .btn.back {
  background-color: #2295ba;
  color: #FFF;
  gap: 10px;
}
.page-catalogo .btn.back:hover {
  opacity: 0.7;
}
.page-catalogo .btn.back .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
  margin-bottom: 3px;
}
.page-catalogo .btn-export {
  background: #52b788;
  color: #FFF;
  display: flex;
}
.page-catalogo .btn-export:hover {
  opacity: 0.7;
}
.page-catalogo .msg {
  opacity: 0;
  visibility: hidden;
  display: none;
  background: #fcefb4;
  padding: 1rem;
  border-radius: 5px;
  font-weight: 400;
  letter-spacing: 0.03rem;
  transition: all ease-in 0.25s;
}
.page-catalogo .msg.msg-active {
  opacity: 1;
  visibility: visible;
  display: block;
}
.page-catalogo .not-product {
  width: 100%;
  text-align: center;
  padding: 4rem;
  font-size: 1rem;
  font-weight: 400;
}
.page-catalogo .not-product span {
  background: #fcefb4;
  padding: 1rem;
  border-radius: 6px;
}
.page-catalogo .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}
.page-catalogo .pagination .page-box {
  border: 1px solid #2295ba;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2295ba;
  cursor: pointer;
}
.page-catalogo .pagination .page-box:hover {
  background: #2295ba;
  color: #FFF;
}
.page-catalogo .pagination .page-box.-hide {
  opacity: 0.5;
  pointer-events: none;
}
.page-catalogo .pagination .page-box.-active {
  background: #2295ba;
  color: #FFF;
}
.page-catalogo .pagination .interval {
  display: flex;
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: flex-end;
  font-weight: 800;
  font-size: 0.9rem;
  color: #2295ba;
  pointer-events: none;
}
.page-catalogo .quantity-product {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: #2295ba;
}
.page-catalogo .filter-action {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #2295ba;
  border: 1px solid #2295ba;
  padding: 0.5rem;
  border-radius: 5px;
  color: #FFF;
  cursor: pointer;
}
.page-catalogo .filter-action:hover {
  opacity: 0.7;
}
.page-catalogo .filter-action span {
  line-height: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-catalogo .filter-action .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
}
.page-catalogo .popup-filter {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  display: flex;
  justify-content: flex-end;
  transform: translate(100%, 0%);
  transition: transform 0.3s ease-in;
}
.page-catalogo .popup-filter.-show {
  transform: translate(0%, 0%);
  opacity: 1;
  visibility: visible;
}
.page-catalogo .popup-filter.-show .overlay-filter {
  opacity: 1;
  visibility: visible;
}
.page-catalogo .popup-filter .popup-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.page-catalogo .popup-filter .popup-header .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 1rem;
  height: 1rem;
  fill: #2295ba;
  cursor: pointer;
}
.page-catalogo .popup-filter .filter-wrapper {
  background: #FFF;
  width: 32%;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 1rem;
  overflow: auto;
  z-index: 9;
}
.page-catalogo .popup-filter .filter-wrapper h3 {
  text-align: center;
  font-size: 1rem;
  color: #2295ba;
}
.page-catalogo .popup-filter .filter-wrapper form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.page-catalogo .popup-filter .filter-wrapper form .field-title {
  font-size: 1rem;
  font-weight: 500;
  color: #2295ba;
}
.page-catalogo .popup-filter .filter-wrapper form .field {
  font-size: 0.9rem;
  font-weight: 300;
}
.page-catalogo .popup-filter .filter-wrapper form .field input {
  all: unset;
  border: 1px solid #000;
  width: 10px;
  height: 10px;
  display: inline-block;
  cursor: pointer;
}
.page-catalogo .popup-filter .filter-wrapper form .field input:checked {
  background-color: #2295ba;
  border: 1px solid #2295ba;
  width: 10px;
  height: 10px;
}
.page-catalogo .popup-filter .filter-wrapper form .field label {
  cursor: pointer;
  text-transform: lowercase;
}
.page-catalogo .popup-filter .filter-wrapper form .field input:checked + label {
  color: #2295ba;
  text-decoration: underline;
}
.page-catalogo .popup-filter .filter-wrapper form .field-action button {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #2295ba;
  color: #FFF;
  cursor: pointer;
  text-transform: uppercase;
}
.page-catalogo .popup-filter .filter-wrapper form .field-action button:hover {
  opacity: 0.7;
}
.page-catalogo .popup-filter .overlay-filter {
  background: rgba(106, 108, 108, 0.6);
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: backdrop-filter 0.4s ease, opacity 0.4s ease;
  transition: backdrop-filter 0.4s ease, opacity 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease-in;
}
.page-catalogo .search {
  width: 45%;
}
@media (max-width: 767px) {
  .page-catalogo .search {
    width: 72%;
  }
}
.page-catalogo .search form {
  position: relative;
  width: 100%;
}
.page-catalogo .search form input {
  border: 1px solid #CCC;
  padding: 0.4rem 1rem;
  width: 100%;
  border-radius: 5px 5px 5px 5px;
}
.page-catalogo .search form input:focus {
  outline: #CCC;
}
.page-catalogo .search form button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2295ba;
  right: 0;
  top: 0;
  transform: translate(0%, 0%);
  height: 100%;
  width: 15%;
  border: 1px solid #2295ba;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.page-catalogo .search form button:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .page-catalogo .search form button {
    width: 24%;
  }
}
.page-catalogo .search form button .icon {
  width: 1rem;
  height: 1rem;
  fill: #FFF;
}
.page-catalogo .action-pdf {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}
.page-catalogo .action-pdf .btn-pdf {
  padding: 0.5rem;
  border-radius: 5px;
  background: #c32f27;
  color: #FFF;
  text-transform: uppercase;
  cursor: pointer;
}
.page-catalogo .action-pdf .btn-pdf:hover {
  opacity: 0.7;
}
.page-catalogo .action-pdf .btn-photo {
  padding: 0.5rem;
  border-radius: 5px;
  background: #2295ba;
  color: #FFF;
  text-transform: uppercase;
  cursor: pointer;
}
.page-catalogo .action-pdf .btn-photo:hover {
  opacity: 0.7;
}
.page-catalogo .file-image .form-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50vh;
  gap: 1rem;
}
.page-catalogo .file-image .form-image .field-title h3 {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
}
.page-catalogo .file-image .form-image label {
  cursor: pointer;
}
.page-catalogo .file-image .form-image label:hover {
  opacity: 0.7;
}
.page-catalogo .file-image .form-image label .icon {
  width: 8rem;
  height: 8rem;
  fill: #2295ba;
}
.page-catalogo .file-image .form-image .btn-file {
  background-color: #52b788;
  color: #FFF;
  padding: 1rem;
  border-radius: 5px;
  cursor: pointer;
}
.page-catalogo .file-image .form-image .btn-file:hover {
  opacity: 0.7;
}
.page-catalogo .file-image input[type=file] {
  display: none;
}

#data-pdf-page .fullbanner-pdf {
  width: 100%;
  height: 100%;
  page-break-after: none;
  page-break-before: initial;
}
#data-pdf-page .fullbanner-pdf figure {
  position: relative;
  width: 100%;
  height: 100%;
}
#data-pdf-page .fullbanner-pdf figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#data-pdf-page .header-pdf {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 52px;
  margin-bottom: 1rem;
  position: relative;
  background: linear-gradient(90deg, hsl(238, 24%, 23%) 16%, hsl(236, 7%, 56%) 100%, hsl(236, 7%, 56%) 100%);
}
#data-pdf-page .header-pdf img {
  width: 100%;
  height: 100%;
}
#data-pdf-page .header-pdf .title-category {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
  padding: 0 1rem;
}
#data-pdf-page .footer-pdf {
  width: 100%;
  height: 68px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}
@media (max-width: 767px) {
  #data-pdf-page .footer-pdf {
    opacity: 0;
  }
}
#data-pdf-page .footer-pdf .footer-icon {
  margin-left: 1rem;
}
#data-pdf-page .footer-pdf .footer-icon a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #2c2d48 !important;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
}
#data-pdf-page .footer-pdf .footer-icon a .icon {
  width: 2rem;
  height: 2rem;
}
#data-pdf-page .footer-pdf .footer-icon a .icon .whatsapp {
  width: 100%;
  height: 100%;
}
#data-pdf-page .footer-pdf .footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
#data-pdf-page .footer-pdf .footer-logo .logo {
  width: 127px;
}
#data-pdf-page .footer-pdf .footer-logo .logo img {
  width: 100%;
  height: 100%;
}
#data-pdf-page .footer-pdf .footer-web {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#data-pdf-page .pdf-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  width: 100%;
  gap: 1rem;
  padding: 1rem !important;
  margin: 0;
  margin-bottom: 1rem !important;
  height: 950px;
}
@media (max-width: 767px) {
  #data-pdf-page .pdf-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
#data-pdf-page .pdf-wrapper .product-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 1rem;
  height: 280px;
  border: 1px solid transparent;
  background: #FFF;
}
#data-pdf-page .pdf-wrapper .product-block .cod_product {
  font-family: "Bebas Neue", sans-serif;
  color: #2295ba;
  font-size: 1.5rem;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding: 0 0.5rem;
}
#data-pdf-page .pdf-wrapper .product-block .image {
  width: 120px;
  height: 120px;
}
#data-pdf-page .pdf-wrapper .product-block .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#data-pdf-page .pdf-wrapper .product-block .meta {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 120px;
  text-align: center;
  border-bottom: 10px solid #2c2d48;
}
#data-pdf-page .pdf-wrapper .product-block .meta .product-name {
  width: 100%;
  text-align: left;
  padding: 0 0.5rem;
}
#data-pdf-page .pdf-wrapper .product-block .meta .product-name .name {
  color: #2c2d48;
}
#data-pdf-page .pdf-wrapper .product-block .meta .price {
  text-align: center;
  font-size: 1.6rem;
  border-radius: 0 40px 0 0;
  width: 140px;
  background: #2c2d48;
  color: #FFF;
}

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