.et-wrap {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.et-col-lista {
    flex: 1 1 320px;
    min-width: 300px;
}

.et-col-editor {
    flex: 2 1 560px;
    min-width: 420px;
}

.et-panel {
    background: #fff;
    border: 1px solid #d9dee7;
    border-radius: 6px;
    margin-bottom: 14px;
}

.et-panel-head {
    background: #2c3e50;
    color: #fff;
    padding: 9px 14px;
    border-radius: 5px 5px 0 0;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.et-panel-head .et-badge {
    background: #111BEC;
    border-radius: 10px;
    padding: 1px 9px;
    font-size: 11px;
    font-weight: 600;
}

.et-panel-body {
    padding: 14px;
}

.et-editor-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.et-props {
    flex: 1 1 250px;
    min-width: 230px;
}

.et-preview-side {
    flex: 1 1 280px;
    min-width: 260px;
    align-self: stretch;
}

.et-preview-fijo {
    position: sticky;
    top: 14px;
}

.et-tabs {
    display: flex;
    gap: 2px;
    border-bottom: 2px solid #e6eaf0;
    margin: 16px 0 14px;
}

.et-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #8a95a8;
    cursor: pointer;
}

.et-tab:hover {
    color: #2c3e50;
}

.et-tab.et-tab-activa {
    color: #111BEC;
    border-bottom-color: #111BEC;
}

.et-tab-panel {
    min-height: 210px;
}

.et-group-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #6b7a90;
    border-bottom: 1px solid #e6eaf0;
    padding-bottom: 4px;
    margin: 14px 0 9px;
}

.et-group-title:first-child {
    margin-top: 0;
}

.et-field {
    margin-bottom: 10px;
}

.et-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #46536b;
    margin-bottom: 3px;
}

.et-field input[type="text"],
.et-field input[type="number"],
.et-field select,
.et-field textarea {
    width: 100%;
    padding: 6px 9px;
    border: 1px solid #ccd3de;
    border-radius: 4px;
    font-size: 13px;
    color: #2c3e50;
    background: #fff;
}

.et-field input:focus,
.et-field select:focus,
.et-field textarea:focus {
    outline: none;
    border-color: #111BEC;
    box-shadow: 0 0 0 2px rgba(17, 27, 236, .12);
}

.et-row2 {
    display: flex;
    gap: 10px;
}

.et-row2 > * {
    flex: 1;
}

.et-check {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    border: 1px solid #e0e5ee;
    border-radius: 4px;
    margin-bottom: 6px;
    cursor: pointer;
    font-size: 13px;
    color: #2c3e50;
    background: #fafbfd;
}

.et-check:hover {
    border-color: #111BEC;
    background: #f4f5ff;
}

.et-check input {
    margin: 0;
    cursor: pointer;
}

.et-preview-stage {
    background: #59606b;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,.045) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.045) 75%),
        linear-gradient(45deg, rgba(255,255,255,.045) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.045) 75%);
    background-size: 18px 18px;
    background-position: 0 0, 9px 9px;
    border-radius: 5px;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
    overflow: auto;
}

.et-sheet {
    background: #fff;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .3);
    display: flex;
    box-sizing: border-box;
    flex-shrink: 0;
}

.et-cell {
    box-sizing: border-box;
    border-right: 1px dashed #c8cdd6;
    padding: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    flex: 1;
    min-width: 0;
}

.et-cell:last-child {
    border-right: none;
}

.et-cell-desc {
    width: 100%;
    line-height: 1.15;
    word-break: break-word;
    color: #000;
}

.et-cell-bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1px;
    width: 88%;
    margin: 2px 0;
}

.et-cell-bars i {
    display: block;
    background: #000;
    width: 1px;
}

.et-cell-bars i.w {
    width: 2px;
}

.et-cell-bars i.g {
    background: transparent;
}

.et-cell-cod {
    color: #000;
    letter-spacing: .4px;
    line-height: 1.2;
}

