.page-customizer-wrap {
    display: flex;
    padding-left: 320px;
    > .page-customizer-left {
        width: 320px;
        flex-shrink: 0;
        background-color: #f0f0f1;
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        overflow: auto;
        z-index: 100;
    }
    > .page-customizer-right {
        width: 100%;
        min-height: 100vh;
        > iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
    }
}

.language-switch {
    position: relative;
    flex: 1;
    display: flex;
    padding: 0 12px;

    > .language-switch-wrap {
        display: flex;
        justify-content: center;
        align-content: center;
        cursor: pointer;
        gap: 5px;
        padding: 9px 0;
        position: relative;
        &::after {
            content: "";
            height: 6px;
            width: 6px;
            border: 1px solid;
            transform: rotate(45deg);
            border-left: none;
            border-top: none;
            position: relative;
            top: 6px;
            left: 1px;
        }
    }

    > .select-lang {
        position: absolute;
        z-index: 10;
        background: #fff;
        top: 101%;
        min-width: 130px;
        border-radius: 0px 0px 5px 5px;
        box-shadow: 0px 0px 10px #e9e9e9;

        > ul {
            padding: 5px 0;
            margin: 0;

            > li {
                list-style: none;
                cursor: pointer;
                padding: 4px 15px;
                transition: al 0.3s ease;
                &:hover {
                    color: #34c759;
                    background-color: rgb(52 199 89 / 10%);
                }
            }
        }
    }
}

.customizer-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    height: 52px;
    display: flex;
    align-items: center;
    padding: 5px 12px;
    justify-content: center;
    width: 319px;
    background-color: #fff;
    border-top: 1px solid #dcdcde;
}
.customize-section-wrap {
    display: flex;
    overflow: hidden;
    height: calc(100vh - 50px);
    position: fixed;
    top: 50px;
    width: 320px;
    background-color: #fff;
    border: 1px solid #dcdcde;

    .customize-section-area {
        width: 320px;
        flex-shrink: 0;
        flex: none;
        transition: all 0.3s ease;
        overflow: auto;
        background-color: inherit;
        height: calc(100% - 50px);
    }
    .customize-options {
        flex: none;
        flex-grow: 1;
        width: 320px;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        background-color: inherit;
        transition: all 0.3s ease;
        position: absolute;
        top: 0;
        left: 320px;
        &.active {
            left: 0;
        }
        .customize-section-description-container {
            .customize-section-title {
                position: relative;
                //padding-left: 1px;
                background: #ffffff;
                display: flex;
                align-items: center;
                border-bottom: 1px solid #dcdcde;
                position: sticky;
                top: 0;
                z-index: 10;
                button {
                    width: 50px;
                    border: none;
                    border-right: 1px solid #dcdcde;
                    background: #ffffff;
                    border-left: 4px solid transparent;
                    transition: 0.3s;
                    display: flex;
                    align-items: center;
                    &:hover {
                        border-left: 4px solid #ff4a17;
                        .md {
                            color: #ff4a17;
                        }
                    }
                    .md {
                        font-size: 24px;
                        font-weight: bold;
                        color: #3c434a;
                    }
                }
                span {
                    padding: 10px 10px 10px 14px;
                    color: #50575e;
                }
            }
            .remove-section {
                right: 10px;
                top: 13px;
                position: absolute;
                cursor: pointer;
                .md {
                    font-size: 20px;
                    color: red;
                }
            }
        }
    }
    .add-sections {
        width: 320px;
        flex: none;
        position: absolute;
        height: 100%;
        left: 320px;
        overflow: auto;
        transition: all 0.3s ease;
        z-index: 100;
        top: 0;
        background-color: inherit;
        &.active {
            left: 0;
        }
    }
}
.customize-header-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 12px 7px 0;
    height: 50px;
    background-color: #f0f0f1;
    position: relative;
    border-right: 1px solid #dcdcde;
    > .dismiss {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-right: 1px solid #dcdcde;
        transition: 0.3s;
        &:hover {
            background: #ffffff;
            border-top: 3px solid #ff4a17;
            > .md {
                color: #ff4a17;
            }
        }
        > .md {
            font-size: 24px;
            font-weight: bold;
            color: #3c434a;
        }
    }
    > .publish {
        .btn-sm {
            padding: 0.3em 1em;
        }
    }
}

