/* 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;
}

strong {
  font-weight: bold;
}

/* buttons */
/* primary */
/* primary-one */
.bt-primary-one {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.bt-primary-one svg {
  width: 0.7rem;
  margin-right: 5px;
}

.bt-primary-one:focus,
.bt-primary-one.focus {
  outline-offset: 2pt;
}

.bt-primary-one:hover,
.bt-primary-one.hover {
  box-shadow: rgb(0, 0, 0) 0px 15px 20px -17px;
}

.bt-primary-one:disabled {
  background: #6f6f6f;
  border-color: #6f6f6f;
  outline-color: #6f6f6f;
  color: #ccc;
  box-shadow: none;
}

.bt-primary-one:active,
.bt-primary-one.active {
  outline-color: #ddd;
  border-color: #ddd;
}

.bt-primary-one:visited,
.bt-primary-one.visited {
  outline-color: #373737;
  border-color: #373737;
}

/* end primary-one */
/* primary-danger */
.bt-primary-danger {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: red;
  border-color: red;
  outline-color: red;
}
.bt-primary-danger svg {
  width: 0.7rem;
  margin-right: 5px;
}

.bt-primary-danger:focus,
.bt-primary-danger.focus {
  outline-offset: 2pt;
}

.bt-primary-danger:hover,
.bt-primary-danger.hover {
  box-shadow: rgb(0, 0, 0) 0px 15px 20px -17px;
}

.bt-primary-danger:disabled {
  background: #6f6f6f;
  border-color: #6f6f6f;
  outline-color: #6f6f6f;
  color: #ccc;
  box-shadow: none;
}

.bt-primary-danger:active,
.bt-primary-danger.active {
  outline-color: #ddd;
  border-color: #ddd;
}

.bt-primary-danger:visited,
.bt-primary-danger.visited {
  outline-color: #373737;
  border-color: #373737;
}

/* end primary-danger */
/* primary-success */
.bt-primary-success {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: green;
  border-color: green;
  outline-color: green;
}
.bt-primary-success svg {
  width: 0.7rem;
  margin-right: 5px;
}

.bt-primary-success:focus,
.bt-primary-success.focus {
  outline-offset: 2pt;
}

.bt-primary-success:hover,
.bt-primary-success.hover {
  box-shadow: rgb(0, 0, 0) 0px 15px 20px -17px;
}

.bt-primary-success:disabled {
  background: #6f6f6f;
  border-color: #6f6f6f;
  outline-color: #6f6f6f;
  color: #ccc;
  box-shadow: none;
}

.bt-primary-success:active,
.bt-primary-success.active {
  outline-color: #ddd;
  border-color: #ddd;
}

.bt-primary-success:visited,
.bt-primary-success.visited {
  outline-color: #373737;
  border-color: #373737;
}

/* end primary-success */
/* primary-info */
.bt-primary-info {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: blue;
  border-color: blue;
  outline-color: blue;
}
.bt-primary-info svg {
  width: 0.7rem;
  margin-right: 5px;
}

.bt-primary-info:focus,
.bt-primary-info.focus {
  outline-offset: 2pt;
}

.bt-primary-info:hover,
.bt-primary-info.hover {
  box-shadow: rgb(0, 0, 0) 0px 15px 20px -17px;
}

.bt-primary-info:disabled {
  background: #6f6f6f;
  border-color: #6f6f6f;
  outline-color: #6f6f6f;
  color: #ccc;
  box-shadow: none;
}

.bt-primary-info:active,
.bt-primary-info.active {
  outline-color: #ddd;
  border-color: #ddd;
}

.bt-primary-info:visited,
.bt-primary-info.visited {
  outline-color: #373737;
  border-color: #373737;
}

/* end primary-info */
/* primary-ghost */
.bt-primary-ghost {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  color: rgba(66, 66, 66, 0.8);
  outline-width: 2pt;
}
.bt-primary-ghost svg {
  width: 0.7rem;
  margin-right: 5px;
}

.bt-primary-ghost:focus,
.bt-primary-ghost.focus {
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  outline-offset: 2pt;
  border: solid 1pt rgba(66, 66, 66, 0.8);
}

.bt-primary-ghost:hover,
.bt-primary-ghost.hover {
  box-shadow: rgb(0, 0, 0) 0px 15px 20px -17px;
}

.bt-primary-ghost:disabled {
  background: #6f6f6f;
  border-color: #6f6f6f;
  outline-color: #6f6f6f;
  color: #ccc;
  box-shadow: none;
}

.bt-primary-ghost:active,
.bt-primary-ghost.active {
  outline-color: #ddd;
  border-color: #ddd;
}

.bt-primary-ghost:visited,
.bt-primary-ghost.visited {
  outline-color: #373737;
  border-color: #373737;
}

/* end primary-ghost */
/* end primary */
/* secondary */
/* secondary-one */
.bt-secondary-one {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #e6e6e6;
  border-color: #e6e6e6;
  outline-color: #e6e6e6;
  color: rgba(66, 66, 66, 0.8);
}
.bt-secondary-one svg {
  width: 0.7rem;
  margin-right: 5px;
}

.bt-secondary-one:focus,
.bt-secondary-one.focus {
  outline-offset: 2pt;
}

.bt-secondary-one:hover,
.bt-secondary-one.hover {
  box-shadow: rgb(0, 0, 0) 0px 15px 20px -17px;
}

.bt-secondary-one:disabled {
  background: #6f6f6f;
  border-color: #6f6f6f;
  outline-color: #6f6f6f;
  color: #ccc;
  box-shadow: none;
}

.bt-secondary-one:active,
.bt-secondary-one.active {
  outline-color: #ddd;
  border-color: #ddd;
}

.bt-secondary-one:visited,
.bt-secondary-one.visited {
  outline-color: #373737;
  border-color: #373737;
}

/* end secondary-one */
/* secondary-danger */
.bt-secondary-danger {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #ff8989;
  border-color: #ff8989;
  outline-color: #ff8989;
}
.bt-secondary-danger svg {
  width: 0.7rem;
  margin-right: 5px;
}

.bt-secondary-danger:focus,
.bt-secondary-danger.focus {
  outline-offset: 2pt;
}

.bt-secondary-danger:hover,
.bt-secondary-danger.hover {
  box-shadow: rgb(0, 0, 0) 0px 15px 20px -17px;
}

.bt-secondary-danger:disabled {
  background: #6f6f6f;
  border-color: #6f6f6f;
  outline-color: #6f6f6f;
  color: #ccc;
  box-shadow: none;
}

.bt-secondary-danger:active,
.bt-secondary-danger.active {
  outline-color: #ddd;
  border-color: #ddd;
}

.bt-secondary-danger:visited,
.bt-secondary-danger.visited {
  outline-color: #373737;
  border-color: #373737;
}

/* end secondary-danger */
/* secondary-success */
.bt-secondary-success {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #81ff81;
  border-color: #81ff81;
  outline-color: #81ff81;
  color: #000;
}
.bt-secondary-success svg {
  width: 0.7rem;
  margin-right: 5px;
}

.bt-secondary-success:focus,
.bt-secondary-success.focus {
  outline-offset: 2pt;
}

.bt-secondary-success:hover,
.bt-secondary-success.hover {
  box-shadow: rgb(0, 0, 0) 0px 15px 20px -17px;
}

.bt-secondary-success:disabled {
  background: #6f6f6f;
  border-color: #6f6f6f;
  outline-color: #6f6f6f;
  color: #ccc;
  box-shadow: none;
}

.bt-secondary-success:active,
.bt-secondary-success.active {
  outline-color: #ddd;
  border-color: #ddd;
}

.bt-secondary-success:visited,
.bt-secondary-success.visited {
  outline-color: #373737;
  border-color: #373737;
}

/* end secondary-success */
/* secondary-info */
.bt-secondary-info {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #8a8aff;
  border-color: #8a8aff;
  outline-color: #8a8aff;
}
.bt-secondary-info svg {
  width: 0.7rem;
  margin-right: 5px;
}

.bt-secondary-info:focus,
.bt-secondary-info.focus {
  outline-offset: 2pt;
}

.bt-secondary-info:hover,
.bt-secondary-info.hover {
  box-shadow: rgb(0, 0, 0) 0px 15px 20px -17px;
}

.bt-secondary-info:disabled {
  background: #6f6f6f;
  border-color: #6f6f6f;
  outline-color: #6f6f6f;
  color: #ccc;
  box-shadow: none;
}

.bt-secondary-info:active,
.bt-secondary-info.active {
  outline-color: #ddd;
  border-color: #ddd;
}

.bt-secondary-info:visited,
.bt-secondary-info.visited {
  outline-color: #373737;
  border-color: #373737;
}

/* end secondary-info */
/* end secondary */
/* tertiary */
/* tertiary-one */
.bt-tertiary-one {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  border: none;
  outline: none;
  color: rgba(66, 66, 66, 0.8);
}
.bt-tertiary-one svg {
  width: 0.7rem;
  margin-right: 5px;
}

.bt-tertiary-one:focus,
.bt-tertiary-one.focus {
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline-offset: 2pt;
}

.bt-tertiary-one:hover,
.bt-tertiary-one.hover {
  box-shadow: rgb(0, 0, 0) 0px 15px 20px -17px;
}

.bt-tertiary-one:disabled {
  background: #6f6f6f;
  border-color: #6f6f6f;
  outline-color: #6f6f6f;
  color: #ccc;
  box-shadow: none;
}

.bt-tertiary-one:active,
.bt-tertiary-one.active {
  outline-color: #ddd;
  border-color: #ddd;
}

.bt-tertiary-one:visited,
.bt-tertiary-one.visited {
  outline-color: #373737;
  border-color: #373737;
}

/* end tertiary-one */
/* tertiary-danger */
.bt-tertiary-danger {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  border: none;
  outline: none;
  color: red;
}
.bt-tertiary-danger svg {
  width: 0.7rem;
  margin-right: 5px;
}

.bt-tertiary-danger:focus,
.bt-tertiary-danger.focus {
  outline: solid 1pt red;
  border: solid 1pt red;
  outline-offset: 2pt;
}

.bt-tertiary-danger:hover,
.bt-tertiary-danger.hover {
  box-shadow: rgb(0, 0, 0) 0px 15px 20px -17px;
}

.bt-tertiary-danger:disabled {
  background: #6f6f6f;
  border-color: #6f6f6f;
  outline-color: #6f6f6f;
  color: #ccc;
  box-shadow: none;
}

.bt-tertiary-danger:active,
.bt-tertiary-danger.active {
  outline-color: #ddd;
  border-color: #ddd;
}

.bt-tertiary-danger:visited,
.bt-tertiary-danger.visited {
  outline-color: #373737;
  border-color: #373737;
}

/* end tertiary-danger */
/* tertiary-success */
.bt-tertiary-success {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  border: none;
  outline: none;
  color: green;
}
.bt-tertiary-success svg {
  width: 0.7rem;
  margin-right: 5px;
}

.bt-tertiary-success:focus,
.bt-tertiary-success.focus {
  outline: solid 1pt green;
  border: solid 1pt green;
  outline-offset: 2pt;
}

.bt-tertiary-success:hover,
.bt-tertiary-success.hover {
  box-shadow: rgb(0, 0, 0) 0px 15px 20px -17px;
}

.bt-tertiary-success:disabled {
  background: #6f6f6f;
  border-color: #6f6f6f;
  outline-color: #6f6f6f;
  color: #ccc;
  box-shadow: none;
}

.bt-tertiary-success:active,
.bt-tertiary-success.active {
  outline-color: #ddd;
  border-color: #ddd;
}

.bt-tertiary-success:visited,
.bt-tertiary-success.visited {
  outline-color: #373737;
  border-color: #373737;
}

/* end tertiary-success */
/* tertiary-info */
.bt-tertiary-info {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  border: none;
  outline: none;
  color: blue;
}
.bt-tertiary-info svg {
  width: 0.7rem;
  margin-right: 5px;
}

.bt-tertiary-info:focus,
.bt-tertiary-info.focus {
  outline: solid 1pt blue;
  outline-offset: 2pt;
  border: solid 1pt blue;
}

.bt-tertiary-info:hover,
.bt-tertiary-info.hover {
  box-shadow: rgb(0, 0, 0) 0px 15px 20px -17px;
}

.bt-tertiary-info:disabled {
  background: #6f6f6f;
  border-color: #6f6f6f;
  outline-color: #6f6f6f;
  color: #ccc;
  box-shadow: none;
}

.bt-tertiary-info:active,
.bt-tertiary-info.active {
  outline-color: #ddd;
  border-color: #ddd;
}

.bt-tertiary-info:visited,
.bt-tertiary-info.visited {
  outline-color: #373737;
  border-color: #373737;
}

/* end tertiary-info */
/* end tertiary */
.bt-small {
  padding: 5px 15px;
}

aside.top-bar-mob {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  background: linear-gradient(whitesmoke, #eae5e5, #dfe0e1);
  text-align: center;
  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;
}

.top-bar {
  width: 100%;
  padding: 20px 30px;
  display: flex;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  background: #fff;
}
@media (min-width: 1366px) {
  .top-bar {
    padding: 10px 100px;
  }
}
@media (min-width: 600px) {
  .top-bar {
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
}
.top-bar .open-menu {
  margin-top: 12px;
}
@media (min-width: 600px) {
  .top-bar .open-menu {
    display: none;
  }
}
.top-bar .logo {
  position: relative;
  line-height: 1rem;
}
.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: #000;
  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%;
}
.top-bar nav ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
}
.top-bar nav ul .profile-menu {
  position: relative;
}
.top-bar nav ul .profile-menu > .user-name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  gap: 10px;
}
.top-bar nav ul .profile-menu > .user-name > span,
.top-bar nav ul .profile-menu > .user-name > img {
  line-height: 1rem;
}
.top-bar nav ul .profile-menu > .user-name > span {
  display: none;
}
@media (min-width: 800px) {
  .top-bar nav ul .profile-menu > .user-name > span {
    display: initial;
  }
}
.top-bar nav ul .profile-menu svg {
  width: 1.8rem;
  height: 1.8rem;
}
.top-bar nav ul .profile-menu .submenu {
  box-shadow: 1px 1px 5px 0px #c9c9c9;
  margin-top: 5px;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1;
  background: linear-gradient(whitesmoke, #eae5e5, #dfe0e1);
  border-radius: 0 0 20px 20px;
  padding: 10px;
  display: none;
  width: 200px;
}
.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: 15px;
  width: 100%;
  font-weight: bold;
  line-height: 1.5rem;
}
.top-bar nav ul .profile-menu .submenu ul li form {
  margin: 0;
  width: 100%;
}
.top-bar nav ul .profile-menu .submenu ul li form button {
  width: 100%;
}
.top-bar nav ul .cart-icon a {
  margin-top: 5px;
}
.top-bar nav ul .cart-icon a svg {
  width: 1.8rem;
  height: 1.8rem;
}
.top-bar nav a {
  text-decoration: none;
  color: rgba(66, 66, 66, 0.8);
  line-height: 1rem;
}
.top-bar nav a:hover {
  color: rgba(66, 66, 66, 0.8);
}
.top-bar nav:nth-child(2) {
  justify-content: center;
}
@media (min-width: 600px) {
  .top-bar nav:nth-child(2) {
    justify-content: flex-end;
  }
}
.top-bar nav.nav-main {
  padding: 20px;
  display: none;
}
@media (min-width: 600px) {
  .top-bar nav.nav-main {
    display: initial;
  }
}
.top-bar nav.nav-main > ul > li a {
  padding: 5px;
}
.top-bar nav.nav-main > ul > li a:hover {
  background: #eceaea;
  border-radius: 10px;
}
.top-bar nav.nav-profile-menu {
  display: inline-flex;
}
@media (min-width: 600px) {
  .top-bar nav.nav-profile-menu {
    display: flex;
  }
}

