.container, .container-fluid {
  position: relative;
  clear: both;
}

.container-fluid {
  width: 100%;
}

.container {
  width: 100%;
  margin: 0px auto;
  left: 0;
  right: 0;
}
@media (min-width: 0px) and (max-width: 767px) {
  .container {
    width: 100%;
  }
}
@media (min-width: 510px) and (max-width: 767px) {
  .container {
    width: 510px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    width: 768px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    width: 992px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.gap-1 {
  gap: 1rem;
}
.gap-2 {
  gap: 2rem;
}
.gap-3 {
  gap: 3rem;
}
.gap-4 {
  gap: 4rem;
}
.gap-5 {
  gap: 5rem;
}

.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 4rem;
}
.mt-5 {
  margin-top: 5rem;
}

.my-0 {
  margin-top: 0rem;
  margin-bottom: 0rem;
}
.my-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-4 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.my-5 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 4rem;
}
.mb-5 {
  margin-bottom: 5rem;
}

.tempc-3 {
  grid-template-columns: repeat(3, 1fr);
}

.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.cur-pointer {
  cursor: pointer;
}

.w-max {
  width: -moz-max-content;
  width: max-content;
}

.h-100 {
  height: 100%;
}

.uCarousel {
  height: 500px;
  display: grid;
  grid-template-columns: auto 1fr auto;
}
.uCarousel::before, .uCarousel::after {
  display: none;
}
.uCarousel .content {
  height: 100%;
  width: 100%;
  display: flex;
}
.uCarousel .item,
.uCarousel .item img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.uCarousel .control {
  position: relative;
  width: auto;
  opacity: 0.6;
}
.uCarousel .control:hover {
  opacity: 1;
}

*:hover {
  transition: 300ms;
}

html {
  min-height: 100vh;
}

body {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  padding-top: 110px;
  color: #AFA36B;
  background-color: #FFFCEE;
  margin: 0;
}

footer {
  margin-top: auto;
}

a {
  color: #AFA36B;
  text-decoration: none;
  transition: 400ms;
}

iframe {
  width: 100%;
  height: 500px;
}
@media (min-width: 0px) and (max-width: 767px) {
  iframe {
    max-width: 100%;
    height: 300px;
  }
}

button {
  border: none;
}

input {
  font-size: 16px;
  padding: 7px 15px;
  border: 1px solid #707070;
  border-radius: 3px;
  color: #707070;
  outline-color: #707070;
}

p {
  margin: 0;
  line-height: 1.3;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-weight: 700;
  color: #707070;
}

h1 {
  font-size: 30px;
}

.btn {
  padding: 10px 15px;
  background-color: #707070;
  color: #F6EFCE;
  border-radius: 1px 1px 3px 3px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: 300ms;
}
.btn:hover {
  color: #F6EFCE !important;
  text-decoration: none !important;
}
.btn:hover {
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 4px;
}
.btn:hover {
  color: #707070;
  filter: brightness(1.15);
}

.menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: #F6EFCE;
  color: #707070;
}
.menu a {
  text-decoration: none;
}
.menu .content {
  padding: 20px 55px 20PX 30PX;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 0px) and (max-width: 767px) {
  .menu .content {
    padding: 7px 10px;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }
  .menu .content::before, .menu .content::after {
    display: none;
  }
}
.menu .logo {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 23px;
  color: #707070;
  align-items: center;
}
.menu .logo:hover {
  transform: scale(1.05);
}
.menu .logo:hover {
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 4px;
}
.menu .logo:hover {
  color: #707070;
  filter: brightness(1.15);
}
@media (min-width: 0px) and (max-width: 767px) {
  .menu .logo {
    display: none;
  }
}
.menu .logo img {
  width: 65px;
}

.nav {
  padding: 0;
  margin: 0;
  min-height: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 767px) {
  .nav {
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr 1fr;
  }
  .nav::before, .nav::after {
    display: none;
  }
}
.nav li {
  min-height: 100%;
  list-style: none;
  padding: 0 15px;
  display: flex;
  align-items: center;
}
.nav li img {
  height: 27px;
}
.nav li a {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #707070;
  min-height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav li a:hover {
  transform: scale(1.05);
}
.nav li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 4px;
}
.nav li a:hover {
  color: #707070;
  filter: brightness(1.15);
}
@media (min-width: 0px) and (max-width: 767px) {
  .nav li a {
    font-size: 18px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  .nav li.allCol {
    grid-column: 1/-1;
    justify-content: center;
  }
}

footer {
  background-color: #707070;
  color: #FFFCEE;
}
footer .content {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 767px) {
  footer .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    justify-content: center;
    text-align: center;
  }
  footer .content::before, footer .content::after {
    display: none;
  }
}
footer p {
  margin: 0;
}
footer a {
  color: #FFFCEE;
}
footer a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 4px;
}
footer ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
@media (min-width: 0px) and (max-width: 767px) {
  footer ul {
    justify-content: center;
  }
}
footer li {
  list-style: none;
  padding: 0;
}
footer li a {
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 4px;
}
footer li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 4px;
}