.page-customize-notice {
    background-color: #ffffff;
    > .page-customize-notice-title {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #dcdcde;
        > span {
            color: #50575e;
        }
        > .md {
            color: #50575e;
            font-size: 18px;
            padding: 2px;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.1s;
            border: 1px solid transparent;
            &:hover {
                border: 1px solid #ff4a17;
                color: #ff4a17;
            }
        }
    }
    > .page-customize-notice-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in;
        > p {
            font-size: 13px;
            line-height: 1.5em;
            padding: 15px 20px;
            color: #50575e;
            margin: 0;
            border-bottom: 1px solid #dcdcde;
        }
    }
}
.page-customize-notice-content.show {
    max-height: 300px;
}

.customize-sections {
    .customize-sections-item {
        display: flex;
        align-items: center;
        padding: 14px 10px 14px 14px;
        background: rgb(255, 255, 255);
        justify-content: space-between;
        cursor: move;
        border-bottom: 1px solid #dcdcde;
        border-left: 4px solid #fff;
        transition: 0.1s;
        &:hover {
            border-left: 4px solid #ff4a17;
            .customize-sections-item-title h3 {
                color: #ff4a17;
            }
            .customize-sections-item-icon .md {
                color: #ff4a17;
            }
        }
        .customize-sections-item-title {
            h3 {
                font-size: 14px;
                color: #50575e;
                margin: 0;
            }
        }
        .customize-sections-item-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            .md {
                color: #a7aaad;
                font-size: 20px;
            }
        }
    }
}
.customize-field {
    padding: 15px 18px;
    .form-group {
        // div {
        //     .form-control {
        //         background-color: transparent;
        //         border-color: #dcdcde;
        //         min-height: 40px;
        //         font-size: 14px;
        //         padding: 10px 12px;
        //     }
        // }
        > select {
            padding: 0px 15px 0px 15px;
        }
        .form-control {
            background-color: transparent;
            border-color: #dcdcde;
            min-height: 36px;
            font-size: 14px;
            padding: 8px 12px;
        }
        > select.form-control {
            padding: 8px 10px;
        }
    }
}
.social-link-items {
    .row {
        .col-md-6 {
            .form-group {
                .form-control {
                    background-color: #ffffff;
                    border-color: #dcdcde;
                    min-height: 40px;
                    font-size: 14px;
                }
            }
        }
    }
}

.social-media-wrap {
    position: relative;
}

.list-wrap-moving-wrap {
    display: flex;
    .remove-item {
        background: transparent;
        height: 40px;
        border: none;
        color: red;
        font-size: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        outline: none;
    }
}

.single-partner-logo {
    position: relative;
}

.remove-partner-logo {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    height: 40px;
    border: none;
    color: red;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    &:focus {
        outline: none;
    }
}

.plan-wrap {
    margin-bottom: 25px;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    position: relative;

    .remove-button {
        position: absolute;
        top: -10px;
        right: 0;
    }
}

.feature-list-wrap {
    display: flex;
    .remove-item {
        background: transparent;
        height: 40px;
        border: none;
        color: red;
        font-size: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        outline: none;
    }
}

.add-section-title {
    border-bottom: 1px solid #dcdcde;
    background: #ffffff;
    display: flex;
    button {
        width: 46px;
        border: none;
        border-right: 1px solid #dcdcde;
        background: #ffffff;
        border-left: 4px solid transparent;
        transition: 0.3s;
        display: flex;
        align-items: center;
        &:hover {
            border-left: 4px solid #ff4a17;
            .md {
                color: #ff4a17;
            }
        }
        .md {
            font-size: 24px;
            font-weight: bold;
            color: #3c434a;
        }
    }
    span {
        padding: 10px 10px 12px 14px;
        color: #50575e;
    }
}

