@charset "UTF-8";
/* Definindo as variáveis globais no :root */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;800&display=swap");
:root {
  --color-primary: #1d1d1f;
  --color-primary-50: #828286;
  --color-primary-150: #828286;
  --cinza-escuro: #eee1e1;
  --cinza-1: #f5f5f5;
  --cinza-2: #f5f5f7;
  --padding-mob: 30px;
  --padding-mid: 50px;
  --padding-large: 100px;
  --preto: #231f20;
  --border-radius: 30px;
}

::-moz-selection {
  background-color: var(--preto);
  /* Example: a yellow background */
  color: var(--cinza-1);
  /* Example: dark gray text */
}

::selection {
  background-color: var(--preto);
  /* Example: a yellow background */
  color: var(--cinza-1);
  /* Example: dark gray text */
}

/* Defines */
@keyframes showSlow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
div,
a,
p,
span,
nav,
input,
h1,
h2,
h3,
h4,
h5,
h6,
iframe,
ul,
form,
textarea,
figcaption,
section,
small {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  color: #1d1d1f;
}

strong {
  font-weight: bold;
}

.bt-primary-one {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1.2rem;
  color: #fff;
  background-color: var(--color-primary);
  border: solid thin var(--color-primary);
  text-decoration: none;
}
.bt-primary-one svg {
  width: 0.7rem;
  margin-right: 5px;
}
.bt-primary-one:hover {
  background: var(--color-primary-50);
  border: solid thin var(--color-primary-50);
}
.bt-primary-one:active {
  background: var(--color-primary-150);
  border: solid thin var(--color-primary-150);
}
.bt-primary-one:focus {
  border: solid thin var(--color-primary-150);
}
.bt-primary-one svg {
  fill: #f5f5fa;
  width: 1rem;
}

aside.top-bar-mob {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  background: linear-gradient(whitesmoke, #eae5e5, #dfe0e1);
  background: #f5f5f7;
  height: 100%;
  width: 0;
  overflow: hidden;
}
aside.top-bar-mob .close-menu {
  padding: 10px;
  display: inline-block;
  width: 100%;
}
aside.top-bar-mob nav.top-bar-mob ul li a {
  padding: 10px;
  display: inline-block;
  text-decoration: none;
}
aside.top-bar-mob nav.top-bar-mob ul li > .user-icon {
  margin-left: 10px;
}
aside.top-bar-mob nav.top-bar-mob ul > .carrinho-menu {
  margin-top: 30px;
}

.top-bar {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (min-width: 1024px) {
  .top-bar {
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    padding: 0 50px;
  }
}
@media (min-width: 1920px) {
  .top-bar {
    padding: 0 100px;
  }
}
.top-bar .open-menu {
  margin-top: 12px;
}
@media (min-width: 600px) {
  .top-bar .open-menu {
    display: none;
  }
}
.top-bar .logo {
  position: relative;
  padding: 10px 0;
}
.top-bar .logo img {
  width: 120px;
}
@media (min-width: 600px) {
  .top-bar .logo img {
    width: 155px;
  }
}
.top-bar .main-menu-bt {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  padding: 10px;
}
.top-bar .main-menu-bt svg {
  width: 1.8rem;
  height: 1.8rem;
}
.top-bar .main-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  overflow: hidden;
  height: 0;
  transition: height 2s;
  text-align: left;
  box-shadow: 1px 1px 5px 0px #c9c9c9;
  padding-right: 20px;
}
.top-bar .main-menu ul {
  display: inline-block;
  width: 100%;
  height: 100%;
  margin-top: 60px;
}
.top-bar .main-menu ul li {
  width: 100%;
}
.top-bar .main-menu ul li a {
  width: 100%;
  padding: 10px;
  font-weight: bold;
}
.top-bar .main-menu ul li a:hover {
  background: var(--preto);
  color: #f5f5fa;
}
.top-bar .main-menu ul li h1 {
  font-size: 1.8rem;
  line-height: 2.2rem;
  width: 200px;
  font-weight: normal;
}
@media (min-width: 600px) {
  .top-bar .nav-profile-menu ul {
    justify-content: flex-end;
  }
}
.top-bar nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.top-bar nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 20px;
  justify-content: center;
  width: 100%;
  position: relative;
}
.top-bar nav ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 5px;
  line-height: 0;
}
@media (min-width: 600px) {
  .top-bar nav ul .profile-menu {
    position: relative;
  }
}
.top-bar nav ul .profile-menu svg {
  width: 1.8rem;
  height: 1.8rem;
}
.top-bar nav ul .profile-menu > li > a {
  padding: 0;
}
.top-bar nav ul .profile-menu .submenu {
  box-shadow: 1px 1px 5px 0px #c9c9c9;
  margin-top: 5px;
  position: absolute;
  top: 12%;
  right: 10px;
  width: 94%;
  z-index: 10;
  background: #f7f5f5;
  border-radius: 20px 0 20px 20px;
  padding: 50px 50px;
  display: none;
}
@media (min-width: 600px) {
  .top-bar nav ul .profile-menu .submenu {
    top: 100%;
    right: 0;
    width: 435px;
  }
}
.top-bar nav ul .profile-menu .submenu ul {
  display: inline-flex;
}
.top-bar nav ul .profile-menu .submenu ul li {
  width: 100%;
}
.top-bar nav ul .profile-menu .submenu ul li a {
  padding: 20px 0;
  width: 100%;
  font-weight: bold;
}
.top-bar nav ul .profile-menu .submenu ul li form {
  margin: 0;
  width: 100%;
}
.top-bar nav ul .profile-menu .submenu ul li:last-child {
  margin-top: 30px;
  text-align: right;
}
.top-bar nav a {
  text-decoration: none;
  color: #1d1d1f;
  line-height: 1.3rem;
  position: relative;
}
.top-bar nav a > img {
  width: 1.5rem;
}
.top-bar nav a > .qtd {
  position: absolute;
  bottom: -9px;
  right: -6px;
  border-radius: 100%;
  font-size: 0.8rem;
  background: var(--preto);
  color: #fff;
  line-height: 0.8rem;
  min-height: 1.2rem;
  min-width: 1.2rem;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.top-bar nav:nth-child(2) ul {
  justify-content: center;
}
.top-bar nav:nth-child(3) {
  justify-content: center;
}
@media (min-width: 600px) {
  .top-bar nav:nth-child(3) {
    justify-content: flex-end;
  }
}
.top-bar nav.nav-main {
  display: none;
}
@media (min-width: 600px) {
  .top-bar nav.nav-main {
    display: initial;
  }
}
.top-bar nav.nav-main > ul {
  gap: 0;
}
.top-bar nav.nav-main > ul > li a {
  padding: 20px;
  border-bottom: solid thin transparent;
  border-right: solid thin transparent;
  display: inline-block;
}
.top-bar nav.nav-main > ul > li a:hover {
  color: #ccc;
}
.top-bar nav.nav-profile-menu {
  display: inline-flex;
  margin-top: 12px;
}
@media (min-width: 600px) {
  .top-bar nav.nav-profile-menu {
    display: flex;
    margin-top: 0;
  }
}

.top-bar-inter div.menu-left,
.top-bar-inter div.menu-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  padding: 10px;
}
.top-bar-inter div.menu-left svg,
.top-bar-inter div.menu-right svg {
  width: 2rem;
  height: 2rem;
}
.top-bar-inter div.menu-left nav,
.top-bar-inter div.menu-right nav {
  position: absolute;
  background: #F7F5F5;
  display: none;
  top: 100%;
  z-index: 10;
  border-radius: 0 5px 5px 5px;
  box-shadow: 1px 1px 5px 0px #c9c9c9;
}
.top-bar-inter div.menu-left nav ul,
.top-bar-inter div.menu-right nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 200px;
}
.top-bar-inter div.menu-left nav ul ul,
.top-bar-inter div.menu-right nav ul ul {
  position: absolute;
  background: #F7F5F5;
  display: none;
  top: 0;
  z-index: 1;
  min-width: 242px;
  border-radius: 0 5px 5px 5px;
  box-shadow: 1px 1px 5px 0px #c9c9c9;
}
.top-bar-inter div.menu-left nav ul li,
.top-bar-inter div.menu-right nav ul li {
  display: inline-block;
  width: 100%;
  position: relative;
}
.top-bar-inter div.menu-left nav ul li a,
.top-bar-inter div.menu-right nav ul li a {
  width: 100%;
  display: inline-flex;
  padding: 15px;
  font-weight: bold;
  text-decoration: none;
  color: #1d1d1f;
}
.top-bar-inter div.menu-left nav ul li a svg,
.top-bar-inter div.menu-right nav ul li a svg {
  width: 5rem;
  height: 5rem;
  fill: #fff;
}
.top-bar-inter div.menu-left nav ul li form,
.top-bar-inter div.menu-right nav ul li form {
  width: 100%;
  padding: 0;
  margin: 0;
}
.top-bar-inter div.menu-left nav ul li form button,
.top-bar-inter div.menu-right nav ul li form button {
  width: 100%;
  height: 100%;
  padding: 15px;
  background: none;
  color: #000;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}
.top-bar-inter div.menu-left nav ul li form button:hover,
.top-bar-inter div.menu-right nav ul li form button:hover {
  color: #fff;
}
.top-bar-inter div.menu-left nav ul li .sign,
.top-bar-inter div.menu-right nav ul li .sign {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  background: var(--color-primary);
}
.top-bar-inter div.menu-left nav ul li .sign:hover,
.top-bar-inter div.menu-right nav ul li .sign:hover {
  background: var(--color-primary-50);
}
.top-bar-inter div.menu-left nav ul li .sign:active,
.top-bar-inter div.menu-right nav ul li .sign:active {
  background: var(--color-primary-150);
}
.top-bar-inter div.menu-left nav ul li:hover,
.top-bar-inter div.menu-right nav ul li:hover {
  background: var(--color-primary-50);
}
.top-bar-inter div.menu-left nav ul li:hover > a,
.top-bar-inter div.menu-right nav ul li:hover > a {
  color: #fff;
}
.top-bar-inter div.menu-left nav ul li:hover > ul,
.top-bar-inter div.menu-right nav ul li:hover > ul {
  display: flex;
}
.top-bar-inter div.menu-left nav {
  left: 0;
}
.top-bar-inter div.menu-left nav ul ul {
  left: 100%;
}
.top-bar-inter div.menu-right nav {
  right: 0;
}
.top-bar-inter div.menu-right nav ul ul {
  right: 100%;
}
.top-bar-inter .logo a {
  display: inline-block;
  padding: 10px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
  color: #1d1d1f;
}

.form-area {
  min-height: 88vh;
  width: 100%;
  max-width: 1170px;
  margin: auto;
}

.box-input {
  width: 100%;
  display: inline-block;
}

@media (min-width: 600px) {
  .box-input-5 {
    width: 5rem;
  }
  .box-input-10 {
    width: 10rem;
  }
  .box-input-15 {
    width: 15rem;
  }
  .box-input-20 {
    width: 20rem;
  }
}
.input {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
.input svg {
  position: absolute;
  left: 12px;
  width: 1.5rem;
  height: 3.3rem;
  z-index: 1;
}
.input input,
.input select {
  padding: 5px;
  background: #fff;
  border-radius: var(--border-radius);
  border: none;
  font-size: 1rem;
  height: 3rem;
  display: block;
  width: 100%;
  box-shadow: 1px 1px 5px 0px #c9c9c9;
}
.input input::-moz-placeholder {
  color: transparent;
}
.input input::placeholder {
  color: transparent;
}
.input input:focus::-moz-placeholder {
  color: #1d1d1f;
}
.input input:focus::placeholder {
  color: #1d1d1f;
}
.input .select {
  padding: 5px 10px 5px 48px;
  border-radius: 5px;
  border: solid thin #ff8989;
  font-size: 1rem;
  height: 2.4rem;
  display: block;
  width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.input .select .option {
  width: 100%;
  display: none;
}
.input .select .selected {
  display: block;
}
.input .select .option:hover {
  font-weight: bold;
}
.input .select:hover {
  outline: solid thin black;
}
.input input[type=checkbox] {
  width: 1.3rem;
  height: 1.3rem;
}
.input textarea {
  background: #f2fff2;
  min-width: 100%;
  max-width: 100%;
  min-height: 200px;
  padding: 20px;
  border-radius: var(--border-radius);
  border: solid thin #ff8989;
  font-size: 1rem;
  line-height: 1.7rem;
  display: block;
}
.input #author_name {
  border: none;
  background: none;
  font-weight: bold;
  padding-top: 10px;
}

.password svg {
  right: 15px;
  left: auto;
}

form .alternative {
  margin: 20px 0;
}
form .alternative-login {
  margin: 20px 0;
  text-align: center;
  border-top: solid thin #ccc;
  padding-top: 10px;
}
form .forgot-password {
  text-align: right;
  margin: 20px 0;
}
form .forgot-password a {
  font-size: 0.9rem;
}

.login-form {
  padding: 20px;
}
@media (min-width: 600px) {
  .login-form {
    max-width: 580px;
    margin: auto;
    background: #F7F5F5;
    border-radius: var(--border-radius);
    padding: 80px;
    box-shadow: 1px 1px 5px 0px #c9c9c9;
  }
}

.list-users,
.list-roles,
.list-permissions {
  background-color: #ededed;
  margin-top: 10px;
}
.list-users form,
.list-roles form,
.list-permissions form {
  display: inline-block;
  width: auto;
}
.list-users .item,
.list-roles .item,
.list-permissions .item {
  padding: 0 10px;
  display: flex;
  align-items: center;
  min-width: 200px;
  justify-content: space-between;
}
.list-users .item .actions svg,
.list-roles .item .actions svg,
.list-permissions .item .actions svg {
  fill: white;
}
.list-users .item .actions form,
.list-roles .item .actions form,
.list-permissions .item .actions form {
  display: inline-block;
}
.list-users > :nth-child(even),
.list-roles > :nth-child(even),
.list-permissions > :nth-child(even) {
  background-color: #f3f3f3;
}
.list-users > :nth-child(odd),
.list-roles > :nth-child(odd),
.list-permissions > :nth-child(odd) {
  background-color: #f9f9f9;
}

.permissions,
.permissions-add,
.roles-add {
  margin-bottom: 20px;
}
.permissions .list,
.permissions-add .list,
.roles-add .list {
  width: 50%;
  padding: 5px;
  background: #ddd;
}
.permissions .list form,
.permissions-add .list form,
.roles-add .list form {
  display: inline-block;
  width: auto;
}

* {
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll;
}

html {
  overflow: -moz-scrollbars-vertical;
}

html {
  overflow-x: auto;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  min-height: 100vh;
  letter-spacing: 0.025em;
}

a {
  color: #1d1d1f;
}

div,
a,
p,
span,
nav,
input,
h1,
h2,
h3,
h4,
h5,
h6,
iframe,
ul,
form,
textarea {
  box-sizing: border-box;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 1.5rem;
}

figure.image {
  display: inline-block;
}
figure.image figcaption {
  background: #efefef;
  border-radius: 0 0 5px 5px;
  padding: 5px;
}

img {
  max-width: 100%;
  border: none;
}

nav ul {
  list-style: none;
}

h1,
.h1 {
  font-size: 1.7rem;
  line-height: 2.04rem;
}

h2,
.h2 {
  font-size: 1.6rem;
  line-height: 1.92rem;
}

h3,
.h3 {
  font-size: 1.5rem;
  line-height: 1.8rem;
}

h4,
.h4 {
  font-size: 1.4rem;
  line-height: 1.68rem;
}

h5,
.h5 {
  font-size: 1.3rem;
  line-height: 1.56rem;
}

h6,
.h6 {
  font-size: 1.2rem;
  line-height: 1.44rem;
}

/* buttons */
.bt-primary-danger {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: red;
  border: solid thin red;
  color: #fff;
  text-decoration: none;
  line-height: 1.2rem;
}
.bt-primary-danger svg {
  width: 0.7rem;
  margin-right: 5px;
}
.bt-primary-danger:hover {
  background: #ff8989;
  border: solid thin #ff8989;
}
.bt-primary-danger:visited {
  background: red;
  border: solid thin red;
}
.bt-primary-danger:active {
  background: #790000;
  border: solid thin #790000;
}
.bt-primary-danger:focus {
  border: solid thin #790000;
}

.bt-primary-danger-small {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: red;
  border: solid thin red;
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
}
.bt-primary-danger-small svg {
  width: 0.7rem;
  margin-right: 5px;
}
.bt-primary-danger-small:hover {
  background: #ff8989;
  border: solid thin #ff8989;
}
.bt-primary-danger-small:visited {
  background: red;
  border: solid thin red;
}
.bt-primary-danger-small:active {
  background: #790000;
  border: solid thin #790000;
}
.bt-primary-danger-small:focus {
  border: solid thin #790000;
}
.bt-primary-danger-small > svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}

.bt-primary-success {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: green;
  border: solid thin green;
  color: #fff;
}
.bt-primary-success svg {
  width: 0.7rem;
  margin-right: 5px;
}
.bt-primary-success:hover {
  background: #81ff81;
  border: solid thin #81ff81;
}
.bt-primary-success:visited {
  background: green;
  border: solid thin green;
}
.bt-primary-success:active {
  background: #006f00;
  border: solid thin #006f00;
}
.bt-primary-success:focus {
  border: solid thin #006f00;
}

.bt-primary-success-small {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: green;
  border: solid thin green;
  color: #fff;
  padding: 5px 10px;
  text-decoration: none;
}
.bt-primary-success-small svg {
  width: 0.7rem;
  margin-right: 5px;
}
.bt-primary-success-small:hover {
  background: #81ff81;
  border: solid thin #81ff81;
}
.bt-primary-success-small:visited {
  background: green;
  border: solid thin green;
}
.bt-primary-success-small:active {
  background: #006f00;
  border: solid thin #006f00;
}
.bt-primary-success-small:focus {
  border: solid thin #006f00;
}

.bt-primary-one-small {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--color-primary);
  border: solid thin var(--color-primary);
  color: #fff;
  padding: 5px 15px;
  text-decoration: none;
}
.bt-primary-one-small svg {
  width: 0.7rem;
  margin-right: 5px;
}
.bt-primary-one-small:hover {
  background: var(--color-primary-50);
  border: solid thin var(--color-primary-50);
}
.bt-primary-one-small:visited {
  background: var(--color-primary);
  border: solid thin var(--color-primary);
}
.bt-primary-one-small:active {
  background: var(--color-primary-150);
  border: solid thin var(--color-primary-150);
}
.bt-primary-one-small:focus {
  border: solid thin var(--color-primary-150);
}

.bt-primary-warning {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: goldenrod;
  border: solid thin goldenrod;
  color: #fff;
}
.bt-primary-warning svg {
  width: 0.7rem;
  margin-right: 5px;
}
.bt-primary-warning:hover {
  background: gold;
  border: solid thin gold;
}
.bt-primary-warning:visited {
  background: goldenrod;
  border: solid thin goldenrod;
}
.bt-primary-warning:active {
  background: darkgoldenrod;
  border: solid thin darkgoldenrod;
}
.bt-primary-warning:focus {
  border: solid thin darkgoldenrod;
}

.bt-secondary-danger {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  color: red;
  border: solid thin red;
}
.bt-secondary-danger svg {
  width: 0.7rem;
  margin-right: 5px;
}
.bt-secondary-danger:hover {
  background: none;
  color: #ff8989;
  border: solid thin #ff8989;
}
.bt-secondary-danger:visited {
  background: red;
  border: solid thin red;
}
.bt-secondary-danger:active {
  background: #790000;
  border: solid thin #790000;
}
.bt-secondary-danger:focus {
  border: solid thin #790000;
}

.bt-secondary-success {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  color: green;
  border: solid thin green;
}
.bt-secondary-success svg {
  width: 0.7rem;
  margin-right: 5px;
}
.bt-secondary-success:hover {
  background: none;
  color: #81ff81;
  border: solid thin #81ff81;
}
.bt-secondary-success:visited {
  background: green;
  border: solid thin green;
}
.bt-secondary-success:active {
  background: #006f00;
  border: solid thin #006f00;
}
.bt-secondary-success:focus {
  border: solid thin #006f00;
}

.bt-secondary-warning {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  color: goldenrod;
  border: solid thin goldenrod;
}
.bt-secondary-warning svg {
  width: 0.7rem;
  margin-right: 5px;
}
.bt-secondary-warning:hover {
  background: none;
  color: gold;
  border: solid thin gold;
}
.bt-secondary-warning:visited {
  background: goldenrod;
  border: solid thin goldenrod;
}
.bt-secondary-warning:active {
  background: darkgoldenrod;
  border: solid thin darkgoldenrod;
}
.bt-secondary-warning:focus {
  border: solid thin darkgoldenrod;
}

.bt-thirdary-info {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  color: #0000ff;
  border: solid thin transparent;
}
.bt-thirdary-info svg {
  width: 0.7rem;
  margin-right: 5px;
}
.bt-thirdary-info:hover {
  background: none;
  color: #8a8aff;
  border: solid thin transparent;
}
.bt-thirdary-info:visited {
  background: #0000ff;
  border: solid thin #0000ff;
}
.bt-thirdary-info:active {
  background: #02027b;
}
.bt-thirdary-info:focus {
  border: solid thin transparent;
  border-bottom: solid thin #8a8aff;
}

.bt-thirdary-danger {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  color: red;
  border: solid thin transparent;
}
.bt-thirdary-danger svg {
  width: 0.7rem;
  margin-right: 5px;
}
.bt-thirdary-danger:hover {
  background: none;
  color: #ff8989;
  border: solid thin transparent;
}
.bt-thirdary-danger:visited {
  background: red;
  border: solid thin red;
}
.bt-thirdary-danger:active {
  background: #790000;
  border: solid thin #790000;
}
.bt-thirdary-danger:focus {
  border: solid thin transparent;
  border-bottom: solid thin red;
}

.bt-thirdary-success {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  color: green;
  border: solid thin transparent;
}
.bt-thirdary-success svg {
  width: 0.7rem;
  margin-right: 5px;
}
.bt-thirdary-success:hover {
  background: none;
  color: #81ff81;
  border: solid thin transparent;
}
.bt-thirdary-success:visited {
  background: green;
  border: solid thin green;
}
.bt-thirdary-success:active {
  background: #006f00;
  border: solid thin #006f00;
}
.bt-thirdary-success:focus {
  border: solid thin transparent;
  border-bottom: solid thin #81ff81;
}

.bt-thirdary-warning {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  color: goldenrod;
  border: solid thin transparent;
}
.bt-thirdary-warning svg {
  width: 0.7rem;
  margin-right: 5px;
}
.bt-thirdary-warning:hover {
  background: none;
  color: gold;
  border: solid thin transparent;
}
.bt-thirdary-warning:visited {
  background: goldenrod;
  border: solid thin goldenrod;
}
.bt-thirdary-warning:active {
  background: darkgoldenrod;
  border: solid thin darkgoldenrod;
}
.bt-thirdary-warning:focus {
  border: solid thin transparent;
  border-bottom: solid thin goldenrod;
}

.bt-secondary-one {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  color: var(--color-primary);
  border: solid thin var(--color-primary);
}
.bt-secondary-one svg {
  width: 0.7rem;
  margin-right: 5px;
}
.bt-secondary-one:hover {
  background: none;
  color: var(--color-primary-50);
  border: solid thin var(--color-primary-50);
}
.bt-secondary-one:visited {
  background: var(--color-primary);
  border: solid thin var(--color-primary);
}
.bt-secondary-one:active {
  background: var(--color-primary-150);
  border: solid thin var(--color-primary-150);
}
.bt-secondary-one:focus {
  border: solid thin var(--color-primary-150);
}

.bt-thirdary-one {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  color: var(--color-primary);
  border: solid thin transparent;
  padding-left: 0;
  padding-right: 0;
}
.bt-thirdary-one svg {
  width: 0.7rem;
  margin-right: 5px;
}
.bt-thirdary-one:hover {
  background: none;
  color: var(--color-primary-50);
  border: solid thin transparent;
}
.bt-thirdary-one:visited {
  background: var(--color-primary);
  border: solid thin var(--color-primary);
}
.bt-thirdary-one:active {
  background: var(--color-primary-150);
  border: solid thin var(--color-primary-150);
}
.bt-thirdary-one:focus {
  border: solid thin transparent;
  border-bottom: solid thin var(--color-primary);
}

.breadcrumb {
  font-size: 0.9rem;
  color: gray;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
}
.breadcrumb a {
  color: inherit;
}