.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: rgba(66, 66, 66, 0.8);
}
.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: black;
  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: white;
}
.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: rgba(66, 66, 66, 0.8);
}
.top-bar-inter div.menu-left nav ul li .sign:hover,
.top-bar-inter div.menu-right nav ul li .sign:hover {
  background: #4e4e4e;
}
.top-bar-inter div.menu-left nav ul li .sign:active,
.top-bar-inter div.menu-right nav ul li .sign:active {
  background: #000;
}
.top-bar-inter div.menu-left nav ul li:hover,
.top-bar-inter div.menu-right nav ul li:hover {
  background: #4e4e4e;
}
.top-bar-inter div.menu-left nav ul li:hover > a,
.top-bar-inter div.menu-right nav ul li:hover > a {
  color: white;
}
.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: rgba(66, 66, 66, 0.8);
}

.form-area {
  min-height: 70vh;
  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: 30px;
  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: rgba(66, 66, 66, 0.8);
}
.input input:focus::placeholder {
  color: rgba(66, 66, 66, 0.8);
}
.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 {
  padding: 4px 0;
  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: 30px;
  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;
}

label {
  margin: 10px 0 5px 0;
  font-weight: bold;
  font-size: 0.9rem;
  display: inline-block;
}

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;
}
form .agree {
  display: grid;
  grid-template-columns: auto 100%;
  align-items: center;
  margin: 40px 0 10px;
  gap: 20px;
}
form .agree a {
  font-size: 0.9rem;
}
form .privacy-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 20px;
  margin: 10px 0 40px;
}

