.product_container {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 30px;
}

.transition_content {
  /* Define the initial state of the element (before the transition) */
  opacity: 0 !important;
  transition: opacity 2s ease !important; /* Add the desired transitions */
}

.transition_content.show {
  /* Define the final state of the element (after the transition) */
  opacity: 1 !important;
}

#player-name {
  width: 100%;
  border: 1px solid;
  border-color: var(--color-base-text);
  border-radius: var(--inputs-radius);
  color: var(--color-base-text);
  line-height: 1.5;
  font-family: var(--p-font-family-sans);
  background-color: rgb(var(--color-background));
  padding: 3px 3px;
}

#player-name-2 {
  width: 100%;
  border: 1px solid;
  border-color: var(--color-base-text);
  border-radius: var(--inputs-radius);
  color: var(--color-base-text);
  line-height: 1.5;
  font-family: var(--p-font-family-sans);
  background-color: rgb(var(--color-background));
  padding: 3px 3px;
}

#player-number {
  border: 1px solid;
  width: 50%;
  border-color: var(--color-base-text);
  border-radius: var(--inputs-radius);
  color: var(--color-base-text);
  line-height: 1.5 !important;
  font-family: var(--p-font-family-sans);
  background-color: rgb(var(--color-background));
  padding: 3px 3px;
}

#player-year {
  border: 1px solid;
  width: 50%;
  border-color: var(--color-base-text);
  border-radius: var(--inputs-radius);
  color: var(--color-base-text);
  line-height: 1.5 !important;
  font-family: var(--p-font-family-sans);
  background-color: rgb(var(--color-background));
  padding: 3px 3px;
}

/*************** INVERT BUTTON STYLING **************/

.checkbox-container {
  width: 100%;
  height: 30px;
  position: relative;
  padding-left: 35px;
  top: 5px;
  left: 0px;
  cursor: pointer;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.svg-checkmark {
  fill: black; /* default color */
  position: absolute;
  top: 0;
  left: 0;
}

/* Change color when checked */
.checkbox-container input:checked ~ .svg-checkmark {
  fill: blue;
}

/*************** RADIO BUTTON STYLING **************/

#size_variant {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 10px 0 10px;
  text-align: center;
  width: 100%;
  background-color: rgb(var(--color-background));
  border: 1px solid;
  border-color: var(--color-base-text);
  color: var(--color-base-text);
  line-height: 2.2;
  font-family: var(--p-font-family-sans);
}
select option {
  color: black;
}

/*************** IMAGE ADD ONS STYLING **************/

#mousepointer {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 60px;
  animation-name: movePointer;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  display: block !important;
  background: none;
  pointer-events: none;
  z-index: 10;
}

#rotation-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  display: block !important;
  background: none;
  pointer-events: none;
  z-index: 10;
}

@keyframes movePointer {
  from {
    left: 30%;
  }
  to {
    left: calc(80% - 30px);
  }
}

.circle {
  position: absolute;
  bottom: 10px;
  left: 50%; 
  transform: translateX(-50%); 
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid grey;
  background-color: white;
  transition: background-color 0.5s ease-in-out;
  cursor: pointer;
  z-index: 100;
}

.circle.left {
  transform: translateX(-150%); 
}

.circle.right {
  transform: translateX(50%); 
}

.filled {
  background-color: grey;
}

.arrow {
  position: absolute;
  height: 20px;
  width: 20px !important;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.5s ease-in-out;
  display: block !important;
  cursor: pointer;
  z-index: 100;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.selected {
  opacity: 0.3;
}

.teamatical-impulse-image {
  background-color: white;
}

.teamatical-impulse-image img {
  padding: 100px;
}

@media (max-width: 1024px) {
  .teamatical-impulse-image {
    height: auto !important;
    padding-bottom: 0 !important;
    background-color: white;
  }

  .teamatical-impulse-image img {
    padding: 0;
  }
}

/*************** TEXTBOX STYLING **************/
.ella-teamatical-textbox {
  margin: 10px 0px;
}

.ella-teamatical-input {
  border: 1px solid black;
  padding: 6px;
  margin: 5px 0px;
}

.deploy-teamatical-input {
  box-shadow: 0 0 0 .1rem var(--form-input-border);
  border: 0 !important;
  border-radius: var(--btn-1-border-radius);
}

.impulse-teamatical-textbox {
  margin-bottom: 20px;
}

.teamatical-no-pointer-events {
  pointer-events: none;
}

.senda-teamatical-textbox {
  margin-bottom: 20px;
}

.senda-teamatical-input {
  margin-bottom: 20px;
}

.enterprise-teamatical-textbox {
  margin-bottom: 20px;
}

.minion-teamatical-input {
  border: 2px solid #b4bfc8;
  border-radius: 10px;
  padding: 10px;
  background-color: #f6f7fa;
  font-weight: var(--font-body-weight);
}

.stylix-teamatical-label {
  margin-bottom: 10px;
}

.stylix-teamatical-textbox {
  margin-bottom: 20px;
}

.stylix-teamatical-image-container {
  padding: 30px
}