.productCard {
  padding: 0;
  height: 100%;
  max-width: 100%;
  border-radius: 3px 3px 5px 5px;
  padding: 8px 10px 7px;
  background-color: #FFFCEE;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  white-space: normal;
  gap: 13px;
}
.productCard img {
  max-width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 2px 2px 5px 5px;
}
.productCard h3 {
  margin: 5px 0 0px;
  max-width: 100%;
}
.productCard p {
  max-width: 100%;
}
.productCard .subinfo {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.productCard .price {
  color: #707070;
  font-size: 36px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding: 0 15px;
  text-align: right;
  max-width: 100%;
}
.productCard .autor {
  font-size: 14px;
  color: #707070;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: center;
}
.productCard .btn {
  max-width: 100%;
  margin-top: auto !important;
}

.productDetail .colls {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 25px;
}
.productDetail .colls::before, .productDetail .colls::after {
  display: none;
}
@media (min-width: 0px) and (max-width: 767px) {
  .productDetail .colls {
    grid-template-columns: 1fr;
  }
}
.productDetail .images {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
}
.productDetail .images .displayed {
  width: 100%;
  height: 400px;
  border-radius: 5px;
  position: relative;
}
@media (min-width: 0px) and (max-width: 767px) {
  .productDetail .images .displayed {
    height: 280px;
  }
}
.productDetail .images .displayed img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.productDetail .images .arrow {
  width: 75px;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  top: 0;
  font-size: 40px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  color: #FFFCEE;
}
.productDetail .images .arrow img {
  width: 50px;
  height: 50px;
}
.productDetail .images .arrow:hover {
  opacity: 1;
  color: #AFA36B;
}
.productDetail .images .arrow.prev {
  left: 0;
}
.productDetail .images .arrow.next {
  right: 0;
}
.productDetail .images .collection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 180px;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 20px;
}
.productDetail .images .collection::before, .productDetail .images .collection::after {
  display: none;
}
@media (min-width: 0px) and (max-width: 767px) {
  .productDetail .images .collection {
    grid-template-columns: repeat(2, 1fr);
  }
}
.productDetail .images .collection img {
  width: 100%;
  height: 100%;
  border-radius: 1px 1px 3px 3px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 300ms;
  cursor: pointer;
}
.productDetail .images .collection img.active {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.productDetail .images .collection img:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transform: scale(1.05);
}
.productDetail .information {
  padding: 15px 30px 20px;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  height: -moz-max-content;
  height: max-content;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
}
.productDetail .information h1 {
  text-align: left;
  font-weight: 700;
}
.productDetail .information .desc {
  font-size: 20px;
  color: #AFA36B;
  line-height: 1.5;
}
.productDetail .information .showed {
  font-size: 14px;
  line-height: 1.3;
}
.productDetail .information .control {
  margin-top: auto;
  padding-top: 15px;
  padding-right: 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.productDetail .information .price {
  padding: 10px 15px;
  font-size: 34px;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: right;
  color: #707070;
}
.productDetail .information .autor {
  color: #707070;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  height: -moz-max-content;
  height: max-content;
  font-size: 14px;
}
.productDetail .information .autor:hover {
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 4px;
}
.productDetail .information .autor:hover {
  color: #707070;
  filter: brightness(1.15);
}

.productsList h2 {
  display: flex;
  align-items: center;
  gap: 5px;
}
.productsList h2 img {
  height: 30px;
}
.productsList .list {
  list-style: none;
  margin: 0;
  padding: 20px 20px 35px;
  background-color: #F6EFCE;
  border-radius: 2px 2px 4px 4px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.productsList .list::before, .productsList .list::after {
  display: none;
}
@media (min-width: 0px) and (max-width: 767px) {
  .productsList .list {
    padding: 5px 10px;
    grid-template-columns: 1fr;
  }
}
.productsList .list.horizontal {
  display: flex;
  overflow-x: scroll;
  white-space: nowrap;
  flex-direction: row;
  flex-wrap: nowrap;
}
.productsList .list.horizontal .productCard {
  width: 300px;
}
.productsList .list .item {
  border-radius: 1px 1px 3px 3px;
}
.productsList .list .item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.traderDetail .cols {
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 20px;
}
.traderDetail .cols::before, .traderDetail .cols::after {
  display: none;
}
@media (min-width: 0px) and (max-width: 767px) {
  .traderDetail .cols {
    grid-template-columns: 1fr;
  }
}
.traderDetail .info {
  display: grid;
  gap: 20px;
}
.traderDetail .info::before, .traderDetail .info::after {
  display: none;
}
.traderDetail .info table {
  background-color: #F6EFCE;
  padding: 10px 20px 15px;
  border: 1px solid #AFA36B;
  border-radius: 2px 2px 4px 4px;
  color: #707070;
}
.traderDetail .info table a {
  color: #707070;
}
.traderDetail .info table a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 4px;
}
.traderDetail .info table tbody {
  display: grid;
  gap: 1px;
  background-color: #AFA36B;
}
.traderDetail .info table tbody::before, .traderDetail .info table tbody::after {
  display: none;
}
.traderDetail .info table tr {
  background-color: #AFA36B;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1px;
}
.traderDetail .info table tr::before, .traderDetail .info table tr::after {
  display: none;
}
.traderDetail .info table td {
  background-color: #F6EFCE;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}
.traderDetail .info table td:first-child {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding-left: 30px;
}
.traderDetail .reviews {
  display: grid;
  gap: 20px;
  height: -moz-max-content;
  height: max-content;
}
.traderDetail .reviews::before, .traderDetail .reviews::after {
  display: none;
}
.traderDetail .comments {
  display: grid;
  gap: 20px;
  height: -moz-max-content;
  height: max-content;
  max-height: 380px;
  overflow-y: auto;
  border-radius: 5px;
  position: relative;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 2px solid #707070;
  border-bottom: 2px solid #707070;
}
.traderDetail .comments::before, .traderDetail .comments::after {
  display: none;
}
.traderDetail .comments .comment {
  background-color: #ffffff;
  border: 2px solid #707070;
  border-radius: 2px 2px 5px 5px;
  padding: 10px 20px;
  color: #707070;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px;
}
.traderDetail .comments .comment::before, .traderDetail .comments .comment::after {
  display: none;
}
.traderDetail .comments .autor {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}
.traderDetail .addComment {
  display: grid;
  gap: 10px;
}
.traderDetail .addComment::before, .traderDetail .addComment::after {
  display: none;
}
.traderDetail .addComment .title {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #707070;
  font-size: 18px;
}
.traderDetail .addComment .submit {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 10px;
}
.traderDetail .addComment .submit::before, .traderDetail .addComment .submit::after {
  display: none;
}
.traderDetail .addComment .reactions {
  display: grid;
  grid-template-columns: max-content max-content max-content max-content max-content;
  justify-content: center;
  gap: 10px;
  border: unset;
}
.traderDetail .addComment .reactions::before, .traderDetail .addComment .reactions::after {
  display: none;
}

.tradersList .list {
  list-style: none;
  margin: 0;
  padding: 20px 20px 35px;
  background-color: #F6EFCE;
  border-radius: 2px 2px 4px 4px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.tradersList .list::before, .tradersList .list::after {
  display: none;
}
@media (min-width: 0px) and (max-width: 767px) {
  .tradersList .list {
    grid-template-columns: 1fr;
  }
}
.tradersList .list.horizontal {
  display: flex;
  overflow-x: scroll;
  white-space: nowrap;
  flex-direction: row;
  flex-wrap: nowrap;
}
.tradersList .list.horizontal .productCard {
  width: 300px;
}
.tradersList .list .item {
  border-radius: 1px 1px 3px 3px;
}
.tradersList .list .item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.tradersList .list .trader {
  padding: 30px 35px 15px;
  background-color: #FFFCEE;
  display: grid;
  gap: 15px;
}
.tradersList .list .trader::before, .tradersList .list .trader::after {
  display: none;
}
.tradersList .list .trader .name {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #707070;
  font-size: 22px;
}
.tradersList .list .trader .about-me {
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}
.tradersList .list .trader .info {
  padding: 0px 5px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #707070;
}

.reaction label {
  cursor: pointer;
}
.reaction label img:hover {
  transform: scale(1.15);
}
.reaction label img:hover {
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 4px;
}
.reaction label img:hover {
  color: #707070;
  filter: brightness(1.15);
}
.reaction input {
  display: none;
}
.reaction input:checked ~ label img {
  transform: scale(1.3);
  filter: brightness(1.3);
}

.u-withImage h1,
.u-withImage h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.u-defaultPage {
  padding: 20px 30px;
  background-color: #F6EFCE;
  border-radius: 5px;
  color: #707070;
}
.u-defaultPage p {
  margin-bottom: 15px;
}
.u-defaultPage a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 4px;
}
@media (min-width: 0px) and (max-width: 767px) {
  .u-defaultPage {
    padding: 10px 5px;
  }
}
