@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icons/icomoon.woff2') format('woff2'), url('../fonts/icons/icomoon.woff') format('woff');
    font-display: block;
    font-style: normal;
    font-weight: normal;
}

.cpl-live-editor--overlay {
    --cpl-live-blue: #1849a9;
    --cpl-live-blue-soft: #eef4ff;
    --cpl-live-border: #c8dafd;
    --cpl-live-ink: #14213d;
    --cpl-live-muted: #667085;
    color: var(--cpl-live-ink);
    font-family: Arial, sans-serif;
    visibility: hidden;
}

.cpl-live-editor--overlay.is-ready,
.cpl-live-editor--overlay.is-authorized {
    visibility: visible;
}

.cpl-live-editor--overlay [hidden] {
    display: none !important;
}

.cpl-live-editor--overlay *,
.cpl-live-editor--overlay *::before,
.cpl-live-editor--overlay *::after {
    box-sizing: border-box;
}

.cpl-live-editor__drawer {
    background: #fff;
    bottom: 16px;
    box-shadow: 0 10px 35px rgba(20, 33, 61, .24);
    display: flex;
    flex-direction: column;
    left: 16px;
    max-width: calc(100vw - 32px);
    position: fixed;
    top: 16px;
    transition: transform .2s ease;
    width: calc(100vw - 32px);
    z-index: 2147483647;
}

.cpl-live-editor--overlay.is-collapsed .cpl-live-editor__drawer {
    transform: translateX(calc(-100% - 22px));
}

.cpl-live-editor__drawer-header {
    align-items: flex-start;
    background: #143a78;
    color: #fff;
    display: flex;
    justify-content: space-between;
    min-height: 74px;
    padding: 16px 18px;
}

.cpl-live-editor__drawer-header strong {
    display: block;
    font-size: 15px;
    line-height: 1.35;
    margin-top: 4px;
}