.service-icon-box {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.cs_tab_wrap {
    display: flex;
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 400;
    margin: -15px -18px 15px -18px;
    span {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 14px 12px;
        border-bottom: 1px solid #dcdcde;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
        &::before {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%);
            height: 3px;
            width: 0%;
            background-color: #50575e;
            transition: all 0.3s ease;
        }
        &:hover {
            font-weight: 600;
        }
        &.active {
            pointer-events: none;
            color: #50575e;
            border-bottom: 1px solid transparent;
            font-weight: 600;

            &::before {
                width: 100%;
            }
        }
    }
}
.cs_design_layout_box {
    margin-bottom: 15px;
}
.cs_design_layout_select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    margin-bottom: -1px;

    label {
        margin: 0;
        font-weight: 400;
        font-size: 14px;
    }
    .form-control {
        width: initial;
        &:hover {
            cursor: pointer;
        }
    }
    &.active {
        .cs_design_layout_toggle_btn {
            border-bottom: 0;
            border-radius: 7px 7px 0 0;
            background-color: #f2f2f2;
            font-weight: 500;
            svg {
                transform: rotate(180deg);
            }
        }
    }
}
.cs_design_layout_toggle_btn {
    border: 1px solid #dcdcde;
    border-radius: 7px;
    padding: 7px 30px 7px 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.3s ease;
    &:hover {
        border-color: #bebec0;
    }
    svg {
        position: absolute;
        right: 7px;
        top: 8px;
        transition: all 0.3s ease;
        opacity: 0.6;
    }
}
.cs_loop_list {
    .cs_loop_list_in {
        border: 1px solid #dcdcde;
        border-radius: 7px;
    }
    .cs_loop_item {
        border-bottom: 1px solid #dcdcde;
        &:first-child {
            .cs_loop_item_head {
                border-top-left-radius: 7px;
                border-top-right-radius: 7px;
            }
        }
    }
    .cs_loop_item_head {
        position: relative;
        background-color: #fafafa;
        transition: all 0.3s ease;
        display: flex;
        &:hover {
            background-color: #f2f2f2;
        }
        > span {
            padding: 9px 12px;
            cursor: pointer;

            flex: 1;
            > span {
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 1;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
        }
    }
    .cs_remove_loop_item {
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        background-color: transparent;
        outline: none;
        border-left: 1px solid #dcdcde;
        transition: all 0.3s ease;
        color: #666;
        &:hover {
            color: red;
        }
    }
    .cs_clone_loop_item {
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        background-color: transparent;
        outline: none;
        border-left: 1px solid #dcdcde;
        transition: all 0.3s ease;
        color: #666;
        &:hover {
            color: #34c759;
        }
    }
    .cs_loop_item_control_btns {
        display: flex;
    }
    .cs_loop_list_btn {
        text-align: center;
        padding: 10px 10px;
        .btn-sm {
            padding: 5px 14px;
            background-color: #50575e;
            transition: all 0.3s ease;
            font-size: 13px;
            line-height: 1.5em;
            &:hover {
                opacity: 0.8;
            }
        }
    }
    .cs_loop_item_body {
        padding: 8px 12px 14px 12px;
        border-top: 1px solid #dcdcde;
        .form-group {
            margin-bottom: 10px;
        }
        > * {
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    &.cs_style_1 {
        .upload-area.upload-area-sm {
            min-height: 80px;
            padding: 10px;
        }
        .cs_inner_feature_item.cs_type_1 {
            > .cs_inner_feature_head {
                .cs_inner_feature_head_title {
                    padding: 7px 10px;
                }
                .cs_inner_feature_item_delete {
                    height: 36px;
                    width: 36px;
                    svg {
                        height: 18px;
                        width: 18px;
                    }
                }
            }
            > .cs_inner_feature_body {
                padding-bottom: 10px;
            }
        }
        .cs_inner_feature_list {
            label {
                margin-bottom: 5px;
                font-size: 14px;
            }
            .form-group .form-control {
                min-height: 34px;
                height: 34px;
                padding: 4px 10px;
            }
            .cs_inner_feature_list {
                .cs_add_btn_border {
                    width: initial;
                    font-size: 12px;
                    padding: 3px 10px;
                }
                .cs_inner_feature_add_btn {
                    padding: 7px;
                }
                label {
                    margin-bottom: 2px;
                    font-size: 13px;
                }
                .form-group .form-control {
                    min-height: 30px;
                    height: 30px;
                    padding: 4px 10px;
                }
            }
        }
        .cs_link_options .cs_link_option_btn {
            width: 34px;
            height: 34px;
        }
    }
}
.cs_loop_list .cs_loop_item_body .cs_inner_feature_item.cs_type_1 .form-group {
    margin-bottom: 8px;
}
.cs_loop_list .cs_loop_item_body .cs_inner_feature_item.cs_type_1 .cs_inner_feature_item .form-group {
    margin-bottom: 5px;
}
.cs_input_group {
    display: flex;
    .cs_input_group_text {
        display: flex;
        align-items: center;
        padding: 5px 10px;
        font-size: 13px;
        line-height: 1.5em;
        border: 1px solid #dcdcde;
        border-right-width: 0;

        border-radius: 7px 0 0 7px;

        background-color: #f1f1f1;
        + .form-control {
            border-radius: 0 7px 7px 0;
        }
    }
    .form-control {
        border-radius: 7px 0 0 7px;
        + .cs_input_group_text {
            border-left: 0;
            border-radius: 0 7px 7px 0;
            border-right-width: 1px;
        }
    }
}
.cs_section_images {
    border: 1px solid #dcdcde;
    border-radius: 7px 0 7px 7px;
    padding: 16px;
    background-color: #f2f2f2;
    margin-bottom: 25px;
}
// #34c759
.cs_section_image {
    position: relative;
    &:not(:last-child) {
        margin-bottom: 10px;
    }
    input {
        position: absolute;
        height: 100%;
        width: 100%;
        right: 0;
        top: 0;
        z-index: 2;
        cursor: pointer;
        opacity: 0;
        margin: 0;
        &:checked {
            + .cs_section_image_in {
                border-color: rgba(0, 0, 0, 0.6);
                box-shadow: 0 0 0px 2px rgba(0, 0, 0, 0.6);
                label {
                    font-weight: 700;
                }
            }
        }
    }
    &:hover {
        .cs_section_image_in {
            border-color: rgba(0, 0, 0, 0.35);
            box-shadow: 0 0 0px 2px rgba(0, 0, 0, 0.35);
            label {
                font-weight: 700;
            }
        }
    }
}

.cs_section_image_in {
    border: 1px solid #dcdcde;
    border-radius: 7px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
    img {
        border-radius: 7px 7px 0 0;
        display: block;
    }
    label {
        border-top: 1px solid #dcdcde;
        background-color: #fff;
        margin: 0;
        display: block;
        border-radius: 0 0 7px 7px;
        padding: 7px 10px;
        font-size: 13px;
        line-height: 1.3em;
        font-weight: 500;
    }
}
.cs_padding_toggle_btns {
    display: inline-flex;
    background-color: #f1f1f1;
    padding: 2px;
    border-radius: 5px;
    font-size: 12px;
    line-height: 1.5em;
    .cs_padding_toggle_btn {
        padding: 1px 7px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        &:hover {
            color: #000;
        }
        &.active {
            color: #000;
            background-color: #fff;
        }
    }
}
.cs_radio_tab_wrap {
    border: 1px solid #dcdcde;
    border-radius: 7px;
}
.cs_radio_tab_body {
    padding: 9px 10px 12px 10px;
}
.cs_radio_tab_head {
    display: flex;
}
.cs_radio_tab_item {
    position: relative;
    display: block;
    input {
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 2;
        cursor: pointer;
        opacity: 0;
        margin: 0 !important;
        &:hover {
            + .cs_radio_tab_item_in {
                background-color: #fafafa;
            }
        }
        &:checked {
            + .cs_radio_tab_item_in {
                background-color: #f2f2f2;
            }
        }
    }
    &:first-child {
        .cs_radio_tab_item_in {
            border-top-left-radius: 7px;
        }
    }
    &:last-child {
        .cs_radio_tab_item_in {
            border-bottom-right-radius: 7px;
        }
    }
}
.cs_radio_tab_item_in {
    padding: 4px 8px;
    display: block;
    border-bottom: 1px solid #dcdcde;
    border-right: 1px solid #dcdcde;
    transition: all 0.3s ease;
}
.cs_mb_2 {
    margin-bottom: 2px;
}
.cs_social_links_box,
.cs_inner_feature_list {
    border: 1px solid #dcdcde;
    border-radius: 7px;
    padding: 10px;
    label {
        margin-bottom: 2px;
        font-size: 13px;
    }
}
.customize-field .cs_social_links_box .form-group .form-control,
.customize-field .cs_inner_feature_list .form-group .form-control {
    min-height: 30px;
    height: 30px;
    padding: 4px 10px;
}
.cs_loop_list .cs_loop_item_body .cs_social_links_box .form-group,
.cs_loop_list .cs_loop_item_body .cs_inner_feature_list .form-group {
    margin-bottom: 5px;
}
.cs_inner_feature_list {
    padding: 0;
}
.cs_inner_feature_head {
    background-color: #fafafa;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
    &:hover {
        background-color: #f2f2f2;
    }
}
.cs_inner_feature_head_title {
    display: block;
    padding: 4px 10px;
    flex: 1;
    cursor: pointer;
    span {
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
.cs_inner_feature_item_delete {
    color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #dcdcde;
    &:hover {
        color: #000;
    }
}
.cs_inner_feature_add_btn {
    padding: 10px;
}
.cs_inner_feature_item {
    border-bottom: 1px solid #dcdcde;
    &:first-child {
        .cs_inner_feature_head {
            border-radius: 7px 7px 0 0;
        }
    }
}
.cs_inner_feature_body {
    padding: 5px 10px;
    border-top: 1px solid #dcdcde;
}
.cs_group_with_delete {
    position: relative;
    padding-right: 18px;
    + .text-center {
        margin-top: 5px;
    }
}
.cs_group_delete {
    position: absolute;
    right: -3px;
    bottom: 12px;
    display: flex;
    color: #000;
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
    &:hover {
        opacity: 1;
    }
}
.cs_add_btn_border {
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: transparent;
    outline: none;
    color: rgba(0, 0, 0, 0.7);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    line-height: 1.5em;
    transition: all 0.3s ease;
    width: 100%;
    background-color: #f1f1f1;
    outline: none !important;
    &:hover {
        border-color: rgba(0, 0, 0, 0.5);
        background-color: #f2f2f2;
    }
}
.cs_design_layout_box.cs_type_1 {
    .cs_design_layout_select {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .cs_design_layout_toggle_btn {
        width: 100%;
    }
    .cs_section_images {
        border-radius: 0px 0 7px 7px;
    }
}
.cs_link_options_wrap {
    display: flex;
    position: relative;
    .form-control {
        border-radius: 7px 0 0 7px;
    }
}
.cs_saved_links_dropdown {
    position: absolute;
    bottom: 100%;
    background: #fff;
    width: 100%;
    box-shadow: 0px 0px 15px #00000021;
    border-radius: 7px;
    padding: 10px 0;
    z-index: 5;
}
.cs_saved_links_search {
    width: calc(100% - 20px);
    display: block;
    border: 1px solid #dcdcde;
    margin-left: 10px;
    height: 30px;
    border-radius: 5px;
    padding: 2px 6px;
    margin-bottom: 5px;
    outline: none;
    font-size: 13px;
    &:focus {
        border-color: #c5c5c8;
    }
}

.cs_saved_links {
    display: block;
    max-height: 165px;
    overflow: auto;
    span {
        display: block;
        padding: 5px 10px;
        cursor: pointer;
        &:hover,
        &.active {
            background-color: #f2f2f2;
        }
        &:not(:last-child) {
            margin-bottom: 1px;
        }
    }
}
.cs_link_options {
    display: flex;
    .cs_link_option_btn {
        flex: none;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #dcdcde;
        margin-left: -1px;
        cursor: pointer;
        position: relative;
        &:last-child {
            border-radius: 0 7px 7px 0;
        }
        &.active {
            background-color: #f2f2f2;
            cursor: initial;
        }
        span {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            font-size: 12px;
            background-color: #000;
            color: #fff;
            border-radius: 4px;
            line-height: 1.2em;
            white-space: nowrap;
            padding: 4px 5px;
            margin-top: 3px;
            display: none;
        }
        &:hover {
            span {
                display: block;
            }
        }
    }
}
.section-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.section-item {
    text-align: center;
    border: 1px solid #dcdcde;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 85px;
    border-radius: 7px;
    cursor: pointer;
    gap: 8px;
    line-height: 1.2em;
    font-size: 14px;
    padding: 10px 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    &:hover {
        background-color: #f0f0f0;
        border-color: #9a9a9b;
    }

    i {
        display: flex;
        justify-content: center;
    }
    svg {
        width: 26px;
        height: 26px;
    }
}
.section-search-input-wrap {
    position: relative;
    margin-bottom: 10px;
    .section-search-input {
        display: block;
        border: 1px solid #dcdcde;
        height: 36px;
        width: 100%;
        border-radius: 7px;
        padding: 3px 25px 3px 32px;
        line-height: 1.5em;
        outline: none;
        transition: all 0.3s ease;
        &:focus {
            border-color: #b5b5b5;
        }
    }
    .section-search-icon {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #b5b5b5;
        display: flex;
    }
    .section-search-clear {
        display: flex;
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        &:hover {
            color: red;
        }
    }
}
.section-list-not-found {
    text-align: center;
    grid-column: span 2;
    padding: 10px 15px;
}
.section-list-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.editor-breadcamp-inputs {
    border: 1px solid #dcdcde;
    padding: 25px 10px 0px 10px;
    border-radius: 7px;
    margin-top: -31px;
    margin-bottom: 15px;
}
.editor-breadcamp-toggle-wrap {
    display: inline-flex;
    gap: 10px;
    background-color: #fff;
    padding: 0 10px 5px 0;
    margin: 0;
}
.seo-details-title {
    font-size: 14px;
    margin-bottom: 0;
    padding-bottom: 6px;
}
.seo-details-wrap {
    border: 1px solid #dcdcde;
    padding: 10px 10px 15px 10px;
    border-radius: 7px;
    > * {
        &:last-child {
            margin-bottom: 0;
        }
    }
    i {
        font-size: 13px;
        line-height: 1.6em;
        color: rgba(0, 0, 0, 0.45);
    }
}
.publish {
    display: flex;
    align-items: center;
    gap: 9px;
}
.publish_eye {
    transition: all 0.3s ease;
    &:hover {
        transform: scale(1.1);
    }
}