.title-admin {
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 10px var(--padding-mob);
}
@media (min-width: 1024px) {
  .title-admin {
    padding: 10px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .title-admin {
    padding: 10px var(--padding-large);
  }
}
.title-admin a {
  font-weight: inherit;
}

.content {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

header.inter {
  max-width: 1170px;
  margin: auto;
  padding: 0 10px;
}

header.home {
  background: #000;
  background: linear-gradient(180deg, black, transparent);
  position: relative;
  z-index: 1;
}

footer .footer {
  background: rgba(66, 66, 66, 0.8);
  color: #fff;
}
footer .footer .content-footer {
  max-width: 1170px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 50px 10px;
}
footer .footer .content-footer .item {
  width: 25%;
}
footer .footer .content-footer .item .logo {
  background: white;
  padding: 5px;
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 8px;
}
footer .footer .content-footer .item .social-menu {
  margin-top: 30px;
}
footer .footer .content-footer .item .social-menu ul li {
  fill: white;
}
footer .footer .content-footer .item .social-menu ul li a svg {
  fill: white;
}
footer .footer .content-footer .item .contact a {
  color: #fff;
  width: 100%;
  display: block;
}
footer .footer .content-footer .item .info-2 {
  margin-top: 20px;
}
footer .footer .content-footer .item .title {
  font-weight: bold;
  font-size: 1.2rem;
}
footer .footer .content-footer .item .text {
  margin: 10px 0 30px;
}
footer .copy-right {
  font-size: 0.8rem;
  padding: 30px;
}
@media (min-width: 1024px) {
  footer .copy-right {
    padding: 30px 50px;
  }
}
@media (min-width: 1920px) {
  footer .copy-right {
    padding: 30px 100px;
  }
}
footer .politicas {
  display: flex;
  gap: 0 20px;
  justify-content: center;
  margin: 20px auto;
  text-align: center;
  max-width: 1170px;
}
footer .politicas a {
  text-decoration: underline;
}

.top-bar-home {
  max-width: 1170px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.top-bar-home .logo {
  width: 9rem;
}
.top-bar-home .logo a {
  display: inline-block;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
}
.top-bar-home .menu-home ul {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
.top-bar-home .menu-home ul li:nth-last-child {
  position: relative;
  margin-right: 30px;
}
.top-bar-home .menu-home ul li:nth-last-child .search-form-box {
  position: absolute;
  bottom: -8px;
  right: 100%;
  transition: width 2s;
}
.top-bar-home .menu-home ul li:nth-last-child .search-form-box input {
  background: none;
  font-size: 0.9rem;
}
@media (max-width: 480px) {
  .top-bar-home .menu-home ul li:nth-child(5),
  .top-bar-home .menu-home ul li:nth-child(4),
  .top-bar-home .menu-home ul li:nth-child(3),
  .top-bar-home .menu-home ul li:nth-child(2) {
    display: none;
  }
  .top-bar-home .menu-home ul li:nth-child(1) {
    margin-right: 5px;
  }
}
.top-bar-home .menu-home ul li {
  fill: white;
  display: inline-block;
  padding: 5px;
  margin-bottom: -5px;
  position: relative;
}
.top-bar-home .menu-home ul li a {
  color: #fff;
  font-weight: bold;
  padding: 5px;
}
.top-bar-home .menu-home ul li a svg {
  width: 2rem;
  fill: white;
}
.top-bar-home .menu-home ul li svg {
  width: 2rem;
}
.top-bar-home .search-form-box {
  width: 300px;
  position: absolute;
  right: 0;
  z-index: 1;
  background: #000;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 480px) {
  .top-bar-home .search-form-box {
    width: 200px;
  }
}
.top-bar-home .search-form-box input {
  font-size: 1.2rem;
  border: none;
  background: none;
  color: #808080;
  width: 100%;
  height: 100%;
  margin-bottom: 5px;
  margin-top: 10px;
  position: relative;
  top: 0;
  padding: 10px;
}
.top-bar-home .search-form-box input:focus-visible {
  outline: none;
  border: none;
}
.top-bar-home .search-form-box svg {
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  z-index: 1;
  top: 28%;
  right: 10px;
  color: #ccc;
}
.top-bar-home .search-form-box .dropdown {
  box-shadow: 1px 1px 5px 0px #c9c9c9;
  display: none;
  background: white;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: 10px;
}
.top-bar-home .search-form-box .dropdown a {
  display: inline-block;
  width: 100%;
  padding: 10px;
  color: #353535;
}
.top-bar-home .search-form-box .dropdown a:hover {
  background: #e6e6e6;
}

.top-bar-inter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--padding-mob);
}
@media (min-width: 1024px) {
  .top-bar-inter {
    padding: 0 var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .top-bar-inter {
    padding: 0 var(--padding-large);
  }
}
.top-bar-inter div.menu-left,
.top-bar-inter div.menu-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  padding: 10px;
}
.top-bar-inter div.menu-left .user-name,
.top-bar-inter div.menu-right .user-name {
  margin-right: 10px;
}
@media (min-width: 600px) {
  .top-bar-inter div.menu-left .user-name,
  .top-bar-inter div.menu-right .user-name {
    margin: 0 10px;
  }
}
.top-bar-inter div.menu-left svg,
.top-bar-inter div.menu-right svg {
  width: 2rem;
  height: 2rem;
}
.top-bar-inter div.menu-left nav,
.top-bar-inter div.menu-right nav {
  position: absolute;
  background: #F7F5F5;
  display: none;
  top: 100%;
  z-index: 10;
  border-radius: 0 5px 5px 5px;
  box-shadow: 1px 1px 5px 0px #c9c9c9;
}
.top-bar-inter div.menu-left nav ul,
.top-bar-inter div.menu-right nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 200px;
}
.top-bar-inter div.menu-left nav ul ul,
.top-bar-inter div.menu-right nav ul ul {
  position: absolute;
  background: #F7F5F5;
  display: none;
  top: 0;
  z-index: 1;
  min-width: 242px;
  border-radius: 0 5px 5px 5px;
  box-shadow: 1px 1px 5px 0px #c9c9c9;
}
.top-bar-inter div.menu-left nav ul li,
.top-bar-inter div.menu-right nav ul li {
  display: inline-block;
  width: 100%;
  position: relative;
}
.top-bar-inter div.menu-left nav ul li a,
.top-bar-inter div.menu-right nav ul li a {
  width: 100%;
  display: inline-flex;
  padding: 15px;
  font-weight: bold;
}
.top-bar-inter div.menu-left nav ul li a svg,
.top-bar-inter div.menu-right nav ul li a svg {
  width: 5rem;
  height: 5rem;
  fill: #fff;
}
.top-bar-inter div.menu-left nav ul li form,
.top-bar-inter div.menu-right nav ul li form {
  width: 100%;
  padding: 0;
  margin: 0;
}
.top-bar-inter div.menu-left nav ul li form button,
.top-bar-inter div.menu-right nav ul li form button {
  width: 100%;
  height: 100%;
  padding: 15px;
  background: none;
  color: #000;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}
.top-bar-inter div.menu-left nav ul li form button:hover,
.top-bar-inter div.menu-right nav ul li form button:hover {
  color: #fff;
}
.top-bar-inter div.menu-left nav ul li .sign,
.top-bar-inter div.menu-right nav ul li .sign {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  background: var(--color-primary);
}
.top-bar-inter div.menu-left nav ul li .sign:hover,
.top-bar-inter div.menu-right nav ul li .sign:hover {
  background: var(--color-primary-50);
}
.top-bar-inter div.menu-left nav ul li .sign:active,
.top-bar-inter div.menu-right nav ul li .sign:active {
  background: var(--color-primary-150);
}
.top-bar-inter div.menu-left nav ul li:hover,
.top-bar-inter div.menu-right nav ul li:hover {
  background: var(--color-primary-50);
}
.top-bar-inter div.menu-left nav ul li:hover > a,
.top-bar-inter div.menu-right nav ul li:hover > a {
  color: #fff;
}
.top-bar-inter div.menu-left nav ul li:hover > ul,
.top-bar-inter div.menu-right nav ul li:hover > ul {
  display: flex;
}
.top-bar-inter div.menu-left nav {
  left: 0;
}
.top-bar-inter div.menu-left nav ul ul {
  left: 100%;
}
.top-bar-inter div.menu-right nav {
  right: 0;
}
.top-bar-inter div.menu-right nav ul ul {
  right: 100%;
}
.top-bar-inter .logo {
  width: 80%;
}
@media (min-width: 600px) {
  .top-bar-inter .logo {
    width: initial;
  }
}
.top-bar-inter .logo a {
  display: inline-block;
  padding: 10px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 2rem;
}

form,
.post {
  margin: 10px 0;
}
form label,
.post label {
  margin-top: 5px;
  display: inline-block;
  font-weight: bold;
  font-size: 0.9rem;
  width: 100%;
}
form .msg-error,
.post .msg-error {
  background: none;
  color: #d90000;
  margin-bottom: 10px;
  padding: 10px 15px;
  width: 100%;
  font-size: 0.8rem;
  border-radius: 60px;
}
form .msg-success,
.post .msg-success {
  background: rgb(0, 146, 0);
  color: #fff;
  margin-top: -18px;
  margin-bottom: 10px;
  padding: 2px 15px;
  width: 100%;
  font-size: 0.8rem;
  border-radius: 0 0 5px 5px;
}

.submit {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 30px;
  justify-content: center;
  margin-top: 10px;
}
@media (min-width: 1024px) {
  .submit {
    justify-content: flex-end;
  }
}
.submit .bt-primary-one {
  border-radius: var(--border-radius);
  padding: 10px 20px;
  color: #fff;
  background-color: var(--preto);
  border: solid thin var(--preto);
}
.submit > .input {
  width: 100%;
}

.input {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
.input svg {
  position: absolute;
  left: 12px;
  width: 1.5rem;
  height: 3.3rem;
  z-index: 1;
}
.input textarea,
.input input,
.input select {
  padding: 5px 20px;
  border-radius: var(--border-radius);
  border: none;
  font-size: 1rem;
  height: 3rem;
  display: block;
  width: 100%;
  box-shadow: 1px 1px 5px 0px #c9c9c9;
}
.input select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.input textarea::-moz-placeholder, .input input::-moz-placeholder {
  color: transparent;
}
.input textarea::placeholder,
.input input::placeholder {
  color: transparent;
}
.input textarea:focus::-moz-placeholder, .input input:focus::-moz-placeholder {
  color: #1d1d1f;
}
.input textarea:focus::placeholder,
.input input:focus::placeholder {
  color: #1d1d1f;
}
.input .select {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.input .select svg {
  width: 0.7rem;
  margin-right: 5px;
}
.input .select .option {
  width: 100%;
  display: none;
}
.input .select .selected {
  display: block;
}
.input .select .option:hover {
  font-weight: bold;
}
.input .select:hover {
  outline: solid thin black;
}
.input textarea {
  background: #fff;
  min-width: 100%;
  max-width: 100%;
  min-height: 200px;
  padding: 20px;
  border-radius: var(--border-radius);
  font-size: 1rem;
  line-height: 1.7rem;
  display: block;
}
.input #author_name {
  border: none;
  background: none;
  font-weight: bold;
  padding-top: 10px;
}

.password svg {
  right: 20px;
  left: auto;
}
.password input {
  padding: 5px 20px;
}

.input-phone-ddi-ddd-n {
  padding: 5px 20px;
  border-radius: var(--border-radius);
  border: none;
  box-shadow: 1px 1px 5px 0px #c9c9c9;
  background-color: #fff;
  height: 3.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
}
@media (min-width: 600px) {
  .input-phone-ddi-ddd-n {
    padding: 5px 20px;
  }
}
.input-phone-ddi-ddd-n input {
  border: none;
  font-size: 1rem;
  margin-left: 5px;
}
.input-phone-ddi-ddd-n input:focus {
  outline: none;
}
.input-phone-ddi-ddd-n .ddi {
  margin-right: 5px;
  width: 2ch;
  margin-left: 0;
}
.input-phone-ddi-ddd-n .ddd {
  margin-left: 0;
  width: 2ch;
}
.input-phone-ddi-ddd-n .phone {
  width: 12ch;
}

.post #body {
  min-height: 1000px;
}
.post form {
  width: 100%;
}

.title {
  margin-bottom: 10px;
}
.title .slug {
  color: #7a7a7a;
}

.nothing-to-show {
  padding: 30px 0;
}

.entities .entity {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
.entities .entity-head {
  display: flex;
  justify-content: space-around;
  padding: 0 0 10px 0;
}
.entities .entity-label {
  overflow: hidden;
}
.entities .id {
  width: 5%;
}
.entities .cod {
  width: 15%;
}
.entities .nick {
  width: 35%;
}
.entities .email {
  width: 35%;
}
.entities .actions {
  width: 10%;
}
.entities .pair {
  background: #ccc;
}
.entities .odd {
  background: none;
}

.orders {
  padding: 30px 0;
}
.orders .order {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.orders .order-head {
  display: flex;
  justify-content: space-between;
  padding: 0 0 10px 0;
}
.orders .id {
  width: 5%;
}
.orders .approve {
  width: 10%;
}
.orders .entity {
  width: 40%;
}
.orders .amount {
  width: 10%;
}
.orders .actions {
  width: 10%;
}
.orders .pair {
  background: #ccc;
}
.orders .odd {
  background: none;
}
.orders .deleted {
  background: rgba(66, 66, 66, 0.8);
}

.posts-list-box h2 {
  width: 100%;
  margin-bottom: 10px;
}
.posts-list-box .posts-list .item {
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 200px;
}
.posts-list-box .posts-list .item .thumbnail {
  overflow: hidden;
}
.posts-list-box .posts-list .item .thumbnail img {
  width: 100%;
  transition: transform 300ms;
}
.posts-list-box .posts-list .item .info {
  background: white;
  margin: 0 20px;
  padding: 20px;
}
.posts-list-box .posts-list .item:hover > .thumbnail > img {
  transform: scale(1.1);
}
.posts-list-box .posts-sidebar {
  width: 24%;
}
.posts-list-box .posts-sidebar .newsletter {
  background: rgba(66, 66, 66, 0.8);
  border-radius: 8px;
  padding: 30px 20px 20px;
  color: #fff;
}
.posts-list-box .posts-sidebar .newsletter .title {
  font-weight: bold;
  font-size: 1.5rem;
}
.posts-list-box .posts-sidebar .newsletter .subtitle {
  margin: 10px 0;
}
.posts-list-box .posts-sidebar .last-edition {
  margin-top: 50px;
}

.authors-list .item {
  display: flex;
  flex-wrap: wrap;
  width: 150px;
  justify-content: center;
  background: #fff;
  margin: 10px 0;
  padding: 10px;
}
.authors-list .item a:nth-child(1) {
  overflow: hidden;
  width: 5rem;
  height: 5rem;
  display: inline-block;
  border-radius: 100%;
  margin: 10px;
}
.authors-list .item a:nth-child(1) img {
  width: 100%;
}
.authors-list .item a:nth-child(2) {
  width: 100%;
  text-align: center;
}
.authors-list .item:hover {
  background: #ccc;
}

.msg-error {
  background: #ff7878;
  color: #fff;
  margin-bottom: 10px;
  padding: 2px 15px;
  width: 100%;
  font-size: 1rem;
  line-height: 1.8rem;
  display: inline-block;
}
.msg-error > p {
  color: #fff;
}

.input-error {
  margin: 2px 10px 0px 10px;
  color: #fff;
  line-height: 0.5rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  padding: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
  animation: showSlow 2s;
  animation-timing-function: ease;
  background: rgb(238, 99, 99);
}
.input-error::before {
  content: "";
  background-image: url(../icons/error.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-flex;
  width: 1.3rem;
  height: 1.3rem;
  filter: invert(1);
}
.input-error > span {
  color: #fff;
  line-height: 1rem;
}

.msg-success {
  background: rgb(1, 146, 1);
  color: #fff;
  margin-bottom: 10px;
  padding: 2px 15px;
  width: 100%;
  font-size: 0.8rem;
  display: inline-block;
  border-radius: 8px;
}

.msg-info {
  background: #0000ff;
  color: #fff;
  margin-bottom: 10px;
  padding: 2px 15px;
  width: 100%;
  font-size: 0.8rem;
  display: inline-block;
}

.content-msg {
  padding: 30px var(--padding-mob);
}
@media (min-width: 1024px) {
  .content-msg {
    padding: 30px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .content-msg {
    padding: 30px var(--padding-large);
  }
}

.input-info {
  margin: 2px 10px 0px 10px;
  color: #fff;
  line-height: 0.5rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  padding: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
  animation: showSlow 2s;
  animation-timing-function: ease;
  background: rgb(129, 129, 255);
}
.input-info::before {
  content: "";
  background-image: url(../icons/error.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-flex;
  width: 1.3rem;
  height: 1.3rem;
  filter: invert(1);
}
.input-info > span {
  color: #fff;
  line-height: 1rem;
}
.input-info::before {
  background-image: url("../icons/info.svg");
}

.post {
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 0 30px;
  padding: 0 var(--padding-mob);
}
@media (min-width: 1024px) {
  .post {
    padding: 0 var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .post {
    padding: 0 var(--padding-large);
  }
}
.post .sidebar .author-to-add,
.post .sidebar .categories-to-add,
.post .sidebar .tags-to-add {
  position: absolute;
  top: 39px;
  right: 0;
  background: #fff;
  width: 100%;
  overflow: hidden;
  transition: height 10s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.post .sidebar .author-to-add .item,
.post .sidebar .categories-to-add .item,
.post .sidebar .tags-to-add .item {
  padding: 5px;
  text-align: right;
  font-size: 0.8rem;
  cursor: pointer;
}
.post .sidebar .author-to-add .item:hover,
.post .sidebar .categories-to-add .item:hover,
.post .sidebar .tags-to-add .item:hover {
  background: rgba(66, 66, 66, 0.8);
  color: #fff;
}
.post .sidebar .author-to-add .pair,
.post .sidebar .categories-to-add .pair,
.post .sidebar .tags-to-add .pair {
  background: #f9f9f9;
}
.post .sidebar .author-to-add .odd,
.post .sidebar .categories-to-add .odd,
.post .sidebar .tags-to-add .odd {
  background: #f2f2f2;
}
.post .sidebar .author-to-add .deleted,
.post .sidebar .categories-to-add .deleted,
.post .sidebar .tags-to-add .deleted {
  background: rgba(66, 66, 66, 0.8);
}
.post .sidebar .author-to-add .item:first-child,
.post .sidebar .categories-to-add .item:first-child,
.post .sidebar .tags-to-add .item:first-child {
  background: rgba(66, 66, 66, 0.8);
  color: #fff;
}

.thumbnail-box {
  background: white;
  padding: 15px;
}
.thumbnail-box label {
  width: 100%;
}

.show-add-media {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--color-primary);
  color: #fff;
}
.show-add-media svg {
  width: 0.7rem;
  margin-right: 5px;
}

.media {
  background: rgba(68, 68, 68, 0.6784313725);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  display: flex;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.media .content {
  width: 100%;
  max-width: 600px;
  min-height: 0;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  position: relative;
}
.media .content .close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
  background: #f5f5f5;
  border-radius: 100%;
  padding: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.media .content .image-upload {
  border: solid thin #222;
  padding: 10px;
}
.media .content .image-upload form {
  display: flex;
  flex-wrap: wrap;
}
.media .content .pre-view {
  width: 100%;
  padding: 15px 0;
}
.media .content .pre-view img {
  max-width: 200px;
  width: 100%;
  border: solid thin #ccc;
}
.media .content .cut-type {
  display: flex;
  flex-wrap: wrap;
}
.media .content .cut-type .option {
  max-width: 100px;
  width: 100%;
  border: solid 2pt #fff;
}
.media .content .cut-type .option.selected {
  border: solid 2pt rgba(66, 66, 66, 0.8);
}
.media .content .msg-error,
.media .content .msg-success {
  margin-top: 20px;
  display: block;
}

.carrousel-mol {
  position: absolute;
  top: 0;
  left: 0;
}
.carrousel-mol .elements .carrousel-mol-item {
  height: 100vh;
}
.carrousel-mol .elements .carrousel-mol-item .post-banner {
  max-width: 1170px;
  margin: auto;
  padding: 0 10px;
  color: #fff;
  text-align: center;
}
.carrousel-mol .elements .carrousel-mol-item .post-banner a {
  color: inherit;
}
.carrousel-mol .elements .carrousel-mol-item .post-banner a h3 {
  color: inherit;
  font-size: 2rem;
  line-height: 2.2rem;
}
.carrousel-mol .elements .carrousel-mol-item .post-banner p {
  color: inherit;
}
.carrousel-mol .elements .carrousel-mol-item .post-banner .abstract {
  font-style: italic;
  margin: 20px 0;
}

.scroll-to-content {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 10;
  cursor: pointer;
}
.scroll-to-content svg {
  fill: white;
}

.single-post {
  padding: 0 var(--padding-mob);
}
@media (min-width: 1024px) {
  .single-post {
    padding: 20px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .single-post {
    padding: 20px var(--padding-large);
  }
}
.single-post .single-content {
  background: #ffffff;
}
.single-post .single-content p {
  margin-bottom: 10px;
}
.single-post .single-content h2 {
  margin: 10px 0;
  max-width: 1170px;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .single-post .single-content h2 {
    margin: 20px 0;
    font-size: 2.6rem;
  }
}
.single-post .single-content .single-abstract {
  margin: 10px 0;
  display: inline-block;
  font-style: italic;
  max-width: 1170px;
}
@media (min-width: 1024px) {
  .single-post .single-content .single-abstract {
    margin: 40px 0;
  }
}
.single-post .single-content .single-infs {
  margin: 10px 0;
  color: #353535;
  font-size: 0.8rem;
}
.single-post .single-content .single-infs > p {
  margin: 10px 0 30px;
}
@media (min-width: 1024px) {
  .single-post .single-content .single-infs > p {
    margin: 30px 0;
  }
}
.single-post .single-content .single-infs .cat {
  background: var(--cinza-1);
  font-weight: bold;
  cursor: default;
  padding: 5px 10px;
  text-decoration: none;
}
.single-post .single-content .single-infs .cat:hover {
  background: #ede7e7;
}
.single-post .single-content .single-thumbnail {
  width: 100%;
  margin-bottom: 50px;
  max-width: 1170px;
}
.single-post .single-content .single-thumbnail img {
  width: 100%;
  border-radius: var(--border-radius);
}
.single-post .single-content .single-thumbnail .single-thumbnail-legend {
  padding: 5px 10px;
  margin-top: -8px;
  font-size: 0.8rem;
  text-align: right;
}
.single-post .single-content .text {
  font-size: 1.3rem;
  line-height: 2rem;
  margin: 50px 0;
  max-width: 1170px;
}
.single-post .single-content .text h2,
.single-post .single-content .text h3,
.single-post .single-content .text h4,
.single-post .single-content .text h5 {
  margin: 30px 0 20px;
}
.single-post .single-content .text p {
  line-height: inherit;
}
.single-post .single-content .text img {
  float: left;
  padding: 10px;
}
.single-post .single-content .text ul,
.single-post .single-content .text ol {
  padding: 10px 0 20px 30px;
}
@media (min-width: 1024px) {
  .single-post .single-content .text .grid-template-1-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
  }
  .single-post .single-content .text .grid-template-1-1 h2,
  .single-post .single-content .text .grid-template-1-1 h3 {
    margin: 0 0 20px;
  }
}
.single-post .single-content .single-tags {
  margin: 30px 0;
  max-width: 1170px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.single-post .single-content .single-tags h4 {
  display: inline-block;
}
.single-post .single-content .single-tags .item {
  background: var(--cinza-1);
  font-weight: bold;
  cursor: default;
  padding: 5px 10px;
  text-decoration: none;
}
.single-post .single-content .single-tags .item:hover {
  background: #ede7e7;
}
.single-post .single-content .single-share {
  margin: 30px 0;
}
.single-post .single-content .single-share ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.single-post .single-content .single-share ul li a {
  display: inline-block;
}
.single-post .single-content .single-share ul li a img {
  width: 2.6rem;
  height: 2.6rem;
}
.single-post .single-content .single-share ul li .copy {
  display: inline-block;
  background: #000;
  color: #fff;
  position: relative;
  text-decoration: none;
  border-radius: var(--border-radius);
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
}
.single-post .single-content .single-share ul li .copy:active {
  background: #D8171D;
}
.single-post .single-content .similiar-box {
  margin: 50px 0;
}
.single-post .single-content .similiar-box > h2 {
  margin: 50px 0 30px;
  font-size: 1.3rem;
}
.single-post .single-content .similiar-box .similiar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .single-post .single-content .similiar-box .similiar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}
.single-post .single-content .similiar-box .similiar > .item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.single-post .single-content .similiar-box .similiar > .item > h3 {
  margin: 30px 0;
}
.single-post .single-content .similiar-box .similiar > .item > .post-title {
  margin: 30px 0;
  text-decoration: none;
}
.single-post .single-content .similiar-box .similiar > .item > .thumbnail > a > img {
  border-radius: var(--border-radius);
}
.single-post .single-sidebar .newsletter {
  background: rgba(66, 66, 66, 0.8);
  border-radius: 8px;
  padding: 30px 20px 20px;
  color: #fff;
}
.single-post .single-sidebar .newsletter .title {
  font-weight: bold;
  font-size: 1.5rem;
}
.single-post .single-sidebar .newsletter .subtitle {
  margin: 10px 0;
}
.single-post .single-sidebar .last-edition {
  margin-top: 50px;
}

.home-content-box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 100vh;
  justify-content: space-between;
}
.home-content-box .home-content {
  width: 75%;
  margin-right: 10px;
}
.home-content-box .home-content .posts-option-1 {
  display: flex;
  flex-wrap: wrap;
}
.home-content-box .home-content .posts-option-1 .item {
  position: relative;
  overflow: hidden;
}
.home-content-box .home-content .posts-option-1 .item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  transition: transform 300ms;
}
.home-content-box .home-content .posts-option-1 .item .overlay {
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 10px;
  background: none;
  background: linear-gradient(0deg, black, transparent);
}
.home-content-box .home-content .posts-option-1 .item .overlay a {
  color: inherit;
}
.home-content-box .home-content .posts-option-1 .item .overlay .title {
  font-weight: bold;
  font-size: 1.2rem;
}
.home-content-box .home-content .posts-option-1 .item .overlay .infs {
  font-size: 0.8rem;
}
.home-content-box .home-content .posts-option-1 .item:hover > a > img {
  transform: scale(1.1);
}
.home-content-box .home-content .posts-option-1 .col-1 {
  width: 50%;
  padding-right: 5px;
}
.home-content-box .home-content .posts-option-1 .col-1 .item {
  width: 100%;
  height: 400px;
}
.home-content-box .home-content .posts-option-1 .col-2 {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-content-box .home-content .posts-option-1 .col-2 .item {
  width: 49%;
  height: 197px;
  margin: 0 0 5px;
}
.home-content-box .home-content .posts-option-1 .col-2 .item .title {
  font-size: 0.8rem;
  line-height: 0.8rem;
}
.home-content-box .home-content .posts-option-2 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.home-content-box .home-content .posts-option-2 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.home-content-box .home-content .posts-option-2 .col-1 {
  width: 50%;
  padding-right: 5px;
}
.home-content-box .home-content .posts-option-2 .col-1 .item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.home-content-box .home-content .posts-option-2 .col-1 .item .title {
  font-size: 1rem;
  font-weight: bold;
}
.home-content-box .home-content .posts-option-2 .col-1 .item a:nth-child(1) {
  width: 30%;
  height: 120px;
}
.home-content-box .home-content .posts-option-2 .col-1 .item a:nth-child(2) {
  padding-left: 10px;
  width: 70%;
}
.home-content-box .home-content .posts-option-2 .col-1 .item:nth-child(1) a:nth-child(1) {
  width: 100%;
  height: 400px;
}
.home-content-box .home-content .posts-option-2 .col-1 .item:nth-child(1) a:nth-child(2) {
  padding-left: 0;
  width: 100%;
}
.home-content-box .home-content .posts-option-2 .col-1 .item:nth-child(1) .title {
  font-size: 1.3rem;
  line-height: 1.5rem;
  margin-top: 10px;
}
.home-content-box .home-content .posts-option-2 .col-2 {
  width: 50%;
  padding-left: 10px;
}
.home-content-box .home-content .posts-option-2 .col-2 .item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.home-content-box .home-content .posts-option-2 .col-2 .item .title {
  font-weight: bold;
}
.home-content-box .home-content .posts-option-2 .col-2 .item a:nth-child(1) {
  width: 30%;
  height: 120px;
}
.home-content-box .home-content .posts-option-2 .col-2 .item a:nth-child(2) {
  width: 70%;
  padding-left: 10px;
}
.home-content-box .home-sidebar {
  width: 24%;
}
.home-content-box .home-sidebar .newsletter {
  background: rgba(66, 66, 66, 0.8);
  border-radius: 8px;
  padding: 30px 20px 20px;
  color: #fff;
}
.home-content-box .home-sidebar .newsletter .title {
  font-weight: bold;
  font-size: 1.5rem;
}
.home-content-box .home-sidebar .newsletter .subtitle {
  margin: 10px 0;
}
.home-content-box .home-sidebar .last-edition {
  margin-top: 50px;
}

.home-content-box-2 {
  display: flex;
  flex-wrap: wrap;
  background: #e6e6e6;
  padding: 20px;
  margin-top: 20px;
}
.home-content-box-2 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.home-content-box-2 .col-1 {
  width: 25%;
}
.home-content-box-2 .col-1 .item {
  margin-bottom: 10px;
}
.home-content-box-2 .col-1 .item:nth-child(2) a:nth-child(1) {
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-block;
}
.home-content-box-2 .col-1 .item:nth-child(2) a:nth-child(1) img {
  height: 200px;
  width: 100%;
}
.home-content-box-2 .col-2 {
  width: 50%;
  padding: 0 20px;
}
.home-content-box-2 .col-2 .item {
  position: relative;
}
.home-content-box-2 .col-2 .item a {
  display: inline-block;
  width: 100%;
}
.home-content-box-2 .col-2 .item .overlay {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: white;
  width: 90%;
  margin: 0 5%;
  padding: 20px;
}
.home-content-box-2 .col-2 .item .overlay .title {
  font-weight: bold;
  font-size: 1.3rem;
}
.home-content-box-2 .col-3 {
  width: 25%;
}
.home-content-box-2 .col-3 .item a:nth-child(1) {
  width: 100%;
  height: 200px;
  display: inline-block;
  margin-bottom: 5px;
}
.home-content-box-2 .col-3 .item:nth-child(2) a:nth-child(1) {
  width: 100%;
  height: 150px;
}

.banner-inter-horizontal {
  border: solid thin #353535;
}
.banner-inter-horizontal a {
  display: inline-block;
}

.contact-list {
  margin-top: 20px;
}
.contact-list .item {
  width: 100%;
  margin-bottom: 20px;
}
.contact-list .item a {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.3rem;
}
.contact-list .item svg {
  width: 1rem;
}
.contact-list .item .title {
  font-weight: bold;
  font-size: 1.4rem;
}

.link-icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.link-icon a:nth-child(1) {
  width: 1.8rem;
  margin-right: 5px;
}
.link-icon a:nth-child(1) svg {
  width: 100%;
}
.link-icon a:nth-child(2) {
  font-size: 1rem;
  font-weight: bold;
}

.home-search {
  max-width: 1170px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
.home-search .bk-head {
  position: fixed;
  z-index: -1;
  top: 0;
}
.home-search .box {
  background: white;
  padding: 40px 20px;
  border-radius: 8px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.home-search .box input {
  padding: 10px;
  font-size: 1.2rem;
}
.home-search .box h2 {
  margin-bottom: 20px;
}
.home-search .box .filter-search {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.home-search .box .filter-search .state {
  display: flex;
  width: 30%;
}
.home-search .box .filter-search .state input {
  width: 100%;
}
.home-search .box .filter-search .product {
  display: flex;
  width: 40%;
}
.home-search .box .filter-search .product input {
  width: 100%;
}
.home-search .box .filter-search .export {
  display: flex;
  align-items: center;
}
.home-search .box .filter-search .export .label {
  font-weight: bold;
  margin-right: 15px;
}
.home-search .box .filter-search .export .bt-switch-box {
  border-radius: 10px;
  display: inline-block;
  background: #d5d5d5;
  width: 3rem;
  height: 1.5rem;
}
.home-search .box .filter-search .export .bt-switch-box .bt {
  transition: transform 300ms;
  display: inline-block;
  border-radius: 100%;
  background: white;
  width: 1.5rem;
  height: 1.5rem;
}
.home-search .box .filter-search .export .on {
  background: #000;
}
.home-search .box .filter-search .export .on .bt {
  transform: translateX(1.5rem);
  transition: transform 300ms;
  display: inline-block;
  border-radius: 100%;
  width: 1.5rem;
  height: 1.5rem;
}
.home-search .box .search {
  position: relative;
  width: 100%;
}
.home-search .box .search input {
  width: 100%;
}
.home-search .box .search svg {
  position: absolute;
  right: 10px;
  top: 10px;
}
.home-search .box .search .dropdown {
  display: none;
  position: absolute;
  top: 40px;
  background: #f7f1f1;
  border: solid thin #ccc;
  width: 100%;
}
.home-search .box .search .dropdown a {
  padding: 10px;
  display: inline-block;
  width: 100%;
}
.home-search .box .search .dropdown a:hover {
  background: #ccc;
}

.schedule-box {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
}

.register-here {
  background: white;
  padding: 30px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.register-here .call {
  margin-right: 10px;
}

.list-home-asc {
  background: white;
}
.list-home-asc .summary {
  max-width: 1170px;
  margin: auto;
  width: 100%;
  text-align: right;
  padding: 20px 0;
}
.list-home-asc .list {
  max-width: 1170px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list-home-asc .list .item {
  width: 30%;
  position: relative;
  overflow: hidden;
  margin: 10px;
}
.list-home-asc .list .item img {
  transition: transform 300ms;
}
.list-home-asc .list .item .overlay {
  width: 100%;
  position: absolute;
  bottom: 0;
  background: linear-gradient(0, black, black, transparent);
  padding: 20px 10px;
  color: #fff;
}
.list-home-asc .list .item:hover > img {
  transform: scale(1.2);
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

.single {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-height: 64vh;
}
.single .title {
  max-width: 1170px;
  width: 100%;
  margin: 40px auto;
}
.single .thumbnail {
  width: 30%;
}
.single .thumbnail img {
  width: 100%;
}
.single .data {
  width: 40%;
}
.single .data span {
  width: 100%;
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 10px 0;
}
.single .data span svg {
  margin-right: 10px;
}

.carousel-mol {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: inline-block;
  z-index: 0;
}
.carousel-mol .next-slide-mol,
.carousel-mol .prev-slide-mol {
  position: absolute;
  top: 45%;
  z-index: 100;
  background: white;
  border-radius: 100%;
  padding: 2px;
  margin: 0 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.carousel-mol .prev-slide-mol {
  left: 0;
}
.carousel-mol .next-slide-mol {
  right: 0;
}
.carousel-mol .elements .carousel-mol-item {
  display: flex;
  justify-content: center;
  overflow: hidden;
  align-items: center;
  width: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  cursor: pointer;
}

.car-mol-23-box .car-mol-23 > .item {
  line-height: 0rem;
}
.car-mol-23-box .car-mol-23 > .item > a {
  line-height: 0rem;
}

.flash-msg {
  max-width: 1170px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flash-msg .msg-error {
  display: inline-block;
  padding: 10px;
  width: auto;
}

.home-dashboard {
  max-width: 1170px;
  margin: auto;
  padding: 10px;
  min-height: 64vh;
}

.update-profile #preview_img_teste {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.complete-profile {
  margin-bottom: 30px;
}
.complete-profile .box-ballon-info {
  margin-bottom: 10px;
}
.complete-profile .box-ballon-info .ballon-info {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
  border-radius: 8px;
  background: orange;
}
.complete-profile .box-ballon-info .ballon-info svg {
  margin: 0 10px;
}
.complete-profile .box-ballon-info .ballon-info .bt-primary-one-small {
  margin: 0 10px;
}

.list-users,
.list-roles,
.list-permissions {
  background-color: #ededed;
  margin-top: 10px;
}
.list-users form,
.list-roles form,
.list-permissions form {
  display: inline-block;
  width: auto;
}
.list-users .item,
.list-roles .item,
.list-permissions .item {
  padding: 0 10px;
  display: flex;
  align-items: center;
  min-width: 200px;
  justify-content: space-between;
}
.list-users .item .actions svg,
.list-roles .item .actions svg,
.list-permissions .item .actions svg {
  fill: white;
}
.list-users .item .actions form,
.list-roles .item .actions form,
.list-permissions .item .actions form {
  display: inline-block;
}
.list-users .pair,
.list-roles .pair,
.list-permissions .pair {
  background-color: #f3f3f3;
}
.list-users .odd,
.list-roles .odd,
.list-permissions .odd {
  background-color: #f9f9f9;
}
.list-users .deleted > *,
.list-roles .deleted > *,
.list-permissions .deleted > * {
  opacity: 0.6;
}
.list-users .deleted > .actions,
.list-roles .deleted > .actions,
.list-permissions .deleted > .actions {
  opacity: 1;
}

.permissions,
.permissions-add,
.roles-add {
  margin-bottom: 20px;
}
.permissions .list,
.permissions-add .list,
.roles-add .list {
  width: 50%;
  padding: 5px;
  background: #ddd;
}
.permissions .list form,
.permissions-add .list form,
.roles-add .list form {
  display: inline-block;
  width: auto;
}

.plans-box {
  min-height: 64vh;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1170px;
  margin: auto;
}
.plans-box h3 {
  width: 100%;
  font-size: 1.5rem;
  margin-top: 30px;
}
.plans-box .plans {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  justify-content: space-between;
  align-items: self-end;
}
.plans-box .plans .item {
  width: 33%;
  padding: 20px;
}
.plans-box .plans .item h3 {
  margin: 10px 0;
  font-size: 1.8rem;
}
.plans-box .plans .item p {
  margin: 10px 0;
}
.plans-box .plans .item .cust {
  margin: 10px 0;
}

.pay-box {
  max-width: 1170px;
  margin: auto;
  min-height: 61vh;
}
.pay-box h3 {
  width: 100%;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-top: 30px;
}
.pay-box .pay {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
  justify-content: space-between;
}
.pay-box .pay .item {
  width: 23%;
  padding: 20px;
  border: solid thin #ddd;
  margin: 0;
}
.pay-box .pay .item .cust {
  font-size: 1.5rem;
  line-height: 2rem;
}

.data-box {
  max-width: 1170px;
  margin: auto;
  min-height: 61vh;
}
.data-box h3 {
  width: 100%;
  font-size: 1.8rem;
  margin-top: 30px;
}
.data-box .data {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
  justify-content: space-between;
}
.data-box .data .item {
  width: 23%;
  padding: 20px;
  border: solid thin #ddd;
  margin: 0;
}
.data-box .data .item .cust {
  font-size: 1.5rem;
  line-height: 2rem;
}

.signatures {
  margin-bottom: 30px;
}
.signatures .item {
  display: flex;
  flex-wrap: wrap;
}
.signatures .item div {
  padding: 10px;
}
.signatures .head {
  background-color: #ccc;
}
.signatures .head div {
  font-weight: bold;
}
.signatures .odd {
  background-color: #ddd;
}

.list-plans {
  margin-top: 20px;
  border: none;
}
.list-plans td,
.list-plans th {
  padding: 10px;
  text-align: left;
}
.list-plans .head-plan {
  background-color: #ddd;
}
.list-plans .pair {
  background: #f7f7f7;
}
.list-plans .odd {
  background: #ededed;
}
.list-plans .actions form {
  display: inline-block;
  width: auto;
}

.pay,
.subscribers-field,
.plans-field {
  margin: 10px 0;
  background-color: #ddd;
  padding: 5px;
}

.checkbox {
  background-color: #ccc;
  width: 5rem;
  height: 2.2rem;
  border-radius: 15px;
  border: 3pt #e9e9e9 solid;
  overflow: hidden;
}
.checkbox .bt-check {
  content: "";
  width: 2rem;
  height: 2.2rem;
  background-color: #8d8d8d;
  box-shadow: 3px -5px 20px rgba(66, 66, 66, 0.8);
}
.checkbox .on {
  width: 5rem;
  background-color: #000;
}

.abstract h3 {
  margin-top: 10px;
  padding: 10px;
  background: #ededed;
}
.abstract p {
  padding: 10px 0;
  font-size: 0.9rem;
}

.box-bt-on {
  margin: 20px 0;
}
.box-bt-on .bt-on {
  background-color: darkgray;
  border: solid 2pt black;
  height: 2rem;
  width: 5rem;
  border-radius: 5px;
}
.box-bt-on .bt-on .switch {
  background-color: darkslategray;
  border-right: solid 5pt black;
  height: 100%;
  width: 55%;
}

.abstract-home {
  margin-top: 20px;
}
.abstract-home h3 {
  margin-bottom: 5px;
}
.abstract-home p {
  margin: 5px 0;
}

.time,
.day {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border: solid thin gray;
  position: relative;
}
.time #month_string,
.day #month_string {
  padding: 18px;
}
.time .input,
.day .input {
  width: 150px;
}
.time .hour,
.day .hour {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
}
.time .box-select-day,
.day .box-select-day {
  display: none;
  flex-wrap: wrap;
  overflow-y: scroll;
  max-height: 220px;
  position: absolute;
  z-index: 10;
  background: white;
  border: solid thin gray;
  padding: 10px;
  left: 0;
  top: 0;
  width: 460px;
}
.time .box-select-day .horario,
.day .box-select-day .horario {
  background: white;
  border: solid gray 1px;
  margin: 5px;
  width: 50px;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
}
.time .box-select-day .horario div:nth-child(1),
.day .box-select-day .horario div:nth-child(1) {
  font-size: 1.2rem;
  line-height: 1.5rem;
  font-weight: bold;
}
.time .box-select-day .horario:hover,
.day .box-select-day .horario:hover {
  background-color: whitesmoke;
}
.time .box-select-day .horario:active,
.day .box-select-day .horario:active {
  background-color: gray;
}
.time .box-select-hour,
.day .box-select-hour {
  display: none;
  flex-wrap: wrap;
  overflow-y: scroll;
  max-height: 220px;
  position: absolute;
  z-index: 10;
  background: white;
  border: solid thin gray;
  padding: 10px;
  left: 0;
  top: 0;
}
.time .box-select-hour .horario,
.day .box-select-hour .horario {
  background: white;
  border: solid gray 1px;
  margin: 5px;
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
}
.time .box-select-hour .horario div:nth-child(1),
.day .box-select-hour .horario div:nth-child(1) {
  font-size: 1.2rem;
  line-height: 1.5rem;
  font-weight: bold;
}
.time .box-select-hour .horario:hover,
.day .box-select-hour .horario:hover {
  background-color: whitesmoke;
}
.time .box-select-hour .horario:active,
.day .box-select-hour .horario:active {
  background-color: gray;
}

.responsive-video {
  width: 100%;
  aspect-ratio: 16/9;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.squares {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.squares .funcionality {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 250px;
  min-height: 250px;
  background-color: #F7F5F5;
  color: #1d1d1f;
  border-radius: var(--border-radius);
  box-shadow: 1px 1px 5px 0px #c9c9c9;
  margin-left: 5px;
}
.squares .funcionality svg {
  width: 3rem;
  height: 3rem;
}
.squares .funcionality a {
  display: block;
  width: 100%;
  text-align: center;
}
.squares .funcionality h3 {
  width: 100%;
  display: block;
}

.info {
  display: inline-block;
  background: #e9e9e9;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
}
.info .home-header {
  max-width: 1170px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}
@media (min-width: 600px) {
  .info .home-header {
    justify-content: flex-start;
  }
}
.info .agende-consultoria {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}
.info .agende-consultoria .box {
  display: inline-block;
  padding: 40px 0px;
  margin: 30px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 60px;
  background: rgba(60, 60, 60, 0.35);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  -webkit-backdrop-filter: blur(13.5px);
          backdrop-filter: blur(13.5px);
  border: solid thin #787878;
}
@media (min-width: 600px) {
  .info .agende-consultoria .box {
    padding: 60px;
    margin: 0;
  }
}
.info .agende-consultoria .box h2 {
  color: #fff;
  font-weight: 300;
  font-size: 1.5rem;
}
@media (min-width: 600px) {
  .info .agende-consultoria .box h2 {
    font-size: 2.5rem;
  }
}
.info .agende-consultoria .box .bt-agendar .bt-primary-one {
  border-radius: var(--border-radius);
  padding: 10px 20px;
  margin: 30px 0 0;
  color: #1d1d1f;
  background-color: #ffbc4b;
  border: solid thin #ffbc4b;
}
.info .agende-consultoria .box .click-to-play {
  position: absolute;
  top: 0;
  right: 0;
}

.footer-color-bar {
  display: flex;
  width: 100%;
  position: fixed;
  bottom: 0;
}
.footer-color-bar div {
  display: inline-block;
  content: "";
  height: 0.7rem;
  width: 100%;
}
.footer-color-bar div:nth-child(1) {
  background-color: #F2B035;
}
.footer-color-bar div:nth-child(2) {
  background-color: #F25C05;
}
.footer-color-bar div:nth-child(3) {
  background-color: #D90404;
}
.footer-color-bar div:nth-child(4) {
  background-color: #04BFAD;
}

.page-errors {
  max-width: 1170px;
  margin: auto;
  min-height: 80vh;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
}
.page-errors .errors-header {
  width: 100%;
  text-align: center;
  padding: 20px;
}
.page-errors .errors-header .logo img {
  filter: invert(1);
}
.page-errors .errors-content {
  margin-bottom: 50px;
  text-align: center;
}
.page-errors .errors-content img {
  width: 50%;
}
.page-errors .errors-content h2 {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 5rem;
}
.page-errors .errors-content a {
  text-decoration: underline;
}

.profile div {
  margin: 30px 0;
}

.dashboard-main {
  min-height: 88vh;
  padding: 10px var(--padding-mob);
}
@media (min-width: 1024px) {
  .dashboard-main {
    padding: 10px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .dashboard-main {
    padding: 10px var(--padding-large);
  }
}
.dashboard-main > h2 {
  margin: 30px 0;
}

.home-products {
  background: var(--cinza-1);
  padding: 10px var(--padding-mob);
}
@media (min-width: 1024px) {
  .home-products {
    padding: 10px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .home-products {
    padding: 10px var(--padding-large);
  }
}
.home-products h1 {
  text-align: center;
  margin-top: 30px;
  font-weight: normal;
}
@media (max-width: 600px) {
  .home-products h1 {
    font-size: 1rem;
  }
}
.home-products h2 {
  padding: 10px 10px 0;
  text-align: center;
}
.home-products .call-depoimentos {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: normal;
  text-align: center;
}
@media (max-width: 599px) {
  .home-products .call-depoimentos {
    padding: 20px;
  }
}
@media (min-width: 600px) {
  .home-products .call-depoimentos {
    margin-bottom: 50px;
  }
}
.home-products .products {
  max-width: 1170px;
  margin: auto;
  padding: 10px;
  display: none;
  margin: 10px auto;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .home-products .products {
    display: grid;
  }
}
.home-products div#products-mobile-box {
  height: auto;
}
@media (min-width: 600px) {
  .home-products div#products-mobile-box {
    display: none;
  }
}
.home-products div#products-mobile-box > #products-mobile > .item.product {
  background: none;
  border: none;
  padding: 0 60px 10px;
  margin-bottom: 10px;
}
.home-products #products-home-box {
  max-width: 1170px;
  margin: auto;
}
.home-products #products-home-box > #products-home > .item {
  text-align: center;
  padding: 10px 10px 50px;
}
@media (min-width: 600px) {
  .home-products #products-home-box > #products-home > .item {
    padding: 10px;
  }
}
.home-products #products-home-box > #products-home > .item > .product {
  border-radius: 18px;
}
.home-products .products-mob {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px;
  height: 100%;
}
@media (min-width: 600px) {
  .home-products .products-mob {
    display: none;
  }
}
.home-products .products-mob .product {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  transition: left 1s;
}
.home-products .all-models {
  text-align: center;
  padding: 20px;
}

.products-list {
  padding: 20px var(--padding-mob);
}
@media (min-width: 1024px) {
  .products-list {
    padding: 0 var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .products-list {
    padding: 0 var(--padding-large);
  }
}
.products-list > .chamada-produtos {
  margin-bottom: 30px;
  background: #f2f2f2;
  padding: 10px;
  text-align: center;
}
@media (min-width: 600px) {
  .products-list > .chamada-produtos {
    width: 500px;
    text-align: left;
  }
}
.products-list .products {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 1024px) {
  .products-list .products {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 0;
    margin-bottom: 150px;
  }
}
@media (min-width: 1366px) {
  .products-list .products {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1920px) {
  .products-list .products {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.products-list .products > .product {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}
.products-list .products > .product > .v127220 {
  position: absolute;
  top: 38%;
  right: 45px;
  background: #fff;
  padding: 5px 10px;
  line-height: 1;
  font-weight: bold;
  font-size: 0.9rem;
  border-radius: 18px;
}
@media (min-width: 1920px) {
  .products-list .products > .product > .v127220 {
    font-size: 1.1rem;
  }
}
.products-list .products > .product > .title {
  margin: 0;
  padding: 0;
  width: 100%;
}
.products-list .products > .product > .title > h2 {
  margin: 10px 20px 0;
  font-size: 1rem;
  line-height: 1.2rem;
}
@media (min-width: 600px) {
  .products-list .products > .product > .title > h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.products-list .products > .product > a > img {
  aspect-ratio: 4/5;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.products-list .products > .product > a:nth-child(1) {
  padding: 5px;
}
.products-list h1 {
  text-align: center;
  margin: 20px 0;
}
@media (min-width: 600px) {
  .products-list h1 {
    text-align: left;
  }
}

.home-action-products {
  max-width: 1170px;
  margin: auto;
  margin-bottom: 20px;
  text-align: center;
}
.home-action-products > .bt-primary-one {
  background: #D8171D;
  border: solid thin #D8171D;
}

.product {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
@media (min-width: 600px) {
  .product {
    border-radius: 10px;
  }
}
.product .title {
  margin-top: 10px;
  padding-top: 10px;
  text-decoration: none;
}
.product .title h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  line-height: 1.7rem;
}
.product .title-lines h3 {
  font-size: 1rem;
}
.product .thumbnail {
  overflow: hidden;
  padding: 10px;
}
.product figure img {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}
@media (min-width: 600) {
  .product figure img {
    width: 100%;
  }
}
.product .abstract {
  width: 100%;
  margin: 10px 0;
  list-style: none;
}
.product .price {
  margin-bottom: 10px;
}
.product .price span:nth-child(1) {
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 2rem;
  width: 100%;
  display: inline-block;
}
.product .price span:nth-child(2) {
  font-size: 0.9rem;
}
.product .bt-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
}
.product .bt-actions .buy {
  margin: 0;
}

.single-products .line-one {
  position: relative;
  padding: 0 var(--padding-mob);
}
@media (min-width: 1000px) {
  .single-products .line-one {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
  }
}
@media (min-width: 1024px) {
  .single-products .line-one {
    padding: 30px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .single-products .line-one {
    padding: 30px var(--padding-large);
  }
}
.single-products .line-one .side-description {
  position: relative;
}
.single-products .line-one .side-description h1 {
  line-height: 2rem;
}
.single-products .line-one .side-description p {
  padding: 5px 0;
}
.single-products .line-one .side-description h2 {
  font-size: 1.8rem;
  line-height: 2.5rem;
  margin-bottom: 10px;
}
.single-products .line-one .side-description .price {
  margin-bottom: 20px;
}
.single-products .line-one .side-description .price .price-non-discount {
  text-decoration: line-through;
  color: #5A5858;
}
.single-products .line-one .side-description .price .price-main {
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: bold;
  margin-top: 10px;
}
.single-products .line-one .side-description .price .price-percent-discount {
  color: #D8171D;
  font-weight: bold;
}
.single-products .line-one .side-description .voltage {
  margin: 20px 0;
}
.single-products .line-one .side-description .description {
  margin-bottom: 30px;
}
.single-products .line-one .side-description .description ul {
  padding-left: 20px;
}
.single-products .line-one .side-description .buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 30px 10px;
}
.single-products .line-one .side-description .buy .voltage {
  margin-bottom: 10px;
}
.single-products .line-one .side-description .buy .voltage a {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: solid thin var(--color-primary);
}
.single-products .line-one .side-description .buy .voltage a svg {
  width: 0.7rem;
  margin-right: 5px;
}
.single-products .line-one .side-description .buy .voltage .selected {
  background: var(--color-primary);
  color: #fff;
}
.single-products .line-one .side-description .buy .add {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 2ch;
  background: none;
  border: none;
  text-align: center;
  padding: 0;
}
.single-products .line-one .side-description .buy .add svg {
  width: 0.7rem;
  margin-right: 5px;
}
.single-products .line-one .side-description .buy .minus,
.single-products .line-one .side-description .buy .plus {
  border: solid thin #dbdada;
  background: #dbdada;
  color: #333;
  padding: 5px;
  border-radius: 100%;
  width: 3rem;
  height: 3rem;
  font-weight: bold;
  font-size: 1.8rem;
}
.single-products .line-one .side-description .buy .minus:hover,
.single-products .line-one .side-description .buy .plus:hover {
  background: #ccc;
}
.single-products .line-one .side-description .buy .action {
  background: #D8171D;
  border: #D8171D;
  width: 50%;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-left: 10px;
}
@media (min-width: 600px) {
  .single-products .line-one .side-description .buy .action {
    margin-left: 30px;
    padding: 0;
  }
}
.single-products .line-one .side-description .buy .action > span {
  font-weight: bold;
  width: 100%;
  color: #fff;
}
@media (min-width: 600px) {
  .single-products .line-one .side-description .buy .action > span {
    margin-right: -2rem;
  }
}
.single-products .line-one .side-description .buy .action > img {
  margin-left: 0px;
  margin-right: 0px;
  width: 2rem;
  transition: 300ms;
  position: relative;
  right: -4rem;
  border-left: solid 3px #fff;
  background: #ccc;
  padding: 15px;
  border-radius: 0 0 0 20px;
  display: none;
}
@media (min-width: 600px) {
  .single-products .line-one .side-description .buy .action > img {
    display: initial;
  }
}
.single-products .line-one .side-description .buy .action:hover > img {
  right: 0;
}
.single-products .technical-speccification {
  padding: 50px var(--padding-mob);
  background: #fff;
}
@media (min-width: 1024px) {
  .single-products .technical-speccification {
    padding: 50px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .single-products .technical-speccification {
    padding: 50px var(--padding-large);
  }
}
.single-products .technical-speccification > h2 {
  font-size: 1.6rem;
  line-height: 1.92rem;
  margin-bottom: 30px;
}
.single-products .technical-speccification h3 {
  margin: 10px 0;
  font-size: 1.6rem;
}
.single-products .technical-speccification .content-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 10px 0;
}
.single-products .technical-speccification .content-spec .field {
  font-weight: bold;
}
@media (min-width: 600px) {
  .single-products .technical-speccification > .technical-speccification-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.single-products > .description {
  padding: 50px var(--padding-mob);
  background: #fff;
}
@media (min-width: 1024px) {
  .single-products > .description {
    padding: 50px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .single-products > .description {
    padding: 50px var(--padding-large);
  }
}
.single-products > .description h3 {
  margin: 10px 0;
  font-size: 1.6rem;
}
.single-products > .description p {
  text-align: justify;
  margin: 10px 0;
}

.similars-title {
  margin: 40px auto 0;
  padding: 10px;
}

.similiars {
  margin-bottom: 40px;
}

.similar {
  max-width: 1170px;
  margin: auto;
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 600px) {
  .similar {
    text-align: left;
  }
}

#similiars {
  height: 100%;
}
@media (min-width: 600px) {
  #similiars > .item {
    padding: 0 10px;
  }
}
#similiars > .item > .product > :nth-child(1) {
  padding: 5px;
}
#similiars > .item > .product > :nth-child(1):hover {
  background: #eceaea;
  border-radius: 10px;
}
#similiars > .item > .product > .title {
  margin: 0;
}

#similiars-box {
  margin: 10px auto;
}
#similiars-box > #similiars > .item > .product {
  margin: 0;
}
@media (max-width: 599px) {
  #similiars-box > #similiars > .item > .product {
    background: none;
    border: none;
  }
}
@media (min-width: 600px) {
  #similiars-box > #similiars > .item > .product {
    padding: 10px 10px 50px;
  }
}
#similiars-box > .bubbles-box {
  bottom: -5px;
}

@media (min-width: 600px) {
  #similiars-box-mob {
    display: none;
  }
}
#similiars-box-mob > #similiars-mob > .item {
  padding: 10px;
}

.single-message {
  padding: var(--padding-mob);
}
@media (min-width: 600px) {
  .single-message {
    padding: 20px 100px;
  }
}

.cart {
  padding: 10px var(--padding-mob);
}
@media (min-width: 1024px) {
  .cart {
    padding: 10px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .cart {
    padding: 10px var(--padding-large);
  }
}
.cart h2 {
  text-align: center;
  margin: 20px 0 10px;
}
@media (min-width: 600px) {
  .cart h2 {
    text-align: left;
  }
}

.carts-list,
.notes,
.actions-list,
.historic-purchases,
.list-leads-dashboard,
.list-actions-dashboard,
.list-carts-dashboard,
.list-products-dashboard,
.products-area,
.list-orders-dashboard,
.list-products-order,
.list-orders,
.list-cart-products {
  text-align: center;
}
@media (min-width: 1366px) {
  .carts-list,
  .notes,
  .actions-list,
  .historic-purchases,
  .list-leads-dashboard,
  .list-actions-dashboard,
  .list-carts-dashboard,
  .list-products-dashboard,
  .products-area,
  .list-orders-dashboard,
  .list-products-order,
  .list-orders,
  .list-cart-products {
    text-align: initial;
  }
}
.carts-list h3,
.notes h3,
.actions-list h3,
.historic-purchases h3,
.list-leads-dashboard h3,
.list-actions-dashboard h3,
.list-carts-dashboard h3,
.list-products-dashboard h3,
.products-area h3,
.list-orders-dashboard h3,
.list-products-order h3,
.list-orders h3,
.list-cart-products h3 {
  text-align: center;
}
@media (min-width: 1366px) {
  .carts-list h3,
  .notes h3,
  .actions-list h3,
  .historic-purchases h3,
  .list-leads-dashboard h3,
  .list-actions-dashboard h3,
  .list-carts-dashboard h3,
  .list-products-dashboard h3,
  .products-area h3,
  .list-orders-dashboard h3,
  .list-products-order h3,
  .list-orders h3,
  .list-cart-products h3 {
    text-align: left;
  }
}
.carts-list .titles,
.notes .titles,
.actions-list .titles,
.historic-purchases .titles,
.list-leads-dashboard .titles,
.list-actions-dashboard .titles,
.list-carts-dashboard .titles,
.list-products-dashboard .titles,
.products-area .titles,
.list-orders-dashboard .titles,
.list-products-order .titles,
.list-orders .titles,
.list-cart-products .titles {
  border-radius: 18px;
  display: none;
  background: #e1e1e5;
  text-align: center;
}
@media (min-width: 1366px) {
  .carts-list .titles,
  .notes .titles,
  .actions-list .titles,
  .historic-purchases .titles,
  .list-leads-dashboard .titles,
  .list-actions-dashboard .titles,
  .list-carts-dashboard .titles,
  .list-products-dashboard .titles,
  .products-area .titles,
  .list-orders-dashboard .titles,
  .list-products-order .titles,
  .list-orders .titles,
  .list-cart-products .titles {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr 1fr;
    align-items: center;
  }
}
.carts-list .titles div,
.notes .titles div,
.actions-list .titles div,
.historic-purchases .titles div,
.list-leads-dashboard .titles div,
.list-actions-dashboard .titles div,
.list-carts-dashboard .titles div,
.list-products-dashboard .titles div,
.products-area .titles div,
.list-orders-dashboard .titles div,
.list-products-order .titles div,
.list-orders .titles div,
.list-cart-products .titles div {
  padding: 10px;
  font-weight: bold;
}
.carts-list .line,
.notes .line,
.actions-list .line,
.historic-purchases .line,
.list-leads-dashboard .line,
.list-actions-dashboard .line,
.list-carts-dashboard .line,
.list-products-dashboard .line,
.products-area .line,
.list-orders-dashboard .line,
.list-products-order .line,
.list-orders .line,
.list-cart-products .line {
  border-bottom: solid thin #ccc;
  padding-bottom: 30px;
}
@media (min-width: 1366px) {
  .carts-list .line,
  .notes .line,
  .actions-list .line,
  .historic-purchases .line,
  .list-leads-dashboard .line,
  .list-actions-dashboard .line,
  .list-carts-dashboard .line,
  .list-products-dashboard .line,
  .products-area .line,
  .list-orders-dashboard .line,
  .list-products-order .line,
  .list-orders .line,
  .list-cart-products .line {
    display: grid;
    grid-template-columns: 3fr 2fr 1fr 1fr 1fr;
    align-items: center;
    text-align: center;
  }
}
.carts-list .line .product_name_on_cart,
.notes .line .product_name_on_cart,
.actions-list .line .product_name_on_cart,
.historic-purchases .line .product_name_on_cart,
.list-leads-dashboard .line .product_name_on_cart,
.list-actions-dashboard .line .product_name_on_cart,
.list-carts-dashboard .line .product_name_on_cart,
.list-products-dashboard .line .product_name_on_cart,
.products-area .line .product_name_on_cart,
.list-orders-dashboard .line .product_name_on_cart,
.list-products-order .line .product_name_on_cart,
.list-orders .line .product_name_on_cart,
.list-cart-products .line .product_name_on_cart {
  text-align: center;
}
.carts-list .line .product_name_on_cart > a,
.notes .line .product_name_on_cart > a,
.actions-list .line .product_name_on_cart > a,
.historic-purchases .line .product_name_on_cart > a,
.list-leads-dashboard .line .product_name_on_cart > a,
.list-actions-dashboard .line .product_name_on_cart > a,
.list-carts-dashboard .line .product_name_on_cart > a,
.list-products-dashboard .line .product_name_on_cart > a,
.products-area .line .product_name_on_cart > a,
.list-orders-dashboard .line .product_name_on_cart > a,
.list-products-order .line .product_name_on_cart > a,
.list-orders .line .product_name_on_cart > a,
.list-cart-products .line .product_name_on_cart > a {
  width: 100%;
  display: inline-block;
}
@media (min-width: 1366px) {
  .carts-list .line .product_name_on_cart,
  .notes .line .product_name_on_cart,
  .actions-list .line .product_name_on_cart,
  .historic-purchases .line .product_name_on_cart,
  .list-leads-dashboard .line .product_name_on_cart,
  .list-actions-dashboard .line .product_name_on_cart,
  .list-carts-dashboard .line .product_name_on_cart,
  .list-products-dashboard .line .product_name_on_cart,
  .products-area .line .product_name_on_cart,
  .list-orders-dashboard .line .product_name_on_cart,
  .list-products-order .line .product_name_on_cart,
  .list-orders .line .product_name_on_cart,
  .list-cart-products .line .product_name_on_cart {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .carts-list .line .product_name_on_cart > a,
  .notes .line .product_name_on_cart > a,
  .actions-list .line .product_name_on_cart > a,
  .historic-purchases .line .product_name_on_cart > a,
  .list-leads-dashboard .line .product_name_on_cart > a,
  .list-actions-dashboard .line .product_name_on_cart > a,
  .list-carts-dashboard .line .product_name_on_cart > a,
  .list-products-dashboard .line .product_name_on_cart > a,
  .products-area .line .product_name_on_cart > a,
  .list-orders-dashboard .line .product_name_on_cart > a,
  .list-products-order .line .product_name_on_cart > a,
  .list-orders .line .product_name_on_cart > a,
  .list-cart-products .line .product_name_on_cart > a {
    width: initial;
  }
}
.carts-list .line > .actions,
.notes .line > .actions,
.actions-list .line > .actions,
.historic-purchases .line > .actions,
.list-leads-dashboard .line > .actions,
.list-actions-dashboard .line > .actions,
.list-carts-dashboard .line > .actions,
.list-products-dashboard .line > .actions,
.products-area .line > .actions,
.list-orders-dashboard .line > .actions,
.list-products-order .line > .actions,
.list-orders .line > .actions,
.list-cart-products .line > .actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.carts-list .line .qtd,
.notes .line .qtd,
.actions-list .line .qtd,
.historic-purchases .line .qtd,
.list-leads-dashboard .line .qtd,
.list-actions-dashboard .line .qtd,
.list-carts-dashboard .line .qtd,
.list-products-dashboard .line .qtd,
.products-area .line .qtd,
.list-orders-dashboard .line .qtd,
.list-products-order .line .qtd,
.list-orders .line .qtd,
.list-cart-products .line .qtd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.carts-list .line > .value,
.notes .line > .value,
.actions-list .line > .value,
.historic-purchases .line > .value,
.list-leads-dashboard .line > .value,
.list-actions-dashboard .line > .value,
.list-carts-dashboard .line > .value,
.list-products-dashboard .line > .value,
.products-area .line > .value,
.list-orders-dashboard .line > .value,
.list-products-order .line > .value,
.list-orders .line > .value,
.list-cart-products .line > .value {
  text-align: center;
}
.carts-list > .checkout,
.carts-list > .alternative-checkout-cart-page,
.notes > .checkout,
.notes > .alternative-checkout-cart-page,
.actions-list > .checkout,
.actions-list > .alternative-checkout-cart-page,
.historic-purchases > .checkout,
.historic-purchases > .alternative-checkout-cart-page,
.list-leads-dashboard > .checkout,
.list-leads-dashboard > .alternative-checkout-cart-page,
.list-actions-dashboard > .checkout,
.list-actions-dashboard > .alternative-checkout-cart-page,
.list-carts-dashboard > .checkout,
.list-carts-dashboard > .alternative-checkout-cart-page,
.list-products-dashboard > .checkout,
.list-products-dashboard > .alternative-checkout-cart-page,
.products-area > .checkout,
.products-area > .alternative-checkout-cart-page,
.list-orders-dashboard > .checkout,
.list-orders-dashboard > .alternative-checkout-cart-page,
.list-products-order > .checkout,
.list-products-order > .alternative-checkout-cart-page,
.list-orders > .checkout,
.list-orders > .alternative-checkout-cart-page,
.list-cart-products > .checkout,
.list-cart-products > .alternative-checkout-cart-page {
  background: none;
}
.carts-list > .checkout,
.notes > .checkout,
.actions-list > .checkout,
.historic-purchases > .checkout,
.list-leads-dashboard > .checkout,
.list-actions-dashboard > .checkout,
.list-carts-dashboard > .checkout,
.list-products-dashboard > .checkout,
.products-area > .checkout,
.list-orders-dashboard > .checkout,
.list-products-order > .checkout,
.list-orders > .checkout,
.list-cart-products > .checkout {
  margin-top: 50px;
}
.carts-list .checkout input,
.notes .checkout input,
.actions-list .checkout input,
.historic-purchases .checkout input,
.list-leads-dashboard .checkout input,
.list-actions-dashboard .checkout input,
.list-carts-dashboard .checkout input,
.list-products-dashboard .checkout input,
.products-area .checkout input,
.list-orders-dashboard .checkout input,
.list-products-order .checkout input,
.list-orders .checkout input,
.list-cart-products .checkout input {
  padding: 5px 40px;
  margin: 10px 0;
  border-radius: var(--border-radius);
  border: none;
  font-size: 1rem;
  height: 3rem;
  display: block;
  box-shadow: 1px 1px 5px 0px #c9c9c9;
}
@media (min-width: 600px) {
  .carts-list .checkout input,
  .notes .checkout input,
  .actions-list .checkout input,
  .historic-purchases .checkout input,
  .list-leads-dashboard .checkout input,
  .list-actions-dashboard .checkout input,
  .list-carts-dashboard .checkout input,
  .list-products-dashboard .checkout input,
  .products-area .checkout input,
  .list-orders-dashboard .checkout input,
  .list-products-order .checkout input,
  .list-orders .checkout input,
  .list-cart-products .checkout input {
    padding: 5px 20px;
  }
}
.carts-list .checkout .bt-primary-danger,
.notes .checkout .bt-primary-danger,
.actions-list .checkout .bt-primary-danger,
.historic-purchases .checkout .bt-primary-danger,
.list-leads-dashboard .checkout .bt-primary-danger,
.list-actions-dashboard .checkout .bt-primary-danger,
.list-carts-dashboard .checkout .bt-primary-danger,
.list-products-dashboard .checkout .bt-primary-danger,
.products-area .checkout .bt-primary-danger,
.list-orders-dashboard .checkout .bt-primary-danger,
.list-products-order .checkout .bt-primary-danger,
.list-orders .checkout .bt-primary-danger,
.list-cart-products .checkout .bt-primary-danger {
  font-size: 1.1rem;
}

.total {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px 0;
  text-align: right;
}
@media (min-width: 600px) {
  .total {
    grid-template-columns: 4fr 1fr;
  }
}
.total div {
  padding: 10px;
  font-weight: bold;
}

.list-orders {
  padding: 20px;
}
@media (min-width: 600px) {
  .list-orders {
    padding: 0;
    margin-bottom: 80px;
  }
}
.list-orders .line,
.list-orders .titles {
  grid-template-columns: 1fr 2fr 2fr 2fr 2fr;
}

.products-area .line,
.products-area .titles {
  grid-template-columns: 1fr 4fr 1fr 1fr 2fr;
}

.list-orders-dashboard {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
}
.list-orders-dashboard .titles {
  border-radius: 18px;
  background: #ccc;
}
.list-orders-dashboard .line,
.list-orders-dashboard .titles {
  grid-template-columns: 1fr 4fr 4fr 4fr 4fr 4fr;
}
.list-orders-dashboard .actions form {
  display: inline-block;
}

.list-products-order .line,
.list-products-order .titles {
  grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
}
.list-products-order .form-coupon {
  padding: 10px;
}
@media (min-width: 600px) {
  .list-products-order .form-coupon {
    padding: 0;
    width: 460px;
  }
}

.products-edit {
  background: #f5f5fa;
  margin-bottom: 30px;
}
.products-edit .line,
.products-edit .titles {
  grid-template-columns: 1fr 3fr 1fr 2fr 2fr;
}

.paleta-brancos {
  display: flex;
  margin: 20px 0;
}
.paleta-brancos div {
  width: 100px;
  height: 100px;
  padding: 20px;
}
.paleta-brancos .color-white-1 {
  background: #f5f5fa;
}
.paleta-brancos .color-white-1 {
  background: #f5f5fa;
}
.paleta-brancos .color-white-2 {
  background: #f0f0f5;
}
.paleta-brancos .color-white-3 {
  background: #ebebf0;
}
.paleta-brancos .color-white-4 {
  background: #e6e6eb;
}
.paleta-brancos .color-white-5 {
  background: #e1e1e5;
}
.paleta-brancos .color-white-2-1 {
  background: #f9f4f4;
}
.paleta-brancos .color-white-2-2 {
  background: #f5f0f0;
}
.paleta-brancos .color-white-2-3 {
  background: #f0ebeb;
}
.paleta-brancos .color-white-2-4 {
  background: #ebe6e6;
}
.paleta-brancos .color-white-12-5 {
  background: #e5e1e1;
}

.paleta-negros {
  display: flex;
  margin: 20px 0;
}
.paleta-negros div {
  width: 100px;
  height: 100px;
  padding: 20px;
  color: #fff;
}
.paleta-negros .color-black-1 {
  background: #1d1d1f;
}
.paleta-negros .color-black-2 {
  background: #17171f;
}
.paleta-negros .color-black-3 {
  background: #13131a;
}
.paleta-negros .color-black-4 {
  background: #101014;
}
.paleta-negros .color-black-5 {
  background: #0c0c0f;
}
.paleta-negros .color-black-2-1 {
  background: #291f1f;
}
.paleta-negros .color-black-2-2 {
  background: #1f1717;
}
.paleta-negros .color-black-2-3 {
  background: #1a1313;
}
.paleta-negros .color-black-2-4 {
  background: #141010;
}
.paleta-negros .color-black-2-5 {
  background: #0f0c0c;
}

@media (min-width: 600px) {
  .pay-methods {
    padding: 20px 0;
  }
}
.pay-methods h3 {
  margin: 10px 0;
}
@media (min-width: 600px) {
  .pay-methods > .pay-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
  }
}
.pay-methods .option-box {
  background: #f0f0f5;
}
.pay-methods .option-box h4 {
  border: #e1e1e5 solid 1pt;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 2rem;
  cursor: pointer;
}
.pay-methods .option-box h4 svg {
  margin: 40px;
}
.pay-methods .option-box h4 svg:hover {
  fill: #0c0c0f;
}
.pay-methods .option-box h4:hover {
  background: #e1e1e5;
}
.pay-methods .option-box .option {
  border: solid 1pt #ebebf0;
  display: none;
  flex-wrap: wrap;
  width: 100%;
  gap: 0 30px;
  flex-direction: column-reverse;
}
@media (min-width: 600px) {
  .pay-methods .option-box .option {
    padding: 40px 40px 60px 40px;
  }
}
@media (min-width: 600px) {
  .pay-methods .option-box .option {
    flex-direction: row;
  }
}
.pay-methods .option-box .option > .msg-error > span {
  color: #fff;
}
.pay-methods .option-box .option .bt-primary-danger {
  font-size: 1.1rem;
}
.pay-methods .option-box .option .card-view {
  display: none;
}
@media (min-width: 600px) {
  .pay-methods .option-box .option .card-view {
    display: initial;
    width: 40%;
  }
}
.pay-methods .option-box .option .card-view svg {
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.09), 0 4px 2px rgba(0, 0, 0, 0.09), 0 8px 4px rgba(0, 0, 0, 0.09), 0 16px 8px rgba(0, 0, 0, 0.09), 0 32px 16px rgba(0, 0, 0, 0.09);
  border-radius: 26px;
  width: 100%;
  transition: 2s transform;
  transform: rotateY(90deg);
}
.pay-methods .option-box .option .card-view svg:nth-child(1) {
  fill: #1d1d1f;
}
@media (min-width: 600px) {
  .pay-methods .option-box .option form {
    width: 60%;
  }
}
.pay-methods .option-box input::-webkit-outer-spin-button,
.pay-methods .option-box input::-webkit-inner-spin-button {
  display: none;
}
.pay-methods .option-box #credit-number {
  fill: #f5f5fa;
}
.pay-methods .option-box #credit-number-four {
  fill: #f5f5fa;
}
.pay-methods .option-box #holder {
  fill: #f5f5fa;
}
.pay-methods .option-box #card-exp-month {
  fill: #f5f5fa;
}
.pay-methods .option-box #card-exp-year {
  fill: #f5f5fa;
}
.pay-methods .option-box #card-valid {
  fill: #f5f5fa;
}
.pay-methods .option-box #card-security {
  fill: #f5f5fa;
}
.pay-methods .option-box-new {
  padding: 30px;
  background: #f0f0f5;
  border: solid thin #d9d9d9;
  margin-top: 5px;
}
.pay-methods .option-box-new > p {
  margin-bottom: 10px;
}
.pay-methods .option-box-new > .dsc {
  margin: 0 0 0 20px;
}
.pay-methods .option-pix {
  background: #f0f0f5;
  border: #e1e1e5 solid 1pt;
  font-weight: bold;
  width: 100%;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.pay-methods .option-pix > svg {
  margin: 40px;
}
.pay-methods .option-pix:hover {
  background: #e1e1e5;
}

.radio {
  padding: 5px;
}
.radio .option {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 0 10px;
  cursor: pointer;
}
.radio .option:hover > svg {
  fill: #0c0c0f;
}

.list-cupons {
  gap: 20px 50px;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 750px) {
  .list-cupons {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1400px) {
  .list-cupons {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.list-cupons .item {
  padding: 20px;
  border: solid thin #ededed;
  background: #fff;
  border-radius: 10px;
}
.list-cupons .item .name {
  margin: 15px 0;
}
.list-cupons .item:hover {
  box-shadow: 1px 1px 5px 0px #c9c9c9;
}
.list-cupons .item div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
}
.list-cupons .deleted {
  border: solid thin #D8171D;
}
.list-cupons .deleted-alert {
  background: #D8171D;
  color: #fff;
  padding: 10px;
  margin-bottom: 10px;
}

.order-coupon {
  padding: 20px;
  background: #f0f0f5;
  margin: 10px 0;
}

.order-status {
  margin: 10px 0;
}
.order-status .contrast {
  font-size: 1.2rem;
  line-height: 2.5rem;
}

.delivery {
  margin: 10px 0;
}
.delivery form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.delivery form .field-size {
  width: 100%;
}
@media (min-width: 600px) {
  .delivery form .field-size {
    width: auto;
  }
}
.delivery form .field-size-half {
  width: 100%;
}
@media (min-width: 600px) {
  .delivery form .field-size-half {
    width: 50%;
  }
}
.delivery form .bt-primary-danger {
  font-size: 1.1rem;
}

.form-default {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.form-default .field-size {
  width: 100%;
}
@media (min-width: 600px) {
  .form-default .field-size {
    width: auto;
  }
}
.form-default .field-size-half {
  width: 100%;
}
@media (min-width: 600px) {
  .form-default .field-size-half {
    width: 50%;
  }
}
.form-default .field-size-full {
  width: 100%;
}

.edition-order-screen {
  max-width: 1170px;
  margin: auto;
  padding: 10px;
  min-height: 64vh;
}
.edition-order-screen .products-area,
.edition-order-screen .amount-area,
.edition-order-screen .pay-area,
.edition-order-screen .customer-area,
.edition-order-screen .delivery-area {
  margin-bottom: 40px;
}

.order-summary {
  padding: 20px;
  background: #f5f5fa;
  margin: 10px 0;
}

.icons-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (min-width: 600px) {
  .icons-services {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.icons-services .service {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  border: solid thin #ededed;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
}
.icons-services .service:hover {
  box-shadow: 1px 1px 5px 0px #c9c9c9;
}
.icons-services .service svg {
  width: 3rem;
  height: 3rem;
}
.icons-services .service h4 {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.list-products-dashboard {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
}
.list-products-dashboard .item,
.list-products-dashboard .titles {
  grid-template-columns: 2fr 1fr 3fr 3fr;
}
.list-products-dashboard .item {
  text-align: center;
  padding: 10px;
}
@media (min-width: 600px) {
  .list-products-dashboard .item {
    display: grid;
    align-items: center;
  }
}
.list-products-dashboard .item .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
}

.list-carts-dashboard > .titles,
.list-carts-dashboard > .item {
  grid-template-columns: 5fr 2fr 2fr 3fr;
}
.list-carts-dashboard .item {
  align-items: center;
  text-align: center;
  border-bottom: solid thin #ccc;
}
@media (min-width: 600px) {
  .list-carts-dashboard .item {
    display: grid;
  }
}
.list-carts-dashboard .item .name {
  padding: 5px;
}
.list-carts-dashboard .item .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
  justify-content: center;
}

@media (min-width: 600px) {
  .header-login-register {
    position: fixed;
    top: 0;
    width: 100%;
  }
}

@media (min-width: 600px) {
  .form-area-login-register {
    margin-top: 20px;
  }
}

.msg-register-login {
  padding: 20px;
}
@media (min-width: 600px) {
  .msg-register-login {
    max-width: 500px;
    margin: auto;
    padding: 0;
  }
  .msg-register-login .msg-error,
  .msg-register-login .msg-success,
  .msg-register-login .msg-info {
    padding: 20px 40px;
    border-radius: 50px;
  }
}

.change-pass {
  display: none;
}

.info-footer {
  background: var(--cinza-1);
}
.info-footer .check-site-footer {
  display: flex;
  gap: 30px;
}
.info-footer .info-footer-content {
  padding: 50px var(--padding-mob) var(--padding-mob);
}
@media (min-width: 1024px) {
  .info-footer .info-footer-content {
    padding: 50px var(--padding-mid) var(--padding-mid);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 50px;
  }
}
@media (min-width: 1920px) {
  .info-footer .info-footer-content {
    padding: 50px var(--padding-large) var(--padding-large);
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.info-footer .info-footer-content .item h1 {
  font-size: 1.1rem;
  padding: 0;
}
.info-footer .info-footer-content .item h3 {
  margin-bottom: 20px;
}
.info-footer .info-footer-content .item ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
  margin-bottom: 10px;
}
.info-footer .info-footer-content .item ul li p {
  color: inherit;
}
.info-footer .info-footer-content .item ul .whats-mob {
  display: initial;
}
@media (min-width: 600px) {
  .info-footer .info-footer-content .item ul .whats-mob {
    display: none;
  }
}
.info-footer .info-footer-content .item ul .whats-mob img {
  width: 1.7rem;
}
.info-footer .info-footer-content .item ul .whats-pc {
  display: none;
}
@media (min-width: 600px) {
  .info-footer .info-footer-content .item ul .whats-pc {
    display: initial;
  }
}
.info-footer .info-footer-content .item ul .whats-pc img {
  width: 1.7rem;
}
.info-footer .info-footer-content .item .institucion-img {
  padding: 10px;
  width: 160px;
  border-radius: 10px;
}
.info-footer .info-footer-content .item .social-menu ul {
  display: flex;
  gap: 10px;
}
.info-footer .info-footer-content .item .social-menu ul li {
  display: inline-block;
}
.info-footer .info-footer-content .item .social-menu ul li img {
  width: 40px;
  background: #f5f5fa;
  border-radius: 9px;
}
.info-footer .info-footer-content .contact-informations a {
  text-decoration: none;
}
.info-footer svg {
  fill: #1d1d1f;
}

.modal-crop-upload {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7215686275);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-crop-upload .content-modal {
  position: relative;
  min-height: 400px;
  background: #f5f5fa;
  padding: 20px;
  border-radius: 15px;
}
.modal-crop-upload .content-modal .modal-bt-close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
  border: none;
  cursor: pointer;
}
.modal-crop-upload .content-modal .modal-bt-close svg {
  width: 1rem;
}
.modal-crop-upload .content-modal .edition-modal {
  max-height: 81vh;
  overflow-y: scroll;
}
.modal-crop-upload .content-modal .actions-modal {
  margin-top: 20px;
}
.modal-crop-upload .content-modal h3 {
  margin-bottom: 20px;
}
.modal-crop-upload .content-modal > .submit {
  justify-content: flex-end;
  margin: 100px 0 50px;
}

.msg-ajax-upload {
  margin: 20px 0;
}

.block-with-spinner {
  position: fixed;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(13.5px);
  -webkit-backdrop-filter: blur(13.5px);
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.block-with-spinner .loader-text {
  width: 100%;
  display: inline-block;
  margin: 20px 0;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.select-image-crop {
  width: 250px;
  display: flex;
  gap: 0 15px;
  margin-bottom: 30px;
}
.select-image-crop button {
  border: solid 3pt #f0ebeb;
}
.select-image-crop .selected {
  border: solid 3pt #1d1d1f;
}

.modal-upload-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.box-add-image .box-add-image-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}
.box-add-image .box-add-image-content .add-image-item {
  position: relative;
}
.box-add-image .box-add-image-content .add-image-item .add-image-bt-remove {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: #f5f5fa;
  padding: 5px;
  cursor: pointer;
}
.box-add-image .box-add-image-content .add-image-item:hover > .add-image-bt-remove {
  display: initial;
}

.guaranteed,
.default-page {
  margin: 30px 0 150px;
  padding: 0 var(--padding-mob);
}
@media (min-width: 1024px) {
  .guaranteed,
  .default-page {
    margin: 80px 0 150px;
    padding: 0 var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .guaranteed,
  .default-page {
    padding: 0 var(--padding-large);
  }
}
.guaranteed p,
.default-page p {
  line-height: 1.5rem;
  margin-bottom: 10px;
  margin-top: 10px;
}
.guaranteed ul,
.guaranteed ol,
.default-page ul,
.default-page ol {
  margin-left: 25px;
  margin-bottom: 10px;
}
.guaranteed li,
.default-page li {
  line-height: 1.5rem;
  margin-bottom: 10px;
  margin-top: 20px;
}
.guaranteed ol > li,
.default-page ol > li {
  font-weight: bold;
}
.guaranteed h1,
.guaranteed h2,
.guaranteed h3,
.guaranteed h4,
.guaranteed h5,
.default-page h1,
.default-page h2,
.default-page h3,
.default-page h4,
.default-page h5 {
  margin-bottom: 20px;
}

.cookies-accept {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: var(--preto);
  color: #f5f5fa;
  border-radius: 10px;
  max-width: 1170px;
  padding: 30px;
  text-align: center;
}
@media (min-width: 1024px) {
  .cookies-accept {
    display: grid;
    grid-template-columns: 9fr 1fr;
    align-items: center;
    gap: 30px;
    margin: 30px;
  }
}
.cookies-accept p {
  font-size: 0.8rem;
  line-height: 1.1rem;
  text-align: left;
  color: inherit;
}
.cookies-accept p > a {
  font-size: inherit;
  line-height: inherit;
}
.cookies-accept .bt-primary-one {
  background: #f5f5fa;
  color: #1d1d1f;
  margin-top: 20px;
}
.cookies-accept a {
  color: #f5f5fa;
}

.about {
  padding: 20px var(--padding-mob);
}
@media (min-width: 1024px) {
  .about {
    padding: 120px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .about {
    padding: 120px var(--padding-large);
  }
}
.about h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.5rem;
  line-height: 1.8rem;
}
@media (min-width: 600px) {
  .about h2 {
    text-align: left;
  }
}
@media (min-width: 600px) {
  .about .about-concept {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
  }
}
.about .about-concept p {
  margin-bottom: 20px;
}
.about .about-concept .call-1 {
  font-size: 2rem;
  line-height: 2.4rem;
  margin-bottom: 0;
  font-weight: bold;
}
.about .about-concept .call-2 {
  font-size: 1.5rem;
  line-height: 1.8rem;
}
.about .about-concept .testimony {
  font-style: italic;
}
.about .about-concept .testimony > .text {
  background: #f5f5f7;
  border: solid thin #ccc;
  padding: 30px;
  border-radius: 18px 18px 0 18px;
}
.about .about-concept .testimony .legend {
  font-weight: bold;
  text-align: right;
  font-style: normal;
  margin-bottom: 40px;
}

.contact {
  max-width: 1170px;
  margin: auto;
  margin-bottom: 40px;
}
.contact h2 {
  text-align: center;
}
@media (min-width: 600px) {
  .contact h2 {
    text-align: left;
  }
}

.single-breadcrumb {
  color: #1d1d1f;
  padding: 20px var(--padding-mob) 20px;
}
@media (min-width: 1024px) {
  .single-breadcrumb {
    padding: 30px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .single-breadcrumb {
    padding: 30px var(--padding-large);
  }
}
.single-breadcrumb a {
  color: #1d1d1f;
}

.error-404 {
  max-width: 1170px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.error-404 .content-404 {
  display: inline-block;
  text-align: center;
}
.error-404 p {
  margin: 20px 0;
}
.error-404 img {
  width: 50%;
}

.gallery {
  background: #fff;
}
@media (min-width: 600px) {
  .gallery {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 10px;
  }
}
.gallery .gallery-thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 600px) {
  .gallery .gallery-thumbnails {
    justify-content: flex-start;
    flex-direction: column;
  }
}
.gallery .gallery-thumbnails .thumbnail-gallery {
  width: 100px;
}
@media (min-width: 600px) {
  .gallery .gallery-thumbnails .thumbnail-gallery {
    width: auto;
  }
}
.gallery > figure {
  padding: 10px;
  position: relative;
}
.gallery > figure > img {
  border-radius: inherit;
}

.viewer {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  background: #eceaea;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 90%;
}

.bt-back-to-shop {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #FECC07;
  border: solid thin #FECC07;
  text-decoration: none;
  margin-bottom: 10px;
}
.bt-back-to-shop svg {
  width: 0.7rem;
  margin-right: 5px;
}

.bt-checkout {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #FECC07;
  font-weight: bold;
  border: solid thin #FECC07;
  text-decoration: none;
  margin-bottom: 10px;
}
.bt-checkout svg {
  width: 0.7rem;
  margin-right: 5px;
}

.delivery-simulator {
  margin: 50px 0;
}
@media (min-width: 600px) {
  .delivery-simulator {
    width: 400px;
  }
}
.delivery-simulator > #delivery-simulator-form > label {
  font-size: 1.1rem;
}

.float-in-input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 4px;
}

.depoimentos-home {
  padding: 10px var(--padding-mob) 50px;
  background: var(--cinza-1);
}
@media (min-width: 1024px) {
  .depoimentos-home {
    padding: 50px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .depoimentos-home {
    padding: 50px var(--padding-large);
  }
}
.depoimentos-home h2 {
  margin: 50px 0 20px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.69rem;
}
.depoimentos-home .call-depoimentos {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 20px;
  font-weight: normal;
  text-align: center;
}
@media (min-width: 600px) {
  .depoimentos-home .call-depoimentos {
    margin-bottom: 80px;
  }
}
.depoimentos-home .depoimentos-mobile-box,
.depoimentos-home .depoimentos-box {
  align-items: center;
  width: 100%;
  position: relative;
}
.depoimentos-home .depoimentos-mobile-box .bt-next,
.depoimentos-home .depoimentos-mobile-box .bt-prev,
.depoimentos-home .depoimentos-box .bt-next,
.depoimentos-home .depoimentos-box .bt-prev {
  position: absolute;
  z-index: 1;
  margin: 10px;
  display: none;
  fill: #fff;
  border-radius: 100%;
  background: rgba(66, 66, 66, 0.8);
  border: solid thin rgba(66, 66, 66, 0.8);
}
.depoimentos-home .depoimentos-mobile-box .bt-next,
.depoimentos-home .depoimentos-box .bt-next {
  right: 0;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos,
.depoimentos-home .depoimentos-box .depoimentos {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item,
.depoimentos-home .depoimentos-box .depoimentos .item {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  transition: left 1s;
  text-align: center;
  padding: 0 20px 20px 20px;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item > .tres-depoimentos,
.depoimentos-home .depoimentos-box .depoimentos .item > .tres-depoimentos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item > .tres-depoimentos > .item-depoimentos,
.depoimentos-home .depoimentos-box .depoimentos .item > .tres-depoimentos > .item-depoimentos {
  position: relative;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item > .tres-depoimentos > .item-depoimentos > .text,
.depoimentos-home .depoimentos-box .depoimentos .item > .tres-depoimentos > .item-depoimentos > .text {
  display: none;
  background-color: #fff;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  padding: 50px;
  text-align: justify;
  overflow-y: scroll;
  height: 100%;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item > .tres-depoimentos > .item-depoimentos > .text p,
.depoimentos-home .depoimentos-box .depoimentos .item > .tres-depoimentos > .item-depoimentos > .text p {
  margin-bottom: 10px;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item > .tres-depoimentos > .item-depoimentos > .text .name,
.depoimentos-home .depoimentos-box .depoimentos .item > .tres-depoimentos > .item-depoimentos > .text .name {
  margin-top: 10px;
  font-weight: bold;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item > .tres-depoimentos > .item-depoimentos > .text .bt-depoimentos,
.depoimentos-home .depoimentos-box .depoimentos .item > .tres-depoimentos > .item-depoimentos > .text .bt-depoimentos {
  text-align: center;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item .abstract,
.depoimentos-home .depoimentos-box .depoimentos .item .abstract {
  background: #fff;
  color: #1d1d1f;
  margin-bottom: 30px;
  border-radius: 15px;
  padding: 50px 50px 0px 50px;
  max-width: 1170px;
  margin: auto;
  overflow: hidden;
  line-height: 2rem;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item .abstract p,
.depoimentos-home .depoimentos-box .depoimentos .item .abstract p {
  color: inherit;
  line-height: 2rem;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item .thumbnail-depoimentos,
.depoimentos-home .depoimentos-box .depoimentos .item .thumbnail-depoimentos {
  margin-top: -75px;
  margin-bottom: 10px;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item .thumbnail-depoimentos > img,
.depoimentos-home .depoimentos-box .depoimentos .item .thumbnail-depoimentos > img {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 100%;
  overflow: hidden;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item .who,
.depoimentos-home .depoimentos-box .depoimentos .item .who {
  text-transform: uppercase;
}
.depoimentos-home .depoimentos-mobile-box {
  display: flex;
}
@media (min-width: 600px) {
  .depoimentos-home .depoimentos-mobile-box {
    display: none;
  }
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item > .item-depoimentos {
  position: relative;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item > .item-depoimentos > .text {
  display: none;
  background-color: #fff;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  padding: 50px;
  text-align: justify;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item > .item-depoimentos > .text p {
  margin-bottom: 10px;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item > .item-depoimentos > .text .name {
  margin-top: 10px;
  font-weight: bold;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item > .item-depoimentos > .text .bt-depoimentos {
  text-align: center;
}
.depoimentos-home .depoimentos-mobile-box .depoimentos .item .abstract {
  height: 350px;
}

.depoimentos-box:hover > .bt-prev,
.depoimentos-box:hover > .bt-next {
  display: initial;
}

#depoimentos-pc-home-box {
  margin: auto;
  height: 550px;
}
#depoimentos-pc-home-box > .bubbles-box > .bubbles {
  justify-content: center;
}

#depoimentos-mob-home > .item,
#depoimentos-pc-home > .item {
  flex-wrap: wrap;
  text-align: center;
  padding: 10px;
  padding-bottom: 50px;
}
#depoimentos-mob-home > .item > p,
#depoimentos-pc-home > .item > p {
  width: 100%;
}
#depoimentos-mob-home > .item .text,
#depoimentos-pc-home > .item .text {
  display: none;
  position: absolute;
  background: #fff;
  top: 0;
  left: 0;
  height: 100%;
  text-align: justify;
  padding: 50px 50px 100px 50px;
  overflow-y: scroll;
  width: 100%;
}
#depoimentos-mob-home > .item .text p,
#depoimentos-pc-home > .item .text p {
  margin: 5px 0;
}
#depoimentos-mob-home > .item .text > .name,
#depoimentos-pc-home > .item .text > .name {
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}
#depoimentos-mob-home > .item .text > .city_state,
#depoimentos-mob-home > .item .text > .occupation,
#depoimentos-pc-home > .item .text > .city_state,
#depoimentos-pc-home > .item .text > .occupation {
  text-align: center;
}
#depoimentos-mob-home > .item .text .bt-depoimentos,
#depoimentos-pc-home > .item .text .bt-depoimentos {
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}
#depoimentos-mob-home > .item .text .bt-depoimentos > a,
#depoimentos-pc-home > .item .text .bt-depoimentos > a {
  text-decoration: none;
  font-weight: bold;
}
#depoimentos-mob-home > .item .abstract,
#depoimentos-pc-home > .item .abstract {
  color: #1d1d1f;
  padding: 50px 50px 0 50px;
  max-width: 1170px;
  width: 100%;
  overflow: hidden;
  line-height: 2rem;
  border-radius: 18px 18px 18px 0;
  background: #f5f5f7;
  margin-bottom: 30px;
}
#depoimentos-mob-home > .item .abstract p,
#depoimentos-pc-home > .item .abstract p {
  color: inherit;
  line-height: 2rem;
}
#depoimentos-mob-home > .item .thumbnail-depoimentos,
#depoimentos-pc-home > .item .thumbnail-depoimentos {
  margin-top: -100px;
}
#depoimentos-mob-home > .item .thumbnail-depoimentos > img,
#depoimentos-pc-home > .item .thumbnail-depoimentos > img {
  width: 100px;
}
#depoimentos-mob-home > .item .stars,
#depoimentos-pc-home > .item .stars {
  width: 150px;
  margin-bottom: 10px;
}
#depoimentos-mob-home > .item .who,
#depoimentos-pc-home > .item .who {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}
#depoimentos-mob-home > .item > p > .icon,
#depoimentos-pc-home > .item > p > .icon {
  width: 100px;
}

@media (min-width: 600px) {
  #depoimentos-mob-home-box {
    display: none;
  }
}

#depoimentos-mob-home > .item {
  min-height: 480px;
}
#depoimentos-mob-home > .item .abstract {
  margin: 0;
  padding: 30px 30px 100px 30px;
  height: 270px;
}
#depoimentos-mob-home > .item .thumbnail-depoimentos {
  margin-top: 0;
  display: inline-block;
}
#depoimentos-mob-home > .item .thumbnail-depoimentos > img {
  margin-top: -50px;
}

.uppercase {
  text-transform: uppercase;
}

.beneficios {
  max-width: 1170px;
  margin: auto;
  display: flex;
  gap: 20px;
}
.beneficios > .text {
  padding: 20px 10px;
}
@media (min-width: 600px) {
  .beneficios > .text {
    padding: 50px 10px;
  }
}
.beneficios > .text > h2 {
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 1.5rem;
}
@media (min-width: 600px) {
  .beneficios > .text > h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.beneficios > .icones {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #e9ecf1;
  padding: 10px;
  height: 480px;
  width: auto;
}
@media (min-width: 600px) {
  .beneficios > .icones {
    position: initial;
  }
}
.beneficios > .icones > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.beneficios ul {
  margin-top: 20px;
}
.beneficios ul > li {
  list-style: none;
  font-size: 1rem;
  display: grid;
  grid-template-columns: 1fr 9fr;
  margin-bottom: 10px;
  align-items: center;
  gap: 10px;
}
@media (min-width: 600px) {
  .beneficios ul > li {
    font-size: 1.2rem;
    display: flex;
  }
}
.beneficios ul > li svg {
  width: 0.8rem;
  height: 0.8rem;
}
@media (min-width: 600px) {
  .beneficios ul > li svg {
    width: 1rem;
    height: 1rem;
  }
}
.beneficios img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.promocao-aquecedor-toalhas {
  max-width: 1170px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: center;
}
.promocao-aquecedor-toalhas .promocao-aquecedor-toalhas-figure {
  height: auto;
  width: 80%;
  padding-left: 10px;
}
@media (min-width: 600px) {
  .promocao-aquecedor-toalhas .promocao-aquecedor-toalhas-figure {
    width: auto;
    height: 400px;
    margin: 50px 0;
  }
}
.promocao-aquecedor-toalhas > .text {
  padding: 50px 0;
  position: relative;
  z-index: 10;
}
.promocao-aquecedor-toalhas > .text .promocao-aquecedor-toalhas-fundo {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  height: 100%;
  width: auto;
}
@media (min-width: 600px) {
  .promocao-aquecedor-toalhas > .text .promocao-aquecedor-toalhas-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
}
.promocao-aquecedor-toalhas > .text .promocao-aquecedor-toalhas-grid .call-one,
.promocao-aquecedor-toalhas > .text .promocao-aquecedor-toalhas-grid .call-two,
.promocao-aquecedor-toalhas > .text .promocao-aquecedor-toalhas-grid .call-three {
  font-weight: normal;
  color: #D8171D;
  font-size: 1.2rem;
  line-height: 1.5rem;
}
@media (min-width: 600px) {
  .promocao-aquecedor-toalhas > .text .promocao-aquecedor-toalhas-grid .call-one,
  .promocao-aquecedor-toalhas > .text .promocao-aquecedor-toalhas-grid .call-two,
  .promocao-aquecedor-toalhas > .text .promocao-aquecedor-toalhas-grid .call-three {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.promocao-aquecedor-toalhas > .text .promocao-aquecedor-toalhas-grid .call-two {
  margin: 10px 0;
}
.promocao-aquecedor-toalhas > .text .promocao-aquecedor-toalhas-grid .call-three {
  margin-bottom: 20px;
}
.promocao-aquecedor-toalhas > .text .promocao-aquecedor-toalhas-grid > figure {
  margin-bottom: 10px;
}
.promocao-aquecedor-toalhas > .text .promocao-aquecedor-toalhas-grid > figure > img {
  width: 200px;
}
.promocao-aquecedor-toalhas > .text > p {
  font-size: 0.6rem;
  line-height: 0.8rem;
}
@media (min-width: 600px) {
  .promocao-aquecedor-toalhas > .text > p {
    line-height: 1.1rem;
    font-size: 0.9rem;
  }
}
.promocao-aquecedor-toalhas img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.promo-callore {
  display: flex;
  flex-wrap: wrap;
  max-width: 1170px;
  margin: auto;
  position: relative;
  flex-direction: column;
}
@media (min-width: 600px) {
  .promo-callore {
    flex-direction: row;
  }
}
.promo-callore > .promo-callore-fundo {
  position: absolute;
  right: 0;
  top: 0;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.promo-callore > .promo-callore-images {
  position: relative;
  z-index: 1;
  display: flex;
}
@media (min-width: 600px) {
  .promo-callore > .promo-callore-images {
    width: 200px;
    display: initial;
  }
}
.promo-callore > .promo-callore-images > .promo-callore-figure-1 {
  width: 100%;
  margin-top: 30px;
}
.promo-callore > .promo-callore-images > .promo-callore-figure-1 > img {
  height: 100%;
}
.promo-callore > .promo-callore-images > .promo-callore-figure-2 {
  width: 100%;
}
.promo-callore > .promo-callore-images > .promo-callore-figure-2 > img {
  height: 100%;
}
.promo-callore > .text > .promo-callore-grid {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
}
.promo-callore > .text > .promo-callore-grid .promo-callore-calls .call-one {
  color: #D8171D;
  font-size: 1.8rem;
  line-height: 2.4rem;
  width: 320px;
  margin-bottom: 20px;
  background: #e9ebf1;
}
.promo-callore > .text > .promo-callore-grid .promo-callore-calls .call-two {
  color: #D8171D;
  font-size: 1.8rem;
  line-height: 2.4rem;
  width: 320px;
  margin-bottom: 20px;
  background: #e9ebf1;
}
.promo-callore > .text > .promo-callore-grid .promo-callore-info {
  width: 320px;
  font-size: 0.8rem;
  line-height: 1rem;
  background: #e9ebf1;
}
.promo-callore > .text > .promo-callore-grid .promo-callore-info p {
  line-height: inherit;
}

.banner-modelo {
  max-width: 1170px;
  margin: auto;
  text-align: center;
}
.banner-modelo .bt-primary-one {
  margin-top: 20px;
}
.banner-modelo h2 {
  text-align: center;
  font-weight: normal;
  color: #D8171D;
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 20px 0;
}
@media (min-width: 400px) {
  .banner-modelo h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.banner-modelo .modelos-images {
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.banner-modelo .modelos-images img {
  width: 40%;
}
@media (min-width: 600px) {
  .banner-modelo .modelos-images {
    flex-wrap: wrap;
    gap: 50px;
  }
  .banner-modelo .modelos-images img {
    height: 300px;
    width: auto;
  }
}

.banner-beneficios {
  max-width: 1170px;
  margin: auto;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}
.banner-beneficios > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.whatsapp-float-link-mob,
.whatsapp-float-link {
  display: none;
  padding: 15px;
  position: fixed;
  bottom: 30px;
  right: 27px;
  z-index: 102;
  border-radius: 100%;
  background: #00e676;
  border: solid 1px #333;
  fill: white;
  flex-wrap: wrap;
  overflow: hidden;
  text-decoration: none;
}
.whatsapp-float-link-mob svg,
.whatsapp-float-link svg {
  width: 2.2rem;
  height: 2.2rem;
  fill: #fff;
}
.whatsapp-float-link-mob .text,
.whatsapp-float-link .text {
  display: none;
  margin-left: 10px;
}
@media (min-width: 1024px) {
  .whatsapp-float-link-mob .text,
  .whatsapp-float-link .text {
    display: initial;
  }
}
.whatsapp-float-link-mob .text div,
.whatsapp-float-link .text div {
  color: #5A5858;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.9rem;
  line-height: 1.2rem;
}

.whatsapp-float-link-mob:hover {
  background: #7aedb5;
}

.whatsapp-float-link:hover {
  right: 0;
}

.whatsapp-float-link-mob {
  display: flex;
}

#header-mol {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #f5f5f7;
  fill: rgba(22, 22, 23, 0.8);
  color: rgba(22, 22, 23, 0.8);
}

@media (min-width: 600px) {
  .bar-one {
    visibility: hidden;
  }
}

.bar-two {
  display: none;
}
@media (min-width: 600px) {
  .bar-two {
    display: initial;
    position: fixed;
  }
}

.bars .bar {
  background: #fff;
  border: #ccc solid thin;
  width: 1rem;
  height: 3rem;
  display: inline-block;
  content: "";
}
.bars .bar:nth-child(1) {
  height: 1rem;
}
.bars .bar:nth-child(2) {
  height: 2rem;
}
.bars .bar:nth-child(3) {
  height: 3rem;
}

.call-banner-beneficios,
.call-banner-modelos,
.call-banner-promocao {
  position: absolute;
  top: 10%;
  left: 10%;
  font-size: 2.2rem;
  line-height: 2.8rem;
}
.call-banner-beneficios p,
.call-banner-modelos p,
.call-banner-promocao p {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.call-banner-beneficios .small,
.call-banner-modelos .small,
.call-banner-promocao .small {
  font-size: 0.8rem;
}

.whats-mob {
  display: initial;
}
@media (min-width: 600px) {
  .whats-mob {
    display: none;
  }
}

.home-destaque {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
}
.home-destaque .hd-background {
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 600px) {
  .home-destaque .hd-background {
    height: auto;
  }
}
.home-destaque .hd-background > img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.home-destaque .hd-h1-hd-image-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 1170px;
}
@media (min-width: 600px) {
  .home-destaque .hd-h1-hd-image-button {
    gap: 20px;
  }
}
@media (min-width: 900px) {
  .home-destaque .hd-h1-hd-image-button {
    flex-direction: row;
  }
}
.home-destaque .hd-h1-hd-image-button .hd-text {
  padding: 20px;
  animation: zoom-hd-text 1s;
  width: 100%;
}
@media (min-width: 900px) {
  .home-destaque .hd-h1-hd-image-button .hd-text {
    width: 640px;
  }
}
@media (min-width: 600px) {
  .home-destaque .hd-h1-hd-image-button .hd-text {
    margin-bottom: 30px;
  }
}
.home-destaque .hd-h1-hd-image-button .hd-text .bt-next,
.home-destaque .hd-h1-hd-image-button .hd-text .bt-prev {
  display: none;
}
.home-destaque .hd-h1-hd-image-button .hd-text .hd-call {
  overflow: hidden;
  position: relative;
  top: 100%;
  height: 3.6rem;
  background: #eceaea;
  border-radius: 18px;
  width: 100%;
}
@media (min-width: 600px) {
  .home-destaque .hd-h1-hd-image-button .hd-text .hd-call {
    height: 4.5rem;
  }
}
.home-destaque .hd-h1-hd-image-button .hd-text .hd-call .item {
  font-size: 2rem;
  line-height: 2.3rem;
  padding: 10px;
  font-weight: bold;
  position: absolute;
  top: 0;
  width: 100%;
  word-break: keep-all;
  transition: left 2s;
}
@media (min-width: 900px) {
  .home-destaque .hd-h1-hd-image-button .hd-text .hd-call .item {
    font-size: 3rem;
    line-height: 3.3rem;
  }
}
.home-destaque .hd-h1-hd-image-button .hd-text .hd-h1 {
  line-height: 1.8rem;
  margin: 10px;
}
@media (min-width: 600px) {
  .home-destaque .hd-h1-hd-image-button .hd-text .hd-h1 {
    margin: 20px 10px;
  }
}
.home-destaque .hd-h1-hd-image-button .hd-text h2 {
  background: #D8171D;
  color: #fff;
  font-size: 1.2rem;
  padding: 20px;
  margin-top: 15px;
}
@keyframes zoom-hd-text {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.home-destaque .hd-h1-hd-image-button .hd-image-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
  width: 100%;
  gap: 20px;
  position: relative;
}
@media (min-width: 600px) {
  .home-destaque .hd-h1-hd-image-button .hd-image-button {
    width: 70%;
    gap: 0;
  }
}
@media (min-width: 900px) {
  .home-destaque .hd-h1-hd-image-button .hd-image-button {
    margin: 82px 0;
  }
}
.home-destaque .hd-h1-hd-image-button .hd-image-button .hd-image {
  width: 45%;
  animation: move-hd-image 1.5s;
}
@keyframes move-hd-image {
  0% {
    transform: translateY(-76px);
  }
  80% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.home-destaque .hd-h1-hd-image-button .hd-image-button .hd-button {
  background: #D8171D;
  border: #D8171D;
  margin-top: 25px;
}

.input-and-bt-inter {
  position: relative;
}
@media (min-width: 600px) {
  .input-and-bt-inter {
    width: 500px;
  }
}
.input-and-bt-inter .bt-inter {
  position: absolute;
  right: 0;
  top: 0;
  margin: 4px;
}

.select {
  position: relative;
}
.select .select-options {
  position: absolute;
  top: 3.2rem;
  left: 0;
  z-index: 1;
  background: #fff;
  height: 200px;
  overflow: hidden;
  overflow-y: scroll;
  display: none;
  width: 100%;
  border-radius: 10px;
  padding: 5px 0;
}
.select .select-options .sel-option {
  padding: 10px;
  background: #fff;
  cursor: pointer;
}
.select .select-options .sel-option:hover {
  background: #e1e1e5;
}

.image-qr-code-pedido {
  text-align: center;
  padding: 20px;
}
.image-qr-code-pedido img {
  width: 200px;
}

.content-contacts {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.content-contacts .title-name {
  font-size: 1rem;
}
.content-contacts .title-subtitle {
  font-size: 1rem;
}
.content-contacts .contact-options {
  margin: 10px 0;
}
.content-contacts .contact-options ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  align-items: center;
}
.content-contacts .contact-options .desktop {
  width: 100%;
  display: none;
}
@media (min-width: 600px) {
  .content-contacts .contact-options .desktop {
    display: inline-block;
  }
}
.content-contacts .contact-options .desktop a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f5f5fa;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.content-contacts .contact-options .desktop a svg {
  width: 0.7rem;
  margin-right: 5px;
}
.content-contacts .contact-options .mobile {
  padding: 10px 0;
}
@media (min-width: 600px) {
  .content-contacts .contact-options .mobile {
    display: none;
  }
}
.content-contacts .contact-options .both {
  width: 100%;
  display: inline-block;
  padding: 10px 0;
}
.content-contacts .contact-options .both a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f5f5fa;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.content-contacts .contact-options .both a svg {
  width: 0.7rem;
  margin-right: 5px;
}

.multiple-item {
  width: 90%;
  height: 100%;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.stars {
  width: 30%;
  margin: auto;
}
@media (min-width: 600px) {
  .stars {
    width: 100%;
  }
}

.regulamento-lista-0608-23 > li::after {
  content: ";";
}
.regulamento-lista-0608-23 > :last-child::after {
  content: ".";
}

@media (min-width: 600px) {
  #carousel-destaques-produtos-box {
    height: 450px;
    width: 100%;
  }
}
#carousel-destaques-produtos-box .car-mol-nav {
  margin-bottom: -50px;
}
#carousel-destaques-produtos-box .bt-prev {
  left: -1.5rem;
}
#carousel-destaques-produtos-box .bt-next {
  right: -1.5rem;
}
#carousel-destaques-produtos-box #carousel-destaques-produtos {
  height: 100%;
}
#carousel-destaques-produtos-box #carousel-destaques-produtos > .item {
  height: 100%;
  transition: transform 1200ms, left 1s;
}
#carousel-destaques-produtos-box #carousel-destaques-produtos > .item > a {
  height: 100%;
  display: inline-block;
  transition: background 1200ms;
}
#carousel-destaques-produtos-box #carousel-destaques-produtos > .item > a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
}
#carousel-destaques-produtos-box #carousel-destaques-produtos > .item:nth-child(1) {
  transform: scale(0.85);
}
@media (min-width: 600px) {
  #carousel-destaques-produtos-box #carousel-destaques-produtos > .item:nth-child(2) {
    transform: perspective(21rem) rotateY(-21deg) scale(0.85);
  }
}
#carousel-destaques-produtos-box #carousel-destaques-produtos > .item:nth-child(4) {
  transform: perspective(21rem) rotateY(21deg) scale(0.85);
}
#carousel-destaques-produtos-box #carousel-destaques-produtos > .item:nth-child(5) {
  transform: scale(0.85);
}