.et-cell-precio {
    color: #000;
    font-weight: 700;
    line-height: 1.2;
}

.et-preview-meta {
    text-align: center;
    font-size: 11px;
    color: #6b7a90;
    margin-top: 8px;
    line-height: 1.5;
}

.et-preview-meta b {
    color: #2c3e50;
}

.et-alert-vacio {
    background: #fff8e1;
    border: 1px solid #ffe0a3;
    color: #8a6d3b;
    padding: 9px 12px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 10px;
}

.et-alert-espacio {
    background: #fdecea;
    border: 1px solid #f5c2bd;
    color: #a03127;
    padding: 9px 12px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 8px;
    line-height: 1.5;
}

.et-label-sec {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: #8a95a8;
}

.et-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.et-chip {
    background: #f2f5f9;
    border: 1px solid #dde3ec;
    border-radius: 14px;
    padding: 4px 11px;
    font-size: 11px;
    font-weight: 500;
    color: #46536b;
    cursor: pointer;
    white-space: nowrap;
}

.et-chip:hover {
    border-color: #111BEC;
    color: #111BEC;
}

.et-chip.et-chip-activo {
    background: #2c3e50;
    border-color: #2c3e50;
    color: #fff;
}

.et-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
    gap: 12px;
}

.et-card {
    border: 1px solid #dde3ec;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: border-color .2s, box-shadow .2s;
}

.et-card:hover {
    border-color: #111BEC;
    box-shadow: 0 4px 14px rgba(17, 27, 236, .1);
}

.et-card-mini {
    height: 96px;
    background: #f7f9fc;
    border-bottom: 1px solid #eef1f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    overflow: hidden;
}

.et-card-sheet {
    box-shadow: 0 1px 5px rgba(0, 0, 0, .18);
}

.et-card-cuerpo {
    padding: 9px 11px;
    flex: 1;
}

.et-card-nom {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2px;
    word-break: break-word;
}

.et-card-med {
    font-size: 11px;
    color: #8a95a8;
    margin-bottom: 7px;
    line-height: 1.4;
}

.et-card-sep {
    color: #ccd3de;
    margin: 0 2px;
}

.et-card-pie {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 9px;
    border-top: 1px solid #eef1f6;
    background: #fafbfd;
}