.login-form {
  padding: 20px;
}
@media (min-width: 600px) {
  .login-form {
    max-width: 500px;
    margin: auto;
    background: #F7F5F5;
    border-radius: 50px;
    padding: 80px 40px;
    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;
}

a {
  color: rgba(66, 66, 66, 0.8);
}

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;
}

h2 {
  line-height: 2rem;
}

body {
  letter-spacing: 0.025em;
}

.breacumb {
  font-size: 0.9rem;
  color: gray;
  margin: 0 auto 20px;
}
@media (min-width: 600px) {
  .breacumb {
    margin-bottom: 0;
  }
}
.breacumb a {
  color: inherit;
}

.title-admin {
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 5px 0;
}
.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: black;
  background: linear-gradient(180deg, black, transparent);
  position: relative;
  z-index: 1;
}

footer .footer {
  background: rgba(66, 66, 66, 0.8);
  color: white;
}
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: white;
  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 {
  max-width: 1170px;
  margin: auto;
  padding: 40px 30px 160px;
  font-size: 0.8rem;
  text-align: center;
}
@media (min-width: 600px) {
  footer .copy-right {
    padding: 40px 0;
  }
}
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: white;
  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: white;
  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: black;
  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 {
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 600px) {
  .top-bar-inter {
    padding: 0 100px;
  }
}
.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;
  display: none;
}
@media (min-width: 600px) {
  .top-bar-inter div.menu-left .user-name,
  .top-bar-inter div.menu-right .user-name {
    margin: 0 10px;
    display: initial;
  }
}
.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: black;
  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: white;
}
.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: rgba(66, 66, 66, 0.8);
}
.top-bar-inter div.menu-left nav ul li .sign:hover,
.top-bar-inter div.menu-right nav ul li .sign:hover {
  background: #4e4e4e;
}
.top-bar-inter div.menu-left nav ul li .sign:active,
.top-bar-inter div.menu-right nav ul li .sign:active {
  background: #000;
}
.top-bar-inter div.menu-left nav ul li:hover,
.top-bar-inter div.menu-right nav ul li:hover {
  background: #4e4e4e;
}
.top-bar-inter div.menu-left nav ul li:hover > a,
.top-bar-inter div.menu-right nav ul li:hover > a {
  color: white;
}
.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%;
  display: none;
}
@media (min-width: 600px) {
  .top-bar-inter .logo {
    width: initial;
    display: 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;
  justify-content: center;
  margin-top: 10px;
}
@media (min-width: 600px) {
  .submit {
    justify-content: flex-end;
  }
}
.submit .bt-primary-one {
  border-radius: 30px;
  padding: 10px 20px;
  margin-top: 20px;
}

.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: 30px;
  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: rgba(66, 66, 66, 0.8);
}
.input textarea:focus::placeholder,
.input input:focus::placeholder {
  color: rgba(66, 66, 66, 0.8);
}
.input .select {
  padding: 5px;
  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 {
  padding: 4px 0;
  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: 30px;
  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: 30px;
  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%;
}
.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: white;
}
.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;
}

.categories-list,
.tags-list {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
  align-items: flex-start;
}
.categories-list .item,
.tags-list .item {
  padding: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  background: #f2f2f2;
  border: solid thin rgba(66, 66, 66, 0.8);
  border-radius: 8px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.categories-list .item :nth-child(1),
.tags-list .item :nth-child(1) {
  font-weight: bold;
}
.categories-list .item :nth-child(2),
.tags-list .item :nth-child(2) {
  margin-top: 5px;
  display: none;
}
.categories-list .item:hover > :nth-child(2),
.tags-list .item:hover > :nth-child(2) {
  display: initial;
}

.msg-error,
.msg-info,
.msg-success {
  margin-bottom: 10px;
  padding: 30px;
  width: 100%;
  font-size: 1rem;
  line-height: 1.8rem;
  display: inline-block;
}
@media (min-width: 1366px) {
  .msg-error,
  .msg-info,
  .msg-success {
    padding: 20px 100px;
  }
}

.msg-error {
  background: #ff7878;
  color: #fff;
}
.msg-error > p,
.msg-error a {
  color: #fff;
}

.msg-success {
  background: rgb(1, 146, 1);
  color: #fff;
}
.msg-success > p,
.msg-success a {
  color: #fff;
}

.msg-info {
  background: blue;
  color: #fff;
}
.msg-info > p,
.msg-info a {
  color: #fff;
}

.input-error {
  margin: 2px 10px 0px 10px;
  color: #fff;
  line-height: 0.5rem;
  border-radius: 30px;
  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;
}

.input-info {
  margin: 2px 10px 0px 10px;
  color: #fff;
  line-height: 0.5rem;
  border-radius: 30px;
  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 20px;
  padding: 20px;
}
.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 {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: rgba(66, 66, 66, 0.8);
  color: white;
}
.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: white;
  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 {
  max-width: 1170px;
  margin: 50px auto;
}
.single-post .single-content {
  background: #ffffff;
  padding: 20px;
}
.single-post .single-content p {
  margin-bottom: 10px;
}
.single-post .single-content h2 {
  font-size: 2.6rem;
  line-height: 3rem;
  margin: 10px 0;
}
.single-post .single-content .single-abstract {
  margin: 10px 0;
  display: inline-block;
  font-style: italic;
}
.single-post .single-content .single-infs {
  margin: 10px 0;
  color: #353535;
  font-size: 0.8rem;
}
.single-post .single-content .single-infs .cat {
  background: rgba(66, 66, 66, 0.8);
  color: white;
  padding: 5px;
}
.single-post .single-content .single-thumbnail {
  width: 100%;
  margin-bottom: 50px;
}
.single-post .single-content .single-thumbnail img {
  width: 100%;
}
.single-post .single-content .single-thumbnail .single-thumbnail-legend {
  background: rgba(66, 66, 66, 0.8);
  color: white;
  padding: 5px 10px;
  margin-top: -8px;
  font-size: 0.8rem;
}
.single-post .single-content .text {
  font-size: 1.3rem;
  line-height: 2rem;
  text-align: justify;
}
.single-post .single-content .text p {
  line-height: inherit;
}
.single-post .single-content .text img {
  float: left;
  padding: 10px;
}
.single-post .single-content .single-tags {
  margin: 20px 0;
}
.single-post .single-content .single-tags h4 {
  display: inline-block;
}
.single-post .single-content .single-tags .item {
  padding: 5px;
  background: #191919;
  color: white;
  display: inline-block;
  margin: 5px;
  border-radius: 8px;
}
.single-post .single-content .about-multi-midia {
  display: inline-block;
  margin: 20px 0;
}
.single-post .single-content .about-multi-midia p {
  font-size: 1rem;
  margin: 10px 0 5px;
}
.single-post .single-content .about-multi-midia ul {
  padding-left: 20px;
}
.single-post .single-content .single-share ul {
  display: flex;
  flex-wrap: wrap;
}
.single-post .single-content .single-share ul li a {
  display: inline-block;
  margin: 10px;
}
.single-post .single-content .single-share ul li a svg {
  width: 2rem;
  height: 2rem;
}
.single-post .single-content .single-share ul li .copy {
  border-radius: 5px;
  background: black;
  color: white;
  padding: 5px;
  font-size: 0.8rem;
  font-weight: bold;
  margin: 10px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.single-post .single-content .single-share ul li .copy:active {
  background: #D8171D;
}
.single-post .single-content .similiar-box {
  margin-top: 20px;
}
.single-post .single-content .similiar-box > h3 {
  margin: 10px 0;
}
.single-post .single-content .similiar-box .similiar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.single-post .single-sidebar .newsletter {
  background: rgba(66, 66, 66, 0.8);
  border-radius: 8px;
  padding: 30px 20px 20px;
  color: white;
}
.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: white;
  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: white;
}
.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: black;
}
.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: white;
  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: white;
}
.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;
}

