*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

:root {
    --primary-color: #890C25;
    --text-color: #000000;
    --white: #ffffff;
    --transition: all 0.3s ease;
}


.customize-partial-edit-shortcut {
  z-index: 999;
  top: -2rem;
  right: -2rem;
  position: absolute;
  width: 2rem;
  height: 2rem;
}

.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_top_left > .customize-partial-edit-shortcut {
  bottom: unset;
  left: 0;
  right: unset;
  top: 0;
}
.customize-partial-edit-shortcut button, .widget .customize-partial-edit-shortcut button {
    position: unset;
}
.relative {
    position: relative;
}