/* Customizer Helper */
.helper-switch {
    position: fixed;
    left: 20px;
    bottom: 20px;
    height: 40px;
    border-radius: 20px;
    padding: 0 10px 0 42px;
    display: flex;
    gap: 5px;
    align-items: center;
    background: var(--colorbg);
    box-shadow: 0 2px 1px rgba(60, 67, 74, .15);
    border: 1px solid var(--colorborder);
    z-index: 99;
    cursor: pointer;
    animation: popBounce 0.4s ease-out;
    font-size: 14px;
}
.helper-switch:hover {
    background: var(--colorborder);
}
.helper-switch:before {
    position: absolute;
    top: 4px;
    left: 4px;
    height: 32px;
    width: 32px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--colorwhite);
    border-radius: 50%;
    font-family: 'Material Symbols Reguler';
    background: #333;
}
.helper-switch._toggle:before {
    content: "question_mark";
    background: var(--color1);
}
.helper-switch._toggle._active:before {
    content: "emoji_objects";
}
.helper-switch._toggle ._status:before {
    content: 'OFF';
}
.helper-switch._toggle._active ._status:before {
    content: 'ON';
}

.helper-switch._customizer {
    bottom: 75px;
    display: none;
}
.helper-switch._customizer:before {
    content: "tune";
}
.helper-switch._options {
    bottom: 130px;
    display: none;
}
.helper-switch._options:before {
    content: "settings";
}

.helper-message {
    height: 30px!important;
    line-height: 28px;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: -32px;
    font-size: 11px;
    z-index: 3;
    border: 1px solid transparent;
    display: none;
    animation: popBounce 0.4s ease-out;
    cursor: pointer;
    color: var(--colorbody);
}
.helper-message._top-left {
    top: 0;
    left: 0;
}
.helper-message._top-left20 {
    top: 20px;
    left: 20px;
}
.helper-message._center-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
._side .helper-message {
    left: 20px;
    transform: translateY(-50%);
    padding-left: 18px!important;
}
._side .helper-message span {
    display: none!important;
}
.helper-message span {
    display: none;
    font-weight: normal;
    color: #444;
}
.helper-message:hover {
    padding-left: 30px;
    padding-right: 10px;
    background: var(--colorbg);
    box-shadow: 0 2px 1px rgba(60, 67, 74, .15);
    border-color: var(--colorborder);
}
.helper-message:hover:before {
    box-shadow: none;
    border-color: var(--colorbg);
}
.helper-message:hover span {
    display: inline-block;
}
.helper-message:before {
    content: "edit";
    font-family: 'Material Symbols Reguler';
    position: absolute;
    top: 1px;
    left: 1px;
    height: 26px;
    width: 26px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color1);
    border: 2px solid white;
    color: white;
    border-radius: 50%;
    box-shadow: 0 2px 1px rgba(60, 67, 74, .15);
}
._marked:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border: 2px dashed var(--color1);
    background: #ffffff70;
}

/* Customizer Custom */
.customizer-helper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    font-size: 11px;
    line-height: 1.1em;
    background: var(--color1);
    padding: 7px;
    color: var(--colorwhite)!important;
    display: none;
}
._marked .customizer-helper {
    display: block;
}
.customize-partial-edit-shortcut button {
    background: var(--color1)!important;
    border-radius: 50%!important;
}
.customize-partial-edit-shortcut button:hover {
    background: var(--color1)!important;
}

/* Custom Theme */

#head-blog > .customize-partial-edit-shortcut,
.single-content ._featured > .customize-partial-edit-shortcut {
    top: 20px;
    left: 50px;
}