.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 {
  padding: 30px;
}
@media (min-width: 600px) {
  .home-dashboard {
    padding: 10px 100px;
    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 bt-small {
  margin: 0 10px;
}

.list-users,
.list-roles,
.list-permissions {
  background-color: #ededed;
  margin-top: 10px;
  border-radius: 18px;
  overflow: hidden;
}
.list-users form,
.list-roles form,
.list-permissions form {
  display: inline-block;
  width: auto;
}
.list-users .item,
.list-roles .item,
.list-permissions .item {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  min-width: 200px;
  justify-content: space-between;
}
@media (min-width: 600px) {
  .list-users .item,
  .list-roles .item,
  .list-permissions .item {
    grid-template-columns: 1fr 1fr;
  }
}
.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: #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);
}

.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: rgba(66, 66, 66, 0.8);
  border-radius: 30px;
  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: white;
  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: 30px;
  padding: 10px 20px;
  margin: 30px 0 0;
  color: rgba(66, 66, 66, 0.8);
  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 {
  padding: 30px;
}
@media (min-width: 600px) {
  .dashboard-main {
    padding: 10px 100px;
  }
}

.home-products {
  padding: 10px 0;
  background: #f0eeee;
}
.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;
  color: #D8171D;
  text-align: center;
  text-transform: uppercase;
}
.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;
  }
}
.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-home-box > #products-home > .item > .product > .others-colors {
  padding: 10px;
  width: 100%;
}
#products-home-box > #products-home > .item > .product > .others-colors > a {
  width: 1.5rem;
  height: 1.5rem;
}

.products-list {
  max-width: 1170px;
  margin: auto;
}
.products-list .products {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 600px) {
  .products-list .products {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
}
.products-list .products > .product {
  margin: 0;
  background: #fff;
}
@media (min-width: 600px) {
  .products-list .products > .product {
    margin: 0 0 20px;
  }
}
.products-list .products > .product > .title {
  margin: 0;
  padding: 0;
}
.products-list .products > .product > .title > h2 {
  margin: 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:nth-child(1) {
  padding: 5px;
}
.products-list .products > .product > a:nth-child(1):hover {
  background: #eceaea;
  border-radius: 10px;
}
.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;
  align-items: flex-end;
  text-align: center;
  border: solid thin #ededed;
  background: #f3f3f3;
  padding: 10px;
  margin: 10px;
}
@media (min-width: 600px) {
  .product {
    border-radius: 10px;
  }
}
.product:hover {
  box-shadow: 1px 1px 5px 0px #c9c9c9;
}
.product .title {
  margin-top: 10px;
  padding-top: 10px;
  min-height: 5rem;
  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;
}
.product .bt-primary-one {
  background: #D8171D;
  border: solid thin #D8171D;
}

.single-products .line-one {
  position: relative;
}
@media (min-width: 600px) {
  .single-products .line-one {
    max-width: 1170px;
    margin: auto;
    gap: 20px;
    display: grid;
    grid-template-columns: 2fr 3fr;
  }
}
.single-products .line-one .side-description {
  padding: 10px;
  position: relative;
}
@media (min-width: 600px) {
  .single-products .line-one .side-description {
    padding-right: 20px;
  }
}
@media (min-width: 1170px) {
  .single-products .line-one .side-description {
    padding: 0;
  }
}
.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 {
  padding: 0;
}
.single-products .line-one .side-description .description p {
  text-align: justify;
}
.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;
  gap: 0 10px;
}
.single-products .line-one .side-description .buy .voltage {
  margin-bottom: 10px;
}
.single-products .line-one .side-description .buy .voltage a {
  text-decoration: none;
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: solid thin rgba(66, 66, 66, 0.8);
}
.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: rgba(66, 66, 66, 0.8);
  color: #fff;
}
.single-products .line-one .side-description .buy .add {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 8ch;
}
.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 #5A5858;
  background: #5A5858;
  color: #fff;
  padding: 5px;
  border-radius: 100%;
  width: 2rem;
  height: 2rem;
  font-weight: bold;
}
.single-products .line-one .side-description .buy .action {
  background: #D8171D;
  border: #D8171D;
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 600px) {
  .single-products .line-one .side-description .buy .action {
    width: 50%;
    margin-top: 0;
  }
}
.single-products .technical-speccification {
  padding: 10px;
  margin: auto;
  max-width: 1170px;
}
.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 {
  max-width: 1170px;
  margin: 20px auto;
  padding: 0 10px;
}
@media (min-width: 600px) {
  .single-products .description {
    padding: 0;
  }
}
.single-products .description h3 {
  margin: 10px 0;
  font-size: 1.6rem;
}
.single-products .description p {
  text-align: justify;
  margin: 10px 0;
}

.similars-title {
  max-width: 1170px;
  margin: auto;
  margin: 40px auto 0;
  padding: 10px;
}
@media (min-width: 600px) {
  .similars-title {
    padding: 0;
  }
}

.similiars {
  max-width: 1170px;
  margin: auto;
  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 {
  max-width: 1170px;
  margin: 10px auto;
}
#similiars-box > #similiars > .item > .product {
  margin: 0;
}
@media (min-width: 600px) {
  #similiars-box > #similiars > .item > .product {
    padding: 10px 10px 50px;
  }
}
@media (max-width: 599px) {
  #similiars-box > #similiars > .item > .product {
    background: none;
    border: none;
  }
}
#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 {
  max-width: 1170px;
  margin: 20px auto 0;
}

