
.sidelabel .side-label-left-col {
width: 150px;
}

.sidelabel .side-label-right-col {
width: calc(100% - 150px);
padding-left: 10px;
}
input[type="checkbox"] {
    position: relative;
    width: 16px;
    height: 16px;
    appearance: none;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 4px;
    vertical-align: text-bottom;
    display: inline-block;
    margin-right: 0px;
    cursor: pointer;
}
input[type="checkbox"]:checked::before {
    /* content: url("../field_asset/images/check-mark.svg"); */
    /* content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%273582c4%27%2F%3E%3C%2Fsvg%3E"); */
    content:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E");
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.3125rem;
    height: 1.3125rem;
}
input.checkbox {
    min-width: inherit;
    float: none;
}

/* Hover state */
input[type="checkbox"]:hover {
    border-color: #999;
}

select.form-control {
/* height: 29px; */
}

.customAttrSelBox {
height: 27px!important;
min-width: 100px;
margin-right: 6px;
}
.rightFlex {
    display: flex;
    column-gap: 10px;
    align-items: center;
    padding-right: 24px;
}

.rightFlex .removeRow {
    position: inherit!important;
    padding: 0!important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance: textfield;
}
@media screen and (max-width: 600px) {
.form-group.row label {
    text-align: left !important;
}
}

.has-error input,  .has-error select, .has-error textarea {
    border-color: red !important;
}
.has-error label{
    color:red !important;
}


/* media-fields */
.custom-drop-zone {
    border: 2px dashed #3582C4;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: background 0.3s ease;
    cursor: pointer;
    position: relative;
  }
  .custom-drop-zone.dragover {
    background-color: #e3f2fd;
  }
  .custom-drop-zone input[type="file"] {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
  }
  .custom-drop-zone .upload-text {
    font-size: 14px;
    color: #666;
  }
  .custom-drop-zone .upload-icon {
    font-size: 32px;
    color: #3582C4;
  }
  .filePrev {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .filePrev .preview-box {
      position: relative;
      width: 150px;
      height: 150px;
      text-align: center;
      border: 1px solid #c3c3c3;
      border-radius: 6px;
  }
  .filePrev img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
  }
  .filePrev .remove-btn {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    line-height: 20px;
  }
  .filePrev .file-name {
    font-size: 12px;
    color: #444;
    margin-top: 4px;
    word-break: break-word;
  }
  .clear-all-btn {
    margin-top: 10px;
    display: inline-block;
    padding: 5px 10px;
    background: #ccc;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
  }
  .profile-circle-preview img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
  }
  /* media-fields-end */