.cpl-live-editor__eyebrow {
    color: #dbeafe;
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cpl-live-editor__minimise {
    align-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    gap: 6px;
    min-height: 32px;
    padding: 0 9px;
}

.cpl-live-editor__drawer-body {
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding: 15px 16px;
}

.cpl-live-editor__drawer-footer {
    background: #fff;
    border-top: 1px solid #e4e7ec;
    padding: 12px 16px 15px;
}

.cpl-live-editor__notice {
    background: #fff8e8;
    border: 1px solid #f4d88a;
    border-radius: 7px;
    color: #7a4b00;
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 12px;
    padding: 10px 12px;
}

.cpl-live-editor__section {
    border-bottom: 1px solid #e4e7ec;
    margin: 0;
    padding: 14px 0;
}

.cpl-live-editor__section h2,
.cpl-live-editor__section summary {
    color: #1d2939;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 10px;
}

.cpl-live-editor__section summary {
    cursor: pointer;
    list-style: none;
}

.cpl-live-editor__section summary::after {
    color: var(--cpl-live-blue);
    content: '+';
    float: right;
    font-size: 20px;
    line-height: 13px;
}

.cpl-live-editor__section[open] summary::after {
    content: '-';
}

.cpl-live-editor__help {
    color: var(--cpl-live-muted);
    font-size: 12px;
    line-height: 1.45;
    margin: 5px 0 10px;
}

.cpl-live-editor__help.is-warning {
    color: #b42318;
    font-weight: 700;
}

.cpl-live-editor__field {
    display: block;
    margin: 0 0 10px;
}

.cpl-live-editor__field>span,
.cpl-live-editor__colour-field>span {
    color: #344054;
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cpl-live-editor__input,
.cpl-live-editor__select,
.cpl-live-editor__textarea {
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    color: #101828;
    font: inherit;
    font-size: 13px;
    min-height: 36px;
    padding: 8px 9px;
    width: 100%;
}

.cpl-live-editor__textarea {
    min-height: 62px;
    resize: vertical;
}

.cpl-live-editor__input:focus,
.cpl-live-editor__select:focus,
.cpl-live-editor__textarea:focus {
    border-color: #3478e5;
    box-shadow: 0 0 0 3px rgba(52, 120, 229, .15);
    outline: 0;
}

.cpl-live-editor__field-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.cpl-live-editor__image-control {
    align-items: center;
    display: flex;
    gap: 10px;
}

.cpl-live-editor__image-control img {
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 4px;
    max-height: 48px;
    max-width: 112px;
    object-fit: contain;
    padding: 3px;
}

.cpl-live-editor__image-control [data-role="live-image-empty"] {
    color: #667085;
    flex: 1;
    font-size: 12px;
}

.cpl-live-editor__image-control .cpl-live-editor__button {
    position: relative;
}

.cpl-live-editor__image-control input[type=file] {
    cursor: pointer;
    inset: 0;
    opacity: 0;
    position: absolute;
    width: 100%;
}

.cpl-live-editor__icon-select-wrap {
    align-items: center;
    display: flex;
    gap: 8px;
}

.cpl-live-editor__icon-select-wrap .cpl-live-editor__select {
    flex: 1 1 auto;
    min-width: 0;
}

.cpl-live-editor__icon-swatch {
    align-items: center;
    background: #eef4ff;
    border: 1px solid #c8dafd;
    border-radius: 5px;
    color: #1849a9;
    display: inline-flex;
    flex: 0 0 36px;
    height: 36px;
    justify-content: center;
    padding: 0 !important;
    position: relative;
    width: 36px;
}

.cpl-live-editor__icon-swatch::before {
    left: auto !important;
    position: static !important;
    top: auto !important;
    transform: none !important;
}

.cpl-live-editor__switch-row {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 13px;
    gap: 9px;
    margin: 0 0 10px;
}

.cpl-live-editor__switch-row input {
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}

.cpl-live-editor__switch {
    background: #98a2b3;
    border-radius: 999px;
    height: 20px;
    position: relative;
    width: 36px;
}

.cpl-live-editor__switch::after {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    content: '';
    height: 16px;
    left: 2px;
    position: absolute;
    top: 2px;
    transition: transform .15s ease;
    width: 16px;
}

.cpl-live-editor__switch-row input:checked+.cpl-live-editor__switch {
    background: #317a17;
}

.cpl-live-editor__switch-row input:checked+.cpl-live-editor__switch::after {
    transform: translateX(16px);
}

.cpl-live-editor__device-switches,
.cpl-live-editor__device-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cpl-live-editor__device-pill,
.cpl-live-editor__device-switch,
.cpl-live-editor__reopen {
    align-items: center;
    background: #f8fafc;
    border: 1px solid #d0d5dd;
    border-radius: 999px;
    color: #667085;
    cursor: pointer;
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    gap: 7px;
    min-height: 32px;
    padding: 0 10px;
    transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}

.cpl-live-editor__device-pill:hover,
.cpl-live-editor__device-switch:hover,
.cpl-live-editor__reopen:hover {
    transform: translateY(-1px);
}

.cpl-live-editor__device-pill.is-enabled,
.cpl-live-editor__device-switch.is-active,
.cpl-live-editor__reopen {
    background: var(--cpl-live-blue-soft);
    border-color: var(--cpl-live-border);
    color: var(--cpl-live-blue);
}

.cpl-live-editor__device-icon {
    display: inline-block;
    position: relative;
}

.cpl-live-editor__device-icon--desktop {
    height: 12px;
    width: 16px;
}

.cpl-live-editor__device-icon--desktop::before {
    border: 2px solid currentColor;
    border-radius: 2px;
    content: '';
    display: block;
    height: 9px;
    width: 16px;
}

.cpl-live-editor__device-icon--desktop::after {
    background: currentColor;
    content: '';
    display: block;
    height: 2px;
    left: 4px;
    position: absolute;
    top: 11px;
    width: 8px;
}

.cpl-live-editor__device-icon--mobile-portrait,
.cpl-live-editor__device-icon--mobile-landscape {
    height: 16px;
    width: 10px;
}

.cpl-live-editor__device-icon--mobile-portrait::before,
.cpl-live-editor__device-icon--mobile-landscape::before {
    border: 2px solid currentColor;
    border-radius: 3px;
    content: '';
    display: block;
    height: 16px;
    width: 10px;
}

.cpl-live-editor__device-icon--mobile-landscape {
    height: 10px;
    width: 16px;
}

.cpl-live-editor__device-icon--mobile-landscape::before {
    height: 10px;
    width: 16px;
}

.cpl-live-editor__device-icon--tablet-portrait,
.cpl-live-editor__device-icon--tablet-landscape {
    border: 2px solid currentColor;
    border-radius: 3px;
    height: 15px;
    width: 12px;
}

.cpl-live-editor__device-icon--tablet-landscape {
    height: 12px;
    width: 16px;
}

.cpl-live-editor__surface {
    background: #f8fafc;
    border: 1px solid #dbe3ee;
    border-radius: 8px;
    margin: 9px 0;
    padding: 10px;
}

.cpl-live-editor__surface .cpl-live-editor__switch-row {
    margin-bottom: 8px;
}

.cpl-live-editor__field--order {
    max-width: 120px;
}

.cpl-live-editor__order-reference {
    background: #fff;
    border: 1px solid #dbe3ee;
    border-radius: 6px;
    margin: 10px 0;
    overflow: hidden;
}

.cpl-live-editor__order-reference summary {
    color: #344054;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    list-style: none;
    padding: 9px 10px;
}

.cpl-live-editor__order-reference summary::after {
    color: var(--cpl-live-blue);
    content: '+';
    float: right;
    font-size: 16px;
    line-height: 12px;
}

.cpl-live-editor__order-reference[open] summary {
    border-bottom: 1px solid #e4e7ec;
}

.cpl-live-editor__order-reference[open] summary::after {
    content: '-';
}

.cpl-live-editor__order-reference-content {
    color: var(--cpl-live-muted);
    font-size: 11px;
    line-height: 1.4;
    padding: 9px 10px;
}

.cpl-live-editor__order-reference-toggle {
    border-top: 1px solid #e4e7ec;
    margin: 0;
    padding: 8px 10px;
}

.cpl-live-editor__order-reference-message {
    margin: 0;
}

.cpl-live-editor__order-reference-list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
}

.cpl-live-editor__order-reference-item {
    align-items: center;
    border-top: 1px solid #eef1f5;
    display: flex;
    gap: 8px;
    justify-content: space-between;
    padding: 6px 0;
}

.cpl-live-editor__order-reference-item:first-child {
    border-top: 0;
}

.cpl-live-editor__order-reference-name {
    color: #344054;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cpl-live-editor__order-reference-value {
    background: #eef4ff;
    border: 1px solid #c8dafd;
    border-radius: 999px;
    color: #1849a9;
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
}

.cpl-live-order-reference-overlay-root {
    inset: 0;
    pointer-events: none;
    position: fixed;
    z-index: 2147483646;
}

.cpl-live-order-reference-overlay {
    border: 2px dashed #1849a9;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .9);
    pointer-events: none;
    position: fixed;
}

.cpl-live-order-reference-overlay__label,
.cpl-live-order-reference-overlay__value {
    background: #1849a9;
    color: #fff;
    font: 700 11px/1.2 Arial, Helvetica, sans-serif;
    max-width: calc(100vw - 24px);
    padding: 4px 6px;
    position: absolute;
    white-space: nowrap;
}

.cpl-live-order-reference-overlay__label {
    border-radius: 0 0 4px 0;
    left: -2px;
    overflow: hidden;
    text-overflow: ellipsis;
    top: -2px;
}

.cpl-live-order-reference-overlay__value {
    border-radius: 0 0 0 4px;
    right: -2px;
    top: -2px;
}

.cpl-live-editor__colour-field {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 38px 104px;
    margin: 0 0 8px;
}

.cpl-live-editor__colour-field>span {
    margin: 0;
}

.cpl-live-editor__colour-field input[type=color] {
    background: transparent;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    height: 34px;
    padding: 2px;
    width: 38px;
}

.cpl-live-editor__status {
    color: #475467;
    display: block;
    font-size: 12px;
    min-height: 16px;
}

.cpl-live-editor__status.is-error {
    color: #b42318;
}

.cpl-live-editor__pending {
    background: #fff4ce;
    border: 1px solid #e9b949;
    border-radius: 4px;
    color: #7a4d00;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    margin-top: 6px;
    padding: 5px 7px;
}

.cpl-live-editor__actions {
    display: flex;
    gap: 8px;
    margin: 9px 0;
}

.cpl-live-editor__button {
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    min-height: 36px;
    padding: 0 12px;
}

.cpl-live-editor__button--primary {
    background: #ed6c00;
    color: #fff;
}

.cpl-live-editor__button--preview {
    background: #1849a9;
    color: #fff;
}

.cpl-live-editor__button--preview[disabled] {
    background: #d0d5dd;
    color: #667085;
    cursor: not-allowed;
}

.cpl-live-editor__button--quiet {
    background: #fff;
    border-color: #cbd5e1;
    color: #344054;
}

.cpl-live-editor__actions .cpl-live-editor__button {
    flex: 1;
}

.cpl-live-editor__minimise-footer,
.cpl-live-editor__stop {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: block;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 0;
}

.cpl-live-editor__minimise-footer {
    color: #1849a9;
}

.cpl-live-editor__stop {
    color: #b42318;
}

.cpl-live-editor__reopen {
    left: 0;
    position: fixed;
    top: 50%;
    z-index: 2147483647;
}

.cpl-live-editor__sr-only {
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

@media (max-width: 500px) {
    .cpl-live-editor__drawer {
        bottom: 0;
        left: 0;
        max-width: 100vw;
        top: 0;
        width: 100vw;
    }

    .cpl-live-editor__field-grid {
        grid-template-columns: 1fr;
    }
}

.cpl-service-label--live-highlight,
.label-block--live-highlight {
    animation: cpl-live-label-highlight 1.1s ease-in-out infinite alternate;
    outline: 3px solid #ed6c00 !important;
    outline-offset: 3px;
    position: relative;
    z-index: 20;
}

@keyframes cpl-live-label-highlight {
    from {
        box-shadow: 0 0 0 0 rgba(237, 108, 0, .28);
    }

    to {
        box-shadow: 0 0 0 6px rgba(237, 108, 0, .08);
    }
}

.cpl-live-editor__section--switcher .cpl-live-editor__help {
    margin-bottom: 0;
}

.cpl-live-editor__conditions {
    font-size: 12px;
    max-width: 100%;
    overflow: auto;
}

.cpl-live-editor__conditions .rule-tree {
    min-width: 300px;
}

.cpl-live-editor__conditions .rule-param {
    margin: 5px 0;
}

.cpl-live-editor__conditions .rule-param .label {
    cursor: pointer;
    font-weight: 700;
}

.cpl-live-editor__conditions .rule-tree-wrapper {
    line-height: 28px;
}

.cpl-live-editor__conditions .rule-tree ul {
    border-left: 1px dotted #98a2b3;
    list-style: none;
    padding-left: 16px;
}

.cpl-live-editor__conditions .rule-tree li {
    margin: 0 0 10px;
}

.cpl-live-editor__conditions .rule-param .label {
    color: #101828;
    cursor: pointer;
}

.cpl-live-editor__conditions .rule-chooser,
.cpl-live-editor__conditions .rule-param .element,
.cpl-live-editor__conditions .rule-param-edit .label {
    display: none;
}

.cpl-live-editor__conditions .rule-param-edit .element {
    display: inline;
}

.cpl-live-editor__conditions .rule-param .element {
    margin-top: 4px;
}

.cpl-live-editor__conditions .rule-param .element input,
.cpl-live-editor__conditions .rule-param .element select {
    box-sizing: border-box;
    max-width: 100%;
}

.cpl-live-editor__conditions .rule-param-remove,
.cpl-live-editor__conditions .rule-param-new-child {
    color: #1849a9;
    cursor: pointer;
}

.cpl-live-editor__conditions .cpl-native-rule-icon {
    display: inline-block;
    font-size: 19px;
    font-weight: 700;
    line-height: 16px;
    min-width: 16px;
    text-align: center;
    vertical-align: middle;
}

.cpl-live-editor__conditions .cpl-native-rule-icon--add {
    color: #237a19;
}

.cpl-live-editor__conditions .cpl-native-rule-icon--add::before {
    content: '+';
}

.cpl-live-editor__conditions .cpl-native-rule-icon--remove {
    color: #b42318;
}

.cpl-live-editor__conditions .cpl-native-rule-cancel {
    background: transparent;
    border: 0;
    color: #b42318;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin-left: 5px;
    padding: 0 3px;
    vertical-align: middle;
}

.cpl-live-editor__conditions .cpl-native-rule-cancel:hover,
.cpl-live-editor__conditions .cpl-native-rule-cancel:focus-visible {
    color: #7a1111;
    outline: 2px solid rgba(180, 35, 24, .25);
    outline-offset: 1px;
}
.cpl-live-editor__conditions .cpl-native-rule-icon--remove::before {
    content: '\00d7';
}

.cpl-live-editor__filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 8px 0;
}

.cpl-live-editor__filter {
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    color: #475467;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    min-height: 28px;
    padding: 0 9px;
}

.cpl-live-editor__filter.is-active {
    background: #eef4ff;
    border-color: #98baf6;
    color: #1849a9;
}

.cpl-live-editor__label-list {
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    margin: 9px 0;
    max-height: 240px;
    overflow: auto;
}

.cpl-live-editor__label-option {
    align-items: center;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #eaecf0;
    cursor: pointer;
    display: grid;
    gap: 3px 8px;
    grid-template-columns: 1fr auto;
    padding: 8px 9px;
    text-align: left;
    width: 100%;
}

.cpl-live-editor__label-option:hover {
    background: #eef4ff;
}

.cpl-live-editor__label-option.is-current {
    background: #e4edff;
    box-shadow: inset 4px 0 0 #1849a9;
}

.cpl-live-editor__label-name {
    color: #101828;
    font-size: 12px;
    font-weight: 700;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cpl-live-editor__label-kind {
    color: #667085;
    font-size: 11px;
    grid-column: 1;
}

.cpl-live-editor__field--group-filter {
    margin: 8px 0 10px;
}

.cpl-live-editor__group-create {
    align-items: stretch;
    display: flex;
    gap: 8px;
    margin: 0 0 6px;
}

.cpl-live-editor__group-create .cpl-live-editor__input {
    min-width: 0;
}

.cpl-live-editor__group-create .cpl-live-editor__button {
    flex: 0 0 auto;
    white-space: nowrap;
}

.cpl-live-editor__label-group {
    color: #65439b;
    font-size: 11px;
    font-weight: 700;
    grid-column: 1;
}

.cpl-live-editor__label-badges {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    gap: 3px;
    grid-column: 2;
    grid-row: 1 / span 3;
}

.cpl-live-editor__label-state,
.cpl-live-editor__label-selected {
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 6px;
}

.cpl-live-editor__label-selected {
    background: #1849a9;
    color: #fff;
    text-transform: uppercase;
}

.cpl-live-editor__label-state.is-enabled {
    background: #e9f7e7;
    color: #237a19;
}

.cpl-live-editor__label-state.is-disabled {
    background: #f2f4f7;
    color: #667085;
}

.cpl-live-editor__busy,
.cpl-live-editor__switch-confirm {
    align-items: center;
    background: rgba(15, 23, 42, .42);
    display: flex;
    inset: 0;
    justify-content: center;
    position: fixed;
    z-index: 2147483647;
}

.cpl-live-editor__busy {
    color: #fff;
    flex-direction: column;
    font-size: 13px;
    font-weight: 700;
    gap: 10px;
}

.cpl-live-editor__spinner {
    animation: cpl-live-spin .75s linear infinite;
    border: 3px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    border-top-color: #fff;
    height: 34px;
    width: 34px;
}

@keyframes cpl-live-spin {
    to {
        transform: rotate(360deg);
    }
}

.cpl-live-editor__switch-confirm-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
    max-width: min(390px, calc(100vw - 32px));
    padding: 18px;
}

.cpl-live-editor__switch-confirm-card strong {
    color: #101828;
    display: block;
    font-size: 16px;
}

.cpl-live-editor__switch-confirm-card p {
    color: #475467;
    font-size: 13px;
    line-height: 1.4;
}

.cpl-live-label--page-pickable {
    animation: cpl-live-page-pick 1s ease-in-out infinite alternate;
    cursor: crosshair !important;
    outline: 3px dashed #0b70d1 !important;
    outline-offset: 3px;
}

@keyframes cpl-live-page-pick {
    from {
        box-shadow: 0 0 0 0 rgba(11, 112, 209, .15);
    }

    to {
        box-shadow: 0 0 0 6px rgba(11, 112, 209, .04);
    }
}

.cpl-secure-live-preview-reopen {
    align-items: center;
    background: #fff;
    border: 1px solid #84a8e6;
    border-radius: 999px;
    box-shadow: 0 5px 14px rgba(20, 58, 120, .18);
    color: #1849a9;
    cursor: pointer;
    display: inline-flex;
    font: 700 12px/1 Arial, sans-serif;
    left: 12px;
    min-height: 40px;
    padding: 0 14px;
    position: fixed;
    text-transform: none;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2147483647;
}

.cpl-secure-live-preview-reopen:hover,
.cpl-secure-live-preview-reopen:focus-visible {
    background: #eef4ff;
    border-color: #1849a9;
    outline: 3px solid rgba(24, 73, 169, .22);
    outline-offset: 2px;
}

.cpl-secure-live-preview-reopen[hidden],
.cpl-secure-live-preview-resize[hidden] {
    display: none !important;
}

.cpl-secure-live-preview-resize {
    cursor: ew-resize;
    height: 100vh;
    position: fixed;
    top: 0;
    touch-action: none;
    width: 14px;
    z-index: 2147483647;
}

.cpl-secure-live-preview-resize::before {
    background: rgba(24, 73, 169, .45);
    border-radius: 2px;
    content: '';
    height: 46px;
    left: 6px;
    position: absolute;
    top: calc(50% - 23px);
    transition: background-color .15s ease;
    width: 2px;
}

.cpl-secure-live-preview-resize:hover::before,
.cpl-secure-live-preview-resize:focus-visible::before {
    background: #1849a9;
    width: 4px;
}

.cpl-live-editor__image-picker {
    align-items: center;
    background: rgba(15, 23, 42, .48);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 16px;
    position: fixed;
    z-index: 2147483647;
}

.cpl-live-editor__image-picker-card {
    background: #fff;
    border-radius: 9px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .36);
    display: flex;
    flex-direction: column;
    max-height: min(680px, calc(100vh - 32px));
    max-width: 720px;
    padding: 16px;
    width: 100%;
}