.cart {
  max-width: 1170px;
  margin: auto;
  padding: 10px;
}
.cart h2 {
  text-align: center;
  margin: 20px 0 10px;
}
@media (min-width: 600px) {
  .cart h2 {
    text-align: left;
  }
}

.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: 600px) {
  .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 {
  display: none;
  padding: 20px 0;
  background: #e1e1e5;
  text-align: center;
}
@media (min-width: 600px) {
  .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 3fr 2fr 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 {
  align-items: center;
}
@media (min-width: 600px) {
  .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: 1fr 3fr 2fr 1fr 1fr 1fr;
    align-items: center;
    text-align: center;
  }
}
.carts-list .line > div,
.notes .line > div,
.actions-list .line > div,
.historic-purchases .line > div,
.list-leads-dashboard .line > div,
.list-actions-dashboard .line > div,
.list-carts-dashboard .line > div,
.list-products-dashboard .line > div,
.products-area .line > div,
.list-orders-dashboard .line > div,
.list-products-order .line > div,
.list-orders .line > div,
.list-cart-products .line > div {
  padding: 10px;
}
.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 > .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;
}
.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: space-around;
}
.carts-list > :nth-child(odd),
.notes > :nth-child(odd),
.actions-list > :nth-child(odd),
.historic-purchases > :nth-child(odd),
.list-leads-dashboard > :nth-child(odd),
.list-actions-dashboard > :nth-child(odd),
.list-carts-dashboard > :nth-child(odd),
.list-products-dashboard > :nth-child(odd),
.products-area > :nth-child(odd),
.list-orders-dashboard > :nth-child(odd),
.list-products-order > :nth-child(odd),
.list-orders > :nth-child(odd),
.list-cart-products > :nth-child(odd) {
  background: #f5f5fa;
}
.carts-list > :nth-child(even),
.notes > :nth-child(even),
.actions-list > :nth-child(even),
.historic-purchases > :nth-child(even),
.list-leads-dashboard > :nth-child(even),
.list-actions-dashboard > :nth-child(even),
.list-carts-dashboard > :nth-child(even),
.list-products-dashboard > :nth-child(even),
.products-area > :nth-child(even),
.list-orders-dashboard > :nth-child(even),
.list-products-order > :nth-child(even),
.list-orders > :nth-child(even),
.list-cart-products > :nth-child(even) {
  background: #e1e1e5;
}
.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: 30px;
  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;
  }
}
.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 .titles {
  border-radius: 10px 10px 0 0;
}
.list-orders-dashboard .line {
  border-radius: 10px;
}
.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: #1f1f29;
}
.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;
}
.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: #1f1f29;
}
@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-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 #dedede;
  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: 0 10px;
}
@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 .titles {
  grid-template-columns: 1fr 1fr 3fr 1fr 1fr 2fr;
}
.list-products-dashboard .item {
  text-align: center;
  padding: 10px;
}
@media (min-width: 600px) {
  .list-products-dashboard .item {
    display: grid;
    grid-template-columns: 1fr 1fr 3fr 1fr 1fr 2fr;
    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 {
  grid-template-columns: 1fr 5fr 3fr 2fr 2fr 3fr;
}
.list-carts-dashboard .item {
  align-items: center;
  text-align: center;
  grid-template-columns: 1fr 5fr 3fr 2fr 2fr 3fr;
}
@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: #f8fafa;
}
.info-footer .info-footer-content {
  padding: 20px;
}
@media (min-width: 600px) {
  .info-footer .info-footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }
}
@media (min-width: 900px) {
  .info-footer .info-footer-content {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1366px) {
  .info-footer .info-footer-content {
    padding: 20px 100px;
  }
}
.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;
  word-break: break-all;
}
.info-footer svg {
  fill: rgba(66, 66, 66, 0.8);
}

.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;
}

.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 #1f1f29;
}

.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 {
  max-width: 1170px;
  margin: auto;
  margin-bottom: 40px;
  padding: 20px;
}
@media (min-width: 600px) {
  .guaranteed {
    padding: 0;
  }
}
.guaranteed p {
  line-height: 1.5rem;
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: justify;
}
.guaranteed ul,
.guaranteed ol {
  margin-left: 20px;
  margin-bottom: 10px;
}
.guaranteed li {
  line-height: 1.5rem;
  margin-bottom: 10px;
}
.guaranteed ol > li {
  font-weight: bold;
}
.guaranteed h1,
.guaranteed h2,
.guaranteed h3,
.guaranteed h4,
.guaranteed h5 {
  margin-bottom: 10px;
}

.cookies-accept {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: #333;
  color: #f5f5fa;
  border-radius: 10px;
  box-shadow: 1px 1px 5px 0px #c9c9c9;
  max-width: 1170px;
  margin: 10px;
  padding: 20px;
  text-align: center;
}
@media (min-width: 600px) {
  .cookies-accept {
    display: grid;
    grid-template-columns: 9fr 1fr;
    align-items: center;
    gap: 30px;
  }
}
.cookies-accept p {
  text-align: justify;
  color: inherit;
}
.cookies-accept .bt-primary-one {
  background: #f5f5fa;
  color: #1f1f29;
  margin-top: 20px;
}
.cookies-accept a {
  color: #f5f5fa;
}

.about {
  padding: 20px;
  background: #dedede;
}
@media (min-width: 600px) {
  .about {
    padding: 120px 10px;
  }
}
.about h2 {
  max-width: 1170px;
  margin: auto;
  text-align: center;
}
@media (min-width: 600px) {
  .about h2 {
    text-align: left;
  }
}
.about .about-concept {
  max-width: 1170px;
  margin: auto;
}
@media (min-width: 600px) {
  .about .about-concept {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
.about .about-concept p {
  margin-bottom: 20px;
  text-align: justify;
}
.about .about-concept .call-1 {
  font-size: 2.2rem;
  line-height: 2.6rem;
  margin-bottom: 0;
  text-transform: uppercase;
  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 .legend {
  font-weight: bold;
  text-align: right;
  font-style: normal;
}

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

.single-breacumb {
  max-width: 1170px;
  margin: auto;
  color: #1f1f29;
  padding: 10px;
}
.single-breacumb a {
  color: #1f1f29;
}

.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 {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  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 {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  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: 20px 0;
}
@media (min-width: 600px) {
  .delivery-simulator {
    width: 77%;
  }
}
.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 10px 40px 10px;
}
.depoimentos-home h2 {
  margin: 20px 0 0;
  color: #D8171D;
  text-align: center;
  text-transform: uppercase;
}
.depoimentos-home .call-depoimentos {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 20px;
  font-weight: normal;
  text-align: center;
}
.depoimentos-home .car-mol-23-multi-box {
  max-width: 1170px;
}
.depoimentos-home .depoimentos-mobile-box,
.depoimentos-home .depoimentos-box {
  display: none;
  align-items: center;
  width: 100%;
  margin: auto;
  position: relative;
  max-width: 1170px;
}
@media (min-width: 600px) {
  .depoimentos-home .depoimentos-mobile-box,
  .depoimentos-home .depoimentos-box {
    display: flex;
  }
}
.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: rgba(66, 66, 66, 0.8);
  margin-bottom: 30px;
  border-radius: 15px;
  padding: 50px 50px 100px 50px;
  max-width: 1170px;
  margin: auto;
  height: 300px;
  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: 520px;
}
#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 {
  background: #fff;
  color: rgba(66, 66, 66, 0.8);
  margin-bottom: 30px;
  padding: 50px 50px 100px 50px;
  max-width: 1170px;
  width: 100%;
  height: 300px;
  overflow: hidden;
  line-height: 2rem;
  border-radius: 18px;
}
#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;
}

