p{
    text-align:justify;
}
.colorPanel {
  margin: 0px;
  padding: 5px;
  position: fixed;
  z-index: 100;
  min-width: 20px;
  border-radius: 4px 0 0 4px;
  background-color: #4b00a0;
  right: 0;
  top: 33%;
}

.colorPanel ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: none;
}

.colorPanel ul li {
  display: block;
  margin-top: 10px;
}

.colorPanel ul a {
  display: block;
  width: 20px;
  height: 20px;
  border: #fff 1px solid;
}

.colorPanel a.cart {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 6px;
  padding-bottom: 8px;
  display: block;
}

#cpToggle {
  display: block;
  height: 30px;
  width: 20px;
  line-height: 30px;
  background-size: cover;
}

.cp-custom {
  padding: 12px;
}

.cp-custom #cpToggle {
  background: none;
}

.cp-custom i {
  font-size: 15px;
  color: #fff;
}
.pb-3 {
  padding-bottom: 36px;
}

.fill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
      background: linear-gradient(to right, rgb(0 41 80 / 83%), transparent);
}

.fa-ok-o:before {
  content: "\f208";
}

.fa-globe:before {
  content: "\f269";
}
.short_dis_x {
  padding: 0px 20px;
  color: #fff;
  text-align: -webkit-auto;
}
.mb_x {
  margin-bottom: 3.5rem;
}

img {
  width: 100%;
  display: block;
}

.img-display {
  overflow: hidden;
  border: 1px solid #d9d9d9;
}

.img-showcase {
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
}

.img-showcase img {
  min-width: 100%;
}

.img-select {
  display: flex;
}

.img-item {
  flex: 0 0 24.3%;
  max-width: 24.3%;
  margin: 0.3rem;
  border: 1px solid #d9d9d9;
}

.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3) {
  margin-right: 0;
}

.img-item:hover {
  opacity: 0.8;
}

@media screen and (min-width: 992px) {
  .product-imgs {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .text-sm-center {
    text-align: center;
  }
}
.gallery-products .photo-list .photo{
    border: 5px solid #1863ab;
    border-radius: 0px;
}
.formsubmitButton .disabled {
  /* Disabled button style */
  background-color: #ccc;
  cursor: not-allowed;
}

.formsubmitButton .animating {
  /* Animated button style */
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}


  /*Estilos generales del boton whatsapp*/
        .whatsapp-btn {
            position: fixed;
            bottom: 31px;
            left: 20px;
            z-index: 9999;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #25d366;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            animation: breathe 2s ease-in-out infinite;
        }
        
        
        .whatsapp-btn i {
            color: #fff;
            font-size: 24px;
            animation: beat 2s ease-in-out infinite;
            text-decoration: none;
        }

        /*Estilos con animation contorno respirando*/
        @keyframes breathe {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            }
        }