.cpl-live-editor__image-picker-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
    margin-top: 12px;
    overflow: auto;
    padding: 2px;
}

.cpl-live-editor__image-choice {
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    color: #344054;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-size: 10px;
    gap: 7px;
    min-height: 116px;
    justify-content: center;
    padding: 7px;
    text-align: center;
}

.cpl-live-editor__image-choice:hover,
.cpl-live-editor__image-choice:focus-visible {
    background: #eef4ff;
    border-color: #3478e5;
    color: #1849a9;
}

.cpl-live-editor__image-choice img {
    height: 74px;
    max-width: 100%;
    object-fit: contain;
    width: 100%;
}

.cpl-live-editor__image-choice span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.cpl-live-editor__icon-picker {
    align-items: center;
    background: rgba(15, 23, 42, .48);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 16px;
    position: fixed;
    z-index: 2147483647;
}

.cpl-live-editor__icon-picker-card {
    background: #fff;
    border-radius: 9px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .36);
    display: flex;
    flex-direction: column;
    max-height: min(680px, calc(100vh - 32px));
    max-width: 520px;
    padding: 16px;
    width: 100%;
}

.cpl-live-editor__icon-picker-header {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cpl-live-editor__icon-picker-header strong {
    color: #101828;
    font-size: 16px;
}

.cpl-live-editor__icon-picker-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
    margin-top: 12px;
    overflow: auto;
    padding: 2px;
}