@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;
}

.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;
}

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

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

.whatsapp-float-link-mob,
.whatsapp-float-link {
  display: none;
  padding: 15px;
  position: fixed;
  bottom: 30px;
  right: 0;
  z-index: 102;
  border-radius: 37px 0 0 37px;
  background: #00e676;
  fill: white;
  box-shadow: 3px 3px 14px -7px rgba(66, 66, 66, 0.8);
  flex-wrap: wrap;
  overflow: hidden;
  transition: right 2s;
  text-decoration: none;
}
@media (min-width: 600px) {
  .whatsapp-float-link-mob,
  .whatsapp-float-link {
    display: flex;
    padding: 15px 20px 12px 15px;
  }
}
.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: 800px) {
  .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:hover {
  right: 0;
}

.whatsapp-float-link-mob {
  display: flex;
}
@media (min-width: 600px) {
  .whatsapp-float-link-mob {
    display: none;
  }
}

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

.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;
  }
}

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

.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: 900px) {
  .home-destaque .hd-h1-hd-image-button .hd-image-button {
    margin: 82px 0;
  }
}
@media (min-width: 600px) {
  .home-destaque .hd-h1-hd-image-button .hd-image-button {
    width: 70%;
    gap: 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;
}
.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;
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  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;
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  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%;
}
.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;
}
.pop-up-leave-page > .pop-up-content {
  background: #fff;
  width: 100%;
  padding: 10px;
  background: #ededed;
  border-radius: 50px;
  padding: 80px 40px;
  box-shadow: 1px 1px 5px 0 #c9c9c9;
  position: relative;
  text-align: center;
}
@media (min-width: 600px) {
  .pop-up-leave-page > .pop-up-content {
    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: 340px;
  display: inline-block;
}
.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 > a,
.pagination-personal > .navigation-pages > span {
  background-color: rgba(66, 66, 66, 0.8);
  border: solid 1pt rgba(66, 66, 66, 0.8);
  outline: solid 1pt rgba(66, 66, 66, 0.8);
  color: #fff;
  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: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  text-decoration: none;
  margin: 2px;
  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;
}

.home-line-2-box {
  background: #f0eeee;
}
.home-line-2-box .home-line-2 {
  display: flex;
  flex-direction: column-reverse;
  max-width: 1170px;
  margin: auto;
}
@media (min-width: 600px) {
  .home-line-2-box .home-line-2 {
    display: grid;
    grid-template-columns: 1fr 3fr;
  }
}
@media (min-width: 600px) {
  .home-line-2-box .home-line-2 {
    padding-bottom: 50px;
  }
}
.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;
  border-radius: 17px;
  margin: 10px;
  min-height: 455px;
  text-align: center;
  display: inline-block;
}
@media (min-width: 600px) {
  .home-line-2-box .home-line-2 > .chamada-para-modelos {
    min-height: 300px;
  }
}
.home-line-2-box .home-line-2 > .chamada-para-modelos > h3 {
  text-align: center;
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: normal;
  padding: 20px 20px 0px;
}
.home-line-2-box .home-line-2 > .chamada-para-modelos > h4 {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8rem;
  padding: 5px 20px 0;
}
.home-line-2-box .home-line-2 > .chamada-para-modelos > a {
  background: #D8171D;
  border: solid thin #D8171D;
  margin: 0 20px;
  text-align: center;
}
.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: 2.5rem;
  font-weight: normal;
  padding: 5px 20px 10px;
}
@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;
}
@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: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;
}
@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: 30px;
  }
}

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

.examples {
  max-width: 1170px;
  margin: 10px auto;
  padding: 30px 30px 50px;
  border-radius: 18px;
  background: #e3e3e3;
}
@media (min-width: 600px) {
  .examples {
    padding: 50px 30px 100px;
  }
}
.examples > h1 {
  width: 100%;
  text-align: center;
  line-height: 1.5rem;
  font-size: 1rem;
}
.examples > h2 {
  width: 100%;
  text-align: center;
  line-height: 1.5rem;
  font-weight: normal;
}
@media (min-width: 600px) {
  .examples > h2 {
    margin-bottom: 40px;
  }
}
.examples > .examples-content {
  position: relative;
}
.examples > .examples-content > .examples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 5px;
  position: relative;
  z-index: 2;
  width: 97%;
  margin: auto;
}
.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 {
  max-width: 1170px;
  margin: auto;
  padding: 30px;
}
@media (min-width: 600px) {
  .one-line {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
  }
}
.one-line > figure {
  border-radius: 18px;
  overflow: hidden;
  margin: 10px 0;
}
.one-line > figure img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.one-line > .one-line-text p {
  text-align: justify;
  margin-bottom: 10px;
}
.one-line > .one-line-text p > .bt-primary-one {
  margin-top: 10px;
  background: #D8171D;
  border: solid thin #D8171D;
}

.two-line {
  max-width: 1170px;
  margin: auto;
  padding: 30px;
  background: #e3e3e3;
  border-radius: 18px;
}
@media (min-width: 600px) {
  .two-line {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
  }
}
.two-line > .image > figure {
  border-radius: 18px;
  overflow: hidden;
}
.two-line > .image > figure > img {
  width: 100%;
  height: 100%;
}
.two-line > figure {
  border-radius: 18px;
  overflow: hidden;
  margin: 10px 0;
}
.two-line > figure img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.two-line > .two-line-text p {
  text-align: justify;
  margin-bottom: 10px;
}
.two-line > .two-line-text p > .bt-primary-one {
  margin-top: 10px;
  background: #D8171D;
  border: solid thin #D8171D;
}

.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 h2 {
  width: 100%;
  max-width: 1170px;
  margin: 10px auto 10px;
  padding: 0 10px;
}
.posts-list-box > .descricao-blog {
  max-width: 1170px;
  margin: auto;
  margin-bottom: 20px;
  padding: 0 10px;
}
.posts-list-box .posts-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0 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);
}
@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: white;
}
.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 {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
  align-items: flex-start;
}
.categories-list .item,
.tags-list .item {
  padding: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  background: #f2f2f2;
  border: solid thin #333;
  border-radius: 8px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.categories-list .item :nth-child(1),
.tags-list .item :nth-child(1) {
  font-weight: bold;
}
.categories-list .item :nth-child(2),
.tags-list .item :nth-child(2) {
  margin-top: 5px;
  display: none;
}
.categories-list .item:hover > :nth-child(2),
.tags-list .item:hover > :nth-child(2) {
  display: initial;
}

.posts-list .item {
  width: 50%;
  background: white;
  padding: 10px;
  position: relative;
}
.posts-list .item a {
  display: inline-block;
}
.posts-list .item a img {
  width: 100%;
}
.posts-list .item a:nth-child(1) {
  width: 100%;
  max-height: 200px;
  overflow: hidden;
}
.posts-list .item a:nth-child(3) {
  width: 100%;
}
.posts-list .item .draft {
  background: red;
  padding: 10px;
  color: white;
}

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

.posts-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1170px;
  margin: auto auto 20px;
}
.posts-list .item {
  width: 100%;
}

.categories-on-post {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.categories-on-post > .item {
  border-radius: 8px;
  padding: 5px;
}
.categories-on-post > .item:hover {
  cursor: pointer;
}

.tags-on-post {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
  margin-bottom: 20px;
}
.tags-on-post > input {
  padding: 5px;
  width: 100%;
  border-radius: 8px;
  border: solid thin #ccc;
}
.tags-on-post > .item {
  border-radius: 8px;
  padding: 5px;
  background: #ccc;
  position: relative;
}
.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;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
}

