@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter-Medium.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/Montserrat-Regular.ttf") format("truetype");
  font-display: swap;
}

.border {
  border-bottom: 1px solid #e5e7ea;
}

.form {
  border-radius: 24px;
  border: 1px solid #b6b6b6;
  padding: 40px 105px 80px 105px;
}
.color-primary {
  color: var(--color-primary);
}
.color-white {
  color: var(--color-white);
}
.color-secondary {
  color: var(--color-secundary);
}
.color-black {
  color: var(--color-black);
}
.marcadagua-left {
  position: absolute;
  left: 0;
  z-index: -1;
  margin-top: -130px;
}
.marcadagua-right {
  position: absolute;
  right: 0;
  z-index: -1;
}

@media (max-width: 767px) {
  .marcadagua-left,
  .marcadagua-right {
    display: none;
  }
  .form {
    padding: 24px 16px 80px 16px
  }

  h2 {
    font-size: 30px;
  }
}
.link-footer {
  font-size: 16px;
  line-height: 20px;
  font-family: var(--font-text);
}
.card:hover {
  box-shadow: 1px 20px 20px 0px rgba(78, 43, 43, 0.06);
  border-bottom: 3px solid var(--color-primary);
}
.font-title {
  font-family: "Montserrat";
}

select.input-default {
  -webkit-appearance: none;
  appearance: none;
  padding: 8px 12px;
  color: #b6b6b6;
  font-size: 14px;

  background-image: url("../../images/svgs/select-arrow.svg");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 16px);
  background-position-y: 50%;

  border: 0.5px solid transparent;
  border-radius: 2px;

  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

select.input-default:hover {
  cursor: pointer;
  border: 0.5px solid #7c878ea1;
}

.paginacao-select select.input-default {
  width: 145px;
}

.input-default.input-bordered {
  border: 1px solid #b6b6b6;
  width: 141px;
}

.input-border-b {
  box-sizing: border-box;

  padding: 4px 0;
  border: none;
  border-bottom: 1px solid #b6b6b6;
  background-color: transparent;
}

.input-border-b::placeholder {
  color: #1b1d1c;
}


input:focus,
textarea:focus {
  border: 1px solid var(--color-primary);
}

select.input-border-b {
  -webkit-appearance: none;
  appearance: none;

  background-image: url("../../images/svgs/arrow-bottom-black.svg");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 50%;
}

.products-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

/* .listagem-mais-produtos .card-produto,
.div#mais-produtos-list .card-produto,
.grid-container .card-produto,
.linha-produtos-list .card-produto {
  border: solid 1px #e5e5e5;
} */