.et-card-editar {
    flex: 1;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.et-card-editar:hover {
    background: #1d2b3a;
}

.et-card.et-card-editando {
    border-color: #111BEC;
    box-shadow: 0 0 0 2px rgba(17, 27, 236, .15);
}

.et-tabla {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.et-tabla th {
    background: #f2f5f9;
    color: #46536b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 8px;
    text-align: left;
    border-bottom: 2px solid #e0e5ee;
}

.et-tabla td {
    padding: 8px;
    border-bottom: 1px solid #eef1f6;
    color: #2c3e50;
    vertical-align: middle;
}

.et-tabla tr:hover td {
    background: #f7f9fc;
}

.et-tabla .et-nom {
    font-weight: 600;
}

.et-tabla .et-sub {
    display: block;
    font-size: 11px;
    color: #8a95a8;
}

.et-vacio {
    text-align: center;
    color: #8a95a8;
    padding: 26px 14px;
    font-size: 13px;
}

.et-vacio-tit {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.et-vacio-txt {
    margin-bottom: 14px;
    line-height: 1.5;
}

.et-btn-sugeridos {
    background: #111BEC;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.et-btn-sugeridos:hover {
    background: #0d15b8;
}

.et-btn-sugeridos:disabled {
    background: #b9bdd6;
    cursor: not-allowed;
}

.et-head-accion {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    border-radius: 3px;
    padding: 3px 9px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
    cursor: pointer;
}

.et-head-accion:hover {
    background: rgba(255, 255, 255, .22);
}

.et-head-accion:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.et-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin: 0;
    user-select: none;
}

.et-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.et-switch-pista {
    width: 36px;
    height: 20px;
    border-radius: 10px;
    background: #ccd3de;
    position: relative;
    flex-shrink: 0;
    transition: background .2s;
}

.et-switch-bola {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
    transition: left .2s;
}

.et-switch input:checked + .et-switch-pista {
    background: #6BA6DE;
}

.et-switch input:checked + .et-switch-pista .et-switch-bola {
    left: 18px;
}

.et-switch input:focus + .et-switch-pista {
    box-shadow: 0 0 0 3px rgba(107, 166, 222, .28);
}

.et-switch-txt {
    font-size: 12px;
    font-weight: 600;
    color: #8a95a8;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.et-switch input:checked ~ .et-switch-txt {
    color: #33689b;
}

.et-switch-editor {
    margin: 12px 0 4px;
}

.et-switch-card .et-switch-pista {
    width: 30px;
    height: 17px;
}

.et-switch-card .et-switch-bola {
    width: 13px;
    height: 13px;
}

.et-switch-card input:checked + .et-switch-pista .et-switch-bola {
    left: 15px;
}

.et-switch-card .et-switch-txt {
    font-size: 10px;
}

.et-btn-ico {
    border: 1px solid #d9dee7;
    background: #fff;
    border-radius: 4px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    color: #46536b;
    margin-right: 3px;
}

.et-btn-ico:hover {
    border-color: #111BEC;
    color: #111BEC;
}

.et-btn-ico.et-del:hover {
    border-color: #d9534f;
    color: #d9534f;
}

.et-acciones {
    display: flex;
    gap: 8px;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #e6eaf0;
}

.et-acciones button {
    flex: 1;
    padding: 9px;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

.et-btn-guardar {
    background: #111BEC;
    color: #fff;
}

.et-btn-guardar:hover {
    background: #0d15b8;
}

.et-btn-guardar:disabled {
    background: #b9bdd6;
    cursor: not-allowed;
}

.et-btn-guardar:disabled:hover {
    background: #b9bdd6;
}

.et-btn-nuevo {
    background: #fff;
    color: #46536b;
    border: 1px solid #ccd3de !important;
}

.et-btn-nuevo:hover {
    border-color: #111BEC !important;
    color: #111BEC;
}

.et-tamano {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 9px;
    border: 1px solid #e0e5ee;
    border-radius: 4px;
    margin-bottom: 6px;
    background: #fafbfd;
    font-size: 13px;
}

.et-tamano-nombre {
    flex: 1;
    color: #2c3e50;
    font-weight: 500;
}

.et-oculto {
    display: none;
}

.et-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #ccd3de;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.et-step {
    width: 26px;
    height: 26px;
    border: none;
    background: #f2f5f9;
    color: #46536b;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.et-step:hover {
    background: #111BEC;
    color: #fff;
}

.et-step:disabled {
    color: #ccd3de;
    cursor: not-allowed;
    background: #f7f9fc;
}

.et-step:disabled:hover {
    background: #f7f9fc;
    color: #ccd3de;
}

.et-step-valor {
    min-width: 34px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    padding: 0 2px;
}

.et-tamano-unidad {
    width: 16px;
    font-size: 11px;
    color: #8a95a8;
}

.et-tamano-modo {
    width: 42px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: #8a95a8;
    text-align: right;
}

.et-tamano.et-tamano-manual {
    border-color: #111BEC;
    background: #f4f5ff;
}

.et-tamano.et-tamano-manual .et-tamano-modo {
    color: #111BEC;
    cursor: pointer;
    text-decoration: underline;
}

.et-group-accion {
    background: none;
    border: none;
    color: #111BEC;
    font-size: 10px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    padding: 0;
    float: right;
}

.et-group-accion:hover {
    text-decoration: underline;
}

.et-field-precios {
    margin: -2px 0 10px 22px;
    padding-left: 10px;
    border-left: 2px solid #e0e5ee;
}

.et-nota {
    display: block;
    font-size: 11px;
    color: #8a95a8;
    margin-top: 3px;
}

.etm-content {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .3);
}

.etm-header {
    background: #2c3e50;
    color: #fff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.etm-header-tit {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.etm-header-tit > i {
    font-size: 20px;
    color: #7f9cc0;
}

.etm-titulo {
    display: block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .3px;
}

.etm-subtitulo {
    display: block;
    font-size: 12px;
    color: #a8b8cc;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 460px;
}

.etm-cerrar {
    background: transparent;
    border: none;
    color: #a8b8cc;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
}

.etm-cerrar:hover {
    color: #fff;
}

.etm-body {
    padding: 20px;
    background: #fff;
}

.etm-cols {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.etm-opciones {
    flex: 1 1 280px;
    min-width: 250px;
}

.etm-vista {
    flex: 1 1 300px;
    min-width: 260px;
}

.etm-campo {
    margin-bottom: 14px;
}

.etm-campo label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #6b7a90;
    margin-bottom: 5px;
}

.etm-campo label > span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.etm-campo label i {
    color: #111BEC;
    font-size: 12px;
}

.etm-campo select {
    width: 100%;
    padding: 9px 11px;
    border: 1px solid #ccd3de;
    border-radius: 5px;
    font-size: 13px;
    color: #2c3e50;
    background: #fff;
}

.etm-campo select:focus {
    outline: none;
    border-color: #111BEC;
    box-shadow: 0 0 0 3px rgba(17, 27, 236, .1);
}

.etm-cantidad {
    width: 90px;
    padding: 9px 11px;
    border: 1px solid #ccd3de;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    color: #2c3e50;
    background: #fff;
    text-align: center;
}

.etm-cantidad:focus {
    outline: none;
    border-color: #111BEC;
    box-shadow: 0 0 0 3px rgba(17, 27, 236, .1);
}

.et-btn-guardar-imprimir {
    margin-left: 8px;
    background: #111BEC;
    border-color: #111BEC;
    color: #fff;
}

.et-btn-guardar-imprimir:hover,
.et-btn-guardar-imprimir:focus {
    background: #0d15c4;
    border-color: #0d15c4;
    color: #fff;
}

.etm-bloque-tit {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #6b7a90;
    margin-bottom: 7px;
}

.etm-bloque-precios {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #eef1f6;
}

.etm-stage {
    background: #59606b;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,.045) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.045) 75%),
        linear-gradient(45deg, rgba(255,255,255,.045) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.045) 75%);
    background-size: 18px 18px;
    background-position: 0 0, 9px 9px;
    border-radius: 6px;
    padding: 18px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 175px;
    overflow: auto;
}

