/*!************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/custom-ui/scss/index.scss ***!
  \************************************************************************************************************************/
.color-picker-button {
  cursor: pointer;
}

.close-color-picker-button {
  cursor: pointer;
  position: relative;
  float: right;
  width: 30px;
  height: 30px;
  z-index: 1;
  margin: 0px;
  padding: 0px;
}

.color-picker-palette-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1002;
  align-items: center;
  justify-content: center;
}

.color-picker-palette-div {
  display: block;
  align-items: end;
  justify-content: end;
}

.vertical-divider {
  width: 1px;
  height: 100%;
  background-color: hsl(var(--border-c));
}

.horizontal-divider {
  border: none;
  border-top: 1px solid hsl(var(--border-c));
  margin: 1.5rem 0;
}

.tabs {
  background-color: var(--ru-base-4);
  height: fit-content;
}

[label] .tab-list {
  border-width: 0px 3px 0px 3px;
  padding-left: 0;
}

.tab-list-item {
  border: solid var(--ru-accent);
  border-width: 1px 1px 1px 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: -1px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}

.tab-list-item-first {
  border-top-left-radius: 18%;
  border-left-width: 1px;
}

.tab-list-item-last {
  border-top-right-radius: 18%;
  border-right-width: 1px;
}

.tab-list-active {
  color: var(--ru-accent);
  border-bottom-width: 0px;
}

.column {
  display: flex;
  flex-direction: column;
  height: fit-content !important;
}

.column-1 {
  flex: 1;
}

.column-2 {
  flex: 2;
}

.column-3 {
  flex: 3;
}

.column-4 {
  flex: 4;
}

.column-5 {
  flex: 5;
}

.column-6 {
  flex: 6;
}

.column-7 {
  flex: 7;
}

.column-8 {
  flex: 8;
}

.column-9 {
  flex: 9;
}

.column-10 {
  flex: 10;
}

.column-11 {
  flex: 11;
}

.column-12 {
  flex: 12;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start !important;
  height: fit-content;
}

.horizontal-stack {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start !important;
  height: fit-content;
}

.vertical-stack {
  height: fit-content !important;
}

.slider-label {
  margin-right: 5px;
  font-size: smaller;
  color: hsl(var(--txt1-c));
}

.slider-bar {
  width: 100px !important;
}

.slider-input {
  padding: 5px;
  border: 1px solid hsl(var(--border-c));
  border-radius: 3px;
  color: hsl(var(--txt1-c));
  background-color: transparent;
  width: 60px !important;
}

.select {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.select-label {
  margin-bottom: 5px;
  font-size: smaller;
  color: hsl(var(--txt1-c));
  background-color: transparent;
}

.select-input {
  padding: 5px;
  border: 1px solid hsl(var(--border-c));
  border-radius: 3px;
  color: hsl(var(--txt1-c));
  background-color: transparent;
}

.select option {
  font-size: smaller;
  background: hsl(var(--bg-overlay-c));
}

.text-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.text-field-label {
  margin-bottom: 5px;
  font-size: smaller;
  color: hsl(var(--txt1-c));
}

.text-field-input {
  padding: 5px;
  border: 1px solid hsl(var(--border-c));
  border-radius: 3px;
  color: hsl(var(--txt1-c));
  background-color: transparent;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.custom-button {
  padding: 3px 3px;
  font: inherit;
  font-weight: 500;
  border: none;
  border-radius: 0.25em;
  padding: 0.3em 1.1em;
  cursor: pointer;
}

.custom-button.primary {
  color: hsl(var(--txt1-c));
}

.custom-button.secondary {
  color: hsl(var(--txt1-c));
}

.custom-button.success {
  background-color: #0f9d58;
}

.custom-button.danger {
  background-color: #db4437;
}

.custom-button.primary:hover {
  transition: background-color var(--_tspeed_fast) var(--_ttype_squish);
}

.custom-button.secondary:hover {
  transition: background-color var(--_tspeed_fast) var(--_ttype_squish);
}

.custom-button.success:hover {
  background-color: #0f9d58;
}

.custom-button.danger:hover {
  background-color: #db4437;
}

.switch {
  position: relative;
  display: block;
  width: 100px;
  height: 30px;
  padding: 3px;
  margin: 0 10px 10px 0;
  background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
  background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
  border-radius: 18px;
  box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  box-sizing: content-box;
}

.switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  box-sizing: content-box;
}

.switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 10px;
  text-transform: uppercase;
  background: #eceeef;
  border-radius: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
  box-sizing: content-box;
}