@media (min-width: 600) {
  .banner-callore-box {
    height: 480px;
  }
}
.banner-callore-box > #banner-callore {
  width: 100%;
}
.banner-callore-box > #banner-callore > .item > a {
  display: inline-block;
  width: 100%;
}
.banner-callore-box > #banner-callore > .item > a > picture {
  display: inline-block;
  width: 100%;
}
.banner-callore-box > #banner-callore > .item img {
  height: auto;
  width: 100%;
  display: block;
}
.banner-callore-box .bubbles-box {
  bottom: 5px;
}

.pop-up-leave-page {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
@media (min-width: 1024px) {
  .pop-up-leave-page {
    padding: 0;
  }
}
.pop-up-leave-page .submit {
  margin-top: 30px;
  justify-content: flex-end;
}
.pop-up-leave-page > .pop-up-content {
  background: var(--cinza-1);
  width: 100%;
  padding: 10px;
  border-radius: 18px;
  padding: 80px 30px;
  box-shadow: 1px 1px 5px 0 #c9c9c9;
  position: relative;
  text-align: center;
}
@media (min-width: 1024px) {
  .pop-up-leave-page > .pop-up-content {
    padding: 80px 40px;
    width: 618px;
  }
}
.pop-up-leave-page > .pop-up-content > .pop-up-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  cursor: pointer;
}
.pop-up-leave-page > .pop-up-content > .pop-up-close:hover {
  color: #a9a9a9;
}
.pop-up-leave-page > .pop-up-content > .pop-up-title {
  font-size: 1.5rem;
  line-height: 2rem;
}
.pop-up-leave-page > .pop-up-content > .pop-up-title-2 {
  font-size: 1.6rem;
  line-height: 2.2rem;
}
.pop-up-leave-page > .pop-up-content label {
  text-align: left;
}
.pop-up-leave-page > .pop-up-content .msg-error {
  text-align: left;
}
.pop-up-leave-page > .pop-up-content > p {
  margin: 10px 0;
}
.pop-up-leave-page > .pop-up-content form {
  width: 100%;
  display: inline-block;
}
@media (min-width: 1024px) {
  .pop-up-leave-page > .pop-up-content form {
    width: 340px;
  }
}
.pop-up-leave-page > .pop-up-content .texto-pop-up-success {
  text-align: left;
}
.pop-up-leave-page > .pop-up-content .texto-pop-up-success > h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 15px 0;
}
.pop-up-leave-page > .pop-up-content .texto-pop-up-success > h2 > .label {
  font-weight: bold;
}
.pop-up-leave-page > .pop-up-content .texto-pop-up-success > p {
  font-size: 0.9rem;
  line-height: 1.3rem;
}