.etm-meta {
    text-align: center;
    font-size: 11px;
    color: #8a95a8;
    margin-top: 8px;
    line-height: 1.5;
}

.etm-meta b {
    color: #2c3e50;
}

.etm-footer {
    background: #f7f9fc;
    border-top: 1px solid #e6eaf0;
    padding: 14px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.etm-btn {
    padding: 10px 22px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
}

.etm-btn-cancelar {
    background: #fff;
    border-color: #ccd3de;
    color: #6b7a90;
}

.etm-btn-cancelar:hover {
    border-color: #8a95a8;
    color: #2c3e50;
}

.etm-btn-imprimir {
    background: #111BEC;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.etm-btn-imprimir:hover {
    background: #0d15b8;
}

.etm-btn-imprimir:disabled {
    background: #b9bdd6;
    cursor: not-allowed;
}

.et-modal-precios {
    min-height: 20px;
}

.etm-btn-masivo {
    background: #111BEC;
    border-color: #111BEC;
    color: #fff;
    margin-top: 8px;
}

.etm-btn-masivo:hover {
    background: #0d15b8;
    color: #fff;
}

.etm-contador {
    display: inline-block;
    background: rgba(255, 255, 255, .25);
    border-radius: 9px;
    padding: 0 7px;
    margin-left: 5px;
    font-size: 11px;
    font-weight: 700;
}

.etm-filtro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #eef4fb;
    border: 1px solid #cfe0f2;
    border-radius: 4px;
    padding: 6px 10px;
    margin-bottom: 7px;
    font-size: 12px;
    color: #33689b;
}

