.FieldSound {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 6px;
  padding: 2px;
}

.FieldSound a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.8px;
  font-weight: 700;
  color: #fff;
  border: solid 1px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  padding: 4px;
  cursor: pointer;
}

.FieldSound a img {
    opacity: 0.7;
}

.FieldSound a.selected {
  background-color: rgba(0, 0, 0, 0.15);
}

.FieldMotorRotation {
  padding: 10px 12px;
  width: 127px;
  height: 175px;
  overflow: hidden;
}

.FieldMotorRotation .buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.FieldMotorRotation .buttons a {
  height: 41px;
  width: 41px;
  border-radius: 41px;
  color: white;
  border: 2px solid white;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.95px;
  font-weight: 400;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
}

.FieldMotorRotation .wheel {
  position: relative;
  height: 101px;
  width: 101px;
  border-radius: 101px;
  border: 1px solid;
  margin: 1px;
  border-color: rgb(0, 95, 160);
  transform: scaleX(-1);
}

.FieldMotorRotation .wheel .mark {
  position: absolute;
  top: 0;
  left: 50px;
  height: 50px;
  width: 1px;
  transform-origin: bottom;
}

.FieldMotorRotation .wheel .mark0 {
  transform: rotate(0deg);
  background-image: linear-gradient(rgb(191, 199, 205), rgb(191, 199, 205));
}

.FieldMotorRotation .wheel .mark1 {
  transform: rotate(90deg);
  background-image: linear-gradient(
    transparent 15%,
    rgb(245, 245, 245) 15%,
    rgb(245, 245, 245) 30%,
    transparent 30%
  );
}

.FieldMotorRotation .wheel .mark2 {
  transform: rotate(180deg);
  background-image: linear-gradient(
    transparent 15%,
    rgb(245, 245, 245) 15%,
    rgb(245, 245, 245) 30%,
    transparent 30%
  );
}

.FieldMotorRotation .wheel .mark3 {
  transform: rotate(270deg);
  background-image: linear-gradient(
    transparent 15%,
    rgb(245, 245, 245) 15%,
    rgb(245, 245, 245) 30%,
    transparent 30%
  );
}

.FieldMotorRotation .wheel .handleContainer {
  position: absolute;
  top: -11px;
  left: 49px;
  height: 61px;
  width: 2px;
  transform-origin: bottom;
  background-color: rgb(191, 199, 205);
}

.FieldMotorRotation .wheel .handle {
  height: 21px;
  width: 21px;
  border-radius: 21px;
  margin-left: -10px;
  background-color: white;
  box-sizing: border-box;
  box-shadow: 0px 2px 2px rgb(0 0 0 / 16%);
  cursor: pointer;
}

.FieldMotorRotation .wheel .center {
  color: rgb(0, 95, 160);
  transform: scaleX(-1);
  position: absolute;
  left: calc(50% - 16px);
  top: calc(50% - 16px);
  height: 32px;
  width: 32px;
  border-radius: 32px;
  background-color: white;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.5px;
  font-weight: 700;
  line-height: 32px;
}

.fieldTilted {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fieldTilted button {
  float: none;
}

.fieldTilted > .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fieldTilted > .row2 {
  flex: 1;
}

.fieldTilted > .row3 {
  justify-content: center;
}

.fieldTilted button[data-value="1"],
.fieldTilted button[data-value="2"],
.fieldTilted button[data-value="3"],
.fieldTilted button[data-value="4"] {
  border-radius: 50%;
}

.fieldTilted img[data-value="1"],
.fieldTilted img[data-value="2"],
.fieldTilted img[data-value="3"],
.fieldTilted img[data-value="4"] {
  width: 16px;
  height: 16px;
}

.fieldTilted .animator {
  width: 135px;
  height: 125px;
  perspective: 300px;
  position: relative;
}

.fieldTilted .animator .hub {
  position: absolute;
  width: 94px;
  height: 60px;
  left: 20px;
  top: 28px;
  transform-style: preserve-3d;
  z-index: 2;
}

.fieldTilted .animator .hub .top {
  position: absolute;
  width: 91px;
  height: 70px;
  transform: rotateX(90deg) translateX(1px) translateY(-15px) translateZ(33px);
}

.fieldTilted .animator .hub .front {
  position: absolute;
  width: 94px;
  height: 60px;
  transform: rotateY(0deg) translateZ(19px);
}

.fieldTilted .animator .hub .bottom {
  position: absolute;
  width: 91px;
  height: 70px;
  transform: rotateX(90deg) translateX(1px) translateZ(-21px) translateY(-17px);
}

.fieldTilted .animator .shadow {
  display: block;
  transform-origin: top center;
  position: absolute;
  width: 105px;
  height: 11px;
  top: 10px;
  z-index: 1;
}

.fieldTilted.value1 .hub {
  transform-origin: center center;
  animation: hubAnimation1 1s cubic-bezier(0.245, 0.05, 0.25, 0.85);
  transform: rotateX(45deg);
  transition: 0.5s ease-in-out;
  animation-iteration-count: 2;
}

.fieldTilted.value1 .shadow {
  opacity: 1;
  animation: shadowAnimation1 1s cubic-bezier(0.245, 0.05, 0.25, 0.85);
  animation-fill-mode: forwards;
  animation-iteration-count: 2;
}

.fieldTilted.value2 .hub {
  transform-origin: center center;
  animation: hubAnimation2 1s cubic-bezier(0.245, 0.05, 0.25, 0.85);
  transform: rotateX(-45deg);
  transition: 0.5s ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: 2;
}

.fieldTilted.value2 .shadow {
  opacity: 1;
  animation: shadowAnimation2 1s cubic-bezier(0.245, 0.05, 0.25, 0.85);
  animation-fill-mode: forwards;
  animation-iteration-count: 2;
}

.fieldTilted.value3 .hub {
  transform-origin: center center;
  animation: hubAnimation3 1s cubic-bezier(0.345, 0.05, 0.25, 0.85);
  transform: rotateZ(-33deg);
  transition: 0.5s ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: 2;
}

.fieldTilted.value3 .shadow {
  opacity: 1;
  animation: shadowAnimation3 1s cubic-bezier(0.245, 0.05, 0.25, 0.85);
  animation-fill-mode: forwards;
  animation-iteration-count: 2;
}

.fieldTilted.value4 .hub {
  transform-origin: center center;
  animation: hubAnimation4 1s cubic-bezier(0.445, 0.05, 0.55, 0.85);
  animation-iteration-count: 2;
  animation-fill-mode: forwards;
  transition: 0.5s ease-in-out;
  transform: rotateZ(33deg);
}

.fieldTilted.value4 .shadow {
  opacity: 1;
  animation: shadowAnimation4 1s cubic-bezier(0.245, 0.05, 0.25, 0.85);
  animation-fill-mode: forwards;
  animation-iteration-count: 2;
}

.fieldTilted.value5 .hub {
  transform-origin: center center;
  animation: hubAnimation5 0.8s cubic-bezier(0.345, 0.05, 0.25, 0.85);
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  animation-iteration-count: 3;
}

.fieldTilted.value5 .shadow {
  display: none;
}

.fieldTilted.value6 .hub {
  transform: translateY(0px) translateZ(-10px);
  transition: 0.5s ease-in-out;
}

.fieldTilted.value6 .shadow {
  animation: shadowAnimation6 0.7s cubic-bezier(0.245, 0.05, 0.25, 0.85);
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

@keyframes hubAnimation1 {
  0% {
    transform: rotateX(45deg);
  }

  50% {
    transform: rotateX(0deg);
  }

  100% {
    transform: rotateX(45deg);
  }
}

@keyframes hubAnimation2 {
  0% {
    transform: rotateX(-45deg);
  }

  50% {
    transform: rotateX(0deg);
  }

  100% {
    transform: rotateX(-45deg);
  }
}

@keyframes hubAnimation3 {
  0% {
    transform: rotateZ(-33deg);
  }

  50% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(-33deg);
  }
}
@keyframes hubAnimation4 {
  0% {
    transform: rotateZ(33deg);
  }

  50% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(33deg);
  }
}

