.bg-image {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-attachment: fixed;
}

.mask {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5620842086834734) 12%, rgba(255, 255, 255, 0) 35%);
}



.bg-fixed {
  background-attachment: fixed;
}


.img-overlay-wrap {
  position: relative;
  display: inline-block; /* <= shrinks container to image size */
  transition: transform 150ms ease-in-out;
}

.img-overlay-wrap img { /* <= optional, for responsiveness */
   display: block;
   max-width: 100%;
   height: auto;
}

.img-overlay-wrap svg {
  position: absolute;
  top: 0;
  left: 0;
}

/* .img-overlay-wrap:hover {
  transform: rotate( 15deg );
} */

/* Breed egg color indicators */
.egg-color-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.egg-white {
  background-color: #ffffff;
  border-color: #dee2e6;
}

.egg-brown {
  background: linear-gradient(45deg, #8B4513, #D2691E);
}

.egg-blue {
  background: linear-gradient(45deg, #87CEEB, #4682B4);
}

.egg-green {
  background: linear-gradient(45deg, #90EE90, #228B22);
}

.egg-cream {
  background: linear-gradient(45deg, #F5F5DC, #DDD8C7);
}

.egg-pink {
  background: linear-gradient(45deg, #FFB6C1, #FF69B4);
}

.egg-speckled {
  background: linear-gradient(45deg, #F5F5DC, #DDD8C7);
  background-image: radial-gradient(circle at 30% 20%, #8B4513 1px, transparent 2px),
                    radial-gradient(circle at 70% 60%, #8B4513 1px, transparent 2px),
                    radial-gradient(circle at 50% 80%, #8B4513 1px, transparent 2px);
}

.egg-silver {
  background: linear-gradient(45deg, #C0C0C0, #808080);
}

.egg-golden {
  background: linear-gradient(45deg, #FFD700, #DAA520);
}

.egg-tinted {
  background: linear-gradient(45deg, #F0F8FF, #E6E6FA);
}

.egg-default {
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}