.pop-up {
  position: fixed;
  z-index: 20000;
  top: 0;
  left: 0;
  width: 100%;
}

.print {
  margin-bottom: 20px;
}

.pagination-personal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.pagination-personal > .navigation-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  width: 100%;
}
.pagination-personal > .navigation-pages > a,
.pagination-personal > .navigation-pages > span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #ccc;
  text-decoration: none;
}
.pagination-personal > .navigation-pages > a svg,
.pagination-personal > .navigation-pages > span svg {
  width: 0.7rem;
  margin-right: 5px;
}
.pagination-personal > .navigation-pages > a:hover {
  background: #696969;
  color: #fff;
}
.pagination-personal > .navigation-summary {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.pagination-personal > .navigation-summary > .pages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.pagination-personal > .navigation-summary > .pages > span {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pagination-personal > .navigation-summary > .pages > span > span,
.pagination-personal > .navigation-summary > .pages > span > a {
  background: #ccc;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-weight: bold;
  border-radius: 100%;
}
.pagination-personal > .navigation-summary > .pages > span > a:hover {
  background: #696969;
  color: #fff;
}
.pagination-personal > .navigation-summary > .pages > span > span {
  background: none;
  cursor: not-allowed;
}

.alternative-checkout-page,
.alternative-checkout-cart-page {
  margin: 100px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.home-line-2-box .home-line-2 {
  padding-top: 75px;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  background: var(--cinza-1);
  align-items: center;
}
@media (min-width: 1024px) {
  .home-line-2-box .home-line-2 {
    display: grid;
    grid-template-columns: 360px 4fr;
    padding: 100px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .home-line-2-box .home-line-2 {
    padding: 100px var(--padding-large);
  }
}
.home-line-2-box .home-line-2 > .chamada-para-modelos {
  background-image: url("../img/toalhas-secas-callore.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 260px;
  text-align: center;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-block;
  width: 100%;
}
@media (min-width: 1024px) {
  .home-line-2-box .home-line-2 > .chamada-para-modelos {
    padding: 160px 0 280px;
    min-height: 300px;
    height: 100%;
    border-radius: 18px;
  }
}
.home-line-2-box .home-line-2 > .chamada-para-modelos > h3 {
  text-align: center;
  font-size: 1.2rem;
  line-height: 2.4rem;
  font-weight: normal;
  padding: 20px 20px 0px;
  color: #333;
}
.home-line-2-box .home-line-2 > .chamada-para-modelos > h4 {
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.25rem;
  padding: 5px 35px 0;
  font-weight: normal;
}
.home-line-2-box .home-line-2 > .chamada-para-modelos > a {
  margin: 20px 20px;
  text-align: center;
  color: #1d1d1f;
  background: none;
}
.home-line-2-box .home-line-2 > .chamada-para-modelos > .car-mol-23-box > .hd-call > .item {
  text-align: center;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: bold;
  padding: 5px 20px 10px;
}
.home-line-2-box .home-line-2 > .car-mol-23-multi-box {
  height: 660px;
}
@media (min-width: 600px) {
  .home-line-2-box .home-line-2 > .car-mol-23-multi-box {
    padding-bottom: 50px;
  }
}
.home-line-2-box .home-line-2 > .car-mol-23-multi-box > .car-mol-23-multi > .item > .product {
  background: none;
  padding: 0 0 50px;
  margin: 0;
  height: 100%;
}
@media (min-width: 600px) {
  .home-line-2-box .home-line-2 > .car-mol-23-multi-box > .car-mol-23-multi > .item > .product {
    background: #f3f3f3;
    padding: 10px;
    margin: 10px;
  }
}
.home-line-2-box .home-line-2 > .car-mol-23-multi-box > .car-mol-23-multi > .item > .product > a {
  text-decoration: none;
}
.home-line-2-box .home-line-2 > .car-mol-23-multi-box > .car-mol-23-multi > .item > .product > a:nth-child(2),
.home-line-2-box .home-line-2 > .car-mol-23-multi-box > .car-mol-23-multi > .item > .product > a:nth-child(1) {
  padding: 5px;
}
.home-line-2-box .home-line-2 > .car-mol-23-multi-box > .car-mol-23-multi > .item > .product > a:nth-child(2):hover,
.home-line-2-box .home-line-2 > .car-mol-23-multi-box > .car-mol-23-multi > .item > .product > a:nth-child(1):hover {
  background: #eceaea;
  border-radius: 10px;
}
.home-line-2-box .home-line-2 > .car-mol-23-multi-box > .car-mol-23-multi > .item > .product > .abstract {
  margin: 0;
}

.descricao-produto-box #descricao-produto {
  height: auto;
}
.descricao-produto-box #descricao-produto > .item {
  padding: 0 60px;
}
.descricao-produto-box #descricao-produto > .item > img {
  height: auto;
  width: auto;
}

.car-mol-23-multi-box,
.car-mol-23-box {
  line-height: 0;
}
.car-mol-23-multi-box > .bubbles-box > .bubbles,
.car-mol-23-box > .bubbles-box > .bubbles {
  margin-bottom: 5px;
  background: none;
}
@media (max-width: 559px) {
  .car-mol-23-multi-box > .bubbles-box > .bubbles,
  .car-mol-23-box > .bubbles-box > .bubbles {
    gap: 5px;
  }
  .car-mol-23-multi-box > .bubbles-box > .bubbles > span,
  .car-mol-23-box > .bubbles-box > .bubbles > span {
    width: 10px;
    height: 10px;
  }
}

@media (min-width: 600px) {
  #gallery > .item {
    background: #eceaea;
    border-radius: var(--border-radius);
  }
}

.black-friday-23 > .car-mol-23-box > .bubbles-box {
  bottom: 10px;
}

.examples {
  padding: 20px var(--padding-mob);
}
@media (min-width: 1024px) {
  .examples {
    padding: 20px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .examples {
    padding: 20px var(--padding-large);
  }
}
.examples > h1 {
  width: 100%;
  font-size: 2rem;
  line-height: 2.4rem;
}
@media (min-width: 1024px) {
  .examples > h1 {
    margin-top: 30px;
  }
}
.examples > h2 {
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.44rem;
  font-weight: normal;
}
.examples > .examples-content {
  position: relative;
}
.examples > .examples-content > .examples-grid {
  display: grid;
  gap: 30px;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .examples > .examples-content > .examples-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
.examples > .examples-content > .examples-grid > .item {
  text-align: center;
  background: #e3e3e3;
  border: solid thin #ccc;
  border-radius: 18px;
  padding: 10px 15px;
}
@media (min-width: 600px) {
  .examples > .examples-content > .examples-grid > .item {
    padding: 30px 20px;
  }
}
.examples > .examples-content > .retangulo-background {
  background: #f0f0f0;
  position: absolute;
  z-index: 1;
  bottom: -10px;
  height: 80px;
  width: 100%;
  border-radius: 18px;
}
@media (min-width: 600px) {
  .examples > .examples-content > .retangulo-background {
    bottom: -50px;
    height: 200px;
  }
}
.examples > .examples-content > .bt-action {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 50px;
}

.one-line,
.two-line {
  padding: 30px var(--padding-mob);
}
@media (min-width: 1024px) {
  .one-line,
  .two-line {
    padding: 30px var(--padding-mid);
    display: grid;
    gap: 50px;
  }
}
@media (min-width: 1920px) {
  .one-line,
  .two-line {
    padding: 30px var(--padding-large);
  }
}
.one-line > figure,
.two-line > figure {
  border-radius: 18px;
  overflow: hidden;
  margin: 10px 0;
}
.one-line > figure img,
.two-line > figure img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}
.one-line > .text > h2,
.two-line > .text > h2 {
  margin: 10px 0 30px;
}
.one-line > .text p,
.two-line > .text p {
  margin-bottom: 30px;
}
.one-line > .text p > .bt-primary-one,
.two-line > .text p > .bt-primary-one {
  margin-top: 10px;
}
.one-line > .text > ul,
.two-line > .text > ul {
  padding: 0 0 30px 30px;
}
.one-line > .text > ul > li,
.two-line > .text > ul > li {
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .one-line {
    grid-template-columns: 1fr 2fr;
    padding: 30px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .one-line {
    grid-template-columns: 1fr 2fr 1fr;
    padding: 30px var(--padding-large);
  }
}

.two-line {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .two-line {
    display: grid;
    flex-direction: row;
    grid-template-columns: 2fr 1fr;
    padding: 30px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .two-line {
    grid-template-columns: 2fr 1fr 1fr;
    padding: 30px var(--padding-large);
  }
}

.sep-border {
  border-top: solid thin #ccc;
  padding-top: 10px;
}

.events-historic > .events-historic-container {
  display: inline-block;
  margin-top: 10px;
}
.events-historic > .events-historic-container > :nth-child(odd) {
  background: #ebebf0;
}
.events-historic > .events-historic-container > div {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 4fr 4fr;
}
.events-historic > .events-historic-container > .line-events-head > span {
  font-weight: bold;
  padding: 5px;
}
.events-historic > .events-historic-container > .line-events {
  border-top: solid thin #ccc;
}
.events-historic > .events-historic-container > .line-events > span {
  padding: 5px;
}

.list-actions-dashboard > .line,
.list-actions-dashboard > .titles {
  grid-template-columns: 2fr 2fr 1fr 2fr;
}
.list-actions-dashboard > .line > .actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.list-leads-dashboard > .line,
.list-leads-dashboard > .titles {
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
}
.list-leads-dashboard > .line > .actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.historic-purchases-box {
  border-top: solid thin #ccc;
  margin: 10px 0;
}
.historic-purchases-box h3 {
  margin: 10px 0 5px;
}
.historic-purchases-box .historic-purchases > .line,
.historic-purchases-box .historic-purchases > .titles {
  grid-template-columns: 1fr 4fr 2fr 3fr 4fr 3fr 3fr;
}
.historic-purchases-box .historic-purchases > .titles > div {
  font-weight: bold;
}

.actions-box {
  border-top: solid thin #ccc;
}
.actions-box h3 {
  margin: 10px 0 5px;
}
.actions-box > .actions-list > .line,
.actions-box > .actions-list > .titles {
  grid-template-columns: 3fr 2fr 1fr 2fr;
}
.actions-box > .actions-list > form {
  align-items: flex-start;
}

.check-button {
  border-radius: 5px;
  height: 2rem;
  width: 2rem;
  display: inline-block;
  overflow: hidden;
}
.check-button > .on {
  fill: green;
  width: 100%;
  height: 100%;
}
.check-button > .off {
  fill: #ccc;
  width: 100%;
  height: 100%;
}

@media (min-width: 600px) {
  .mobile {
    display: none;
  }
}

.list-autofill {
  text-align: left;
  background: #e9e9e9;
  border-radius: 20px;
  padding: 10px;
}
.list-autofill > .list-autofill-item {
  padding: 5px 10px;
  font-size: 0.9rem;
  cursor: pointer;
}
.list-autofill > .list-autofill-item:hover {
  background: #ccc;
}

.notes-box {
  border-top: solid thin #ccc;
  padding-top: 10px;
}
.notes-box > .notes > .titles,
.notes-box > .notes > .line {
  grid-template-columns: 3fr 1fr 1fr;
}
.notes-box > .notes > form {
  background: none;
  padding-top: 10px;
}

.carts-list-box > .carts-list > .titles,
.carts-list-box > .carts-list > .line {
  grid-template-columns: 1fr 2fr 3fr 1fr 2fr;
}

.posts-list-box {
  padding: 0 var(--padding-mob) 30px;
}
@media (min-width: 1024px) {
  .posts-list-box {
    padding: 30px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .posts-list-box {
    padding: 30px var(--padding-large);
  }
}
.posts-list-box .content-posts-list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .posts-list-box .content-posts-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}
.posts-list-box .content-posts-list .item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.posts-list-box .content-posts-list .item > .post-title {
  margin: 10px 0;
  text-align: center;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .posts-list-box .content-posts-list .item > .post-title {
    margin: 30px 0;
    text-align: left;
  }
}
.posts-list-box .content-posts-list .item > .post-title > h3 {
  line-height: 1.5;
}
.posts-list-box .content-posts-list .item > h3 {
  margin: 10px 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .posts-list-box .content-posts-list .item > h3 {
    margin: 30px 0;
    text-align: left;
  }
}
.posts-list-box .content-posts-list .item > .thumbnail > a > img {
  border-radius: var(--border-radius);
}
.posts-list-box .content-posts-list .item:hover > .thumbnail > img {
  transform: scale(1.1);
}
@media (min-width: 720px) {
  .posts-list-box .posts-sidebar {
    width: 24%;
  }
}
.posts-list-box .posts-sidebar .newsletter {
  background: #333;
  border-radius: 8px;
  padding: 30px 20px 20px;
  color: #fff;
}
.posts-list-box .posts-sidebar .newsletter .title {
  font-weight: bold;
  font-size: 1.5rem;
}
.posts-list-box .posts-sidebar .newsletter .subtitle {
  margin: 10px 0;
}

.authors-list .item {
  display: flex;
  flex-wrap: wrap;
  width: 150px;
  justify-content: center;
  background: #fff;
  margin: 10px 0;
  padding: 10px;
}
.authors-list .item a:nth-child(1) {
  overflow: hidden;
  width: 5rem;
  height: 5rem;
  display: inline-block;
  border-radius: 100%;
  margin: 10px;
}
.authors-list .item a:nth-child(1) img {
  width: 100%;
}
.authors-list .item a:nth-child(2) {
  width: 100%;
  text-align: center;
}
.authors-list .item:hover {
  background: #ccc;
}

.categories-list,
.tags-list {
  padding: 0 var(--padding-mob);
}
@media (min-width: 1024px) {
  .categories-list,
  .tags-list {
    padding: 0 var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .categories-list,
  .tags-list {
    padding: 0 var(--padding-large);
  }
}
.categories-list > h2,
.tags-list > h2 {
  margin: 50px 0;
}
.categories-list > .content-list,
.tags-list > .content-list {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0;
  align-items: flex-start;
  gap: 30px;
}
.categories-list > .content-list .item,
.tags-list > .content-list .item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #f2f2f2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}
.categories-list > .content-list .item svg,
.tags-list > .content-list .item svg {
  width: 0.7rem;
  margin-right: 5px;
}
.categories-list > .content-list .item :nth-child(1),
.tags-list > .content-list .item :nth-child(1) {
  font-weight: bold;
  text-decoration: none;
}
.categories-list > .content-list .item :nth-child(2),
.tags-list > .content-list .item :nth-child(2) {
  margin-top: 5px;
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
}
.categories-list > .content-list .item:hover > :nth-child(2),
.tags-list > .content-list .item:hover > :nth-child(2) {
  display: initial;
}

.posts-list .item {
  width: 50%;
  background: white;
  position: relative;
}
.posts-list .item a {
  display: inline-block;
}
.posts-list .item a img {
  width: 99%;
  aspect-ratio: 16/6;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border: solid thin #ccc;
}
.posts-list .item a:nth-child(1) {
  width: 100%;
  overflow: hidden;
  display: block;
}
.posts-list .item a:nth-child(3) {
  width: 100%;
}
.posts-list .item .draft {
  background: red;
  padding: 10px;
  color: #fff;
}

.search > .dropdown > .result {
  padding: 10px;
  background: #f3f3f3;
}

.posts-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
  border-bottom: solid thin #ccc;
  padding: 30px 0;
}
.posts-list .item {
  width: 100%;
}
.posts-list .item > a > img {
  border-radius: var(--border-radius);
}
.posts-list .item > .posts-list-info {
  margin: 20px 0;
}
.posts-list .item > .posts-item-title {
  margin: 0 0 20px;
  text-decoration: none;
  font-weight: bold;
}

.categories-on-post {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.categories-on-post > .item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: solid thin var(--color-primary);
}
.categories-on-post > .item svg {
  width: 0.7rem;
  margin-right: 5px;
}
.categories-on-post > .item:hover {
  cursor: pointer;
}

.tags-on-post {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
  margin-bottom: 50px;
}
.tags-on-post > textarea {
  min-width: 100%;
  max-width: 100%;
}
.tags-on-post > input {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  margin: 2px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
}
.tags-on-post > input svg {
  width: 0.7rem;
  margin-right: 5px;
}
.tags-on-post > .item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  padding: 5px 15px;
  background: var(--cinza-1);
}
.tags-on-post > .item:hover::after {
  content: "x";
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff0000;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
}

#thumbnail_post {
  border-radius: var(--border-radius);
  overflow: hidden;
  width: 100%;
  background-color: #ccc;
}

.search-bar-posts {
  margin: 20px 0;
}
.search-bar-posts > .search-input {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border-radius: var(--border-radius);
  border: solid thin #ccc;
}
.search-bar-posts > .search-input > input {
  border: none;
  background: none;
  width: 95%;
}
.search-bar-posts > .search-input > input:focus-visible {
  outline: none;
}
.search-bar-posts > .search-input > .dropdown {
  width: 100%;
}
.search-bar-posts > .search-input > .dropdown > .result {
  width: 100%;
  padding: 10px;
  border-radius: var(--border-radius);
}
.search-bar-posts > .search-input > .dropdown > .result:hover {
  background-color: #ccc;
}

@media (min-width: 1024px) {
  .similiar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.similiar > .item > .thumbnail {
  width: 100%;
}

.bt-toggle {
  border-radius: 8px;
  display: inline-flex;
  position: relative;
  margin-bottom: 15px;
  gap: 10px;
}
.bt-toggle > .bt-toggle-opt {
  border-radius: 8pt;
  padding: 10px;
  font-weight: bold;
  text-decoration: none;
  border: solid thin #dbdada;
  background: #dbdada;
}
.bt-toggle > .active {
  border: solid 3px var(--preto);
  background: #ccc;
}

.others-colors {
  display: flex;
  justify-content: center;
  padding: 20px;
  padding: 10px;
  width: 100%;
  gap: 10px;
  width: 100%;
}
.others-colors > img {
  width: 3rem;
}
.others-colors > span,
.others-colors a {
  width: 2rem;
  height: 2rem;
}
.others-colors > span:hover {
  opacity: 0.5;
}
.others-colors > .white {
  background: #fff;
}
.others-colors > .black {
  background: var(--preto);
}
.others-colors > .bege {
  background: #d1bb9d;
}
.others-colors > .chrome {
  background: #ccc;
  outline: solid 2pt #ccc;
}
.others-colors > .chrome.active,
.others-colors > .white.active,
.others-colors > .black.active,
.others-colors > .bege.active {
  opacity: 0.5;
}

.others-colors-new {
  display: flex;
  justify-content: center;
  padding: 20px;
  padding: 10px;
  width: 100%;
  gap: 10px;
  width: 100%;
}
.others-colors-new > span,
.others-colors-new a {
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
}
.others-colors-new > span:hover {
  opacity: 0.5;
}

.pagamento-cartao-testes {
  max-width: 500px;
  padding: 20px;
  position: relative;
  /* HTML: <div class="loader"></div> */
}
.pagamento-cartao-testes > .load-cart-cripto {
  background: #ccc;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
.pagamento-cartao-testes .loader-cripto {
  width: 40px;
  aspect-ratio: 1;
  color: #D8171D;
  position: relative;
  background: conic-gradient(from 134deg at top, currentColor 92deg, rgba(0, 0, 0, 0) 0) top, conic-gradient(from -46deg at bottom, currentColor 92deg, rgba(0, 0, 0, 0) 0) bottom;
  background-size: 100% 50%;
  background-repeat: no-repeat;
}
.pagamento-cartao-testes .loader-cripto:before {
  content: "";
  position: absolute;
  inset: 0;
  --g: currentColor 14.5px, #0000 0 calc(100% - 14.5px), currentColor 0;
  background: linear-gradient(45deg, var(--g)), linear-gradient(-45deg, var(--g));
  animation: l7 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}
@keyframes l7 {
  33% {
    inset: -10px;
    transform: rotate(0deg);
  }
  66% {
    inset: -10px;
    transform: rotate(90deg);
  }
  100% {
    inset: 0;
    transform: rotate(90deg);
  }
}

.card-messages {
  max-width: 600px;
}
.card-messages > div {
  border-radius: 18px;
  padding: 5px 15px;
}

.parcelamento {
  background: #fff;
}
.parcelamento > .parcelas {
  background: #fff;
  height: 225px;
  margin-top: 5px;
  overflow-y: scroll;
}
.parcelamento > .parcelas > .parcela {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 13px 20px;
}
.parcelamento > .parcelas > .parcela > .selecionar {
  text-align: center;
}
.parcelamento > .parcelas > .parcela > .selecionar > .parcela-opt1 {
  background: none;
  border: none;
  font-weight: bold;
}
.parcelamento > .parcelas > .parcela > .selecionar > .parcela-opt {
  border: solid thin var(--preto);
  content: "";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  width: 1.2rem;
  height: 1.2rem;
}
.parcelamento > .parcelas > .parcela > .selecionar > .parcela-opt > .parcela-opt-bt {
  background: var(--preto);
  content: "";
  display: inline-block;
  border-radius: 100%;
  width: 0.8rem;
  height: 0.8rem;
}
.parcelamento > .parcelas > .parcela > .selecionar > .parcela-opt > .parcela-opt-bt {
  background: none;
}
.parcelamento > .parcelas > .parcela > .selecionar > .parcela-opt.selected > .parcela-opt-bt {
  background: var(--preto);
  content: "";
  display: inline-block;
  border-radius: 100%;
  width: 0.8rem;
  height: 0.8rem;
}
.parcelamento > .parcelas > .parcela > .valor {
  cursor: default;
}
.parcelamento > .parcelas > .parcela.selected {
  background: #e4e4e4;
}
.parcelamento > .parcelas > .parcela:hover {
  background: #e4e4e4;
}
.parcelamento > .resumo {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 13px 20px;
}
.parcelamento > .resumo > .selecionar {
  text-align: center;
}
.parcelamento > .resumo > .selecionar > .parcela-opt1 {
  font-weight: bold;
}
.parcelamento > .parcela {
  display: none;
}
.parcelamento > .resumo {
  box-shadow: 1px 1px 5px 0px #c9c9c9;
  border-radius: var(--border-radius);
  background: #fff;
}

.pix-qr-code {
  text-align: center;
}
@media (min-width: 600px) {
  .pix-qr-code {
    margin-bottom: 40px;
  }
}
.pix-qr-code > h2 {
  text-align: center;
}
.pix-qr-code > p {
  line-height: 2rem;
}

.label {
  background: #D8171D;
  color: #fff;
  padding: 5px 10px;
  border-radius: 8px;
}

.info-home {
  position: relative;
  overflow: hidden;
  background: var(--preto);
  width: 100%;
  display: flex;
  gap: 30px;
  white-space: nowrap;
}
.info-home > p {
  position: absolute;
  left: 0;
  display: flex;
  transition: left 9s linear;
  align-items: center;
  font-size: 1rem;
  padding: 10px;
  color: #fff;
  font-weight: bold;
}
@media (min-width: 600px) {
  .info-home > p {
    font-size: 1.5rem;
    padding: 20px 10px;
  }
}
.info-home > p > a {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
}
@media (min-width: 600px) {
  .info-home > p > a {
    font-size: 1.5rem;
  }
}

.similar-single-box {
  padding: 0 var(--padding-mob);
  margin-bottom: 150px;
}
@media (min-width: 1024px) {
  .similar-single-box {
    padding: 0 var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .similar-single-box {
    padding: 0 var(--padding-large);
  }
}

.info-home-20 {
  background: #231f20;
  color: #fff;
  text-align: center;
  padding: 5px var(--padding-mob);
}
@media (min-width: 1024px) {
  .info-home-20 {
    padding: 5px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .info-home-20 {
    padding: 5px var(--padding-large);
  }
}
.info-home-20 > p {
  color: #fff;
}
.info-home-20 > p > a {
  color: #fff;
  text-decoration: none;
}

.home-products-2-box {
  position: relative;
  overflow: hidden;
  width: 100vw;
}
@media (min-width: 600px) {
  .home-products-2-box {
    width: auto;
  }
}
.home-products-2-box .home-products-2::-webkit-scrollbar {
  display: none;
}
.home-products-2-box .home-products-2 {
  overflow-x: scroll;
  position: relative;
  scroll-behavior: smooth;
  width: 100vw;
}
.home-products-2-box .home-products-2 > .home-products-content {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100%;
}
.home-products-2-box .home-products-2 > .home-products-content > .item {
  width: 100vw;
  text-align: center;
}
@media (min-width: 600px) {
  .home-products-2-box .home-products-2 > .home-products-content > .item {
    padding: 0;
    min-width: 300px;
    width: 100%;
  }
}
.home-products-2-box .home-products-2 > .home-products-content > .item > .thumbnail {
  width: 100%;
}
.home-products-2-box .home-products-2 > .home-products-content > .item > .thumbnail > figure > img {
  width: 72%;
}
@media (min-width: 1024px) {
  .home-products-2-box .home-products-2 > .home-products-content > .item > .thumbnail > figure > img {
    width: 100%;
  }
}
.home-products-2-box .home-products-2 > .home-products-content > .item > .title {
  padding: 0;
  margin: 0 30px;
  text-align: center;
  text-decoration: none;
}
.home-products-2-box .home-products-2 > .home-products-content > .item > .title > h3 {
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 2.1rem;
}
.home-products-2-box .home-products-2 > .home-products-content > .item > .price {
  text-align: center;
  margin: 20px 0;
}
.home-products-2-box .home-products-2 > .home-products-content > .item > .price > span {
  width: 100%;
  display: inline-block;
}
.home-products-2-box .home-products-2 > .home-products-content > .item > .price > span:nth-child(1) {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.8rem;
}
@media (min-width: 600px) {
  .home-products-2-box .home-products-2 > .home-products-content > .item > .price > span:nth-child(1) {
    font-size: 1.8rem;
    line-height: 2.16rem;
  }
}
.home-products-2-box .home-products-2 > .home-products-content > .item > .bt-actions {
  text-align: center;
}

.prev-on-slide,
.next-on-slide {
  position: absolute;
  top: 0;
  z-index: 1;
  height: 100%;
  align-items: center;
  width: 2rem;
  opacity: 0.2;
  background: var(--cinza-1);
  display: flex;
}

.prev-on-slide {
  left: 0;
}

.next-on-slide {
  right: 0;
  opacity: 0.5;
}

.gallery-product-new::-webkit-scrollbar {
  display: none;
}

.gallery-product-new {
  overflow-x: scroll;
  position: relative;
  scroll-behavior: smooth;
}
.gallery-product-new > .gallery-content {
  display: flex;
}
.gallery-product-new > .gallery-content > .item {
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.gallery-product-new > .gallery-content > .item > figure {
  width: 100%;
}
.gallery-product-new > .gallery-content > .item > figure > img {
  aspect-ratio: 3/4;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.image-on-single-box {
  display: grid;
  grid-template-columns: 2fr 8fr;
  gap: 30px;
}
@media (min-width: 1024px) {
  .image-on-single-box {
    padding: 0 10px;
  }
}
.image-on-single-box > .gallery-thumbs {
  max-height: 75vh;
  overflow-y: scroll;
}
.image-on-single-box > .gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-scroll-2 {
  position: relative;
}
.gallery-scroll-2 > .gallery-box::-webkit-scrollbar {
  display: none;
}
.gallery-scroll-2 > .gallery-box {
  overflow-x: scroll;
  position: relative;
  scroll-behavior: smooth;
}
.gallery-scroll-2 > .gallery-box > .gallery-content {
  display: flex;
}
.gallery-scroll-2 > .gallery-box > .gallery-content > .item {
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.gallery-scroll-2 > .gallery-box > .gallery-content > .item > figure {
  width: 100%;
}
.gallery-scroll-2 > .gallery-box > .gallery-content > .item > figure > img {
  aspect-ratio: 3/4;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.payment-card-safrapay {
  padding: 20px;
}
@media (min-width: 600px) {
  .payment-card-safrapay {
    padding: 50px 100px;
  }
}
.payment-card-safrapay > p {
  margin: 10px 0 50px;
}
.payment-card-safrapay > form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
  max-width: 600px;
}
.payment-card-safrapay > form .field-box {
  display: inline-block;
}
.payment-card-safrapay > form .submit {
  width: 100%;
}

.payment-pix-safrapay {
  padding: 20px;
}
@media (min-width: 600px) {
  .payment-pix-safrapay {
    padding: 50px 100px;
  }
}
.payment-pix-safrapay > .items-qrcode > p {
  margin-bottom: 15px;
}
.payment-pix-safrapay > .items-qrcode > .qrcode-code > input {
  line-height: 2rem;
  font-size: 1.2rem;
  padding: 5px 20px;
  border-radius: 18px;
  border: none;
}
.payment-pix-safrapay > p {
  margin: 30px 0;
}
.payment-pix-safrapay > p > .qrcode {
  border: none;
  background: none;
  display: inline-block;
  width: 100%;
}
.payment-pix-safrapay > p > .qrcode:focus {
  outline: none;
}
.payment-pix-safrapay > figure {
  position: relative;
  display: inline-block;
}
.payment-pix-safrapay > figure > .finish_qrcode {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  margin: 30px;
  font-weight: bold;
}
.payment-pix-safrapay > figure > figcaption {
  font-size: 2rem;
  line-height: 4rem;
}
.payment-pix-safrapay > figure > figcaption > span {
  font-size: inherit;
  line-height: inherit;
}
.payment-pix-safrapay > .reload-qrcode {
  display: none;
}

.depoimentos-2-0 {
  position: relative;
  overflow: hidden;
}
.depoimentos-2-0 .depoimentos-box::-webkit-scrollbar {
  display: none;
}
.depoimentos-2-0 > .depoimentos-box {
  overflow-x: scroll;
  position: relative;
  scroll-behavior: smooth;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  gap: 50px;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item {
  width: 84.5vw;
  position: relative;
  text-align: center;
}
@media (min-width: 600px) {
  .depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item {
    width: 478px;
  }
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item > p {
  width: 100%;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item .text {
  display: none;
  position: absolute;
  background: #fff;
  top: 0;
  left: 0;
  height: 100%;
  text-align: left;
  padding: 50px 38px 100px;
  overflow-y: scroll;
  width: 100%;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item .text p {
  margin: 5px 0;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item .text > .name {
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item .text > .city_state,
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item .text > .occupation {
  text-align: center;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item .text .bt-depoimentos {
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item .text .bt-depoimentos > a {
  text-decoration: none;
  font-weight: bold;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item .abstract {
  color: #1d1d1f;
  padding: 50px 50px 0 50px;
  max-width: 1170px;
  width: 99%;
  overflow: hidden;
  line-height: 2rem;
  border-radius: 18px;
  background: #f5f5f7;
  border: solid thin #ccc;
  margin-bottom: 30px;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item .abstract p {
  color: inherit;
  line-height: 2rem;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item .abstract p > button {
  border: none;
  background: none;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item .abstract p > button:hover {
  color: #333;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item .abstract:hover {
  background: #fff;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item .thumbnail-depoimentos {
  margin-top: -100px;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item .thumbnail-depoimentos > img {
  width: 100px;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item .stars {
  width: 150px;
  margin-bottom: 10px;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item .who {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}
.depoimentos-2-0 > .depoimentos-box > .depoimentos-content > .item > p > .icon {
  width: 100px;
}

.caracteristicas {
  position: relative;
  overflow: hidden;
  padding: 50px var(--padding-mob);
  background: var(--cinza-1);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}
@media (min-width: 1024px) {
  .caracteristicas {
    padding: 160px var(--padding-mid);
  }
}
@media (min-width: 1550px) {
  .caracteristicas > .next-on-slide,
  .caracteristicas > .prev-on-slide {
    display: none;
  }
}
.caracteristicas > .next-on-slide,
.caracteristicas > .prev-on-slide {
  opacity: 0.2;
}
@media (min-width: 1920px) {
  .caracteristicas {
    padding: 160px var(--padding-large);
  }
}
.caracteristicas > .caracteristicas-scroll::-webkit-scrollbar {
  display: none;
}
.caracteristicas > .caracteristicas-scroll {
  overflow-x: scroll;
  position: relative;
  scroll-behavior: smooth;
}
.caracteristicas > .caracteristicas-scroll > .caracteristicas-content {
  gap: var(--padding-mob);
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 18px;
  margin: auto;
}
@media (min-width: 1024px) {
  .caracteristicas > .caracteristicas-scroll > .caracteristicas-content {
    gap: var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .caracteristicas > .caracteristicas-scroll > .caracteristicas-content {
    gap: var(--padding-large);
  }
}
.caracteristicas > .caracteristicas-scroll > .caracteristicas-content > .item {
  width: 300px;
  position: relative;
  text-decoration: none;
  transition: opacity 300ms;
  text-align: center;
  border-radius: 18px;
  padding-bottom: 20px;
}
@media (min-width: 1920px) {
  .caracteristicas > .caracteristicas-scroll > .caracteristicas-content > .item {
    width: 350px;
  }
}
.caracteristicas > .caracteristicas-scroll > .caracteristicas-content > .item > p {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin-top: 15px;
}
@media (min-width: 600px) {
  .caracteristicas > .caracteristicas-scroll > .caracteristicas-content > .item > p {
    margin-top: 50px;
  }
}
.caracteristicas > .caracteristicas-scroll > .caracteristicas-content > .item > img {
  width: 100%;
  border-radius: var(--border-radius);
}
.caracteristicas > .caracteristicas-scroll > .caracteristicas-content > .item > .image {
  width: 100%;
  height: auto;
  aspect-ratio: 11/16;
  background-repeat: no-repeat;
  border-radius: var(--border-radius);
}
@keyframes changeColorCarac {
  0% {
    border: solid thin #000;
  }
  100% {
    border: solid thin #fff;
  }
}
.caracteristicas > .caracteristicas-scroll > .caracteristicas-content > .item:hover {
  border: solid 3pt var(--cinza-1);
}
.caracteristicas > .caracteristicas-scroll > .caracteristicas-content > .item.is-visible {
  opacity: 1;
}

.bt-logout-menu-mob {
  margin-left: 10px;
}

.final-space {
  padding: 60px;
}

.card-number-brand {
  display: inline-grid;
  gap: 10px;
  grid-template-columns: 1fr 6fr;
  align-items: center;
}
.card-number-brand > .brand {
  background: #ddd;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: var(--border-radius);
  text-align: center;
}

.enviando_dados_qr_code {
  color: #fff;
  padding: 10px;
  background: #0000ff;
  display: inline-block;
}

.general-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.unsubscribe-newsletter {
  background: #fff;
  padding: 30px;
}
@media (min-width: 600px) {
  .unsubscribe-newsletter {
    padding: 100px;
  }
}

.products-on-order {
  background: #fff;
  border-radius: 18px;
  padding: 30px 30px 50px 30px;
}
.products-on-order > h3 {
  margin-bottom: 20px;
}
.products-on-order > .titles,
.products-on-order .line {
  display: grid;
  grid-template-columns: 1fr 5fr 2fr 1fr 2fr;
  gap: 30px;
  padding: 10px;
}
.products-on-order > .titles {
  background: #ebe1e1;
  border-radius: 18px;
}
.products-on-order > .pair {
  border-bottom: solid thin #ccc;
}
.products-on-order > .odd {
  border-bottom: solid thin #ccc;
}

.cart-details-products,
.cart-details-who,
.cart-details-geo,
.cart-details,
.events-historic,
.amount-area,
.dados-comprador,
.update-status-order,
.pay-area,
.envio-total-express,
.nota-fiscal,
.entregas-manuais,
.order-general-info,
.total-express-edit-order,
.order-rastreio-entrega-manual {
  background: #fff;
  border-radius: 18px;
  padding: 30px 30px 50px 30px;
  margin-bottom: 30px;
}

.order-rastreio-entrega-manual > h3 {
  margin-bottom: 20px;
}

.instructions {
  position: fixed;
  background: rgba(0, 0, 0, 0.6784313725);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.instructions > .instructions-content {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  position: relative;
}
.instructions > .instructions-content > .bt-close {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #fff;
  border: solid thin #ccc;
  padding: 10px;
  border-radius: 100%;
}
.instructions > .instructions-content > .bt-close:hover {
  background: #ccc;
}
.instructions > .instructions-content > h3 {
  margin-bottom: 20px;
}

.products-on-order.edit {
  margin-bottom: 30px;
}

.cart-details-products > .titles,
.cart-details-products > .line {
  display: grid;
  grid-template-columns: 5fr 2fr 1fr 2fr;
  gap: 30px;
  padding: 10px 30px;
}
.cart-details-products > .titles {
  background: #f2f2f2;
  border-radius: 18px;
}
.cart-details-products > .line {
  border-bottom: solid thin #f2f2f2;
}
.cart-details-products > .totals {
  text-align: right;
  padding: 10px 30px;
}

.modal-image {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7215686275);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-image > .modal-image-content {
  background: #fff;
  border: solid thin #ccc;
  position: relative;
  line-height: 0;
  margin: 30px;
}
.modal-image > .modal-image-content > .bt-close {
  border-radius: 100%;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  padding: 5px;
}
.modal-image > .modal-image-content > .bt-close:hover {
  background: #ccc;
}
.modal-image > .modal-image-content > .image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 92vh;
}

.home-2025 {
  background: var(--cinza-1);
  background-repeat: no-repeat;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
  max-width: 100%;
  /* Set a pixel value instead if no parent container*/
  margin: 0 auto;
  /* Center the container */
  position: relative;
  width: 100%;
  height: 92.9vh;
}
@media (min-width: 2560px) {
  .home-2025 {
    height: 95.2vh;
  }
}
.home-2025 > video {
  width: 100%;
  /* Fill the available width */
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
@media (orientation: portrait) {
  .home-2025 > .landscape {
    display: none;
  }
}
@media (orientation: landscape) {
  .home-2025 > .portrait {
    display: none;
  }
}
.home-2025 > .bt-continuar {
  position: absolute;
  bottom: 10px;
  z-index: 1;
  animation-name: btContinuar;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  background: rgba(204, 204, 204, 0.4588235294);
  border-radius: 18px;
  line-height: 0;
  padding: 5px;
  cursor: default;
  display: none;
}
@media (min-width: 1024px) {
  .home-2025 > .bt-continuar {
    bottom: 50px;
  }
}
.home-2025 > .bt-continuar > img {
  width: 1.5rem;
  height: 1.5rem;
}
@media (min-width: 1024px) {
  .home-2025 > .bt-continuar > img {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.home-2025 > .bt-continuar:hover {
  background: #ccc;
}
@keyframes btContinuar {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.home-2025 > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-2025 > .text-central {
  width: 500px;
  text-align: center;
}
.home-2025 > .text-central > h3 {
  color: #fff;
  font-size: 5rem;
  font-weight: 600;
  line-height: 100%;
}
.home-2025 > .text-central > p {
  color: #fff;
  line-height: 100%;
  font-size: 1.1rem;
}

.cores {
  padding: 50px var(--padding-mob);
  text-align: center;
  background: var(--cinza-1);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
}
@media (min-width: 1024px) {
  .cores {
    padding: 100px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .cores {
    padding: 100px var(--padding-large);
  }
}
.cores > .blur-cores {
  position: absolute;
  top: 21%;
  left: 25%;
  background: radial-gradient(var(--cinza-1) 50%, var(--cinza-1) 50%, transparent);
  width: 50%;
  height: 60%;
  filter: blur(40px);
}
.cores > .blur-finish {
  position: absolute;
  bottom: -36px;
  left: 9%;
  background: var(--cinza-1);
  width: 83%;
  height: 65px;
  border-radius: var(--border-radius);
  display: none;
}
@media (min-width: 1024px) {
  .cores > .blur-finish {
    display: initial;
  }
}
.cores > p {
  margin: 50px 0;
  position: relative;
}
.cores > h2 {
  margin: 50px 0;
  position: relative;
}
.cores > .list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 600px) {
  .cores > .list {
    display: flex;
  }
}
.cores > .list > a > img {
  width: 3rem;
}
@media (min-width: 1024px) {
  .cores > .list > a > img {
    width: 8rem;
  }
}
.cores > .list > a > span {
  margin-bottom: 30px;
}

.float-cart {
  position: fixed;
  bottom: 100px;
  right: 27px;
  z-index: 10;
  background: #fff;
  border: solid 1px #333;
  padding: 7px;
  border-radius: 100%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-cart > img {
  width: 2.7rem;
}
.float-cart > .qtd {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--preto);
  color: #fff;
  border-radius: 100%;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.float-cart:hover {
  background: var(--preto);
}
.float-cart:hover > img {
  filter: invert(1);
}

.encomenda-personalizada {
  margin-bottom: 40px;
  padding: 20px;
}
@media (min-width: 600px) {
  .encomenda-personalizada {
    padding: 0 100px;
  }
}
.encomenda-personalizada p {
  line-height: 1.5rem;
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: justify;
}
.encomenda-personalizada ul,
.encomenda-personalizada ol {
  margin-left: 20px;
  margin-bottom: 10px;
}
.encomenda-personalizada li {
  line-height: 1.5rem;
  margin-bottom: 10px;
}
.encomenda-personalizada ol > li {
  font-weight: bold;
}
.encomenda-personalizada h1,
.encomenda-personalizada h2,
.encomenda-personalizada h3,
.encomenda-personalizada h4,
.encomenda-personalizada h5 {
  margin-bottom: 10px;
}

.contato-callore-page {
  padding: 20px var(--padding-mob);
  background: #fff;
}
@media (min-width: 1024px) {
  .contato-callore-page {
    padding: 30px var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .contato-callore-page {
    padding: 30px var(--padding-large);
  }
}
.contato-callore-page > h1 {
  font-size: 1.8rem;
  line-height: 2.16rem;
  margin-bottom: 30px;
}
.contato-callore-page p {
  margin-bottom: 20px;
}
.contato-callore-page > .contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 1024px) {
  .contato-callore-page > .contact-info {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
}
.contato-callore-page > .contact-info > .contato-arte {
  display: none;
}
@media (min-width: 1024px) {
  .contato-callore-page > .contact-info > .contato-arte {
    display: flex;
    justify-content: center;
  }
}
.contato-callore-page > .contact-info > .contato-arte > img {
  aspect-ratio: 3/4;
  -o-object-fit: contain;
     object-fit: contain;
}
.contato-callore-page > .contact-info > .data-contact > ul {
  margin-top: 50px;
}
.contato-callore-page > .contact-info > .data-contact > ul > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
  margin-bottom: 10px;
}

.agree {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin: 40px 0 10px;
  gap: 20px;
}
@media (min-width: 1024px) {
  .agree {
    grid-template-columns: auto 100%;
  }
}
.agree a {
  font-size: 0.9rem;
}

.privacy-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 20px;
  margin: 10px 0 40px;
}

.checkbox {
  background: #fff;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  border: solid 2pt rgba(66, 66, 66, 0.8);
}
.checkbox .bt-check {
  background: #ddd;
  display: inline-block;
  width: 88%;
  height: 88%;
  border-radius: inherit;
}
.checkbox .on {
  background: rgba(66, 66, 66, 0.8);
}

.new-menu {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--cinza-1);
  max-height: 100vh;
  overflow-y: scroll;
}
@media (min-width: 1024px) {
  .new-menu {
    height: auto;
    overflow-y: initial;
  }
}
.new-menu > .navbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0 57px;
  align-items: center;
  border-bottom: solid thin #ccc;
  padding: 5px 15px;
}
@media (min-width: 1024px) {
  .new-menu > .navbar {
    padding: 13px var(--padding-mid) 5px;
    gap: 30px;
    border-bottom: none;
    justify-content: space-between;
  }
}
@media (min-width: 1920px) {
  .new-menu > .navbar {
    padding: 13px var(--padding-large) 5px;
  }
}
.new-menu > .navbar > .menu-toggle {
  background: none;
  border: none;
  position: relative;
  z-index: 2;
  padding: 15px;
  display: inline-block;
  background: var(--cinza-1);
  text-align: left;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .menu-toggle {
    display: none;
  }
}
.new-menu > .navbar > .menu-toggle-opened {
  width: 100%;
}
.new-menu > .navbar > .logo {
  padding: 0 15px;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .logo {
    padding: 0;
  }
}
.new-menu > .navbar > .logo > img {
  width: 140px;
}
.new-menu > .navbar > .nav-links {
  width: 100%;
  display: none;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-links {
    display: flex;
    padding: 0;
    position: relative;
    width: auto;
    height: auto;
    overflow: initial;
    background: none;
    border: none;
  }
}
.new-menu > .navbar > .nav-links > li > a {
  padding: 15px;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  background: var(--cinza-1);
}
.new-menu > .navbar > .nav-links > .has-submenu {
  position: relative;
}
.new-menu > .navbar > .nav-links > .has-submenu > a::after {
  padding-left: 10px;
}
.new-menu > .navbar > .nav-links > .has-submenu > .open::after {
  content: "▸";
}
.new-menu > .navbar > .nav-links > .has-submenu > .opened::after {
  content: "▾";
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu {
  display: none;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu {
    background: var(--cinza-escuro);
    position: absolute;
    left: 0;
    top: 60px;
    min-width: 32vw;
    padding: 50px 0;
    border-left: solid thin #ccc;
    border-right: solid thin #ccc;
    border-bottom: solid thin #ccc;
  }
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > li {
  display: inline-block;
  width: 100%;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > li > a {
  display: inline-block;
  padding: 15px 50px;
  width: 100%;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > li > a:hover {
    background: var(--cinza-1);
  }
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    border: none;
    border-bottom: solid thin #ccc;
    background: #fff;
  }
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .marca {
  padding: 15px;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .marca {
    padding: var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .marca {
    padding: var(--padding-large);
  }
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .marca > a > img {
  width: 220px;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .marca > p {
  margin: 20px 0;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .marca > p > a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .marca > p > a > img {
  width: 1rem;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .marca > p > a:hover {
  opacity: 0.7;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .marca > .gaucha {
  border-radius: var(--border-radius);
  background: var(--cinza-1);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 20px;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .marca > .gaucha {
    margin-top: 60px;
  }
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .marca > .gaucha > img {
  width: 3rem;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .fabricante {
  padding: 15px;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .fabricante {
    background: #fff;
    padding: var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .fabricante {
    padding: var(--padding-large);
  }
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .fabricante > a > img {
  width: 200px;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .fabricante > p {
  margin: 20px 0;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .fabricante > p > a {
  display: flex;
  gap: 10px;
  align-items: center;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .fabricante > p > a > img {
  width: 1rem;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .about-menu > .fabricante > p > a:hover {
  opacity: 0.7;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .products-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    border: none;
    border-bottom: solid thin #ccc;
    background: #fff;
  }
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .products-menu > .about-aquecedor {
  padding: 0 15px;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: right !important;
  background-blend-mode: soft-light !important;
}
@media (max-width: 1023px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .products-menu > .about-aquecedor {
    background: none !important;
  }
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .products-menu > .about-aquecedor {
    padding: var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .products-menu > .about-aquecedor {
    padding: var(--padding-large);
  }
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .products-menu > .about-aquecedor > p {
  margin: 20px 0;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .products-menu > .about-aquecedor > p > img {
  width: 200px;
  display: none;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .products-menu > .about-aquecedor > p > img {
    display: initial;
  }
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .products-menu > .about-aquecedor > p > a {
  display: flex;
  gap: 10px;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .products-menu > .about-aquecedor > p > a > img {
  width: 1rem;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .products-menu > .about-aquecedor > p > a:hover {
  opacity: 0.7;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .products-menu > .modelos {
  padding: 15px;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .products-menu > .modelos {
    padding: var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .products-menu > .modelos {
    padding: var(--padding-large);
  }
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .products-menu > .modelos > p {
  margin: 20px 0;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .products-menu > .modelos > p > a:hover {
  opacity: 0.7;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .menu-contato {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    border: none;
    background: #fff;
    border-bottom: solid thin #ccc;
  }
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .menu-contato > .image {
  text-align: right;
  padding: 0 15px;
  display: none;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .menu-contato > .image {
    display: initial;
    padding: var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .menu-contato > .image {
    padding: var(--padding-large);
  }
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .menu-contato > .image > img {
  width: 200px;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .menu-contato > .info-menu-contato {
  padding: 0 15px;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .menu-contato > .info-menu-contato {
    padding: var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .new-menu > .navbar > .nav-links > .has-submenu > .submenu > .menu-contato > .info-menu-contato {
    padding: var(--padding-large);
  }
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .menu-contato > .info-menu-contato > p {
  margin: 20px 0;
}
.new-menu > .navbar > .nav-links > .has-submenu > .submenu > .menu-contato > .info-menu-contato > p > a:hover {
  opacity: 0.7;
}
.new-menu > .navbar > .nav-actions {
  display: flex;
  gap: 30px;
  width: 100%;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-actions {
    width: auto;
  }
}
.new-menu > .navbar > .nav-actions > li {
  width: 100%;
}
.new-menu > .navbar > .nav-actions > li > .submenu {
  width: 100%;
  padding: 15px 0 50px;
  background: var(--cinza-1);
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-actions > li > .submenu {
    display: none;
    position: absolute;
    top: 72px;
    z-index: 10;
    right: 0;
    width: auto;
    border-left: solid thin #ccc;
    border-right: solid thin #ccc;
    border-bottom: solid thin #ccc;
    padding: 15px 30px 50px;
  }
}
.new-menu > .navbar > .nav-actions > li > .submenu > li > a {
  padding: 15px;
  display: inline-block;
  text-decoration: none;
  width: 100%;
}
.new-menu > .navbar > .nav-actions > .cart-btn {
  display: none;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-actions > .cart-btn {
    display: inline-block;
  }
}
.new-menu > .navbar > .nav-actions > .cart-btn > a {
  position: relative;
}
.new-menu > .navbar > .nav-actions > .cart-btn > a > .cart-count {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--preto);
  color: #fff;
  border-radius: 100%;
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.new-menu > .navbar > .nav-actions > .login-btn {
  display: none;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-actions > .login-btn {
    display: initial;
  }
}
.new-menu > .navbar > .nav-actions > .login-btn > a {
  display: inline-block;
  line-height: 1;
  position: relative;
  z-index: 100;
  padding: 30px 15px 30px;
  display: flex;
  gap: 30px;
  align-items: center;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-actions > .login-btn > a {
    padding: 0;
  }
}
.new-menu > .navbar > .nav-actions > .login-btn > a > img {
  pointer-events: none;
}
@media (min-width: 1024px) {
  .new-menu > .navbar > .nav-actions > .login-btn > a > span {
    display: none;
  }
}
.new-menu > .navbar > .nav-actions > .login-btn > a:hover {
  background: #e3e3e3;
}
.new-menu > .navbar > .nav-actions > .login-btn > .submenu > li > a:hover {
  background: #e3e3e3;
}

.new-menu::-webkit-scrollbar {
  display: none;
  /* Hides the scrollbar */
}

.cart-vazio {
  text-align: center;
  margin: 30px 0;
}
@media (min-width: 1024px) {
  .cart-vazio {
    margin: 50px 0;
  }
}
@media (min-width: 1920px) {
  .cart-vazio {
    margin: 100px 0;
  }
}
@media (min-width: 2560px) {
  .cart-vazio {
    margin: 250px 0;
  }
}
.cart-vazio > img {
  width: 8rem;
}
.cart-vazio > p {
  font-size: 1rem;
  line-height: 1.8;
}
.cart-vazio > p > .bt-primary-one {
  margin-top: 50px;
}

.about-callore-home {
  padding: var(--padding-mob);
  background: linear-gradient(0deg, #e9ebea, #f1f3f2 45%, #f9f9f9);
  position: relative;
}
@media (min-width: 1024px) {
  .about-callore-home {
    padding: var(--padding-mid) var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .about-callore-home {
    padding: var(--padding-large) var(--padding-large);
  }
}
.about-callore-home > .bk-know-callore {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.about-callore-home h2 {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  color: #d8c6c6;
}
@media (min-width: 1024px) {
  .about-callore-home h2 {
    font-size: 7rem;
    line-height: 2;
  }
}
.about-callore-home > .content-about {
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .about-callore-home > .content-about {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    gap: var(--padding-large);
  }
}
@media (min-width: 1920px) {
  .about-callore-home > .content-about {
    gap: 160px;
  }
}
.about-callore-home > .content-about > .weco {
  position: relative;
}
.about-callore-home > .content-about > .weco > .fabrica-weco {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}
.about-callore-home > .content-about > .weco > .logo-59 {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 8rem;
  border-radius: 18px;
}
@media (min-width: 1024px) {
  .about-callore-home > .content-about > .weco > .logo-59 {
    right: -40px;
  }
}
.about-callore-home > .content-about > .weco-text-novo-conceito > .weco {
  margin-bottom: 30px;
}
.about-callore-home > .content-about > .weco-text-novo-conceito > .conceito {
  position: relative;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .about-callore-home > .content-about > .weco-text-novo-conceito > .conceito {
    margin-top: 100px;
  }
}
.about-callore-home > .content-about > .weco-text-novo-conceito > .conceito > img {
  width: 100%;
}
.about-callore-home > .content-about > .weco-text-novo-conceito > .conceito > .conceito-text {
  background: linear-gradient(90deg, #bcc0be, #e3e5e4);
  padding: 40px;
  border-radius: 18px;
}
@media (min-width: 1024px) {
  .about-callore-home > .content-about > .weco-text-novo-conceito > .conceito > .conceito-text {
    position: absolute;
    right: -200px;
    bottom: 30px;
  }
}
.about-callore-home > .content-about > .weco-text-novo-conceito > .conceito > .conceito-text > p:nth-child(1) {
  font-size: 2rem;
  width: 100%;
}
.about-callore-home > .content-about > .callore-carinho {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .about-callore-home > .content-about > .callore-carinho {
    gap: var(--padding-mob);
  }
}
.about-callore-home > .content-about > .callore-carinho > .logo-produzido > .text-carinho > p {
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
}
.about-callore-home > .content-about > .callore-carinho > .soldagem {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.about-callore-home > .content-about > .callore-carinho > .soldagem > img {
  width: 100%;
}
.about-callore-home > .bt-saiba-mais {
  padding: var(--padding-mob);
  text-align: center;
  width: 100%;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.about-page {
  margin: 10px 0 150px;
}
@media (min-width: 1024px) {
  .about-page > .content-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .about-page > .content-about {
    gap: var(--padding-large);
  }
}
.about-page > .content-about > .col-1 > p {
  margin-bottom: 40px;
}
.about-page > .content-about > .col-2 > img {
  border-radius: 18px;
}
.about-page .testimony {
  font-style: italic;
}
.about-page .testimony > .text {
  background: #f5f5f7;
  border: solid thin #ccc;
  padding: 30px;
  border-radius: 18px 18px 0 18px;
}
.about-page .testimony .legend {
  font-weight: bold;
  text-align: right;
  font-style: normal;
  margin-bottom: 40px;
}

.modern-select {
  position: relative;
}
.modern-select > .content-modern-select {
  overflow-x: scroll;
  position: relative;
  scroll-behavior: smooth;
  width: 84.5vw;
  padding-right: 30px;
}
@media (min-width: 1024px) {
  .modern-select > .content-modern-select {
    width: auto;
  }
}
.modern-select > .content-modern-select > .options {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100%;
  display: flex;
  gap: 30px;
}
.modern-select > .content-modern-select > .options > .option {
  width: 35vw;
  border: solid 3pt #ccc;
  text-align: center;
  border-radius: 18px;
}
@media (min-width: 1024px) {
  .modern-select > .content-modern-select > .options > .option {
    width: 14vw;
  }
}
.modern-select > .content-modern-select > .options > .option > p {
  margin: 20px 0 10px;
  font-weight: bold;
  text-align: inherit;
}
.modern-select > .content-modern-select > .options > .selected {
  border: solid 3pt var(--preto);
}
.modern-select > .content-modern-select::-webkit-scrollbar {
  display: none;
}
.modern-select .prev-on-slide,
.modern-select .next-on-slide {
  position: absolute;
  top: 0;
  z-index: 1;
  height: 100%;
  display: none;
  align-items: center;
  width: 2rem;
  opacity: 0.5;
  background: var(--cinza-1);
}
.modern-select .prev-on-slide {
  left: 0;
}
.modern-select .next-on-slide {
  right: 0;
  display: flex;
}
@media (min-width: 1024px) {
  .modern-select .next-on-slide {
    display: none;
  }
}

.radio {
  display: flex;
  gap: 10px;
}
.radio > div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.radio > div > label,
.radio > div > input {
  line-height: 1;
  padding: 20px 5px;
}
.radio > div > label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.thanks-page {
  padding: 30px;
}
@media (min-width: 1024px) {
  .thanks-page {
    padding: 30px 100px;
  }
}
.thanks-page > .thanks-content {
  margin-top: 30px;
  margin-bottom: 60px;
  text-align: center;
}
.thanks-page > .thanks-content > h2 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 30px;
}
.thanks-page > .call-to-action {
  margin-top: 30px;
  margin-bottom: 100px;
  text-align: center;
}
.thanks-page > .call-to-action > p {
  margin-bottom: 10px;
}
.thanks-page > .call-to-action > p > a > img {
  transition: transform 300ms;
}
.thanks-page > .call-to-action > p > a:hover > img {
  transform: rotate(90deg);
}

.revenda-catalogo-home {
  padding: 50px var(--padding-mob) 30px;
  border-top: solid thin #ccc;
}
@media (min-width: 1024px) {
  .revenda-catalogo-home {
    padding: 30px var(--padding-mid);
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
    align-items: center;
    border-top: 0;
  }
}
@media (min-width: 1920px) {
  .revenda-catalogo-home {
    padding: 30px var(--padding-large);
  }
}
.revenda-catalogo-home > .text > h2 {
  font-weight: normal;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 1024px) {
  .revenda-catalogo-home > .text > h2 {
    margin: 0 20px;
    text-align: left;
    width: 311px;
  }
}
.revenda-catalogo-home > .text > h2 > strong {
  font-size: 2.2rem;
}
.revenda-catalogo-home > .text > p {
  text-align: center;
}
@media (min-width: 1024px) {
  .revenda-catalogo-home > .text > p {
    margin: 20px 20px 80px 20px;
    text-align: left;
  }
}
.revenda-catalogo-home > .text > .abas {
  background: #f0f0f0;
  border-radius: var(--border-radius);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.revenda-catalogo-home > .text > .abas > .links {
  padding: 40px 30px;
  transition: padding 500ms;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .revenda-catalogo-home > .text > .abas > .links {
    justify-content: flex-end;
    flex-direction: row;
    gap: 30px;
  }
}
.revenda-catalogo-home > .text > .abas > .links > a {
  text-decoration: none;
}
.revenda-catalogo-home > .text > .abas > .links:hover {
  padding: 60px 30px;
}
.revenda-catalogo-home > .text > .abas > .buy-now {
  padding: 50px 30px;
  background: #e9e9e9;
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  border-radius: var(--border-radius);
  transition: padding 500ms;
}
@media (min-width: 1024px) {
  .revenda-catalogo-home > .text > .abas > .buy-now {
    padding: 50px 30px;
  }
}
@media (min-width: 1920px) {
  .revenda-catalogo-home > .text > .abas > .buy-now {
    padding: 120px 30px;
  }
}
.revenda-catalogo-home > .text > .abas > .buy-now > a {
  display: flex;
  gap: 10px;
  text-decoration: none;
}
.revenda-catalogo-home > .text > .abas > .buy-now > a > img {
  width: 3.2rem;
}
.revenda-catalogo-home > .text > .abas > .buy-now:hover {
  padding: 160px 30px;
}
.revenda-catalogo-home > .image-destaque {
  display: none;
}
@media (min-width: 1024px) {
  .revenda-catalogo-home > .image-destaque {
    display: initial;
  }
}

.msg-posts {
  padding: 0 var(--padding-mob);
}
@media (min-width: 1024px) {
  .msg-posts {
    padding: 0 var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .msg-posts {
    padding: 0 var(--padding-large);
  }
}

.edit-product,
.post-list-box,
.lixeira {
  padding: 0 var(--padding-mob);
}
@media (min-width: 1024px) {
  .edit-product,
  .post-list-box,
  .lixeira {
    padding: 0 var(--padding-mid);
  }
}
@media (min-width: 1920px) {
  .edit-product,
  .post-list-box,
  .lixeira {
    padding: 0 var(--padding-large);
  }
}
.edit-product > .sub-header,
.post-list-box > .sub-header,
.lixeira > .sub-header {
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}
.edit-product > h2,
.post-list-box > h2,
.lixeira > h2 {
  margin: 30px 0;
}

.edit-product > .content-edit-product {
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 50px;
}
.edit-product > .content-edit-product > .sidebar > .submit-sidebar {
  text-align: right;
  margin-bottom: 50px;
}
.edit-product > .content-edit-product > .sidebar > .submit-sidebar > label {
  margin-top: 30px;
}
.edit-product > .content-edit-product > .sidebar label {
  width: 100%;
  display: inline-block;
  text-align: left;
}
.edit-product > .content-edit-product > .sidebar > .input {
  margin-bottom: 30px;
}/*# sourceMappingURL=styles.css.map */