/* Card produto */
.card-product {
  width: 100%;
  min-height: 480px;
  border-radius: 8px;
  background: #fff;
  padding: 24px 16px;

  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -ms-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
}
.card-product:hover {
  box-shadow: 10px 10px 40px 0px #e6e7e7;
}
.card-product .image {
  max-width: 248px;
  max-height: 278px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.card-product .txt {
  font-size: 14px;
}

@media (max-width: 425px) {
  .card-product .image {
    width: 100% !important;
    max-height: 278px;
  }
}

/* Final Card produto */

/* Animação de botão pulsante */

.heartbeat {
  -webkit-animation: heartbeat 2.5s ease-in-out NaNs infinite;
  animation: heartbeat 2.5s ease-in-out NaNs infinite;
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

/* Final Animação de botão pulsante */

.card-produto {
  width: 280px;
  height: 480px;
  border-radius: 8px;
  background: #fff;
  padding: 24px 16px;

  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -ms-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
}

.card-produto:hover {
  box-shadow: 10px 10px 40px 0px #e6e7e7;
}

.product-quick-view,
.product-title,
.product-price,
.product-see-more-btn {
  font-family: "Inter";
}

.product-images,
.spp-item-single-card-image {
  text-align: center;
  position: relative;
  width: 100%;
  height: 270px;

  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
}

.product-image-featured,
.product-image-secondary {
  width: 100%;
  height: 270px;
  max-width: 280px;
  object-fit: contain;
  display: block;
  background-color: var(--color-white);
}

.product-image-secondary {
  display: none;
}

.product-images .product-image-secondary + .product-image-featured {
  animation: 0.6s ease appear-product-image-secondary;
}

.product-images:hover .product-image-secondary + .product-image-featured {
  display: none;
  animation: none;
}

.product-images:hover .product-image-secondary {
  display: block;
  animation: 0.6s ease appear-product-image-secondary;
}

.skeleton-load .product-images,
.spp-item-single-card-image {
  height: 350px;
}

.product-quick-view {
  z-index: 2;
  bottom: 100%;

  height: 58px;
  position: absolute;
  width: 100%;
  max-height: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-theme-color);
  color: #fff;

  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -ms-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
}

.product-quick-view > span {
  opacity: 0;
}

.card-produto:hover .product-quick-view {
  max-height: 58px;
}

.card-produto:hover .product-quick-view > span {
  opacity: 100%;
}

.product-parceled {
  font-family: "Inter";
  font-size: 12px;
  color: #7c878e;
}

.product-wish {
  background-color: transparent;
}

.product-wish::after {
  content: url("../../images/svgs/heart2.svg");
}

.product-wish.active::after {
  content: url("../../images/svgs/heart2-red.svg");
}

.product-wish:hover {
  cursor: pointer;
}

.product-color-ball {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.product-color-ball:hover {
  cursor: pointer;
}

.product-color-ball.active {
  border: 1px solid var(--secondary-theme-color);
}

.product-color-ball-plus {
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(206, 215, 220, 0.39);
  font-family: "Inter";
  font-size: 10px;
  color: #292e31;
}

/* .product-info {
  text-align: center
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
} */

/* .product-info-head,
.product-info-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  height: 25px;
} */
.product-title {
  text-align: center;
  width: 100%;
}

/* .product-info-foot {
  justify-content: space-between;
  padding: 0 24px 24px 24px;
} */

.product-info-foot a {
  text-decoration: none;
}

.product-stock-msg {
  font-family: "Inter";
  color: red;
  font-size: 14px;
  margin-bottom: 4px;
}

.product-info-middle {
  flex-wrap: wrap;
}

.product-price,
.product-original-price {
  width: 100%;
  margin-bottom: 4px;
  text-align: center;
}
.product-original-price {
  font-size: 12px;
  color: #ccc;
  text-decoration: line-through;
}

.product-colors {
  display: flex;
  gap: 8px;
}

.product-see-more-btn {
  line-height: 21px;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  padding: 5px 0;
  display: block;
  width: 100%;

  background-image: linear-gradient(
    30deg,
    var(--primary-theme-color) 50%,
    transparent 50%
  );
  background-size: 850px;
  background-repeat: no-repeat;
  background-position: 0;
  border: 1px solid var(--primary-theme-color);

  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.product-see-more-btn:hover {
  color: var(--secondary-theme-color);
  border-color: var(--secondary-theme-color);
  background-image: linear-gradient(
    30deg,
    var(--primary-theme-color) 50%,
    transparent 50%
  );
  background-size: 850px;
  background-repeat: no-repeat;
  background-position: 100%;
}

.product-quick-view-button-holder {
  display: block;
}

.card-produto:hover .product-quick-view-button {
  margin-bottom: 0;
}

.product-quick-view-button {
  padding: 10px 20px 10px 10px;
  background-color: #fff;
  color: var(--primary-theme-color);
  opacity: 0.95;
  position: absolute;
  bottom: 0;
  right: 0;
  border-top-left-radius: 10px;
  cursor: pointer;
  margin-bottom: -100px;
  transition: 0.3s all ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-quick-view-button-text {
  color: var(--primary-theme-color);
  margin-right: -90px;
  margin-left: 5px;
  transition: 0.3s all ease;
  opacity: 0;
}
.product-quick-view-button:hover .product-quick-view-button-text {
  margin-right: 0;
  display: block;
  opacity: 1;
}
.product-label {
  background-color: var(--primary-theme-color);
  color: #fff;
  padding: 2px 5px;
  position: absolute;
  left: -5px;
  top: 5px;
  z-index: 1;
}

/*-------ESTILOS MENU PAINEL CLIENTE-------*/
#page-map {
  padding: 20px 0 30px;
  color: #7c878e;
}

#page-name {
  color: var(--primary-theme-color);
}

#dashboard .container {
  gap: 32px;
}

.menu-conta {
  width: 280px;
}

.menu-conta-header {
  padding: 20px 0;
}

.menu-conta-header-title {
  color: var(--secondary-theme-color);
}

.menu-conta-item {
  padding: 20px 0 20px 20px;
  border-top: 1px solid #ced7dc;

  align-items: center;

  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -ms-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
}

.menu-conta-item.active {
  border-right: 4px solid var(--primary-theme-color);
  color: var(--primary-theme-color);
}

.menu-conta-item:hover {
  color: var(--primary-theme-color);
}

#icon-exit {
  margin-left: auto;
}