@keyframes hubAnimation5 {
  0% {
    transform: rotateZ(0deg);
  }

  33% {
    transform: rotateZ(-33deg);
  }

  66% {
    transform: rotateZ(33deg);
  }

  100% {
    transform: rotateZ(0deg);
  }
}

@keyframes shadowAnimation1 {
  0% {
    opacity: 1;
    transform: scaleX(1) scaleY(0.6) translateX(15px) translateY(168px)
      translateZ(-20px);
  }

  50% {
    opacity: 0;
    transform: scaleX(0.4) scaleY(0.2) translateX(15px) translateY(205px)
      translateZ(-20px);
  }

  100% {
    opacity: 1;
    transform: scaleX(1) scaleY(0.6) translateX(15px) translateY(168px)
      translateZ(-20px);
  }
}
@keyframes shadowAnimation2 {
  0% {
    opacity: 1;
    transform: scaleY(1) scaleY(1) translateX(15px) translateY(75px)
      translateZ(-10px);
  }

  50% {
    opacity: 0;
    transform: scaleX(0.7) scaleY(0.9) translateX(15px) translateY(75px)
      translateZ(-10px);
  }

  100% {
    opacity: 1;
    transform: scaleY(1) scaleY(1) translateX(15px) translateY(75px)
      translateZ(-10px);
  }
}
@keyframes shadowAnimation3 {
  0% {
    opacity: 1;
    transform: skewX(-33deg) scaleX(0.7) scaleY(0.3) translateX(95px)
      translateY(340px) translateZ(-10px);
  }

  50% {
    opacity: 0;
    transform: skewX(-33deg) scaleX(0.4) scaleY(0.3) translateX(95px)
      translateY(340px) translateZ(-10px);
  }

  100% {
    opacity: 1;
    transform: skewX(-33deg) scaleX(0.7) scaleY(0.3) translateX(95px)
      translateY(340px) translateZ(-10px);
  }
}

@keyframes shadowAnimation4 {
  0% {
    opacity: 1;
    transform: skewX(33deg) scaleX(0.7) scaleY(0.3) translateX(-45px)
      translateY(340px) translateZ(-10px);
  }

  50% {
    opacity: 0;
    transform: skewX(33deg) scaleX(0.4) scaleY(0.3) translateX(-45px)
      translateY(340px) translateZ(-10px);
  }

  100% {
    opacity: 1;
    transform: skewX(33deg) scaleX(0.7) scaleY(0.3) translateX(-45px)
      translateY(340px) translateZ(-10px);
  }
}

@keyframes shadowAnimation6 {
  0% {
    opacity: 0;
    transform: scaleY(0.5) translateX(15px) translateY(160px) translateZ(-10px);
  }

  100% {
    opacity: 1;
    transform: scaleY(0.5) translateX(15px) translateY(160px) translateZ(-10px);
  }
}

.FieldSlider {
  display: flex;
  justify-content: center;
  align-items: center;
}

.FieldSlider .component {
  width: 27px;
  height: 148px;
  margin-top: 4px;
}

.FieldSlider .track {
  position: relative;
  width: 16px;
  height: 120px;
  border-radius: 5px;
  transform: translate(5px, 12px);
}

.FieldSlider .thumb {
  position: absolute;
  height: 22px;
  width: 22px;
  border-radius: 22px;
  background-color: #fff;
  cursor: pointer;
  box-shadow: 0 0 0 2px rgb(255 255 255 / 30%);
  transform: translate(calc(-50% + 8px), 50%);
}