.switch-label:before, .switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
  box-sizing: content-box;
}

.switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: #aaaaaa;
  text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}

.switch-label:after {
  content: attr(data-on);
  left: 11px;
  color: #FFFFFF;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
}

.switch-input:checked ~ .switch-label {
  background: #E1B42B;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}

.switch-input:checked ~ .switch-label:before {
  opacity: 0;
}

.switch-input:checked ~ .switch-label:after {
  opacity: 1;
}

.switch-handle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 28px;
  height: 28px;
  background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
  background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
  border-radius: 100%;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.switch-handle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
  background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
  border-radius: 6px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}

.switch-input:checked ~ .switch-handle {
  left: 74px;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* Transition
========================== */
.switch-label, .switch-handle {
  transition: All 0.3s ease;
  -webkit-transition: All 0.3s ease;
  -moz-transition: All 0.3s ease;
  -o-transition: All 0.3s ease;
}

/* Switch Flat
==========================*/
.switch-flat {
  padding: 0;
  background: #FFF;
  background-image: none;
}

.switch-flat .switch-label {
  background: #FFF;
  border: solid 2px #eceeef;
  box-shadow: none;
}

.switch-flat .switch-label:after {
  color: #0088cc;
}

.switch-flat .switch-handle {
  top: 6px;
  left: 6px;
  background: #dadada;
  width: 22px;
  height: 22px;
  box-shadow: none;
}

.switch-flat .switch-handle:before {
  background: #eceeef;
}

.switch-flat .switch-input:checked ~ .switch-label {
  background: #FFF;
  border-color: #0088cc;
}

.switch-flat .switch-input:checked ~ .switch-handle {
  left: 72px;
  background: #0088cc;
  box-shadow: none;
}

/* Switch Light
==========================*/
.switch-light {
  padding: 0;
  background: #FFF;
  background-image: none;
}

.switch-light .switch-label {
  background: #FFF;
  border: solid 2px #eceeef;
  box-shadow: none;
}

.switch-light .switch-label:after {
  color: #9370DB;
}

.switch-light .switch-label:before {
  right: inherit;
  left: 11px;
}

.switch-light .switch-handle {
  top: 6px;
  left: 72px;
  background: #dadada;
  width: 22px;
  height: 22px;
  box-shadow: none;
}

.switch-light .switch-handle:before {
  background: #eceeef;
}

.switch-light .switch-input:checked ~ .switch-label {
  background: #FFF;
  border-color: #9370DB;
}

.switch-light .switch-input:checked ~ .switch-handle {
  left: 72px;
  box-shadow: none;
  background: #9370DB;
}

.switch-light .switch-input:checked ~ .switch-handle:before {
  background: rgba(255, 255, 255, 0.7);
}

.horizontal-box {
  display: flex;
  align-items: center;
}

.horizontal-box-item {
  text-align: left;
}

/* Media query for screens smaller than 600px */
@media only screen and (max-width: 600px) {
  .horizontal-box {
    flex-direction: column;
    justify-content: space-around;
  }
  .horizontal-box-item {
    text-align: center;
  }
}
/* Media query for screens between 601px and 900px */
.checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--txt1-c);
}

.checkbox__input {
  margin-right: 5px;
}

.checkbox__label {
  font-size: 14px;
  color: var(--txt1-c);
}

/*# sourceMappingURL=index_custom_ui.css.map*/