:root {
  /* COLOR */
  --green: #AACF00;
  --dark-blue: #004853;
  --light-blue: #00657F;
  /* FONT */
  --primary-font: "DM Sans", sans-serif;
  /* LAYOUT */
  --max-width: min(95%, 1320px);
}

/* RESETS */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--primary-font);
}

html {
  scroll-behavior: smooth;
}

/*Admin Actions*/
.dnnEditState header {
  position: relative;
}

.dnnEditState.stop-scrolling {
  overflow: visible;
}

.admin_actions {
  position: relative;
}

body.dnnEditState #Form {
  height: 100%;
}

.dnnEditState{
  height: 100%;
  position: relative;
}

body:not(.dnnEditState) .DNNEmptyPane {
  display: none;
}

body.dnnEditState  .DNNEmptyPane {
  display: block;
}