.rkit-pricelist-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  padding: 10px;
  background-color: transparent;
  overflow: hidden;
  gap: 20px;
}

.rkit-pricelist-wrapper-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 0 auto;
  width: 100%;
  /* gap: 10px; */
  overflow: hidden;
}

.rkit-pricelist-image {
  max-width: 100%;
  height: max-content;
  position: relative;
  overflow: hidden;
  display: flex;
}

.rkit-pricelist-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.rkit-pricelist-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 0px;
  justify-content: center;
}

.rkit-pricelist-item-new {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.rkit-pricelist-title {
  color: #000000;
  padding-right: 20px;
  margin: 0px;
}

.rkit-pricelist-separator {
  flex-basis: 1;
  overflow: hidden;
  flex: 20;
  flex-shrink: 4;
  align-self: center;
  text-align: right;
  margin-right: 10px;
  border-bottom-style: dotted;
  border-bottom-color: black;
  border-bottom-width: 3px;
}

.rkit-pricelist-price {
  display: flex;
  font-size: 18px;
  min-width: 60px;
  align-self: center;
  padding: 20px;
  text-wrap: wrap;
  color: #000000;
}

.rkit-pricelist-description-tag {
  color: #000000;
  width: 80%;
  padding: 0px;
  margin: 0px;
}

.rkit-pricelist-title-tag {
  margin: 0px;
  padding: 0px;
}

.rkit-pricelist-wrapper-outer .rkit-pricelist-image.show-on-hover-image {
  margin-left: calc(-1 * var(--width-image, 50%));
  width: var(--width-image, 50%);
  flex: 1 0 auto;
  transition: all var(--hover-duration, 0.5s) linear;
}
.rkit-pricelist-wrapper-outer .rkit-pricelist-wrapper.show-on-hover-image {
  margin-right: 0px;
  width: 100%;
}
.rkit-pricelist-wrapper-outer:hover .rkit-pricelist-image.show-on-hover-image {
  margin-left: 0%;
}
