:root {
    /* Colors */
    --primary-color: #39B8AD;
    --secondary-color: #39B8AD;
    --text-color: #282828;
    --white: #ffffff;
    --bg-color: #ffffff;
    --badge-bg: #1B3933;

    /* Spacing */
    --container-max-width: 1440px;
    --nav-height: 80px;

    /* Typography */
    --font-family: 'Inter', sans-serif;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
}

/*  */
.customize-partial-edit-shortcut {
    z-index: 999;
    top: -2rem;
    right: -2rem;
    position: absolute;
}
.customize-partial-edit-shortcut-button {
    width: 2rem;
    height: 2rem;
    background: #28b4e9;
    border-radius: 100%;
    border: 2px solid white;
}
.customize-partial-edit-shortcut-button svg {
    fill: white;
}
.main-section > .customize-partial-edit-shortcut {
    z-index: 999;
    top: 0;
    left: 0;
    right: unset;
    position: absolute;
}
.hidden-edit-shortcut > .customize-partial-edit-shortcut {
    display: none;
}
.customize_bottom_left > .customize-partial-edit-shortcut {
    bottom: 0;
    left: 0;
    right: unset;
    top: unset;
}
.customize_bottom_right > .customize-partial-edit-shortcut {
    bottom: 0;
    left: unset;
    right: 0;
    top: unset;
}
.customize_top_left > .customize-partial-edit-shortcut {
    bottom: unset;
    left: 0;
    right: unset;
    top: 0;
}
.relative {
    position: relative;
}