.dashboard-content {
  flex-grow: 1;
  max-width: 904px;
}

.dashboard-header {
  margin-bottom: 24px;
}

.dashboard-header span {
  display: block;
}

.swal-modal {
  font-family: "Montserrat";
}

.swal-modal .swal-text {
  text-align: center;
}

div.info-card-header-action {
  display: none !important;
}

@keyframes appear-product-image-secondary {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .hide-mb {
    display: none;
  }

  .card-produto {
    flex-shrink: 0;
  }

  #dashboard .container {
    flex-direction: column;
  }

  .menu-conta {
    width: 100%;
  }

  .menu-conta-header {
    align-items: center;
    justify-content: space-between;
  }

  .menu-conta-btn-mb {
    background-color: transparent;
  }

  #menu-conta-open-ic,
  #menu-conta-close-ic {
    display: none;
  }

  .menu-conta-btn-mb:not(.active) #menu-conta-open-ic {
    display: block;
  }

  .menu-conta-btn-mb.active #menu-conta-close-ic {
    display: block;
  }

  .menu-conta-item {
    padding: 8px 0;
    flex-shrink: 0;
  }
}


@media screen and (max-width: 1199px) {
  .card-produto {
    width: 39vh;
    min-width: 162px;
    border-radius: 11px;
  }

  .product-images img {
    max-width: 100%;
    height: 243px;
    overflow: hidden;
  }

  .product-description .product-images {
    top: 32px;
  }

  .product-title {
    font-size: 14px;
    line-height: 18.2px;
  }

  .product-price {
    width: 100%;
    order: 1;
    margin-top: 13px;
  }

  .product-parceled {
    order: 3;
    max-width: 100%;
  }

  .product-colors {
    order: 2;
  }

  .product-color-ball {
    width: 14px;
    height: 14px;
  }

  .product-color-ball:not(:first-child) {
    display: none;
  }

  .product-see-more-btn {
    font-size: 14px;
    line-height: 18.2px;
  }

  .menu-conta {
    flex-shrink: 0;
  }

  #page-map {
    padding: 20px 0 30px;
  }
}

@media screen and (max-width: 768px) {
  .filtros-ativos-list {
    flex-wrap: wrap;
  }
  .resultados-perpage {
    display: none;
  }
}

/* Voltar ao topo */
.cd-top {
  background-size: 64px;
  border-radius: 300px;
  bottom: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 18px;
  right: 15px;
  overflow: hidden;
  padding: 20px 0;
  position: fixed;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  white-space: nowrap;
  width: 50px;
  height: 50px;
  z-index: 100000000;
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
  -ms-border-radius: 300px;
  -o-border-radius: 300px;
  justify-content: center;
  align-items: center;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  border: none;
}
.cd-top.cd-is-visible {
  bottom: 50px;
  opacity: 1;
  visibility: visible;
  background-color: var(--color-primary);
}
.cd-top.cd-fade-out {
  opacity: 0.5;
}
.cd-top:hover {
  opacity: 1;
}
.cd-top i {
  color: #ffffff;
  margin: 0 auto;
}
.cd-top img {
  width: 64px;
}

.cd-top .upload-two {
  margin-top: -3px;
}

@media (max-width: 425px) {
  .cd-top.cd-is-visible {
    bottom: 30px;
  }
}

.skeleton-load {
  background: linear-gradient(to right, #f0f0f0, #f2f2f2);
  background-size: 200%;
  animation: 1s skeleton-background infinite ease;
}
.skeleton-load * {
  visibility: hidden;
}
@keyframes skeleton-background {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

.card-produto:not(.skeleton-load) {
  animation: 0.8s ease appear;
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