.FieldLedMatrix {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.FieldLedMatrix > .left {
  width: 104px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.FieldLedMatrix .btns {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 4px;
  padding: 2px;
}

.FieldLedMatrix .btns a {
  width: 30px;
  height: 30px;
  border: 1px solid rgb(74, 0, 208);
  border-radius: 5px;
}

.FieldLedMatrix .tools {
  height: 17px;
  display: flex;
  justify-content: space-between;
  margin: 0 26px 5px 26px;
}

.FieldLedMatrix .tool {
  width: 17px;
  height: 17px;
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1px;
}

.FieldLedMatrix .tool > div {
  width: 5px;
  height: 5px;
}

.FieldLedMatrix > .right {
  width: 44px;
  position: relative;
}

.FieldLedMatrix .slider {
  width: 38px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid rgb(74, 0, 208);
  border-radius: 4px;
  margin-left: 1px;
}

.FieldLedMatrix .slider > div {
  flex: 1;
}

.FieldLedMatrix .handle {
  position: absolute;
  border: 2px solid white;
  border-radius: 5px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 10%), 0 2px 4px -1px rgb(0 0 0 / 6%);
  box-sizing: content-box;
  left: -4px;
  top: 0px;
  width: 44px;
  height: 11.55px;
  pointer-events: none;
}

.fieldMoveSpeed .motors {
  width: 220px;
  height: 140px;
  overflow: hidden;
}

.fieldMoveSpeed .motors img {
  position: absolute;
  transform-origin: center center;
  animation-name: fieldMoveSpeedAnimation;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.fieldMoveSpeed .motors img.motor1 {
  width: 103px;
  height: 103px;
  top: 20px;
  right: 30px;
}

.fieldMoveSpeed .motors img.motor2 {
  width: 91px;
  height: 91px;
  top: 40px;
  left: 30px;
}

.fieldMoveSpeed.value15 .motors img {
  animation-duration: 5s;
}

.fieldMoveSpeed.value40 .motors img {
  animation-duration: 2s;
}

.fieldMoveSpeed.value70 .motors img {
  animation-duration: 1s;
}

.fieldMoveSpeed.value100 .motors img {
  animation-duration: 0.6s;
}

@keyframes fieldMoveSpeedAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.fieldColorSensor button {
  position: relative;
}
.fieldColorSensor button img {
  border-radius: 50%;
  border: 1px solid rgb(184, 154, 0);
}

.fieldColorSensor button img[data-value="1"] {
  background-color: rgb(231, 0, 167);
}
.fieldColorSensor button img[data-value="3"] {
  background-color: rgb(0, 144, 245);
}

.fieldColorSensor button img[data-value="4"] {
  background-color: rgb(119, 232, 255);
}

.fieldColorSensor button img[data-value="5"] {
  background-color: rgb(0, 203, 84);
}

.fieldColorSensor button img[data-value="7"] {
  background-color: rgb(255, 227, 96);
}

.fieldColorSensor button img[data-value="9"] {
  background-color: rgb(255, 0, 12);
}
.fieldColorSensor button img[data-value="10"] {
  background-color: rgb(255, 255, 255);
}

.fieldColorSensor button img[data-value="0"] {
  background-color: rgb(0, 0, 0);
}

.fieldColorSensor button img[data-value="-1"] {
  background-color: rgb(255, 255, 255);
}

.fieldColorSensor button[data-value="-1"]:after {
  display: block;
  content: " ";
  height: 4px;
  width: 36px;
  background-color: #c20012;
  position: absolute;
  top: 22px;
  left: 6px;
  transform: rotate(-45deg);
}

.fieldReceiveMessage button {
  position: relative;
}
.fieldReceiveMessage button img {
  border-radius: 50%;
  border: 1px solid rgb(184, 154, 0);
}

.fieldReceiveMessage button img[data-value="pink"] {
  background-color: rgb(231, 0, 167);
}
.fieldReceiveMessage button img[data-value="blue"] {
  background-color: rgb(0, 144, 245);
}

.fieldReceiveMessage button img[data-value="cyan"] {
  background-color: rgb(119, 232, 255);
}

.fieldReceiveMessage button img[data-value="green"] {
  background-color: rgb(0, 203, 84);
}

.fieldReceiveMessage button img[data-value="yellow"] {
  background-color: rgb(255, 227, 96);
}

.fieldReceiveMessage button img[data-value="red"] {
  background-color: rgb(255, 0, 12);
}

.fieldSendMessage button {
  position: relative;
}
.fieldSendMessage button img {
  border-radius: 50%;
  border: 1px solid rgb(184, 154, 0);
}

.fieldSendMessage button img[data-value="pink"] {
  background-color: rgb(231, 0, 167);
}
.fieldSendMessage button img[data-value="blue"] {
  background-color: rgb(0, 144, 245);
}

.fieldSendMessage button img[data-value="cyan"] {
  background-color: rgb(119, 232, 255);
}

.fieldSendMessage button img[data-value="green"] {
  background-color: rgb(0, 203, 84);
}

.fieldSendMessage button img[data-value="yellow"] {
  background-color: rgb(255, 227, 96);
}

.fieldSendMessage button img[data-value="red"] {
  background-color: rgb(255, 0, 12);
}

.fieldSendMessage button[data-value="-3"] {
  transform: translateX(56px);
}

.fieldSendMessage button[data-value="-3"] img {
  border-radius: 0;
  border: none;
  opacity: 0.8;
}

.fieldMotorSpeed .motors {
  width: 220px;
  height: 140px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fieldMotorSpeed .motors img {
  transform-origin: center center;
  animation-name: fieldMotorSpeedAnimation;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  width: 103px;
  height: 103px;
}

.fieldMotorSpeed.value15 .motors img {
  animation-duration: 5s;
}

.fieldMotorSpeed.value40 .motors img {
  animation-duration: 2s;
}

.fieldMotorSpeed.value70 .motors img {
  animation-duration: 1s;
}

.fieldMotorSpeed.value100 .motors img {
  animation-duration: 0.6s;
}

@keyframes fieldMotorSpeedAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.event-color-selector-panel {
  display: flex;
  padding: 2px;
}

.event-color-selector-panel .main-section {
  padding: 0;
}

.event-color-selector-panel .main-section .color-select-panel {
  display: block;
  flex-direction: row;
}

.event-color-selector-panel .main-section .color-select-panel .main {
  display: flex;
  flex-direction: column;
}

.event-force-sensor-selector-panel {
  display: flex;
  padding: 20px;
}

.event-force-sensor-selector-panel .motor {
  display: flex;
  margin-top: 30px;
  padding: 0 20px;
}

.event-force-sensor-selector-panel .motor .motor-body {
  display: block;
  width: 50px;
  height: 140px;
  border: 1px solid white;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
}

.event-force-sensor-selector-panel .motor .motor-body .motor-label {
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.event-force-sensor-selector-panel .motor .motor-part {
  display: block;
  width: 15px;
  height: 45px;
  margin-top: 12px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

.event-force-sensor-selector-panel .motor .motor-part.motor-part-left {
  border-left: 1px solid white;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.event-force-sensor-selector-panel .motor .motor-part.motor-part-right {
  border-right: 1px solid white;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.event-force-sensor-selector-panel .main-section {
  padding: 0 20px;
}

.event-force-sensor-selector-panel .main-section .selector-panel {
  width: 150px;
  height: 220px;
  border: 2px solid white;
  border-radius: 15px;
}

.event-force-sensor-selector-panel .selector-panel {
  display: flex;
}

.event-force-sensor-selector-panel .selector-panel .col-sensor {
  flex: 1 1 25%;
  padding-top: 20px;
}

.event-force-sensor-selector-panel .selector-panel .col-sensor .sensor {
  width: 28px;
  height: 40px;
  color: white;
  font-weight: 400;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.event-force-sensor-selector-panel
  .selector-panel
  .col-sensor
  .sensor.selected {
  background: white;
  color: #f5c401;
}

.event-force-sensor-selector-panel .selector-panel .col-sensor-left {
  margin-left: 0;
  margin-right: auto;
}

.event-force-sensor-selector-panel .selector-panel .col-sensor-right div {
  margin-right: 0;
  margin-left: auto;
}

.event-force-sensor-selector-panel .col-sensor-left .sensor {
  border-right: 1px solid white;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.event-force-sensor-selector-panel .col-sensor-right .sensor {
  border-left: 1px solid white;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.event-force-sensor-selector-panel .selector-panel .col-decoration {
  flex: 1 1 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.event-force-sensor-selector-panel
  .selector-panel
  .col-decoration
  .decoration-circle {
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.event-force-sensor-selector-panel
  .selector-panel
  .col-decoration
  .decoration-circle
  > div {
  width: 30px;
  height: 30px;
  margin: 0;
}

/* multiple and all buttons */
.event-force-sensor-selector-panel .main-section .multiple-all {
  display: flex;
  flex-direction: row;
  margin: 15px -5px 0;
}

.event-force-sensor-selector-panel .multiple-all > div {
  display: block;
  width: 50%;
  color: #fff;
  border: 1px solid white;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin: 0 5px;
  padding: 3px;
}

.event-force-sensor-selector-panel .multiple-all > div.selected {
  background: #fff;
  color: #f5c401;
}

.port-selector-panel {
    display: flex;
    padding: 20px;
}

.motor {
    display: flex;
    margin-top: 30px;
    padding: 0 20px;
}

.motor .motor-body {
    display: block;
    width: 50px;
    height: 140px;
    border: 1px solid white;
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 10px;
}

.motor .motor-body .motor-label {
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.motor .motor-part {
    display: block;
    width: 15px;
    height: 45px;
    margin-top: 12px;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

.motor .motor-part.motor-part-left {
    border-left: 1px solid white; 
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.motor .motor-part.motor-part-right {
    border-right: 1px solid white; 
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.main-section {
    padding: 0 20px;
}

.main-section .selector-panel {
    width: 150px;
    height: 220px;
    border: 2px solid white;
    border-radius: 15px;
}

.selector-panel {
    display: flex;
}

.selector-panel .col-port {
    flex: 1 1 25%;
    padding-top: 20px;
}

.selector-panel .col-port .port {
    width: 28px;
    height: 40px;
    color: white;
    font-weight: 400;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.selector-panel .col-port .port.selected {
    background: white;
    color: #fb59ce;
}

.selector-panel .col-port-left {
    margin-left: 0;
    margin-right: auto;
}

.selector-panel .col-port-right div {
    margin-right: 0;
    margin-left: auto;
}

.col-port-left .port {
    border-right: 1px solid white;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.col-port-right .port {
    border-left: 1px solid white;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.selector-panel .col-decoration {
    flex: 1 1 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.selector-panel .col-decoration .decoration-circle {
    width: 40px;
    height: 40px;
    border: 1px solid white;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.selector-panel .col-decoration .decoration-circle > div {
    width: 30px;
    height: 30px;
    margin: 0;
}
.rotation-wheel-container {
    padding: 5px;
}
.rotation-wheel-container .background {
    width: 90px;
    height: 90px;
    background-color: #d8009b;
    border-radius: 100px;
}
.rotation-wheel-container .background .needle {
    position: absolute;
    width: 2px;
    height: 40px;
    background-color: white;
}
.rotation-wheel-container .micro-adjust-panel {
    display: flex;
    width: 100px;
}
.rotation-wheel-container .micro-adjust-panel .button-adjust {
    flex: 1 1 25%;
    display: flex;
    align-items: center;
}
.rotation-wheel-container .micro-adjust-panel .button-adjust img {
    max-width: 100%;
}
.rotation-wheel-container .micro-adjust-panel .steer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 50%;
    font-size: 10px;
    color: white;
}

.light-color-selector-panel {
    display: flex;
    padding: 2px;
  }
  
  .light-color-selector-panel .main-section {
    padding: 0;
  }
  
  .light-color-selector-panel .main-section .color-select-panel {
    display: block;
    flex-direction: row;
  }
  
  .light-color-selector-panel .main-section .color-select-panel .main {
    display: flex;
    flex-direction: column;
  }
  
.light-direction-selector-panel {
  display: flex;
  width: 100px;
  flex-wrap: wrap;
}

.light-direction-selector-panel .direction-container {
  width: 38px;
  height: 38px;
  margin: 5px;
  flex: 1 1 38px;
  max-width: 38px;
  border: 1px solid #4f07d3;
  border-radius: 5px;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.light-direction-selector-panel .direction-container .direction-icon {
  max-width: 100%;
}

.light-custom-matrix-panel {
  display: flex;
  padding: 5px 2px;
}

.light-custom-matrix-panel .main-section {
  padding: 0;
}

.light-custom-matrix-panel .matrix-select-panel {
  display: flex;
  flex-direction: row;
}

.light-custom-matrix-panel .matrix-select-panel .main {
  display: flex;
  flex-direction: column;
}

.light-custom-matrix-panel .matrix-select-panel .main .top {
  flex-grow: 1;
}

.light-custom-matrix-panel .matrix-select-panel .main .bottom {
  display: flex;
  justify-content: center;
  margin: 6px 0 0 0;
}
.light-custom-matrix-panel .matrix-select-panel .main .bottom > div {
  margin: 0 15px;
  padding: 0;
}

.light-custom-matrix-panel .matrix-select-panel .side {
  width: 70px;
  margin: 0 0 0 6px;
}

.light-custom-matrix-panel .matrix-select-panel .side .gradienttrue,
.light-custom-matrix-panel .matrix-select-panel .side .gradientfalse {
  display: flex;
  flex-direction: column;
  background: #282075;
  margin: 0 3px;
  padding: 2px;
}

.light-custom-matrix-panel .matrix-select-panel .side .gradientfalse > div {
  height: 20px;
  z-index: 1;
  cursor: pointer;
}

.light-custom-matrix-panel .matrix-select-panel .side .gradienttrue > div {
  height: 18px;
  z-index: 1;
  cursor: pointer;
}

.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradientfalse
  > div:nth-child(1) {
  background: #ffffff;
}
.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradientfalse
  > div:nth-child(2) {
  background: #e7e6f0;
}
.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradientfalse
  > div:nth-child(3) {
  background: #d0cddf;
}
.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradientfalse
  > div:nth-child(4) {
  background: #b7b5d1;
}
.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradientfalse
  > div:nth-child(5) {
  background: #9e9cc2;
}
.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradientfalse
  > div:nth-child(6) {
  background: #8883b2;
}
.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradientfalse
  > div:nth-child(7) {
  background: #706aa3;
}
.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradientfalse
  > div:nth-child(8) {
  background: #585294;
}
.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradientfalse
  > div:nth-child(9) {
  background: #413983;
}

.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradienttrue
  > div:nth-child(1) {
  background: #e700a7;
}

.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradienttrue
  > div:nth-child(2) {
  background: #c061f1;
}

.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradienttrue
  > div:nth-child(3) {
  background: #0090f5;
}

.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradienttrue
  > div:nth-child(4) {
  background: #77e8ff;
}

.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradienttrue
  > div:nth-child(5) {
  background: #00cb54;
}

.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradienttrue
  > div:nth-child(6) {
  background: #00A845;
}

.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradienttrue
  > div:nth-child(7) {
  background: #ffe360;
}

.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradienttrue
  > div:nth-child(8) {
  background: #fcac00;
}

.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradienttrue
  > div:nth-child(9) {
  background: #ff000c;
}

.light-custom-matrix-panel
  .matrix-select-panel
  .side
  .gradienttrue
  > div:nth-child(10) {
  background: #ffffff;
}

.light-custom-matrix-panel .matrix-select-panel .side .gradienttrue > div.selected,
.light-custom-matrix-panel .matrix-select-panel .side .gradientfalse > div.selected {
  -moz-box-shadow: 0px 0px 0px 3px #fff;
  -webkit-box-shadow: 0px 0px 0px 3px #fff;
  box-shadow: 0px 0px 0px 3px #fff;
  border-radius: 3px;
  z-index: 2;
  margin-left: -3px;
  margin-right: -3px;
}

.light-led-selector-panel {
  display: flex;
  padding: 0 4px;
}

.light-led-selector-panel .main-section {
  padding: 0;
}

.light-led-selector-panel .led-select-panel {
  display: flex;
  flex-direction: row;
}

.light-led-selector-panel .led-select-panel .main {
  display: flex;
  flex-direction: row;
}

.light-led-selector-panel .led-select-panel .main svg {
  display: block;
}

.light-sensor-selector-panel {
  display: flex;
  padding: 20px;
}

.light-sensor-selector-panel .motor {
  display: flex;
  margin-top: 30px;
  padding: 0 20px;
}

.light-sensor-selector-panel .motor .motor-body {
  display: block;
  width: 50px;
  height: 140px;
  border: 1px solid white;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
}

.light-sensor-selector-panel .motor .motor-body .motor-label {
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.light-sensor-selector-panel .motor .motor-part {
  display: block;
  width: 15px;
  height: 45px;
  margin-top: 12px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

.light-sensor-selector-panel .motor .motor-part.motor-part-left {
  border-left: 1px solid white;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.light-sensor-selector-panel .motor .motor-part.motor-part-right {
  border-right: 1px solid white;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.light-sensor-selector-panel .main-section {
  padding: 0 20px;
}

.light-sensor-selector-panel .main-section .selector-panel {
  width: 150px;
  height: 220px;
  border: 2px solid white;
  border-radius: 15px;
}

.light-sensor-selector-panel .selector-panel {
  display: flex;
}

.light-sensor-selector-panel .selector-panel .col-sensor {
  flex: 1 1 25%;
  padding-top: 20px;
}

.light-sensor-selector-panel .selector-panel .col-sensor .sensor {
  width: 28px;
  height: 40px;
  color: white;
  font-weight: 400;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.light-sensor-selector-panel .selector-panel .col-sensor .sensor.selected {
  background: white;
  color: #935df5;
}

.light-sensor-selector-panel .selector-panel .col-sensor-left {
  margin-left: 0;
  margin-right: auto;
}

.light-sensor-selector-panel .selector-panel .col-sensor-right div {
  margin-right: 0;
  margin-left: auto;
}

.light-sensor-selector-panel .col-sensor-left .sensor {
  border-right: 1px solid white;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.light-sensor-selector-panel .col-sensor-right .sensor {
  border-left: 1px solid white;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}



.light-sensor-selector-panel .selector-panel .col-decoration {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.light-sensor-selector-panel .selector-panel .col-decoration .decoration-matrix {
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 25%;
  width: 80px;
  height: 80px;
  display: grid;
  grid-gap: 5%;
  overflow: auto;
}

.light-sensor-selector-panel .selector-panel .col-decoration .decoration-matrix_led {
  display: block;
  background: #fff;
  opacity: 0.4;
  border-radius: 12%;
  height: 12.81px;
  overflow: auto;
}

.light-sensor-selector-panel .selector-panel .col-decoration .col-sensor {
  position: absolute;
  top: 40%;
  overflow: auto;
}

.light-sensor-selector-panel .selector-panel .col-decoration .col-sensor .sensor {
  text-align: center;
  opacity: 1;
  border: 1px solid white;
  fill: #935df5;
  border-radius: 5px;
  width: 56px;
  height: 38px;
  font-weight: 400;
  z-index: 1;
  overflow: auto;
}

.light-sensor-selector-panel .selector-panel .col-decoration .decoration-matrix .col-sensor .sensor.selected {
  fill: white;
  color: #935df5;
}

.light-sensor-selector-panel
  .selector-panel
  .col-decoration
  .decoration-circle {
    position: absolute;
    bottom: 10%;
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.light-sensor-selector-panel
  .selector-panel
  .col-decoration
  .decoration-circle
  > div {
  width: 30px;
  height: 30px;
  margin: 0;
}

/* multiple and all buttons */
.light-sensor-selector-panel .main-section .multiple-all {
  display: flex;
  flex-direction: row;
  margin: 15px -5px 0;
}

.light-sensor-selector-panel .multiple-all > div {
  display: block;
  width: 50%;
  color: #fff;
  border: 1px solid white;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin: 0 5px;
  padding: 3px;
}

.light-sensor-selector-panel .multiple-all > div.selected {
  background: #fff;
  color: #935df5;
}

.motor-direction-selector-panel {
  display: flex;
  width: 100px;
  flex-wrap: wrap;
}

.motor-direction-selector-panel .direction-container {
  width: 38px;
  height: 38px;
  margin: 5px;
  flex: 1 1 38px;
  max-width: 38px;
  border: 1px solid #2c7cbd;
  border-radius: 5px;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.motor-direction-selector-panel .direction-container .direction-icon {
  max-width: 100%;
}

.motor-multiple-port-selector-panel {
  display: flex;
  padding: 20px;
}

.motor-multiple-port-selector-panel .motor {
  display: flex;
  margin-top: 30px;
  padding: 0 20px;
}

.motor-multiple-port-selector-panel .motor .motor-body {
  display: block;
  width: 50px;
  height: 140px;
  border: 1px solid white;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
}

.motor-multiple-port-selector-panel .motor .motor-body .motor-label {
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.motor-multiple-port-selector-panel .motor .motor-part {
  display: block;
  width: 15px;
  height: 45px;
  margin-top: 12px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

.motor-multiple-port-selector-panel .motor .motor-part.motor-part-left {
  border-left: 1px solid white;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.motor-multiple-port-selector-panel .motor .motor-part.motor-part-right {
  border-right: 1px solid white;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.motor-multiple-port-selector-panel .main-section {
  padding: 0 20px;
}

.motor-multiple-port-selector-panel .main-section .selector-panel {
  width: 150px;
  height: 220px;
  border: 2px solid white;
  border-radius: 15px;
}

.motor-multiple-port-selector-panel .selector-panel {
  display: flex;
}

.motor-multiple-port-selector-panel .selector-panel .col-port {
  flex: 1 1 25%;
  padding-top: 20px;
}

.motor-multiple-port-selector-panel .selector-panel .col-port .port {
  width: 28px;
  height: 40px;
  color: white;
  font-weight: 400;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.motor-multiple-port-selector-panel .selector-panel .col-port .port.selected {
  background: white;
  color: #0090f5;
}

.motor-multiple-port-selector-panel .selector-panel .col-port-left {
  margin-left: 0;
  margin-right: auto;
}

.motor-multiple-port-selector-panel .selector-panel .col-port-right div {
  margin-right: 0;
  margin-left: auto;
}

.motor-multiple-port-selector-panel .col-port-left .port {
  border-right: 1px solid white;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.motor-multiple-port-selector-panel .col-port-right .port {
  border-left: 1px solid white;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.motor-multiple-port-selector-panel .selector-panel .col-decoration {
  flex: 1 1 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.motor-multiple-port-selector-panel
  .selector-panel
  .col-decoration
  .decoration-circle {
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.motor-multiple-port-selector-panel
  .selector-panel
  .col-decoration
  .decoration-circle
  > div {
  width: 30px;
  height: 30px;
  margin: 0;
}

/* multiple and all buttons */
.motor-multiple-port-selector-panel .main-section .multiple-all {
  display: flex;
  flex-direction: row;
  margin: 15px -5px 0;
}

.motor-multiple-port-selector-panel .multiple-all > div {
  display: block;
  width: 50%;
  color: #fff;
  border: 1px solid white;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin: 0 5px;
  padding: 3px;
}

.motor-multiple-port-selector-panel .multiple-all > div.selected {
  background: #fff;
  color: #0090f5;
}

.motor-single-motor-selector-panel {
  display: flex;
  padding: 20px;
}

.motor-single-motor-selector-panel .motor {
  display: flex;
  margin-top: 30px;
  padding: 0 20px;
}

.motor-single-motor-selector-panel .motor .motor-body {
  display: block;
  width: 50px;
  height: 140px;
  border: 1px solid white;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
}

.motor-single-motor-selector-panel .motor .motor-body .motor-label {
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.motor-single-motor-selector-panel .motor .motor-part {
  display: block;
  width: 15px;
  height: 45px;
  margin-top: 12px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

.motor-single-motor-selector-panel .motor .motor-part.motor-part-left {
  border-left: 1px solid white;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.motor-single-motor-selector-panel .motor .motor-part.motor-part-right {
  border-right: 1px solid white;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.motor-single-motor-selector-panel .main-section {
  padding: 0 20px;
}

.motor-single-motor-selector-panel .main-section .selector-panel {
  width: 150px;
  height: 220px;
  border: 2px solid white;
  border-radius: 15px;
}

.motor-single-motor-selector-panel .selector-panel {
  display: flex;
}

.motor-single-motor-selector-panel .selector-panel .col-sensor {
  flex: 1 1 25%;
  padding-top: 20px;
}

.motor-single-motor-selector-panel .selector-panel .col-sensor .sensor {
  width: 28px;
  height: 40px;
  color: white;
  font-weight: 400;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.motor-single-motor-selector-panel
  .selector-panel
  .col-sensor
  .sensor.selected {
  background: white;
  color: #0090f5;
}

.motor-single-motor-selector-panel .selector-panel .col-sensor-left {
  margin-left: 0;
  margin-right: auto;
}

.motor-single-motor-selector-panel .selector-panel .col-sensor-right div {
  margin-right: 0;
  margin-left: auto;
}

.motor-single-motor-selector-panel .col-sensor-left .sensor {
  border-right: 1px solid white;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.motor-single-motor-selector-panel .col-sensor-right .sensor {
  border-left: 1px solid white;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.motor-single-motor-selector-panel .selector-panel .col-decoration {
  flex: 1 1 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.motor-single-motor-selector-panel
  .selector-panel
  .col-decoration
  .decoration-circle {
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.motor-single-motor-selector-panel
  .selector-panel
  .col-decoration
  .decoration-circle
  > div {
  width: 30px;
  height: 30px;
  margin: 0;
}

/* multiple and all buttons */
.motor-single-motor-selector-panel .main-section .multiple-all {
  display: flex;
  flex-direction: row;
  margin: 15px -5px 0;
}

.motor-single-motor-selector-panel .multiple-all > div {
  display: block;
  width: 50%;
  color: #fff;
  border: 1px solid white;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin: 0 5px;
  padding: 3px;
}

.motor-single-motor-selector-panel .multiple-all > div.selected {
  background: #fff;
  color: #0090f5;
}

.sensor-color-selector-panel {
  display: flex;
  padding: 2px;
}

.sensor-color-selector-panel .main-section {
  padding: 0;
}

.sensor-color-selector-panel .main-section .color-select-panel {
  display: block;
  flex-direction: row;
}

.sensor-color-selector-panel .main-section .color-select-panel .main {
  display: flex;
  flex-direction: column;
}

.sensor-color-sensor-selector-panel {
  display: flex;
  padding: 20px;
}

.sensor-color-sensor-selector-panel .motor {
  display: flex;
  margin-top: 30px;
  padding: 0 20px;
}

.sensor-color-sensor-selector-panel .motor .motor-body {
  display: block;
  width: 50px;
  height: 140px;
  border: 1px solid white;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
}

.sensor-color-sensor-selector-panel .motor .motor-body .motor-label {
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.sensor-color-sensor-selector-panel .motor .motor-part {
  display: block;
  width: 15px;
  height: 45px;
  margin-top: 12px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

.sensor-color-sensor-selector-panel .motor .motor-part.motor-part-left {
  border-left: 1px solid white;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.sensor-color-sensor-selector-panel .motor .motor-part.motor-part-right {
  border-right: 1px solid white;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.sensor-color-sensor-selector-panel .main-section {
  padding: 0 20px;
}

.sensor-color-sensor-selector-panel .main-section .selector-panel {
  width: 150px;
  height: 220px;
  border: 2px solid white;
  border-radius: 15px;
}

.sensor-color-sensor-selector-panel .selector-panel {
  display: flex;
}

.sensor-color-sensor-selector-panel .selector-panel .col-sensor {
  flex: 1 1 25%;
  padding-top: 20px;
}

.sensor-color-sensor-selector-panel .selector-panel .col-sensor .sensor {
  width: 28px;
  height: 40px;
  color: white;
  font-weight: 400;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sensor-color-sensor-selector-panel
  .selector-panel
  .col-sensor
  .sensor.selected {
  background: white;
  color: #1bccf0;
}

.sensor-color-sensor-selector-panel .selector-panel .col-sensor-left {
  margin-left: 0;
  margin-right: auto;
}

.sensor-color-sensor-selector-panel .selector-panel .col-sensor-right div {
  margin-right: 0;
  margin-left: auto;
}

.sensor-color-sensor-selector-panel .col-sensor-left .sensor {
  border-right: 1px solid white;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.sensor-color-sensor-selector-panel .col-sensor-right .sensor {
  border-left: 1px solid white;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.sensor-color-sensor-selector-panel .selector-panel .col-decoration {
  flex: 1 1 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.sensor-color-sensor-selector-panel
  .selector-panel
  .col-decoration
  .decoration-circle {
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.sensor-color-sensor-selector-panel
  .selector-panel
  .col-decoration
  .decoration-circle
  > div {
  width: 30px;
  height: 30px;
  margin: 0;
}

/* multiple and all buttons */
.sensor-color-sensor-selector-panel .main-section .multiple-all {
  display: flex;
  flex-direction: row;
  margin: 15px -5px 0;
}

.sensor-color-sensor-selector-panel .multiple-all > div {
  display: block;
  width: 50%;
  color: #fff;
  border: 1px solid white;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin: 0 5px;
  padding: 3px;
}

.sensor-color-sensor-selector-panel .multiple-all > div.selected {
  background: #fff;
  color: #1bccf0;
}

.direction-panel {
    display: flex;
    width: 96px;
    flex-wrap: wrap;
}

.direction-container {
    width: 38px;
    height: 38px;
    margin: 5px;
    flex: 1 1 38px;
    max-width: 38px;
    border: 1px solid #b20983;
    border-radius: 5px;

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.direction-container .direction-icon {
    max-width: 100%;
}
.rotation-wheel-container {
    padding: 5px;
}
.rotation-wheel-container .background {
    width: 90px;
    height: 90px;
    background-color: #d8009b;
    border-radius: 100px;
}
.rotation-wheel-container .background .needle {
    position: absolute;
    width: 2px;
    height: 40px;
    background-color: white;
}
.rotation-wheel-container .micro-adjust-panel {
    display: flex;
    width: 100px;
}
.rotation-wheel-container .micro-adjust-panel .button-adjust {
    flex: 1 1 25%;
    display: flex;
    align-items: center;
}
.rotation-wheel-container .micro-adjust-panel .button-adjust img {
    max-width: 100%;
}
.rotation-wheel-container .micro-adjust-panel .steer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 50%;
    font-size: 10px;
    color: white;
}

.light-sensor-selector-panel {
  display: flex;
  padding: 20px;
}

.light-sensor-selector-panel .motor {
  display: flex;
  margin-top: 30px;
  padding: 0 20px;
}

.light-sensor-selector-panel .motor .motor-body {
  display: block;
  width: 50px;
  height: 140px;
  border: 1px solid white;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
}

.light-sensor-selector-panel .motor .motor-body .motor-label {
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.light-sensor-selector-panel .motor .motor-part {
  display: block;
  width: 15px;
  height: 45px;
  margin-top: 12px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

.light-sensor-selector-panel .motor .motor-part.motor-part-left {
  border-left: 1px solid white;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.light-sensor-selector-panel .motor .motor-part.motor-part-right {
  border-right: 1px solid white;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.light-sensor-selector-panel .main-section {
  padding: 0 20px;
}

.light-sensor-selector-panel .main-section .selector-panel {
  width: 150px;
  height: 220px;
  border: 2px solid white;
  border-radius: 15px;
}

.light-sensor-selector-panel .selector-panel {
  display: flex;
}

.light-sensor-selector-panel .selector-panel .col-sensor {
  flex: 1 1 25%;
  padding-top: 20px;
}

.light-sensor-selector-panel .selector-panel .col-sensor .sensor {
  width: 28px;
  height: 40px;
  color: white;
  font-weight: 400;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.light-sensor-selector-panel .selector-panel .col-sensor .sensor.selected {
  background: white;
  color: #935df5;
}

.light-sensor-selector-panel .selector-panel .col-sensor-left {
  margin-left: 0;
  margin-right: auto;
}

.light-sensor-selector-panel .selector-panel .col-sensor-right div {
  margin-right: 0;
  margin-left: auto;
}

.light-sensor-selector-panel .col-sensor-left .sensor {
  border-right: 1px solid white;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.light-sensor-selector-panel .col-sensor-right .sensor {
  border-left: 1px solid white;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}



.light-sensor-selector-panel .selector-panel .col-decoration {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.light-sensor-selector-panel .selector-panel .col-decoration .decoration-matrix {
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 25%;
  width: 80px;
  height: 80px;
  display: grid;
  grid-gap: 5%;
  overflow: auto;
}

.light-sensor-selector-panel .selector-panel .col-decoration .decoration-matrix_led {
  display: block;
  background: #fff;
  opacity: 0.4;
  border-radius: 12%;
  height: 12.81px;
  overflow: auto;
}

.light-sensor-selector-panel .selector-panel .col-decoration .col-sensor {
  position: absolute;
  top: 40%;
  overflow: auto;
}

.light-sensor-selector-panel .selector-panel .col-decoration .col-sensor .sensor {
  text-align: center;
  opacity: 1;
  border: 1px solid white;
  fill: #935df5;
  border-radius: 5px;
  width: 56px;
  height: 38px;
  font-weight: 400;
  z-index: 1;
  overflow: auto;
}

.light-sensor-selector-panel .selector-panel .col-decoration .decoration-matrix .col-sensor .sensor.selected {
  fill: white;
  color: #935df5;
}

.light-sensor-selector-panel
  .selector-panel
  .col-decoration
  .decoration-circle {
    position: absolute;
    bottom: 10%;
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.light-sensor-selector-panel
  .selector-panel
  .col-decoration
  .decoration-circle
  > div {
  width: 30px;
  height: 30px;
  margin: 0;
}

/* multiple and all buttons */
.light-sensor-selector-panel .main-section .multiple-all {
  display: flex;
  flex-direction: row;
  margin: 15px -5px 0;
}

.light-sensor-selector-panel .multiple-all > div {
  display: block;
  width: 50%;
  color: #fff;
  border: 1px solid white;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin: 0 5px;
  padding: 3px;
}

.light-sensor-selector-panel .multiple-all > div.selected {
  background: #fff;
  color: #935df5;
}

