.vue-slider-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.25s;
}
.vue-slider-wrap .credit {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: inherit;
}
.vue-slider-wrap .options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  min-width: 600px;
  max-width: 100%;
  /* width: calc(100% - 100px); */
  width: 100%;
  height: 400px;
}
.vue-slider-wrap .shadow-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  position: absolute;
  bottom: 55px;
  font-size: 25px;
  flex-wrap: nowrap;
  width: 44px;
}
.vue-slider-wrap .options .option.active .shadow-title {
  transition: 0.2s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  opacity: 0;
}
@media screen and (max-width: 718px) {
  .vue-slider-wrap .options {
    min-width: 520px;
  }
  /* .vue-slider-wrap .options .option:nth-child(5) {
    display: none;
  } */
}
@media screen and (max-width: 638px) {
  .vue-slider-wrap .options {
    min-width: 440px;
  }
  /* .vue-slider-wrap .options .option:nth-child(4) {
    display: none;
  } */
  .vue-slider-wrap .options .option.active {
    background-position: center center !important;
  }
  .vue-slider-wrap .options .option {
    width: 30px !important;
    min-width: 30px !important;
    margin: 0 2px !important;
  }
  .vue-slider-wrap .shadow-title {
    font-size: 18px;
    width: 30px;
  }
  .vue-slider-wrap .options .option .label .icon {
    width: 20px !important;
    min-width: 20px !important;
    height: 20px !important;
  }
  .vue-slider-wrap .options .option .label .icon i {
    font-size: 10px;
  }
  .vue-slider-wrap .options .option .label {
    left: 6px !important;
  }
}
@media screen and (max-width: 558px) {
  .vue-slider-wrap .options {
    min-width: 360px;
  }
  /* .vue-slider-wrap .options .option:nth-child(3) {
    display: none;
  } */
}
@media screen and (max-width: 478px) {
  .vue-slider-wrap .options {
    min-width: 280px;
  }
  /* .vue-slider-wrap .options .option:nth-child(2) {
    display: none;
  } */
}
.vue-slider-wrap .options .option {
  position: relative;
  overflow: hidden;
  min-width: 60px;
  margin: 0 10px;
  background: var(--optionBackground, var(--defaultBackground, #e6e9ed));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.vue-slider-wrap .options .option:nth-child(1) {
  --defaultBackground: #ed5565;
}
.vue-slider-wrap .options .option:nth-child(2) {
  --defaultBackground: #fc6e51;
}
.vue-slider-wrap .options .option:nth-child(3) {
  --defaultBackground: #ffce54;
}
.vue-slider-wrap .options .option:nth-child(4) {
  --defaultBackground: #2ecc71;
}
.vue-slider-wrap .options .option:nth-child(5) {
  --defaultBackground: #5d9cec;
}
.vue-slider-wrap .options .option:nth-child(6) {
  --defaultBackground: #ac92ec;
}
.vue-slider-wrap .options .option.active {
  flex-grow: 10000;
  /* transform: scale(1); */
  max-width: 1200px;
  margin: 0px;
  border-radius: 5px;
  background-size: cover;
}
.vue-slider-wrap .options .option.active .shadow {
  box-shadow: inset 0 -120px 120px -120px black,
    inset 0 -120px 120px -100px black;
}
.vue-slider-wrap .options .option.active .label {
  top: 40px;
  left: 20px;
}
.vue-slider-wrap .options .option.active .label .info > div {
  left: 0px;
  opacity: 1;
}
.vue-slider-wrap .options .option:not(.active) {
  flex-grow: 1;
  border-radius: 5px;
}
.vue-slider-wrap .options .option:not(.active) .shadow {
  bottom: -40px;
  box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}
.vue-slider-wrap .options .option:not(.active) .label {
  bottom: 10px;
  left: 10px;
}
.vue-slider-wrap .options .option:not(.active) .label .info > div {
  left: 20px;
  opacity: 0;
}
.vue-slider-wrap .options .option .shadow {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 120px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.vue-slider-wrap .options .option .label {
  display: flex;
  position: absolute;
  right: 0px;
  height: 40px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.vue-slider-wrap .options .option .label .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: white;
  color: var(--defaultBackground);
}
.vue-slider-wrap .options .option .label .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
  color: white;
  white-space: pre;
}
.vue-slider-wrap .options .option .label .info > div {
  position: relative;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
}
.vue-slider-wrap .options .option .label .info .main {
  font-weight: bold;
  font-size: 1.2rem;
}
.vue-slider-wrap .options .option .label .info .sub {
  transition-delay: 0.1s;
}
