:root {
  --klt-color: #7e1e66;
}
/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 400px;
  perspective: 1000px;
  /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 400px;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
  border-radius: 20px;
  border: 1px solid gray transparent;
  box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.253);
}
/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: white;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color:  var(--klt-color);
  color: white;
  transform: rotateY(180deg);
}

#whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
#instagram {
  position: fixed;
  bottom: 80px;
  right: 20px;
}

#tabladetalles {
  position: fixed;
  bottom: 140px;
  right: 20px;
}
svg {
  width: 80px;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
}
circle {
  fill: #25d366;
}
path {
  fill: #fff;
}

.whatsapp {
  position: inherit;
  width: 50px;
  height: 50px;
  bottom: 40px;
  right: 49px;
  background-color: #25d366;
  color: #fff;
  border-radius: 58px;
  text-align: center;
  font-size: 30px;
  z-index: 2 !important;
  padding: 10px;
}

.talles {
  position: inherit;
  width: 50px;
  height: 50px;
  bottom: 40px;
  right: 49px;
  background-color: rgb(3 152 158);
  color: #fff;
  border-radius: 58px;
  text-align: center;
  font-size: 30px;
  z-index: 2 !important;
  padding: 5px;
}

.instagram {
  position: inherit;
  width: 50px;
  height: 50px;
  bottom: 40px;
  right: 49px;
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  color: #fff;
  border-radius: 58px;
  text-align: center;
  font-size: 30px;
  z-index: 2 !important;
  padding: 10px;
}

.spansocial {
  border-radius: 5px;
  background-color: white;
  color: black;
  padding: 5px;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
}
