#slider-view-wrapper {
  padding: 0px;
  padding-left: 0px; /* Delete padding by drop area */
  padding-bottom: 0px;
  padding-right: 0px;
  border-radius: 15px;
  /* border-top-left-radius: 0px; */
  /* border-bottom-left-radius: 0px; */
  text-align: left;
  /* border-bottom-left-radius: 14px; */
  /* border-bottom-right-radius: 14px; */
  /* background: -webkit-linear-gradient(90deg, rgb(22, 135, 237), rgb(80, 156, 232));
  background: linear-gradient(90deg, rgb(22, 135, 237), rgb(80, 156, 232));   */
  background-color: transparent;
  /* background-color: rgb(35, 107, 176); */
  /* transition: box-shadow 0.3s; */
  transition: background-color 0.3s;
  /* position: relative; */
}
#slider-view-wrapper.detail-view {
  /* box-shadow: 0px 0px 15px 2px #f39c12; */
  /* background-color: #fdcb6e; */
  /* background-color: #f39c12; */
  /* background: rgb(255,222,160);
  background: linear-gradient(135deg, rgba(255,222,160,1) 0%, rgba(253,203,110,1) 100%); */
  /* box-shadow: 0px 0px 7.5px 1px rgb(112, 112, 112) inset; */
  animation-name: to-outer-shadow;
  animation-delay: 0.2s;
  animation-duration: 0.35s;
  animation-fill-mode: forwards;
}

#component-slider {
  width: auto;
  /* min-height: 200px; */
  padding: 10px 0px 12px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
#component-slider::-webkit-scrollbar-thumb {
  border-radius: 10px;
  /* border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px; */
}
#component-slider::-webkit-scrollbar {
  position: absolute;
  border-radius: 0px;
  height: 10px;
}
#component-slider::-webkit-scrollbar-track {
  background-color: rgb(235, 235, 235);
  /* border-bottom-left-radius: 5px; */
  border-bottom-right-radius: 5px;
}

#component-slider .common-style {
  display: inline-block;
  vertical-align: top;
}

#component-slider .drag-handle {
  width: 100%;
  /* width: calc(100% - 20%); */
  height: 6px;
  /* border: 2.5px solid white; */
  /* border: 2.5px solid rgb(16, 133, 197); */
  /* border: 2.5px solid rgb(16, 133, 197); */
  /* border-left: 5px solid transparent; */
  /* border-right: 5px solid transparent; */
  /* border-bottom: 0px; */
  background-color: rgb(0, 112, 173);
  border-radius: 2px;
  /* border-bottom-left-radius: 0px; */
  /* border-bottom-right-radius: 0px; */
  margin-left: auto;
  margin-right: auto;
  /* margin-bottom: 10px; */
  /* padding-bottom: 10px; */
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}
/* #component-slider .drag-handle {
  width: calc(100% - 20%);
  height: 5px;
  border: 2.5px solid rgb(16, 133, 197);
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
} */
#component-slider .common-style.component {
  width: 200px;
  min-height: 220px;
  background-color: white;
  /* padding: 6px; */
  border-radius: 10px;
  cursor: pointer;
  /* border: 2px solid rgb(16, 133, 197); */
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
  float: left;
  transition: box-shadow 0.25s;
}

#component-slider .common-style.uni-drop-area {
  position: relative;
  width: 30px;
  /* left: -20px; */
  /* height: calc(100% - 4px); */
  min-height: 280px;
}
#component-slider .common-style.uni-drop-area.sm-h {
  min-height: 40px;
}

#component-slider .common-style.add-page {
  width: 200px;
  /* min-height: 270px; */
  background-color: white;
  padding: 6px;
  cursor: pointer;
  border-radius: 6px;
  background: -webkit-linear-gradient(90deg, rgb(230, 230, 230) 0%, white 70%);
  background: linear-gradient(90deg, rgb(230, 230, 230) 0%, white 70%);
  box-sizing: border-box;
  /* background: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(35, 107, 176) 70%); */
  /* background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(35, 107, 176) 70%); */
  /* margin-top: 16px; */
}
#component-slider .common-style.add-page:hover {
  background: -webkit-linear-gradient(90deg, rgb(230, 230, 230) 0%, white 100%);
  /* background: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(35, 107, 176) 100%); */
  background: linear-gradient(90deg, rgb(230, 230, 230) 0%, white 100%);
  /* background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(35, 107, 176) 100%); */
}
#component-slider .common-style.add-page i {
  float: left;
  vertical-align: middle;
  color: black;
}