#thumbnail_post {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  background-color: #ccc;
}

.sub-header {
  max-width: 1170px;
  margin: auto;
}

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

.similiar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.similiar > .item > .thumbnail {
  width: 100%;
}

.posts-list-box {
  margin-bottom: 50px;
}

.bt-toggle {
  background: #fff;
  border-radius: 8px;
  display: inline-flex;
  position: relative;
  margin-bottom: 15px;
}
.bt-toggle > .bt-toggle-opt {
  border-radius: 8pt;
  padding: 10px;
  font-weight: bold;
  text-decoration: none;
}
.bt-toggle > .active {
  background: #f7eada;
}

.others-colors {
  display: flex;
  justify-content: center;
  padding: 20px;
}
.others-colors > a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  padding: 5px;
  margin: 5px;
}
.others-colors > .white {
  background: #fff;
  outline: solid 2pt #fff;
}
.others-colors > .white.active {
  border: solid 2pt #000;
  outline: solid 4pt #fff;
}
.others-colors > .black {
  background: #000;
  outline: solid 2pt #000;
}
.others-colors > .active {
  border: solid 2pt #fff;
}
.others-colors > .bege {
  background: #d1bb9d;
  outline: solid 2pt #d1bb9d;
}
.others-colors > .chrome {
  background: #ccc;
  outline: solid 2pt #ccc;
}
.others-colors > .chrome.active {
  border: solid 2pt #000;
  outline: solid 2pt #ccc;
}
.others-colors > .croma {
  background: #ccc;
  outline: solid 2pt #ccc;
}

.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);
  }
}

.parcelamento {
  background: #fff;
  border-radius: 30px;
}
.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 #000;
  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: #000;
  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 > .parcela-opt-bt:hover {
  background: #000;
}
.parcelamento > .parcelas > .parcela > .selecionar > .parcela-opt.selected > .parcela-opt-bt {
  background: #000;
  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 > .parcelas > .parcela:hover > .selecionar > .parcela-opt > .parcela-opt-bt {
  background: #000;
}
.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: 30px;
  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: #D8171D;
  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: 2rem;
  text-decoration: none;
}

.welcome-testes {
  padding: 30px;
}
@media (min-width: 1366px) {
  .welcome-testes {
    padding: 100px 100px 20px;
  }
}

