:root {
    --menu-bg-splide-active : #ffffff;
}
.wg-dynamic-style.is-active {
    background : var(--menu-bg-splide-active) !important;
    color : #FFFFFF !important;
}

#appTextPrimary, #appTextSecondary, #appOverlay {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 5px 0;
  
  input {
    font-size: 1rem;
    border-radius: 5px;
    border: none;
  }
}
#appTextPrimary { grid-area: 1 / 2 / 2 / 3; }
#appTextSecondary { grid-area: 2 / 2 / 3 / 3; }
#appOverlay { grid-area: 3 / 2 / 4 / 3; }
.wg-color-wrapper .elementor-button-wrapper{ 
    grid-area: 4 / 2 / 5 / 3; 
    overflow:hidden;
    min-height: 35px;
}
.wgCaptioCopy  { 
  grid-area: 1 / 1 / 5 / 2; 
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  background: #999999;
  color: #000000;
  font-family: "Poppins";
  font-size: 1rem;
  font-weight: 600;
  min-height: 300px;
  border-radius: 0 5px 5px 0;
  width: 25px;
  cursor:pointer;
} 
.userColorPrimary, .userColorSecondary, .userColorOverlay {
    margin-bottom: 5px;
}

.wg-color-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 5px;
    grid-row-gap: 0px; 
    max-height: 300px;
    border-radius: 10px;
    box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #0e6655, #d0ece9);
    color: white;
    background-size: 400% 400%;
}
@media only screen and (max-width: 600px) {
  .wg-color-wrapper {
    grid-column-gap: 10px;
  }
}
.wg-color-wrapper:hover {
  box-shadow: 0px 10px 20px 2px rgba(0, 0, 0, 0.25);
  animation: gradientBg 5s ease infinite;
}
@keyframes gradientBg {
  0% {
    background-position: 0% 20%;
    color: black;
  }

  50% {
    background-position: 40% 20%;
    color: black;
  }

  100% {
    background-position: 0% 25%;
    color: black;
  }
}
.wg-color-wrapper {
    transition: all ease-in-out .7s;
    position: fixed;
    right: -75px;
    top:40%;
    z-index:999999;
    width: 100px;
}