@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes floatAnimation {
  0% {
    opacity: 1;
    transform: translateY(300px);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
@media (max-width: 768px) {
  @keyframes floatAnimation {
    0% {
      opacity: 1;
      transform: translateY(120px);
    }
    100% {
      opacity: 0;
      transform: translateY(-100%);
    }
  }
}
.loading-effect {
  background-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
  background-size: 200% 100%;
  animation: loading-animation 1.5s linear infinite;
}

@keyframes loading-animation {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.pulse-effect {
  animation-duration: 10s;
  animation-delay: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation: pulse 1s infinite;
}

.pulse {
  animation: pulse 1s;
}

.opacity-off {
  opacity: 0;
  transition: all 0.4s ease-in-out;
  animation: opacityOff 1s;
}

.opacity-on {
  opacity: 1;
  transition: all 0.4s ease-in-out;
  animation: opacityOn 1s;
}

.flash {
  animation: flash 1s;
  animation: flash 1s infinite;
}
@keyframes flash {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.marketplaces__info {
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 15px 20px;
}
.marketplaces__info--state {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.marketplaces__info--state h5 {
  display: inline-block;
  width: 30%;
  margin: 0;
}
.marketplaces__info--state div a i {
  font-size: 25px;
}
.marketplaces__info--title {
  margin-top: 15px;
}
.marketplaces__info--title h2 {
  padding: 0;
  margin: 0;
  font-size: 26px;
}
.marketplaces__info--title i {
  font-size: 23px;
}
.marketplaces__info--price {
  margin-top: 15px;
}
.marketplaces__info--price h1 {
  font-size: 28px;
}
.marketplaces__info--aditional span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
}
.marketplaces__user {
  margin-top: 30px;
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 15px 20px;
  text-align: center;
}
.marketplaces__user--title h3 {
  font-size: 22px;
}
.marketplaces__user--avatar {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 10px auto;
}
.marketplaces__user--avatar img {
  border-radius: 50%;
  max-width: 100px;
  -webkit-box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
  margin: 20px 0px;
}
.marketplaces__user--contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 15px;
  margin-top: 15px;
}
.marketplaces__user--contact a {
  margin-bottom: 15px;
  height: 45px;
  padding: 10px 0px;
}
.marketplaces__user--contact a.whatsapp {
  background-color: rgba(65, 137, 230, 0.15);
  color: #3483FC;
}
.marketplaces__user--contact a.whatsapp:hover {
  background-color: rgba(65, 137, 230, 0.2);
}
.marketplaces__shared {
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 30px;
}
.marketplaces__shared--title h3 {
  font-size: 22px;
}
.marketplaces__relation--listRelationProducts .listRelationProducts__container {
  overflow: hidden;
}
@media (max-width: 768px) {
  .marketplaces__relation--listRelationProducts .listRelationProducts__container {
    overflow: visible;
  }
}
.marketplaces__relation--listRelationProducts .listRelationProducts__container--wrapper {
  margin: 20px 0px 50px;
}
.marketplaces__relation--listRelationProducts .listRelationProducts__container--wrapper .product__container {
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-radius: 10px;
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
}
.marketplaces__relation--listRelationProducts .listRelationProducts__container--wrapper .product__container--image {
  background-size: cover;
  background-position: center center;
  height: 300px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .marketplaces__relation--listRelationProducts .listRelationProducts__container--wrapper .product__container--image {
    height: 350px;
  }
}
.marketplaces__relation--listRelationProducts .listRelationProducts__container--wrapper .product__container--dates {
  width: 100%;
}
.marketplaces__relation--listRelationProducts .listRelationProducts__container--wrapper .product__container--dates--title h5 {
  text-decoration: none;
  color: rgb(108, 117, 125);
  font-size: 18px;
}
.marketplaces__relation--listRelationProducts .listRelationProducts__container--wrapper .product__container:hover {
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
}
.marketplaces__relation--listRelationProducts .listRelationProducts__container .swiper-button-next, .marketplaces__relation--listRelationProducts .listRelationProducts__container .swiper-button-prev {
  background-color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 122, 255, 0.2);
}
.marketplaces__relation--listRelationProducts .listRelationProducts__container .swiper-button-next::after, .marketplaces__relation--listRelationProducts .listRelationProducts__container .swiper-button-prev::after {
  font-size: 20px;
}
.marketplaces__relation--listRelationProducts .listRelationProducts__container .swiper-button-disabled {
  display: none;
}

@media screen and (max-width: 768px) {
  .marketplaces__info {
    border: 0px;
    border-top: 1px solid #f7f7f7;
    border-bottom: 1px solid #f7f7f7;
    border-radius: 0px;
  }
  .marketplaces__info--state {
    display: flex;
    margin-bottom: 15px;
  }
  .marketplaces__info--state h5 {
    width: 40%;
  }
  .marketplaces__user {
    border: 0px;
    border-bottom: 1px solid #f7f7f7;
    border-radius: 0px;
    display: grid;
    grid-template-columns: 30% 1fr;
    align-items: center;
    column-gap: 15px;
    margin-top: 10px;
  }
  .marketplaces__user--infoContent-avatar {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 10px auto;
  }
  .marketplaces__user--infoContent-avatar img {
    border-radius: 50%;
    max-width: 70px;
    -webkit-box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
    margin: 10px 0px;
  }
  .marketplaces__user--infoContent-info h5 {
    font-size: 16px;
  }
  .marketplaces__user--contact {
    display: block;
  }
  .marketplaces__user--contact a {
    display: block;
  }
  .marketplaces__shared {
    border: 0px;
    border-bottom: 1px solid #f7f7f7;
    border-radius: 0px;
    margin-top: 10px;
    padding: 0px;
  }
  .marketplaces__shared h3 {
    display: none;
  }
}
.streaming--flyer a {
  position: relative;
}
.streaming--flyer a > div {
  width: 90px;
  height: 90px;
  position: relative;
  background-size: cover;
  background-position: center center;
}
.streaming--flyer a > div span {
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.streaming--flyer a > div span svg {
  width: 30px;
  width: 30px;
}
.streaming--flyer a > div span svg path {
  fill: #ffffff;
}
.streaming--flyer a:hover > div span {
  background-color: rgba(220, 53, 69, 0.7);
  opacity: 1;
}
.streaming--controlBid, .streaming--infoLot {
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .streaming--controlBid, .streaming--infoLot {
    border: 0px;
    border-bottom: 1px solid #f7f7f7;
    border-radius: 0px;
    margin-top: 10px;
    padding: 0px;
  }
}
.streaming--infoLot {
  margin-bottom: 0;
}
.streaming--shared, .streaming--block-list {
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .streaming--shared, .streaming--block-list {
    border: 0px;
    border-bottom: 1px solid #f7f7f7;
    border-radius: 0px;
    margin-top: 10px;
    padding: 0px;
  }
}
.streaming--shared--title h3, .streaming--block-list--title h3 {
  font-size: 22px;
}
@media (max-width: 768px) {
  .streaming--shared--title h3, .streaming--block-list--title h3 {
    display: none;
  }
}
.streaming--shared #container-items, .streaming--block-list #container-items {
  height: 120px;
  overflow: scroll;
}
.streaming--shared #container-items.overlay-items, .streaming--block-list #container-items.overlay-items {
  position: relative;
}
.streaming--shared #container-items.overlay-items::after, .streaming--block-list #container-items.overlay-items::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgb(255, 255, 255)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#ffffff", GradientType=0 );
}
.streaming--block-list {
  border: 2px solid #f5f5f5;
}
.streaming--user {
  margin-top: 30px;
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 15px 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .streaming--user {
    border: 0px;
    border-bottom: 1px solid #f7f7f7;
    border-radius: 0px;
  }
}
.streaming--user--infoContent {
  display: grid;
  grid-template-columns: 30% 1fr;
  align-items: center;
  column-gap: 15px;
  margin-top: 10px;
  align-items: center;
}
.streaming--user--infoContent-avatar img {
  border-radius: 50%;
  max-width: 100px;
  -webkit-box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
  margin: 10px 0px;
}
.streaming--user--infoContent-info h5 {
  font-size: 18px;
}
.streaming--user--infoContent-info p {
  font-size: 14px;
  margin-bottom: 0;
}
.streaming--user--title h3 {
  font-size: 22px;
}
.streaming--user--avatar img {
  border-radius: 50%;
  max-width: 100px;
  -webkit-box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
  margin: 10px 0px;
}
@media (max-width: 768px) {
  .streaming--user--avatar img {
    border-radius: 50%;
    max-width: 70px;
    -webkit-box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
    margin: 10px 0px;
  }
}
@media (max-width: 768px) {
  .streaming--user-info h5 {
    font-size: 16px;
  }
}
.streaming--user--contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 15px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .streaming--user--contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.streaming--user--contact a {
  margin-bottom: 15px;
  height: 45px;
  padding: 10px 0px;
}
@media (max-width: 768px) {
  .streaming--user--contact a {
    display: block;
  }
}
.streaming--user--contact a.whatsapp {
  background-color: rgba(65, 137, 230, 0.15);
  color: #3483FC;
}
.streaming--user--contact a.whatsapp:hover {
  background-color: rgba(65, 137, 230, 0.2);
}
.streaming--user--tuition table tr td strong {
  font-size: 14px;
}
.streaming--user--tuition table tr td p {
  font-size: 14px;
  margin-bottom: 0;
}
.streaming--auction {
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .streaming--auction {
    border: 0px;
    border-bottom: 1px solid #f7f7f7;
    border-radius: 0px;
  }
}
@media (max-width: 768px) {
  .streaming--auction {
    margin-top: 30px;
    margin-top: 30px;
  }
}
.streaming--auction--title h3 {
  font-size: 22px;
}
.streaming--auction--info {
  margin: 20px 0px;
  font-size: 15px;
}
.streaming--auction--info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.streaming--auction--info ul li strong {
  color: rgb(66, 43, 92);
}
.streaming--auction--times .title__container h3 {
  font-size: 20px;
}
.streaming--auction--times .title__container h6 span {
  color: #212529;
}
.streaming--callcenter {
  margin-top: 30px;
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  .streaming--callcenter {
    margin-bottom: 30px;
  }
}
.streaming--listLotGroup {
  height: 350px;
  overflow: scroll;
}
.streaming--listLotGroup .box {
  transition: all 0.4s ease-in-out;
}
.streaming--listLotGroup .box .auctionsView__container--listImage {
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}
.streaming--listLotGroup .box .auctionsView__container--listImage > div {
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 320px;
  position: relative;
}
.streaming--listLotGroup .box .auctionsView__container--listImage > div a {
  z-index: 200;
  position: relative;
}
.streaming--listLotGroup .box .auctionsView__container--listImage > div a:first-child {
  display: inline-block;
  text-align: right;
  float: right;
  padding: 5px;
  position: relative;
  z-index: 3000;
}
.streaming--listLotGroup .box .auctionsView__container--listImage > div a:nth-child(2) {
  display: block;
  width: 100%;
  height: 100%;
}
.streaming--listLotGroup .box .auctionsView__container--listImage > div a:nth-child(2)::after {
  content: "";
  position: absolute;
  background: rgba(248, 80, 50, 0);
  background: -moz-linear-gradient(top, rgba(248, 80, 50, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(248, 80, 50, 0)), color-stop(100%, rgba(0, 0, 0, 0.15)));
  background: -webkit-linear-gradient(top, rgba(248, 80, 50, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
  background: -o-linear-gradient(top, rgba(248, 80, 50, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
  background: -ms-linear-gradient(top, rgba(248, 80, 50, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
  background: linear-gradient(to bottom, rgba(248, 80, 50, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f85032", endColorstr="#ffffff", GradientType=0 );
  width: 100%;
  height: 100%;
  z-index: 1;
}
.streaming--listLotGroup .box .auctionsView__container--listImage > div a:last-child {
  display: block;
  width: 100%;
  height: 100%;
}
.streaming--listLotGroup .box .auctionsView__container--listImage > div .auctionsView__container--countDown {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #ffffff;
  padding: 3px 10px;
  border-radius: 10px;
  color: #ffffff;
  z-index: 200;
  overflow: hidden;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-content: center;
  column-gap: 5px;
}
.streaming--listLotGroup .box .auctionsView__container--listImage > div .auctionsView__container--countDown span {
  color: #ffffff;
  font-size: 15px;
}
.streaming--listLotGroup .box .auctionsView__container--listImage > div .auctionsView__container--countDown.danger {
  border: 2px solid transparent;
  background-color: rgba(255, 0, 0, 0.4);
  color: white;
  text-align: center;
}
.streaming--listLotGroup .box .auctionsView__container--listImage > div .auctionsView__container--countDown.danger span {
  color: white;
  font-size: 15px;
}
.streaming--listLotGroup .box .auctionsView__container--listImage > div .auctionsView__container--countDown.danger i {
  color: #000000;
}
.streaming--listLotGroup .box .auctionsView__container--listImage > div .auctionsView__container--state {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 200;
  text-align: center;
}
.streaming--listLotGroup .box .auctionsView__container--listImage > div .auctionsView__container--state span {
  color: #ffffff;
  font-size: 13px;
}
.streaming--listLotGroup .box .auctionsView__container--listImage:hover {
  -webkit-box-shadow: 12px 12px 25px 0px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 12px 12px 25px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 12px 12px 25px 0px rgba(0, 0, 0, 0.06);
}
.streaming--listLotGroup .boxImages__contaier {
  margin-bottom: 50px;
  box-shadow: 0px 35px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  border-radius: 10px;
}
.streaming--listLotGroup .boxImages__contaier h4 {
  color: #000000;
  font-size: 16px;
}
.streaming--tableListLot {
  height: 300px;
  overflow: scroll;
}
.streaming--reactions {
  margin-top: 20px;
  margin-bottom: 0px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .streaming--reactions {
    margin-bottom: 20px;
  }
}
.streaming--reactions ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}
.streaming--reactions ul li {
  margin-right: 5px;
}
.streaming--reactions ul li .btnReaction {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.streaming--reactions ul li .btnReaction.disabled {
  opacity: 0.5;
}
.streaming .countDownIniciando {
  display: flex;
  flex-basis: 33.3%;
  column-gap: 20px;
  justify-content: center;
}
.streaming .countDownIniciando .simply-section > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 10px 15px;
}
.streaming .countDownIniciando .simply-section:last-child > div {
  margin-right: 0;
}
.streaming .countDownIniciando .simply-section > div .simply-amount {
  font-size: 30px;
  font-weight: 700;
  line-height: 0.9;
}
.streaming .countDownIniciando .simply-section > div .simply-word {
  font-size: 15px;
}
.streaming #container-emojis {
  position: absolute;
  width: 20%;
  height: 60%;
  right: 10px;
  bottom: 0;
}
.streaming .emoji {
  position: absolute;
  opacity: 1;
  animation-name: floatAnimation;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}

.new-lot__info {
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .new-lot__info {
    border: 0px;
    border-top: 1px solid #f7f7f7;
    border-bottom: 1px solid #f7f7f7;
    border-radius: 0px;
  }
}
.new-lot__info--state {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media (max-width: 768px) {
  .new-lot__info--state {
    display: flex;
    margin-bottom: 15px;
  }
  .new-lot__info--state h5 {
    width: 40%;
  }
}
.new-lot__info--state span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
}
.new-lot__info--state h5 {
  display: inline-block;
  width: 30%;
  margin: 0;
}
.new-lot__info--state div a i {
  font-size: 25px;
}
.new-lot__info--title {
  margin-top: 15px;
}
.new-lot__info--title h2 {
  padding: 0;
  margin: 0;
  font-size: 26px;
}
.new-lot__info--title i {
  font-size: 23px;
}
.new-lot__info--title p {
  color: #212529;
}
.new-lot__info--price h1 {
  font-size: 32px;
  text-align: center;
}
.new-lot__info--aditional span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
}
.new-lot__user {
  margin-top: 30px;
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 15px 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .new-lot__user {
    border: 0px;
    border-bottom: 1px solid #f7f7f7;
    border-radius: 0px;
  }
}
.new-lot__user--infoContent {
  display: grid;
  grid-template-columns: 30% 1fr;
  align-items: center;
  column-gap: 15px;
  margin-top: 10px;
  align-items: center;
}
.new-lot__user--infoContent-avatar img {
  border-radius: 50%;
  max-width: 100px;
  -webkit-box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
  margin: 10px 0px;
}
.new-lot__user--infoContent-info h5 {
  font-size: 18px;
}
.new-lot__user--infoContent-info p {
  font-size: 14px;
  margin-bottom: 0;
}
.new-lot__user--title h3 {
  font-size: 22px;
}
.new-lot__user--avatar img {
  border-radius: 50%;
  max-width: 100px;
  -webkit-box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
  margin: 10px 0px;
}
@media (max-width: 768px) {
  .new-lot__user--avatar img {
    border-radius: 50%;
    max-width: 70px;
    -webkit-box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 6px 6px 27px 0px rgba(0, 0, 0, 0.3);
    margin: 10px 0px;
  }
}
@media (max-width: 768px) {
  .new-lot__user-info h5 {
    font-size: 16px;
  }
}
.new-lot__user--contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 15px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .new-lot__user--contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.new-lot__user--contact a {
  margin-bottom: 15px;
  height: 45px;
  padding: 10px 0px;
}
@media (max-width: 768px) {
  .new-lot__user--contact a {
    display: block;
  }
}
.new-lot__user--contact a.whatsapp {
  background-color: rgba(65, 137, 230, 0.15);
  color: #3483FC;
}
.new-lot__user--contact a.whatsapp:hover {
  background-color: rgba(65, 137, 230, 0.2);
}
.new-lot__user--tuition table tr td strong {
  font-size: 14px;
}
.new-lot__user--tuition table tr td p {
  font-size: 14px;
  margin-bottom: 0;
}
.new-lot__shared {
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .new-lot__shared {
    border: 0px;
    border-bottom: 1px solid #f7f7f7;
    border-radius: 0px;
    margin-top: 10px;
    padding: 0px;
  }
}
.new-lot__shared--title h3 {
  font-size: 22px;
}
@media (max-width: 768px) {
  .new-lot__shared--title h3 {
    display: none;
  }
}
.new-lot__control {
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .new-lot__control {
    border: 0px;
    border-top: 1px solid #f7f7f7;
    border-bottom: 1px solid #f7f7f7;
    border-radius: 0px;
  }
}
.new-lot__control .accordion-button {
  padding-top: 10px;
  padding-bottom: 10px;
}
.new-lot__auction {
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .new-lot__auction {
    border: 0px;
    border-bottom: 1px solid #f7f7f7;
    border-radius: 0px;
  }
}
@media (max-width: 768px) {
  .new-lot__auction {
    margin-top: 30px;
    margin-top: 30px;
  }
}
.new-lot__auction--title h3 {
  font-size: 22px;
}
.new-lot__auction--info {
  margin: 20px 0px;
  font-size: 15px;
}
.new-lot__auction--info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.new-lot__auction--info ul li strong {
  color: rgb(66, 43, 92);
}
.new-lot__auction--times .title__container h3 {
  font-size: 20px;
}
.new-lot__auction--times .title__container h6 span {
  color: #212529;
}
.new-lot__financed {
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .new-lot__financed {
    border: 0px;
    border-bottom: 1px solid #f7f7f7;
    border-radius: 0px;
  }
}
.new-lot__financed--title h3 {
  font-size: 22px;
}
.new-lot__financed--logos .logos__container--logo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 10px;
  position: relative;
}
.new-lot__financed--logos .logos__container--logo > div {
  display: none;
  padding: 10px 15px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  background-color: #ffffff;
  border-radius: 10px;
  left: 70px;
  top: -8px;
}
@media (max-width: 768px) {
  .new-lot__financed--logos .logos__container--logo > div {
    left: -30px;
    top: 50px;
  }
}
.new-lot__financed--logos .logos__container--logo > div h4 a, .new-lot__financed--logos .logos__container--logo > div h4 i {
  color: rgb(66, 43, 92);
  text-decoration: none;
}
.new-lot__financed--logos .logos__container--logo > div h4 a img, .new-lot__financed--logos .logos__container--logo > div h4 i img {
  margin-bottom: 10px;
}
.new-lot__financed--logos .logos__container--logo > div h4 a {
  display: inline-block;
  font-weight: normal;
}
.new-lot__financed--logos .logos__container--logo:hover > div {
  display: flex;
}
.new-lot__parent {
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 30px;
}
.new-lot__parent .parent__container--title {
  margin-bottom: 30px;
}
.new-lot__parent .parent__container--title h3 {
  font-size: 22px;
}
.new-lot__parent .parent__container .swiperParent .swiperWrapperParent {
  height: auto;
}
.new-lot__parent .parent__container .swiperParent .swiperWrapperParent .lotSlider {
  height: 80px;
  width: 80px;
  margin: 0px auto;
}
@media (max-width: 768px) {
  .new-lot__parent .parent__container .swiperParent .swiperWrapperParent .lotSlider {
    height: 60px;
    width: 60px;
  }
}
.new-lot__parent .parent__container .swiperParent .swiperWrapperParent .lotSliderText {
  font-size: 14px;
}
@media (max-width: 768px) {
  .new-lot__parent .parent__container .swiperParent .swiperWrapperParent .lotSliderText {
    font-size: 13px;
  }
}
.new-lot__parent .parent__container .swiper-pagination {
  bottom: -5px;
}
.new-lot__donation {
  margin-bottom: 20px;
}
.new-lot__donation--link {
  display: flex;
  justify-content: center;
}
.new-lot__donation--link a {
  background-color: #b6b6b6;
  transition: all 0.4s ease-in-out;
  border-radius: 20px;
  text-decoration: none;
  padding: 8px 25px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .new-lot__donation--link a {
    padding: 5px 25px;
  }
}
.new-lot__donation--link a .link-text {
  color: #ffffff;
  font-size: 20px;
}
@media (max-width: 768px) {
  .new-lot__donation--link a .link-text {
    font-size: 15px;
  }
}
.new-lot__donation--link a .link-icon {
  background-color: #ffffff;
  padding: 5px;
  border-radius: 50%;
  margin-left: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.new-lot__donation--link a .link-icon i {
  transition: all 0.4s ease-in-out;
  color: #b6b6b6;
}
.new-lot__donation--link a:hover {
  background-color: #d12b37;
}
.new-lot__donation--link a:hover .link-icon i {
  color: #d12b37;
}
.new-lot__checked {
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .new-lot__checked {
    border: 0px;
    border-bottom: 1px solid #f7f7f7;
    border-radius: 0px;
    margin-top: 10px;
    padding: 0px;
    padding-bottom: 15px;
  }
}
.new-lot__checked--title h3 {
  font-size: 22px;
}
.new-lot__seguro {
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .new-lot__seguro {
    border: 0px;
    border-bottom: 1px solid #f7f7f7;
    border-radius: 0px;
    margin-top: 10px;
    padding: 0px;
    padding-bottom: 15px;
    padding-top: 15px;
  }
}
.new-lot__seguro--title h3 {
  font-size: 22px;
}

.bg-light {
  background-color: rgba(65, 137, 230, 0.15);
  color: #3483FC;
  font-size: 15px;
}

.line-select {
  border: 2px solid #198754;
  box-shadow: 0px 35px 20px rgba(25, 135, 84, 0.2) !important;
}

.float__live {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 20%;
  z-index: 3000;
  -webkit-box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
  .float__live {
    width: 70%;
  }
}
.float__live .swiper-wrapper .swiper-slide-live {
  border-radius: 10px;
  overflow: hidden;
}
.float__live .swiper-wrapper .swiper-slide-live .float__live--head {
  background-color: #dc3545;
  width: 100%;
  height: 20px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
.float__live .swiper-wrapper .swiper-slide-live .float__live--head span {
  color: #ffffff;
  font-size: 13px;
}
.float__live .swiper-wrapper .swiper-slide-live .float__live--head i {
  color: #ffffff;
  font-size: 18px;
}
.float__live .swiper-wrapper .swiper-slide-live .float__live--video iframe {
  width: 100%;
}
.float__live .swiper-button-next,
.float__live .swiper-button-prev {
  background-color: #ffffff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
}
.float__live .swiper-button-next:after,
.float__live .swiper-button-prev:after {
  font-size: 15px;
  color: #dc3545;
}

.chat {
  position: fixed;
  background-color: #ffffff;
  max-width: 350px;
  width: 100%;
  right: 20px;
  bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  bottom: -5000px;
}
.chat--header {
  height: 60px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat--header--auctioneer {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  column-gap: 10px;
}
.chat--header--auctioneer .auctioneer--avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.chat--header--auctioneer .auctioneer--info span {
  color: #ffffff;
  font-size: 12px;
}
.chat--header--auctioneer .auctioneer--info h3 {
  color: #ffffff;
  font-size: 16px;
  padding: 0;
  margin: 0;
}
.chat--header a i {
  color: #ffffff;
  font-size: 20px;
  transition: all 0.3s ease;
}
.chat--header a:hover i {
  color: #ffffff;
  transform: scale(1.2);
}
.chat--body {
  background-color: #ffffff;
  max-height: 280px;
  min-height: 280px;
  height: 100%;
  padding: 20px;
  overflow-y: auto;
  transition: scroll-behavior 0.5s ease;
}
.chat--body-msg {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  margin-bottom: 20px;
}
.chat--body-msg .chat-avatar {
  flex-basis: 15%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.chat--body-msg .chat-avatar span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
.chat--body-msg .chat-avatar img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.chat--body-msg .conversation-text {
  flex-basis: 85%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.chat--body-msg .conversation-text .ctext-wrap {
  width: 80%;
}
.chat--body-msg .conversation-text .ctext-wrap i {
  font-size: 12px;
}
.chat--body-msg .conversation-text .ctext-wrap p {
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 14px;
}
.chat--body-msg.odd .chat-avatar {
  order: 1;
}
.chat--body-msg.odd .conversation-text {
  order: 0;
  text-align: right;
  justify-content: flex-end;
}
.chat--body-msg.odd .conversation-text .ctext-wrap {
  background-color: #fef5e4;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 0px;
  padding: 5px 15px;
  position: relative;
}
.chat--body-msg.odd .conversation-text .ctext-wrap i {
  color: #555;
}
.chat--body-msg.odd .conversation-text .ctext-wrap p {
  color: #555;
}
.chat--body-msg.odd .conversation-text .ctext-wrap::after {
  right: -11px;
  bottom: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-width: 6px;
  margin-right: -1px;
  border-color: transparent;
  border-left-color: #fef5e4;
  border-bottom-color: #fef5e4;
  right: -10px;
  left: auto;
}
.chat--body-msg.auctioneer .chat-avatar {
  justify-content: flex-start;
}
.chat--body-msg.auctioneer .chat-avatar span {
  background-color: #f5f5f5;
}
.chat--body-msg.auctioneer .conversation-text {
  justify-content: flex-start;
}
.chat--body-msg.auctioneer .conversation-text .ctext-wrap {
  background-color: #f1f3fa;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 5px 15px;
  position: relative;
}
.chat--body-msg.auctioneer .conversation-text .ctext-wrap i {
  color: #555;
}
.chat--body-msg.auctioneer .conversation-text .ctext-wrap p {
  color: #333;
}
.chat--body-msg.auctioneer .conversation-text .ctext-wrap::after {
  left: -11px;
  bottom: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #f1f3fa;
  border-width: 6px;
  margin-right: -1px;
  border-right-color: #f1f3fa;
  transform: rotate(90deg);
}
.chat--body::-webkit-scrollbar {
  width: 5px;
}
.chat--body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.chat--body::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.chat--button {
  border-top: 1px solid #eaeaea;
}
.chat--button input[type=text] {
  background-color: #fff;
  height: 60px;
  border: 0px;
  border-radius: 0px;
}
.chat--button input[type=text]:focus {
  outline: none; /* Eliminar el borde de enfoque predeterminado */
  box-shadow: none; /* Eliminar la sombra de enfoque predeterminada */
  /* Agregar cualquier otro estilo que desees para el input con foco */
  background-color: #f5f5f5;
}

.chat.active {
  bottom: 80px;
}

.chatBurbuja {
  position: fixed;
  right: 20px;
  bottom: 20px;
  transition: all 0.3s ease;
}
.chatBurbuja--content {
  border-radius: 50%;
}
.chatBurbuja--content a {
  padding: 15px;
  display: block;
}
.chatBurbuja--content a i {
  color: #ffffff;
  font-size: 20px;
}
.chatBurbuja--notification {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffc107;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  right: 0;
  top: -5px;
}
.chatBurbuja--notification span {
  color: #ffffff;
  font-size: 12px;
}
.chatBurbuja:hover {
  transform: translateY(-10px);
}

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