body.wp-admin #develux_product_card_configurator,#develux_product_card_configurator_global,#develux-label-builder,#develux-card-style-constructor,#develux-timer-builder,#develux-custom-block-builder,#develux-component-builder{
  .square{
    width: 36px;
  }
  .rectangle{
    width: 100%;
  }
  .rectangle-2x{
    width: 100%;
  }
  .rectangle-3x{
    width: 100%;
  }
  .range{
    width: 60px;
  }
  textarea{
    border: 1px solid $border-block!important;
    min-width:400px;
    width:400px;
  }
  input[type="text"],input[type="number"],select{
    border: 1px solid #8c8f94;
    border-radius: 4px;
    height:30px;
    min-height: 30px;
    font-size: 14px;
    min-width:400px;
    width:400px;
    @include respond_max(782){
      height:32px;
      min-height:32px;
    }
    &:active, &:focus, &:hover{
      color: $text-color;
    }
  }
  input[type="radio"]{
    position:relative;
    width: 20px;
    height: 20px;
    background: #fff;
    margin: 0!important;
    border: 1px solid #1e1e1e;

    &:checked {
      background: #007cba;
      border: none;
      &:before {
        background-color: #fff;
        border: 4px solid #fff;
        box-sizing: inherit;
        height: 8px;
        left: 50%;
        margin: 0;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
      }
    }
  }
  select.unit-selector{
    background-color: $unit-selector-bg;
  }
  .develux-checkbox-container{
    input[type="checkbox"]{
    }
    label:active,
    label:focus {
      outline: none!important;
      box-shadow: none!important;
    }
  }
  .develux-checkbox{
    position: relative;
    display: inline-block;
    margin: 0;
    cursor: pointer;
  }

  .unit-selector-bg{
    position: relative;
    &:before{
      content: '';
      position:absolute;
      display:block;
      width:12px;
      height:32px;
      left:-6px;
      top:0;
      background: $unit-selector-bg;
      z-index:0;
    }
  }
  legend,.legend{
    font-weight: 700;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #1d2327;
    font-size: 1.3em;
    margin-bottom: 1em;
    .woocommerce-help-tip {
      height: 18px;
    }
  }
  .develux-radiobutton-decor{
    border-radius: 6px;
    border: 3px solid $gray-background;
    cursor: pointer;
    background: $gray-background;
    label{
      cursor: pointer;
    }
    input[type="radio"]{
      display:none;
    }
    input[type=radio]:checked+span.radiobutton-decor-svg-icon{
      background: white;
    }
    .radiobutton-decor-svg-icon{
      border-radius: 6px;
      display:flex;
      justify-content: center;
      align-items: center;
      width:28px;
      height:28px;
    }
  }
  .color-picker-wrapper{
    border-radius: 4px;
    max-width: 50%;
    input[type="color"]{
      min-width:30px;
      width:30px;
      height:30px;
      border-radius: 4px;
    }
    .color-hex{
      min-width:84px;
      width:84px;
      border-radius: 4px;
    }
  }

}

// ---------------------- inputs tooltips -------------------------

// ---------------------- inputs tooltips -------------------------

[data-develux-tooltip] {
  position: relative;
}

[data-develux-tooltip]:after {
  content: attr(data-develux-tooltip);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.8);
  color: #fff;
  padding: 5px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  white-space: normal;
  display: none;
  z-index: 999;
  width: 150px;
  max-width: 150px;
  text-align:center;
}
[data-develux-tooltip]:before {
  content: '';
  position: absolute;
  margin-top:-12px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: #23282d;
  display: none;
  z-index: 998;
}
[data-develux-tooltip]:hover:before{
  display: block;
}
[data-develux-tooltip]:hover:after {
  display: block;
}

#sku_err_msg,#percentage_err_msg,#out_of_stock_err_msg{
  padding-right:5px;
}
.develux-create-labels-form{
  input{
    min-width:300px;
  }
}
.develux_radio_item_wrapper {
  margin-top: 1px;
}
.develux_radio_item_description {
  margin: 4px 0 0 0;
  text-wrap: pretty;
  color: #757575;
  font-size: 13px;
  line-height: 1.5;
}