/*
Theme Name: Impreza Child
Template: Impreza
Version: 1.0
Author:	UpSolution
Theme URI: http://impreza.us-themes.com/
Author URI: http://us-themes.com/
*/

/*Add your own styles here:*/


.gradient-bar-custom {
  background: linear-gradient(to right, #1a0975, #2b0a8e, #5c0f81, #8d1259, #c3172f, #e61919);
  border-radius: 6px;
  height: 25px;
  width: 100%;
  display: block;
}
.wp-iso-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.wp-iso-chips .chip {
  margin: 4px 6px 4px 0; /* adds real space */
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: #efeafb;
  color: #5a46c6;
  border: 1px solid rgba(90, 70, 198, 0.14);
  border-radius: 9999px;
  padding: 0.35rem 0.75rem;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: default;
  transition: color 0.3s ease, background 0.3s ease;
  z-index: 0;
}

.wp-iso-chips .chip::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5a46c6;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.wp-iso-chips .chip:hover::after {
  transform: scaleX(1);
}

.wp-iso-chips .chip:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .wp-iso-chips .chip {
    font-size: 0.78rem;
    padding: 0.3rem 0.6rem;
    margin: 3px 5px 3px 0;
  }
}