.choice-teste {
  padding: 30px;
}
@media (min-width: 800px) {
  .choice-teste {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1366px) {
  .choice-teste {
    grid-template-columns: 1fr 1fr;
    padding: 20px 100px 100px;
  }
}
@media (min-width: 1920px) {
  .choice-teste {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.choice-teste > .teste-item > h2 {
  font-size: 1.4rem;
  line-height: 1.68rem;
  margin: 0 0 20px;
}
.choice-teste > .teste-item > .thumbnail > a > picture > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  box-shadow: rgb(0, 0, 0) 0px 15px 20px -17px;
}
.choice-teste > .teste-item > p {
  text-align: justify;
  margin: 30px 0 0;
}
.choice-teste > .teste-item > p > .bt-primary-one {
  margin-bottom: 20px;
}

.login-message {
  text-align: center;
  margin: 20px;
}

.voucher-error {
  padding: 100px 100px;
}
.voucher-error > ul {
  padding-left: 20px;
}

.making-test {
  padding: 30px;
}
@media (min-width: 800px) {
  .making-test {
    min-height: 57vh;
  }
}
@media (min-width: 1366px) {
  .making-test {
    padding: 100px;
  }
}
.making-test > h1 {
  font-size: 1.3rem;
  line-height: 2.34rem;
}
@media (min-width: 600px) {
  .making-test > h1 {
    font-size: 1.8rem;
    line-height: 3.24rem;
    margin-bottom: 55px;
  }
}

.answering-test {
  padding-bottom: 30px;
  background: #fff;
}
.answering-test > h1 {
  padding: 30px;
}
.answering-test > p {
  padding: 5px 30px;
}
@media (min-width: 1366px) {
  .answering-test {
    padding: 100px;
  }
  .answering-test > h1 {
    padding: 5px 0;
  }
  .answering-test > p {
    padding: 5px 0;
  }
}

.questions {
  padding: 20px 0;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 1280px;
}
.questions > .question {
  padding: 20px;
}
.questions > .question > .msg-error {
  padding: 0;
}
.questions > .question > h3 {
  margin-bottom: 5px;
}
.questions > .question > .answers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .questions > .question > .answers {
    grid-template-columns: 8fr 1fr 8fr;
  }
}
.questions > .question > .answers > .card {
  border-radius: 18px;
  border: solid thin #ccc;
  background: #fff;
  padding: 20px;
  cursor: default;
}
.questions > .question > .answers > .card > p > .letter {
  background: #73854d;
  color: #fff;
  border-radius: 100%;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1rem;
  margin-right: 10px;
}
.questions > .question > .answers > .card:hover {
  background: #333;
}
.questions > .question > .answers > .card:hover > p {
  color: #fff;
}
.questions > .question > .answers > .selected {
  background: #333;
}
.questions > .question > .answers > .selected > p {
  color: #fff;
}
.questions > .question > .answers > .card-or {
  border-radius: 18px;
  border: solid thin #ccc;
  text-align: center;
}
@media (min-width: 600px) {
  .questions > .question > .answers > .card-or {
    padding: 20px;
  }
}
.questions .question.pair {
  background: #e9e9e9;
}
.questions .question.odd {
  background: #f1f1f1;
}
.questions .question.error {
  border: solid thin #ff0000;
}

.questions-hbdi {
  background: #fff;
  overflow: hidden;
}
.questions-hbdi > .question {
  padding: 30px;
  margin-bottom: 20px;
}
.questions-hbdi > .question > h3 {
  margin-bottom: 20px;
}
.questions-hbdi > .question > .answers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.questions-hbdi > .question > .msg-error {
  padding: 0;
}
@media (min-width: 800px) {
  .questions-hbdi > .question.odd {
    background: #f2f2f2;
  }
}
.questions-hbdi > .question.error {
  border: solid thin #ff8989;
}

.actions-resend {
  display: flex;
  flex-wrap: wrap;
}
.actions-resend > form {
  display: inline-block;
}

.clear-and-submit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.price-coupon {
  display: grid;
  gap: 30px;
  margin: 20px 0;
}
@media (min-width: 800px) {
  .price-coupon {
    grid-template-columns: 1fr 1fr;
  }
}
.price-coupon > .price {
  display: grid;
  padding: 30px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  background: #f8fafa;
  border: 1px solid #eee;
  box-shadow: rgb(188, 188, 188) 0px 15px 20px -17px;
}
@media (min-width: 600px) {
  .price-coupon > .price {
    grid-template-columns: 1fr;
    padding: 30px 40px;
    border-radius: 39px;
  }
}
@media (min-width: 1920px) {
  .price-coupon > .price {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
.price-coupon > .price > .call > p {
  font-weight: bold;
  color: #000;
  font-size: 1.4rem;
  line-height: 2.1rem;
}
.price-coupon > .price > .call > p:nth-child(2) {
  font-size: 1.8rem;
  line-height: 2.7rem;
}
.price-coupon > .price > .price {
  font-weight: bold;
  font-size: 3rem;
  line-height: 4.5rem;
}
@media (min-width: 1080px) {
  .price-coupon > .price > .price {
    font-size: 4.5rem;
    line-height: 6.75rem;
  }
}
.price-coupon > .coupon {
  background: #f8fafa;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 30px 40px;
  box-shadow: rgb(188, 188, 188) 0px 15px 20px -17px;
}
@media (min-width: 600px) {
  .price-coupon > .coupon {
    border-radius: 39px;
  }
}
.price-coupon > .coupon > form {
  flex-wrap: wrap;
  display: inline-flex;
}
@media (min-width: 600px) {
  .price-coupon > .coupon > form {
    gap: 10px;
  }
}
@media (min-width: 1920px) {
  .price-coupon > .coupon > form {
    gap: 30px;
  }
  .price-coupon > .coupon > form > label {
    display: inline-block;
    width: auto;
  }
}
.price-coupon > .coupon > form > .input {
  display: inline-block;
  width: auto;
}
.price-coupon > .coupon > form > button {
  margin-top: 20px;
}
@media (min-width: 600px) {
  .price-coupon > .coupon > form > button {
    margin: 2px 0;
  }
}

.background-profissionais {
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
}

.steps-test {
  display: grid;
  gap: 50px;
  padding: 100px 0 20px;
}
@media (min-width: 800px) {
  .steps-test {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1080px) {
  .steps-test {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1920px) {
  .steps-test {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 2000px) {
  .steps-test {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
.steps-test > .step {
  background: #f9f5f3;
  border-radius: 39px;
  padding: 30px 40px 30px 124px;
  box-shadow: rgb(188, 188, 188) 0px 15px 20px -17px;
  position: relative;
  text-align: right;
  align-items: center;
}
@media (min-width: 600px) {
  .steps-test > .step {
    display: flex;
  }
}
.steps-test > .step > img {
  position: absolute;
  left: -20px;
  bottom: 0;
}
.steps-test > .step > .number {
  position: absolute;
  top: -15px;
  right: 32px;
  font-size: 3.5rem;
  font-weight: bold;
  transform: scale(0.5);
}
.steps-test > .step > p {
  font-weight: bold;
  position: relative;
}
.steps-test > .step:nth-child(1) > .number {
  animation: numberGrow 1s both 1s;
}
.steps-test > .step:nth-child(2) > .number {
  animation: numberGrow 1s both 2s;
}
.steps-test > .step:nth-child(3) > .number {
  animation: numberGrow 1s both 3s;
}
.steps-test > .step:nth-child(4) > .number {
  animation: numberGrow 1s both 4s;
}
.steps-test > .step:nth-child(5) > .number {
  animation: numberGrow 1s both 5s;
}
@keyframes numberGrow {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}

.contact-board {
  margin-top: 20px;
  background: #f8fafa;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 30px;
  box-shadow: rgb(188, 188, 188) 0px 15px 20px -17px;
  text-align: center;
}
@media (min-width: 800px) {
  .contact-board {
    border-radius: 39px;
    padding: 30px 40px 80px 40px;
  }
}
@media (min-width: 1366px) {
  .contact-board {
    margin-top: 100px;
  }
}
.contact-board > h2 {
  font-weight: bold;
  padding-bottom: 30px;
  font-size: 1.8rem;
}
@media (min-width: 600px) {
  .contact-board > h2 {
    margin-top: 30px;
  }
}
@media (min-width: 1366px) {
  .contact-board > h2 {
    margin: 50px 0 50px;
    padding: 48px 20px 0;
  }
}
.contact-board > .contacts {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 600px) {
  .contact-board > .contacts {
    gap: 30px;
  }
}
.contact-board > .contacts > .bt-primary-one {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 1rem;
  word-break: break-all;
}
@media (min-width: 600px) {
  .contact-board > .contacts > .bt-primary-one {
    align-items: center;
  }
}
.contact-board > .contacts > .bt-primary-one > img {
  line-height: 1rem;
  display: none;
}
@media (min-width: 600px) {
  .contact-board > .contacts > .bt-primary-one > img {
    display: initial;
  }
}
@media (min-width: 600px) {
  .contact-board > .contacts > .whats-link-mob {
    display: none;
  }
}
.contact-board > .contacts > .whats-link-pc {
  display: none;
}
@media (min-width: 600px) {
  .contact-board > .contacts > .whats-link-pc {
    display: flex;
  }
}
.contact-board > p {
  text-align: center;
  margin: 50px 0 20px;
}
.contact-board > img {
  margin: auto;
  display: inline-block;
}

.know-more {
  display: grid;
  gap: 30px;
  margin: 60px 0;
}
@media (min-width: 800px) {
  .know-more {
    grid-template-columns: 1fr 1fr;
    padding: 50px 0;
  }
}
.know-more > .text > h2 {
  font-size: 1.8rem;
  line-height: 2.16rem;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .know-more > .text > h2 {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}
.know-more > .image {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.know-more > .image > img {
  margin: auto;
}
.know-more > .image > p {
  width: 100%;
  font-weight: bold;
  font-size: 2rem;
}

.benefits-applications {
  display: grid;
  gap: 30px;
  margin: 60px 0;
}
@media (min-width: 800px) {
  .benefits-applications {
    grid-template-columns: 1fr 1fr;
    padding: 50px 0;
  }
}
.benefits-applications > .text .benefits > h2 {
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .benefits-applications > .text .benefits > h2 {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}
.benefits-applications > .text .benefits > ul {
  padding: 0 0 0 25px;
}
.benefits-applications > .text .applications > h2 {
  font-size: 1.8rem;
  line-height: 2.7rem;
  margin: 20px 0;
}
@media (min-width: 600px) {
  .benefits-applications > .text .applications > h2 {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}
.benefits-applications > .text .applications > ul {
  padding: 0 0 0 25px;
  margin-bottom: 20px;
}
.benefits-applications > .image {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}
.benefits-applications > .image > .shadow {
  content: "";
  display: inline-block;
  position: absolute;
  width: 400px;
  height: 400px;
  box-shadow: 0 0 216px 31px #c9c9c9;
  background: #fff;
  border-radius: 100%;
  background: radial-gradient(rgb(255, 255, 255), rgb(218, 218, 218));
  z-index: -1;
}
.benefits-applications > .image > img {
  margin: auto;
}
.benefits-applications > .image > p {
  font-size: 1.8rem;
  line-height: 2.16rem;
  text-align: center;
  font-weight: bold;
}

.watch-video {
  text-align: center;
}
.watch-video > h2 {
  font-size: 1.8rem;
  line-height: 5.04rem;
}
.go-deeper {
  margin: 60px 0;
}
@media (min-width: 600px) {
  .go-deeper {
    background: #fff;
    padding: 50px 0;
    border-radius: 39px;
  }
}
.go-deeper > .text > h2 {
  font-size: 1.8rem;
  line-height: 2.16rem;
  margin: 20px 0 15px;
}
.go-deeper > .text > h3 {
  font-size: 1.3rem;
  line-height: 1.95rem;
  margin: 20px 0 10px;
}
.go-deeper > .text p {
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .go-deeper > .text p {
    max-width: 1300px;
  }
}
.go-deeper > .text ul {
  margin: 10px 0 20px;
  padding: 0 0 0 20px;
}

@media (min-width: 600px) {
  .faq-tki {
    background: #f8fafa;
    border: 1px solid #eee;
    padding: 50px 40px;
    box-shadow: rgb(188, 188, 188) 0px 15px 20px -17px;
    border-radius: 39px;
  }
}
.faq-tki > h2 {
  font-size: 1.8rem;
  line-height: 2.7rem;
  margin: 20px 0 10px;
}
.faq-tki > .faqs > .faq > .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 1.3rem;
  line-height: 1.95rem;
}
.faq-tki > .faqs > .faq > .title > h3 {
  margin: 20px 0 10px;
  font-size: inherit;
  line-height: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faq-tki > .faqs > .faq > .text {
  height: 0;
  transition: height 1000ms;
  overflow: hidden;
}
.faq-tki > .faqs > .faq > .text > p {
  max-width: 1300px;
}/*# sourceMappingURL=styles.css.map */