.etm-filtro a {
    color: #111BEC;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: underline;
}

.etm-lista {
    border: 1px solid #e0e5ee;
    border-radius: 5px;
    max-height: 260px;
    overflow-y: auto;
}

.etm-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border-bottom: 1px solid #eef1f6;
    font-size: 13px;
}

.etm-item:last-child {
    border-bottom: none;
}

.etm-item-nom {
    flex: 1;
    min-width: 0;
    color: #2c3e50;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.etm-item-cod {
    display: block;
    font-size: 11px;
    color: #8a95a8;
}

.etm-item-cant {
    width: 58px;
    padding: 4px 6px;
    border: 1px solid #ccd3de;
    border-radius: 4px;
    font-size: 13px;
    text-align: right;
    color: #2c3e50;
}

.etm-item-quitar {
    background: none;
    border: none;
    color: #ccd3de;
    cursor: pointer;
    font-size: 15px;
    padding: 0 2px;
}

.etm-item-quitar:hover {
    color: #d9534f;
}

.etm-item-mal {
    background: #fdf4f3;
}

.etm-item-mal .etm-item-cod {
    color: #a03127;
}

.etm-total {
    margin-top: 16px;
    padding: 11px 13px;
    background: #f2f5f9;
    border-left: 3px solid #111BEC;
    border-radius: 0 4px 4px 0;
    font-size: 13px;
    color: #2c3e50;
    line-height: 1.6;
}

.etm-total b {
    font-size: 15px;
}

.etm-btn-probar {
    background: #fff;
    border-color: #ccd3de;
    color: #46536b;
    display: flex;
    align-items: center;
    gap: 7px;
}

.etm-btn-probar:hover {
    border-color: #111BEC;
    color: #111BEC;
}

.etm-aviso {
    margin-top: 6px;
    padding: 7px 10px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.5;
}

.etm-aviso-mal {
    background: #fdecea;
    border: 1px solid #f5c2bd;
    color: #a03127;
}

.etm-aviso-ok {
    background: #eef7ee;
    border: 1px solid #cfe6cf;
    color: #2d6a2d;
}

.etm-precio-fila {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
}

.etm-precio-num {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: #eef1f6;
    color: #6b7a90;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.etm-precio-select {
    flex: 1;
    min-width: 0;
    padding: 6px 9px;
    border: 1px solid #ccd3de;
    border-radius: 4px;
    font-size: 12px;
    color: #2c3e50;
    background: #fff;
}

.etm-precio-select:focus {
    outline: none;
    border-color: #111BEC;
    box-shadow: 0 0 0 2px rgba(17, 27, 236, .1);
}

@media (max-width: 768px) {
    .etm-cols {
        flex-direction: column;
    }

    .etm-subtitulo {
        max-width: 200px;
    }
}

.et-precio-chip {
    display: inline-block;
    background: #eef7ee;
    border: 1px solid #cfe6cf;
    color: #2d6a2d;
    border-radius: 3px;
    padding: 3px 9px;
    font-size: 12px;
    font-weight: 600;
    margin: 0 5px 5px 0;
}

.et-precio-aviso {
    font-size: 12px;
    color: #8a6d3b;
    background: #fff8e1;
    border: 1px solid #ffe0a3;
    border-radius: 4px;
    padding: 7px 10px;
}

@media (max-width: 900px) {
    .et-col-lista,
    .et-col-editor {
        flex: 1 1 100%;
        min-width: 0;
    }

    .et-editor-grid {
        flex-direction: column;
    }
}