.cpl-live-editor__icon-choice {
    align-items: center;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    color: #344054;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-size: 10px;
    gap: 7px;
    min-height: 78px;
    justify-content: center;
    padding: 7px;
    text-align: center;
}

.cpl-live-editor__icon-choice:hover,
.cpl-live-editor__icon-choice.is-selected {
    background: #eef4ff;
    border-color: #3478e5;
    color: #1849a9;
}

.cpl-live-editor__icon-swatch,
.cpl-live-editor__icon-choice-icon {
    font-family: 'icomoon' !important;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cpl-live-editor__icon-choice-icon {
    align-items: center;
    display: inline-flex;
    font-size: 22px;
    height: 24px;
    justify-content: center;
    min-width: 24px;
}

.cpl-live-editor__icon-choice-icon[class*=" icon-"]::before {
    left: auto !important;
    position: static !important;
    top: auto !important;
    transform: none !important;
}

.cpl-live-editor__icon-current-name {
    color: #475467;
    flex: 1 1 auto;
    font-size: 11px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cpl-live-editor__advanced-layout {
    background: #f8fafc;
    border: 1px solid #dbe3ee;
    border-radius: 6px;
    margin: 0 0 10px;
    padding: 10px;
}

.cpl-live-editor__field-grid {
    align-items: start;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cpl-live-editor__field-grid>.cpl-live-editor__field {
    min-width: 0;
}

.cpl-live-editor__field-grid>.cpl-live-editor__field>span {
    align-items: end;
    display: flex;
    min-height: 30px;
}

.cpl-live-editor__section summary {
    align-items: center;
    display: flex;
    min-height: 24px;
}

.cpl-live-editor__section summary::after {
    float: none;
    margin-left: auto;
}

.cpl-live-editor__advanced-layout,
.cpl-live-editor__advanced-image-settings {
    background: #f8fafc;
    border: 1px solid #dbe3ee;
    border-radius: 6px;
    margin: 0 0 10px;
    padding: 10px;
}

.cpl-live-editor__advanced-image-settings>summary {
    color: #344054;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    list-style: none;
}

.cpl-live-editor__advanced-image-settings>summary::after {
    color: var(--cpl-live-blue);
    content: '+';
    float: right;
    font-size: 20px;
    line-height: 13px;
}

.cpl-live-editor__advanced-image-settings[open]>summary::after {
    content: '-';
}

.cpl-live-editor__field--theme-icon .cpl-live-editor__icon-select-wrap {
    display: grid;
    gap: 8px;
    grid-template-columns: 36px auto minmax(0, 1fr);
    width: 100%;
}

.cpl-live-editor__field--theme-icon .cpl-live-editor__icon-current-name {
    align-self: center;
}

.cpl-live-editor__image-control {
    flex-wrap: wrap;
}

.cpl-live-editor__advanced-layout>summary {
    color: #344054;
    font-size: 12px;
    font-weight: 700;
}

.cpl-live-editor__notice--insecure {
    background: #fff0f0;
    border-color: #e29595;
    color: #8d1717;
    font-weight: 700;
}

.cpl-live-editor--fallback .cpl-live-editor__drawer {
    width: min(500px, calc(100vw - 32px));
}

.cpl-live-editor__drawer-resize {
    cursor: ew-resize;
    height: calc(100vh - 32px);
    left: 509px;
    position: fixed;
    top: 16px;
    touch-action: none;
    width: 14px;
    z-index: 2147483647;
}

.cpl-live-editor__drawer-resize::before {
    background: rgba(24, 73, 169, .45);
    border-radius: 2px;
    content: '';
    height: 46px;
    left: 6px;
    position: absolute;
    top: calc(50% - 23px);
    transition: background-color .15s ease;
    width: 2px;
}

.cpl-live-editor__drawer-resize:hover::before,
.cpl-live-editor__drawer-resize:focus-visible::before {
    background: #1849a9;
    width: 4px;
}

.cpl-live-editor--overlay.is-collapsed .cpl-live-editor__drawer-resize {
    display: none;
}

html.cpl-live-editor-resizing,
html.cpl-live-editor-resizing * {
    cursor: ew-resize !important;
    user-select: none !important;
}

@media (max-width: 500px) {
    .cpl-live-editor__drawer-resize {
        display: none !important;
    }
}
/* Secure session visibility, compact surface help, and tidy media actions. */
.cpl-live-editor__session-timer {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    margin-top: 8px;
    padding: 5px 8px;
}

.cpl-live-editor__session-timer.is-warning {
    background: #fff1d6;
    border-color: #f5be59;
    color: #7a3e00;
}

.cpl-live-editor__image-control .cpl-live-editor__button {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    justify-content: center;
    line-height: 1.2;
    min-height: 36px;
    text-align: center;
    white-space: nowrap;
}

.cpl-live-editor__surface-heading {
    align-items: flex-start;
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.cpl-live-editor__surface-heading .cpl-live-editor__switch-row {
    flex: 1 1 auto;
    min-width: 0;
}

.cpl-live-editor__surface-help {
    flex: 0 0 auto;
    position: relative;
}

.cpl-live-editor__surface-help-button {
    align-items: center;
    background: #fff;
    border: 1px solid #8baeea;
    border-radius: 50%;
    color: #1849a9;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    height: 22px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    width: 22px;
}

.cpl-live-editor__surface-help-button:focus,
.cpl-live-editor__surface-help-button:hover {
    background: #eaf2ff;
    outline: 0;
}

.cpl-live-editor__surface-tooltip {
    background: #173a77;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(20, 33, 61, .28);
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    padding: 9px 10px;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    width: min(280px, calc(100vw - 72px));
    z-index: 10;
}
