@font-face {
  font-family: "August-Bold";
  src: url("/fonts/August-Bold.woff2") format("woff2");
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Diagramm-Light";
  src: url("/fonts/Diagramm-Light.woff2") format("woff2");
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Diagramm-Regular";
  src: url("/fonts/Diagramm-Regular.woff2") format("woff2");
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Diagramm-Medium";
  src: url("/fonts/Diagramm-Medium.woff2") format("woff2");
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Diagramm-SemiBold";
  src: url("/fonts/Diagramm-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Diagramm-Bold";
  src: url("/fonts/Diagramm-Bold.woff2") format("woff2");
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Diagramm-Black";
  src: url("/fonts/Diagramm-Black.woff2") format("woff2");
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Kristopher-Regular";
  src: url("/fonts/Kristopher-Regular.woff2") format("woff2");
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Moldiv";
  src: url("/fonts/Moldiv.woff2") format("woff2");
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Purple-Magic";
  src: url("/fonts/Purple-Magic.woff2") format("woff2");
  font-style: normal;
  font-display: block;
}

/* === Variables === */

:root {
  --sugr-gray-lt: #cecece;
  --sugr-peach: #f7aba7;
  --sugr-orange-base: #e9741f;
  --sugr-pink: #ee283f;
  --sugr-red-dk: #b11b20;
  --sugr-purple-lt: #654996;
  --sugr-purple-dk: rgba(75, 25, 73, 1);
  --sugr-purple-darkest: #1a1226;
  --sugr-maroon: #c84689;
}

* {
  box-sizing: border-box;
  user-select: none;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block-start: 0;
  margin-block-end: 0;
}

a {
  color: #fff;
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  color: #FFF;
  background: var(--sugr-purple-dk);
  font-family: "Diagramm-Regular", serif;
  font-size: 18px;
}

h2 {
  font-family: "Kristopher-Regular", serif;
  font-size: 3.5rem;
  font-weight: 100;
  line-height: 1.2;
  text-align: left;
  letter-spacing: 0;
  margin-right: -0.5em;
  color: #FFF;
  text-transform: none;
  width: 87%;
  max-width: 466px;
}

h2 span {
  color: var(--sugr-peach);
}

/* === Preload Animation === */

.preload {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: grid;
  background: var(--sugr-purple-dk);
  animation-name: loading--fadeaway;
  animation-duration: .5s;
  animation-delay: 3.7s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.61, 0.22, 0.38, 1.53);
}

.preload .bg {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: block;
  background: linear-gradient(270deg, var(--sugr-purple-dk) 0%, var(--sugr-maroon) 91%);
  animation-name: loading--bg;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}


.preload .logo-wrap {
  position: relative;
  z-index: 9999;
  display: grid;
  place-self: center;
  width: fit-content;
}

.preload .logo-wrap span:first-of-type {
  font-family: 'Gellaby';
  font-size: 70px;
  line-height: 57px;
  width: 400px;
  animation: loading--logo;
  animation-duration: .6s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.61, 0.22, 0.38, 1.53);
}

.preload .logo-wrap span.small {
  font-family: 'Diagramm-Regular';
  display: flex;
  align-items: center;
  font-size: 16px;
  /* text-align: center; */
  margin: 0 0 0 201px;
  text-transform: uppercase;
  color: var(--sugr-peach);
  animation: loading--logo;
  animation-duration: .8s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(1, .67, .37, 1.6);
  animation-delay: 1.75s;
  opacity: 0;
}

.preload .logo-wrap svg {
  width: 80px;
  margin: 0 0 0 10px;
  animation: loading--logo;
  animation-duration: .7s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(1, .67, .37, 1.6);
  animation-delay: 1.95s;
  opacity: 0;
}

.preload .logo-wrap .accent {
  width: 0;
  height: 10px;
  margin-top: 15px;
  background: #FFF;
  display: block;
  animation: loading--accent;
  animation-delay: .6s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.61, 0.22, 0.38, 1.53);
}

@keyframes loading--bg {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes loading--fadeaway {
  0% {
    left: 0;
    top: 0;
    opacity: 1;
  }

  99% {
    z-index: 9999;
    opacity: 1;
  }

  100% {
    display: none;
    z-index: -1;
    opacity: 0;
    top: -100%;
    filter: blur(40px);
    /*left: -100vw;*/
    /*background: linear-gradient(0deg, rgba(75,25,73,0) 0%, rgba(101,73,150,0) 100%);*/
  }
}

@keyframes loading--logo {
  0% {
    transform:
      /*translate(50vw, 50vh)*/
      scale(0);
    fill: #FFF;
    opacity: 0;
  }

  100% {
    transform:
      /*translate(0,0)*/
      scale(1);
    fill: #FFF;
    opacity: 1;
  }
}

@keyframes loading--accent {
  0% {
    width: 0;
  }

  100% {
    width: 158px;
  }
}

/* === */

header {
  position: fixed;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  padding: 0 5%;
  width: 50%;
  left: 50%;
  z-index: 10;
  height: 5em;
  font-size: clamp(0.66rem, 2vw, 1rem);
  letter-spacing: 0.5em;
}

header img {
  width: 120px;
}

header .content-wrap {
  display: inline-flex;
}

header .content-wrap .sugr-cubes-count {
  font-family: 'Diagramm-Regular';
  font-size: 13px;
  color: #FFF;
  border-radius: 40px;
  border: 1px #FFF solid;
  padding: 5px 15px;
  margin-right: 20px;
  backdrop-filter: blur(20px);
}

header .content-wrap .sugr-cubes-count span {
  display: inline-flex;
  align-items: center;
}

header .content-wrap .sugr-cubes-count span:before {
  content: url('/images/sugr-icon--cube-white.svg');
  width: 20px;
  display: inline-block;
  margin-right: 15px;
}

header .content-wrap .sugr-cubes-count span {
  letter-spacing: 0;
}

header .user-info {
  display: inline-flex;
  align-items: center;
}

header .user-info .avatar {
  width: 30px;
  height: 30px;
  border-radius: 20px;
  background-color: #f47e1f;
  display: flex;
}

header .user-info span {
  font-family: 'Diagramm-SemiBold', sans-seroif;
  font-size: .8rem;
  line-height: .8rem;
  letter-spacing: 0;
  color: #FFF;
  padding-left: 15px;
}


/* === NAV === */

nav {
  position: fixed;
  z-index: 25;
  left: 0;
  top: 0;
  height: 100vh;
  width: 75px;
  padding-top: 25px;
  transition: .45s ease all;
  cursor: pointer;
}

nav:hover {
  cursor: pointer;
}

nav:before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 75px;
  background-color: var(--sugr-purple-darkest);
  transition: .2s ease all;

}

nav:after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  height: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--sugr-maroon) 0%, var(--sugr-purple-darkest) 87%);
  transition: .8s ease all;
}

nav.active:after {
  height: 100vh;
  width: 3px;
  transition: 1s ease all;
}

nav.active:before {
  -webkit-box-shadow: 0px 18px 27px -1px rgba(0, 0, 0, 0.72);
  -moz-box-shadow: 0px 18px 27px -1px rgba(0, 0, 0, 0.72);
  box-shadow: 0px 18px 27px -1px rgba(0, 0, 0, 0.72);
}

nav:hover:before {
  -webkit-box-shadow: 0px 18px 27px -1px rgba(0, 0, 0, 0.72);
  -moz-box-shadow: 0px 18px 27px -1px rgba(0, 0, 0, 0.72);
  box-shadow: 0px 18px 27px -1px rgba(0, 0, 0, 0.72);
  width: 85px;
}

nav .gradient-top {
  position: absolute;
  top: -280px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 280px;
  background: linear-gradient(180deg, #c8468980 0%, #1a122600 87%);
  transition: 1.5s ease-out all;
}

nav.active .gradient-top {
  top: 0;
  transition: 1.2s ease all;
  transition-delay: .2s;
}

nav * {
  transition: .5s ease all;
}

nav.active,
nav.active:before {
  width: 120px;
}

nav.active h1 img {
  width: 80px;
  filter: brightness(5);
}

nav h1 {
  font-family: 'Gellaby', sans-serif;
  font-size: 30px;
  line-height: 25px;
  color: var(--sugr-peach);
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  /* width: 50px; */
  line-break: anywhere;
}

nav h1 img {
  width: 55px;
  margin: 0 auto;
  display: block;
  position: absolute;
  top: 30px;
  left: 20px;
  z-index: 10;
  transition: 1s ease all;
  filter: brightness(1);
}

nav .open-arrow {
  margin: 35px auto 0;
  display: flex;
  position: fixed;
  z-index: 2;
  top: 65px;
  left: 25px;
  height: 35px;
  width: 25px;
  cursor: pointer;
}

nav .open-arrow #arrow {
  position: absolute;
  width: 20px;
  top: 7px;
  right: 5px;
  transition: .5s ease all;
}

nav .open-arrow #outline {
  position: absolute;
  top: 0;
  right: 0;
  height: 27px;
  transition: .5s ease all;
}

nav .open-arrow:hover #outline,
nav.active .open-arrow #outline {
  transform: translateX(5px);
  filter: brightness(5);
}

nav.active .open-arrow #arrow {
  transform: rotate(-180deg);
  filter: brightness(5);
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0 20px;
  position: absolute;
  top: 150px;
  z-index: 10;
  opacity: .5;
  transition: .5s ease all;
}

nav ul li {
  font-size: 12px;
  color: var(--sugr-peach);
  padding: 25px 0;
  border-bottom: 1px var(--sugr-purple-lt) solid;
  width: 35px;
  height: 90px;
  transition: .5s ease border;
}

nav ul li:last-of-type {
  border-bottom: 0;
}

nav ul li a,
nav ul li a:active,
nav ul li a:focus,
nav ul li a:hover,
nav ul li a:visited {color: inherit; text-decoration: none;}

nav ul li span {
  opacity: 0;
  height: 0;
  display: block;
  padding: 10px 0 0 0;
  transition: 1s ease all;
}

nav.active ul li span {
  opacity: 1;
  height: 35px;
  display: block;
  transition: .7s ease all;
  transition-delay: .3s;
}

nav ul li img {
  width: 35px;
  margin: 0 auto;
  display: block;
  transition: 1s ease all;
}

nav.active ul {
  opacity: 1;
}

nav.active ul li {
  height: 115px;
  transition: .5s ease all
}

nav.active ul li:hover img,
nav.active ul li:hover span {
  transition-delay: 0;
  transition: .5s ease all;
  transform: translateX(5px);
}

nav.active ul li:hover span {
  color: #FFF;
}

/* === Scroll Indicator === */

#scroll {
  position: fixed;
  bottom: 0;
  height: 60px;
  background-image: linear-gradient(90deg, rgba(238, 40, 63, .7) 0%, rgba(233, 116, 31, .7) 87%);
  ;
  transition: width 0.1s ease;
  z-index: 11;
}

/* === */

.section {
  height: 100vh;
  top: 0;
  background: linear-gradient(0deg, rgba(255, 142, 136, 1) 0%, rgba(247, 171, 167, 1) 100%);
}

.section.first {
  animation-name: loading--bg;
  animation-duration: 2s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.section.has-swirl {
  background-image: url(images/sugr-bg--candyswirl-bowtie.svg);
  background-size: 120%;
  background-position: center;
  overflow: hidden;
  background-color: var(--sugr-peach);
}

.section.has-swirl.dk,
.has-swirl.dk {
  background-image: url(images/sugr-bg--candy-swirl-purples.webp);
}

.section.has-swirl.fixed,
.section.has-swirl.dk.fixed {
  background-attachment: fixed;
  overflow: visible;
  height: auto;
  padding: 120px 0;
}

.section.has-swirl.has-blur-overlay:after {
  content: "";
  width: 100%;
  height: 100%;
  backdrop-filter: blur(20px);
  position: absolute;
  top: 0;
  z-index: 0;
}


.section.bg-plum {
  background: linear-gradient(330deg, #2a1b45 -8.54%, var(--sugr-purple-dk) 104.3%);
}

/*.section.bg-plum:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  -webkit-filter: blur(20px);
  -moz-filter: blur(20px);
  -ms-filter: blur(20px);
  filter: blur(20px);
  background: linear-gradient(330deg,#2a1b45 -8.54%,var(--sugr-maroon) 40%, var(--sugr-purple-dk) 104.3%);
  background-size: 200% 200%;
  animation: animateGradientBG 10s ease infinite;
}
*/
.section .container {
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 1800px) {
  .section .container {
    max-width: 1800px;
  }
}

.section .inner {
  display: flex;
  align-content: center;
  align-items: center;
  height: 80vh;
  margin: auto;
  width: 100%;
}

.section.has-swirl.fixed .inner,
.section.has-swirl.dk.fixed .inner {
  height: auto;
}

.section h2 {
  font-family: 'Diagramm-Black', sans-serif;
  color: var(--sugr-purple-dk);
}

.section img.eyeball {
  width: 145px;
  margin: 0 auto;
  display: block;
}

.section img.eyeball.baking {
  width: 145px;
  margin: -300px 0 0 80%;
  display: block;
  position: relative;
}

.section.ui.panel h3 {
  font-family: 'Diagramm-Black', sans-serif;
  font-size: 4rem;
  font-weight: 100;
  line-height: 4.2rem;
  letter-spacing: -2px;
  text-align: center;
  color: var(--sugr-purple-dk);
  margin: 0;
}

.section.ui.panel p {
  color: #FFF;
  text-align: center;
}

.section.ui.panel.bg-plum h3 {
  color: #FFF;
}

.section.ui.panel.bg-plum h3 span {
  color: var(--sugr-peach);
}

.section.ui.panel h3 span {
  color: var(--sugr-purple-lt);
}

.section.ui.panel h3 span.block {
  display: block;
}

.section.ui.panel .circular-image {
  width: 100px;
  /* Adjust the size as needed */
  height: 100px;
  border: 3px solid white;
  /* You can change the border size and color */
  border-radius: 50%;
  overflow: hidden;
}

.circular-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Preserve aspect ratio and cover the entire circle */
}

/* === Sections : Results === */

.section.ui.panel.results {
  background-color: var(--sugr-purple-dk);
  height: auto;
  display: block;
}

.section.ui.panel.results .inner {
  width: 80vw;
  margin: 10% 10vw;
  height: auto;
}

.section.ui.panel.results h3 {
  font-family: 'Diagramm-Medium', sans-serif;
  font-size: 2rem;
  line-height: 2rem;
  letter-spacing: 0;
  color: #FFF;
  margin-bottom: 50px;
}

.section.ui.panel.results h3 span {
  font-family: 'Diagramm-Black', sans-serif;
  color: var(--sugr-peach);
  display: block;
}

.section.ui.panel.results #flex-options {
  display: flex;
  align-items: center;
}

.section.ui.panel.results #flex-options span {
  width: 80px;
  margin-right: 25px;
  text-align: right;
  font-size: 14px;
}

.section.ui.panel.results #flex-options label {
  display: inline-block;
  margin: 10px;
}

.section.ui.panel.results #flex-options label img {
  width: 18px;
  display: inline-block;
  margin-right: 15px;
}

.section.ui.panel.results #flex-options {
  display: flex;
  width: fit-content;
  margin: 0 auto 35px;
}

.section.ui.panel.results #flex-options input[type="radio"] {
  display: none;
  /* Hide the default radio button */
}

.section.ui.panel.results #flex-options label {
  font-family: 'Diagramm-SemiBold', sans-serif;
  font-size: 15px;
  line-height: 15px;
  position: relative;
  padding: 15px 35px;
  background-color: transparent;
  border: 1px solid #FFF;
  border-radius: 40px;
  cursor: pointer;
  color: #FFF;
  display: flex;
  align-items: center;
  transition: .5s ease all;
}

.section.ui.panel.results #flex-options label.active {
  background: var(--sugr-purple-darkest);
  transition: .5s ease all;
  padding: 15px 45px;
}

.section.ui.panel.results #flex-options label.active img {
  filter: brightness(5);
}

.section.ui.panel.results .image-grid {
  display: flex;
  margin: auto;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: normal;
  align-items: normal;
  align-content: normal;
  width: 100%;
  max-width: 1100px;
  grid-gap: 30px;
}


.section.ui.panel.results .image-grid .result-single--wrap {
  transition: flex 0.5s cubic-bezier(0.01, 1.01, 0.69, 1.04);
  box-sizing: border-box;
}


.section.ui.panel.results .image-grid .result-single--wrap .thumbnail {
  position: relative;
}

.section.ui.panel.results .image-grid .result-single--wrap .thumbnail:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: flex;
  background: linear-gradient(180deg, rgba(26, 18, 38, 0.9) 0%, rgba(158, 27, 142, 0.5550595238095238) 41%, rgba(75, 25, 73, 1) 100%);
  transform: scale(0);
  filter: blur(200px);
  transition: .3s cubic-bezier(0, 0.93, 0.79, 0.95) all;
  border-radius: 70%;
}

.section.ui.panel.results .image-grid .result-single--wrap .thumbnail:hover:after {
  transform: scale(1.05);
  filter: blur(18px);
  border-radius: 0;
  overflow: hidden;
}

.section.ui.panel.results .image-grid .result-single--wrap .thumbnail img {
  transition: .5s ease all;
}

.section.ui.panel.results .image-grid .result-single--wrap .thumbnail:hover img {
  transition: .5s ease all;
  transform: scale(1.06);
}

.section.ui.panel.results .image-grid .result-single--wrap .thumbnail {
  position: relative;
}

.section.ui.panel.results .image-grid .result-single--wrap .thumbnail span.icon--expand {
  width: 30px;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 7;
  transition: .3s ease all;
  cursor: pointer;
}

.section.ui.panel.results .image-grid .result-single--wrap .thumbnail .overlay-content {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  transition: .6s ease all;
  z-index: 12;
}

.section.ui.panel.results .image-grid .result-single--wrap .thumbnail .overlay-content .sugr-btn {
  margin: 0 10px;
}

.section.ui.panel.results .image-grid .result-single--wrap .thumbnail:hover .overlay-content {
  opacity: 1;
  transition-delay: .3s;
}

.section.ui.panel.results .image-grid .result-single--wrap .thumbnail:hover span.icon--expand {
  transform: scale(1.2)
}

.section.ui.panel.results .image-grid .result-single--wrap .thumbnail img {
  width: 100%;
}



/* === Home Panel === */

.section.home .container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.home .title-wrap {
  position: relative;
  width: 70vw;
  margin: auto;
}

section.home h2,
.headline-lg {
  font-family: 'Diagramm-Black', sans-serif;
  font-size: 140px;
  font-weight: 100;
  letter-spacing: -2px;
  line-height: 1;
  text-align: center;
  margin: 0 auto;
  max-width: fit-content;
}

section.home h2 {
  margin-top: -70px;
}

.headline-lg {
  font-size: 180px;
  text-align: center;
  color: var(--sugr-purple-dk);
  display: block;
}

.section.home h2 span {
  display: none;
}

section.home .title-wrap h2 img {
  display: block;
}

.section img.bubble-text {
  width: 60%;
  margin: 0 auto;
  display: block;
  top: 0;
  transform: translate(0px, 50px) rotate(-5deg);
  filter: drop-shadow(-4px 34px 13px #12121299);
  /*animation: home--sweet;
  animation-delay: 2.5s;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.75,-0.44,.63,1.68);*/
}

.section img.bubble-text.align-bottom {
  transform: translateY(-110px) rotate(-7deg);
}

section.home p,
section.baking p {
  font-family: 'Diagramm-Bold', sans-serif;
  font-size: 24px;
  line-height: 1.4;
  color: var(--sugr-peach);
  text-align: center;
  text-transform: none;
  max-width: 550px;
  margin: 50px auto 0;
}

.section.baking p {
  color: var(--sugr-purple-lt)
}

.section.home .sugr-btn {
  margin: 0 auto;
}

/* === Continue BTN === */

.section .sugr-btn.continue {
  font-family: 'Diagramm-Bold', sans-serif;
  font-size: 1rem;
  line-height: 30px;
  color: var(--sugr-purple-dk);
  padding: 12px 35px 0;
  border: 1px var(--sugr-maroon) solid;
  border-radius: 35px;
  background: #FFF;
  backdrop-filter: blur(4px);
  display: flex;
  margin: 0 0 0 auto;
  transition: .3s ease all;
  cursor: pointer;
}

.section .sugr-btn.continue:after {
  content: url('/images/sugr-icon--arrow-right.svg');
  display: inline-block;
  width: 30px;
  margin-left: 10px;
  transition: .3s ease all;
  filter: brightness(0.01);
}

.section .sugr-btn.continue:hover:after,
.section .sugr-btn.continue:active:after,
.section .sugr-btn.continue:focus:after {
  transform: translateX(7px);
}

.section .sugr-btn.continue:hover,
.section .sugr-btn.continue:active,
.section .sugr-btn.continue:focus {
  background: var(--sugr-maroon);
  color: #FFF;
}


/* === Line Inputs === */
.section .inner .prompt--input-wrap {
  display: inline-flex;
  align-items: center;
  width: 100%;
  position: relative;
  margin: 15px 0;
}

.section .inner .prompt--input-wrap span {
  width: 30%;
  text-align: right;
  padding-right: 15px;
}

.section .inner input[type="text"] {
  background: transparent;
  border: none;
  /* border-bottom: 1px #FFF solid; */
  color: #FFF;
  font-family: 'Diagramm-Medium', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
  width: 70%;
  margin: 20px auto 0;
  display: block;
  transition: .3s ease all;
  padding-bottom: 20px;
}

.section .inner .prompt--input-wrap .input-underline {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  width: 70%;
  left: 30%;
  height: 2px;
  background: linear-gradient(270deg, var(--sugr-peach) 0%, var(--sugr-maroon) 50%);
  background-position: 250% 0;
  background-size: 300%;
  transition: .6s ease all;
}

.section .inner input[type="text"]::placeholder {
  color: #FFF;
}

.section .inner input[type="text"]:focus,
.section .inner input[type="text"]:active {
  outline: none;
}

.section .inner input[type="text"]:focus+.input-underline,
.section .inner input[type="text"]:active+.input-underline {
  outline: none;
  background-position: 150% 0;
}

/* === Modal Input Styles === */

.section .inner .sugr--modal label {
  display: inline-block;
  width: 100%;
}

.section .inner .sugr--modal input[type="text"] {
  background: var(--sugr-purple-darkest);
  border-radius: 45px;
  border: 1px var(--sugr-purple-lt) solid;
  outline: none;
  backdrop-filter: blur(20px);
  color: #FFF;
  font-family: 'Diagramm-Medium', sans-serif;
  font-size: .8rem;
  line-height: 1.2;
  text-align: left;
  width: 100%;
  max-width: 900px;
  margin: 10px 0;
  padding: 10px 15px;
  position: relative;
  display: inline-block;
  transition: .3s ease all;
}

.section .inner .sugr--modal input[type="text"]::placeholder {
  color: #FFF;
}

.section .inner .sugr--modal input[type="text"]:focus,
.section .inner .sugr--modal input[type="text"]:active {
  outline: none;
  border: 1px var(--sugr-maroon) solid;
}

/* === Form Input Stles === */

/* .section .inner input[type="text"].stroke{ */
.section .inner input.stroke {
  background: transparent;
  border-radius: 45px;
  border: 1px var(--sugr-peach) solid;
  outline: none;
  backdrop-filter: blur(20px);
  color: #FFF;
  font-family: 'Diagramm-Light', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  width: 35%;
  max-width: 400px;
  margin: 8px 1.5%;
  padding: 17px 25px;
  position: relative;
  display: inline-block;
  transition: .3s ease all;
}

.section .inner input[type="text"].stroke::placeholder {
  color: #FFF;
}

.section .inner input[type="text"].stroke:focus,
.section .inner input[type="text"].stroke:active {
  outline: none;
  border: 1px var(--sugr-maroon) solid;
}

/* === Home Panel Animation === */

@keyframes home--brand {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* @keyframes home--sweet {
  0% {
    opacity: 0;
    transform: translate(-48px, 50px) rotate(-7deg) scale(0);
    filter: blur(10px);
  }
  50% {
    opacity: 0;
    transform: translate(-48px, 50px) rotate(-7deg) scale(0);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate(-48px, 50px) rotate(-7deg) scale(1);
    filter: blur(0);
  }
}

@keyframes home--subhead {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
} */

@keyframes home--baking {
  0% {
    transform: rotate(-7deg) scale(.95);
    filter: blur(2px);
  }

  50% {
    transform: rotate(-7deg) scale(1.05);
    filter: blur(0);
  }

  100% {
    transform: rotate(-7deg) scale(.95);
    filter: blur(2px);
  }
}

/* === Question Box Styles === */


fieldset.question {
  padding: 20px 0;
  border-radius: 20px;
  /*max-width: 550px;*/
  border: none;
  backdrop-filter: blur(4px);
}

fieldset.question .option-wrap {
  width: 100%;
  padding: 15px 0;
  margin-bottom: 15px;
  border-radius: 50px;
  display: inline-flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  transition: .5s ease all;
}

fieldset.question .option-wrap.block {
  display: block;
}

fieldset.question .option-wrap.block label,
fieldset.question .option-wrap.block input {
  width: 100%;
}

/*fieldset.question .option-wrap.purple {background: var(--sugr-purple-lt); border-radius: 15px;}*/
fieldset.question .option-wrap.purple label {
  color: var(--sugr-peach);
}


/*fieldset.question .option-wrap:hover {transform: scale(1.02);}*/

fieldset.question .option-wrap:before {
  content: "";
  background: linear-gradient(270deg, var(--sugr-peach) 0%, var(--sugr-purple-dk) 87%);
  border-radius: 30px;
  border: 2px var(--sugr-purple-dk) solid;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  transition: linear 0.4s;
}

fieldset.question .option-wrap label {
  font-family: 'Diagramm-SemiBold', sans-serif;
  font-size: 20px;
  line-height: 35px;
  color: var(--sugr-peach);
  text-transform: none;
  transform: translateX(40px);
  padding-right: 60px;
  z-index: 3;
  transition: linear 0.4s;
}

.section .question * input[type="text"]:focus,
.section .question * input[type="text"]:focus-visible {
  outline: none;
  border-bottom: 1px var(--sugr-gray-lt) solid;
}

/* === RESULTS PANEL === */

section.results {
  background: var(--sugr-purple-lt);
}

section.results .grid-wrap {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

section.results .grid-wrap .row {
  display: flex;
  margin: 0;
  padding: 0;
  width: 100vw;
}

section.results .grid-wrap .row.sm {
  height: 45vh;
}

section.results .grid-wrap .row.lg {
  height: 55vh;
}

section.results .grid-wrap .row .tile.image img {
  height: 100%;
  display: block;
}

section.results .grid-wrap .row .tile {
  position: relative;
  overflow: hidden;
  transition: .3s ease all;
}

section.results .grid-wrap .row .tile::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .3s ease all;
  background: rgba(255, 255, 255, .2);
  overflow: hidden;
}

section.results .grid-wrap .row .tile:hover::after {
  opacity: 1;
}

section.results .grid-wrap .row .tile:hover {
  transform: scale(1.03);
}



/* === SUGR Cube Plans === */

#purchase-sugr-cubes .inner .container h3 {
  font-size: 140px;
  line-height: 130px;
  color: #FFF;
  margin-bottom: 50px;
}

#purchase-sugr-cubes .inner .container h3 span img {
  display: block;
  color: #FFF;
  width: 65%;
  margin: 0 auto;
}

#purchase-sugr-cubes .inner .container.sugr-cube--plans .plan--single {
  text-align: center;
}

#purchase-sugr-cubes .inner .container.sugr-cube--plans .plan--single .top {
  background: linear-gradient(270deg, rgb(37, 64, 143, 1) 10%, rgba(101, 73, 150, 1) 78%);
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  padding: 20px 0;
  font-family: 'Diagramm-Bold', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
  text-transform: uppercase;

}

#purchase-sugr-cubes .inner .container.sugr-cube--plans .plan--single .top .title span {
  font-family: 'Diagramm-Regular', sans-serif;
  display: block;
}

#purchase-sugr-cubes .inner .container.sugr-cube--plans .plan--single .main {
  background: linear-gradient(240deg, #f8aba7 51%, rgba(255, 255, 255, 1) 118%);
  padding: 20px 10px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  -webkit-box-shadow: 0px 18px 27px -1px rgba(0, 0, 0, 0.42);
  -moz-box-shadow: 0px 18px 27px -1px rgba(0, 0, 0, 0.42);
  box-shadow: 0px 18px 27px -1px rgba(0, 0, 0, 0.42);
}

#purchase-sugr-cubes .inner .container.sugr-cube--plans .plan--single .main h4 {
  font-family: 'Diagramm-Black', sans-serif;
  font-size: 28px;
  line-height: 35px;
  margin-block-start: 0;
  margin-block-end: 0;
}

#purchase-sugr-cubes .inner .container.sugr-cube--plans .plan--single .main h4 span {
  display: block;
  margin: 0 auto;
}

#purchase-sugr-cubes .inner .container.sugr-cube--plans .plan--single .main hr {
  width: 80%;
  height: 1px;
  background-color: var(--sugr-purple-lt);
  outline: none;
  border: none;
  margin: 25px auto;
  opacity: .5;
}

#purchase-sugr-cubes .inner .container.sugr-cube--plans .plan--single .main .price {
  display: block;
  text-align: center;
  color: var(--sugr-purple-lt);
  padding: 5px 0 0;
}

#purchase-sugr-cubes .inner .container.sugr-cube--plans .plan--single .main .price.bold {
  font-family: 'Diagramm-Black', sans-serif;
  font-size: 1.3rem;
}

#purchase-sugr-cubes .inner .container.sugr-cube--plans .plan--single .main .disclaimer {
  font-size: .7rem;
  color: var(--sugr-purple-lt);
  line-height: 1rem;
  padding: 5px 35px;
  display: block;
}

#purchase-sugr-cubes .inner .container.sugr-cube--plans .plan--single .main .sugr-btn {
  margin: 20px auto 10px;
  width: 90%;
}

#purchase-sugr-cubes .inner .container .footnote {
  font-family: 'Diagramm-SemiBold', sans-serif;
  font-size: 14px;
  color: #FFF;
  text-align: center;
  margin: 45px auto 0;
}


#purchase-sugr-cubes .inner .container .footnote p {
  display: block;
}


/* === REGISTER AND SIGN-IN PANELS === */

.section .inner .container .column .container.sign-in--wrap {
  background-color: var(--sugr-purple-dk);
  border-radius: 40px;
  position: relative;
  z-index: 3;
  padding-bottom: 35px;
}

.section .inner .container .column .container.sign-in--wrap .top-bg {
  position: absolute;
  height: 200px;
  width: 100%;
  overflow: hidden;
  background: url(images/sugr-bg--candy-swirl-purples.webp);
  background-size: 1000px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.section .inner .container .column .container.sign-in--wrap .content {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 4;
}

.section .inner .container .column .container.sign-in--wrap .content img {
  margin: 50px auto 0;
  width: 250px;
}

.section .inner .container .column .container.sign-in--wrap .content h4 {
  font-family: 'Diagramm-Black', sans-serif;
  font-size: 50px;
  line-height: 50px;
  color: var(--sugr-peach);
  margin: 25px 0;
}


.section .inner .container .column .container.sign-in--wrap .content .footnote {
  font-family: 'Diagramm-Bold', sans-serif;
  font-size: 20px;
  color: var(--sugr-peach);
  padding: 30px 0 0;
}

.section .inner .container .column .container.sign-in--wrap .content .footnote a {
  border-bottom: 2px #FFF solid;
  color: #FFF;
}

.section .inner .container .column .container form.sugr-form button.sugr-btn {
  font-family: 'Diagramm-SemiBold', sans-serif;
  font-size: 20px;
  padding: 15px 50px;
  margin: 30px auto 0;
}


/* === SIGN IN - V2 === */
.section.login {
  padding: 0;
  background: transparent;
}

.section.login:before {
  content: "";
  background-image: url('images/sugr-bg--candy-swirl-purples.webp');
  background-size: cover;
  background-position: center;
  position: fixed;
  width: 100vw; 
  height: 100vh;
  opacity: .1;
  z-index: 1;
}

.section.login:after {
  position: fixed;
  /*content: "";*/
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  margin: 0 auto;
  background: linear-gradient(158deg, var(--sugr-maroon) -25%, var(--sugr-purple-dk) 50%, var(--sugr-purple-darkest) 100%);
  background-size: 200% 200%;
  animation: animateGradientBG 10s ease infinite;
}

.section.login #sugr-daddy--lg {
  position: fixed;
  z-index: 3;
  height: 100vh;
  bottom: -20px;
  left: 5vw;
}
.section.login #logo--primary {
  width: 120px;
  margin: 50px 0 0 50px;
  z-index: 5;
}

.section.login #bg-circle {
  position: fixed;
  width: 60vw;
  height: 60vw;
  top: 2vh;
  left: 15vw;
  background-color: var(--sugr-maroon);
  border-radius: 50%;
  mix-blend-mode: unset;
  opacity: .3;
  z-index: 2;
  filter: blur(40px);
}

.section.login .inner .container .column.sign-in--wrap {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: 10vw;
  border-radius: 40px;
  position: relative;
  z-index: 3;
  padding: 0;
  border: 1px var(--sugr-peach) solid;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  backdrop-filter: blur(12px) brightness(.8);
  box-shadow: 20px -17px 39px 30px rgb(28 13 35 / 36%);
}
/* === Deliverables Login -- no margin left === */

.section.login.deliverables:before {content: none;}
.section.login.deliverables .inner {height: 100%;}
.section.login.deliverables .inner .container .column.sign-in--wrap {
  width: auto;
  min-width: 375px;
  margin-right: auto;
}
.section.login.deliverables .inner button[type="submit"] {
  margin-top: 5px;
}

.section.login.deliverables .inner .container .column.sign-in--wrap .content {
  background: linear-gradient(360deg, #c84689f2 -45%, rgb(75 25 73 / 36%) 34%, #1a122685 100%);
  padding: 50px 25px 25px 25px;
}
.section.login.deliverables .inner input[type="password"].stroke:focus {
  outline: none;
  border: 2px var(--sugr-maroon) solid;
  transform: scale(1.05);
  backdrop-filter: brightness(0.6);
}
.section.login.deliverables .inner .container .column.sign-in--wrap .header {
  display: block;
  padding: 0 35px; text-align: center; background: #1a122685}

.section.login.deliverables .inner .container .column.sign-in--wrap .header span {
  text-transform: uppercase;
  font-family: Diagramm-Regular;
  color: var(--sugr-peach);
  font-size: 0.75rem;
  letter-spacing: 3px;
  padding: 25px 0;
  display: block;
}

/* === */
.section.login .inner .container .column.sign-in--wrap.wide {
  max-width: 700px;
}

.section.login .inner .container .column.sign-in--wrap .header {
  position: relative;
  height: 120px;
  width: 100%;
  overflow: hidden;
  background: var(--sugr-purple-darkest);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.section.login .inner .container .column.sign-in--wrap .header h4 {
  font-family: 'Diagramm-UltraBold', sans-serif;
  font-size: 2.2rem;
  color: #FFF;
}

.section.login .inner .container .column.sign-in--wrap .content {
  background: linear-gradient(215deg, #c84689f2 -45%, rgb(75 25 73 / 36%) 34%, #1a122685 100%);
  padding: 45px 50px 25px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.section.login .inner .container .column.sign-in--wrap .content form {margin-bottom: 50px;}

.section.login .inner input[type="text"].stroke,
.section.login .inner input[type="password"].stroke {
  background: transparent;
  border-radius: 45px;
  border: 2px var(--sugr-peach) solid;
  outline: none;
  backdrop-filter: blur(20px);
  color: #FFF;
  font-family: 'Diagramm-Light', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  margin: 0 0 15px;
  padding: 20px 25px;
  position: relative;
  display: inline-block;
  transition: .3s ease all;
}

.section.login .inner input[type="text"].stroke::placeholder {color: #FFF;}

.section.login .inner input[type="text"].stroke:focus,
.section.login .inner input[type="text"].stroke:active,
.section.login .inner .container .column.sign-in--wrap.wide input[type="password"].stroke:focus,
.section.login .inner .container .column.sign-in--wrap.wide input[type="password"].stroke:active {
  outline: none;
  border: 2px var(--sugr-maroon) solid;
  transform: scale(1.05);
  backdrop-filter: brightness(0.6);
}

input:-internal-autofill-selected {background-color: transparent;}


.section.login .inner .container .column.sign-in--wrap.wide input[type="text"].stroke,
.section.login .inner .container .column.sign-in--wrap.wide input[type="password"].stroke {
  width: 45%;
  display: inline-flex;
  margin: 2%;
}


.section.login .inner button[type="submit"] {
  font-family: 'Diagramm-Medium', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  width: 100%;
  margin-top: 30px;
  position: relative;
}

.section.login .inner button[type="submit"]:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 20px 0px rgba(200, 70, 137, 0.717);
  background-color: var(--sugr-maroon);
}
.section.login .inner button[type="submit"]:before {
  content: "";
  background: linear-gradient(90deg, var(--sugr-maroon) 60%, var(--sugr-purple-dk) 130%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 38px;
  overflow: hidden;
  position: absolute;
  opacity: 0;
  transition: .3s ease all;
}

.section.login .inner button[type="submit"]:hover:before {
  opacity: .5;
}

.section.login .inner .footnote {
  font-size: .7rem;
}

.section.login .inner .container .column.sign-in--wrap.wide .footnote.terms {
  padding: 20px 0 0;
  width: fit-content;
  margin: 0 auto;
}

.section.login .inner .container .column.sign-in--wrap.wide .footnote.terms label.sugr-tnc {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.section.login .inner .container .column.sign-in--wrap.wide .footnote.terms label.sugr-tnc span {
  font-size: .8rem;
  line-height: 1.4rem;
}

.section.login .inner .container .column.sign-in--wrap.wide .footnote.terms label.sugr-tnc input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 26px;
  width: 26px;
  left: -4px;
  top: -2px;
  z-index: 3;
}
.section.login .inner .container .column.sign-in--wrap.wide .footnote.terms label.sugr-tnc input:checked ~ .checkbox__checkmark {
  background-color: #FFF;
}
.section.login .inner .container .column.sign-in--wrap.wide .footnote.terms label.sugr-tnc input:checked ~ .checkbox__checkmark:after {
  opacity: 1;
}
.section.login .inner .container .column.sign-in--wrap.wide .footnote.terms label.sugr-tnc:hover input ~ .checkbox__body {
  color: var(--sugr-maroon);
}
.section.login .inner .container .column.sign-in--wrap.wide .footnote.terms label.sugr-tnc .checkbox__checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 26px;
  width: 26px;
  background-color: #eee;
  transition: background-color 0.25s ease;
  border-radius: 13px;
}
.section.login .inner .container .column.sign-in--wrap.wide .footnote.terms label.sugr-tnc .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 13px;
  top: -11px;
  width: 11px;
  height: 27px;
  border: solid var(--sugr-maroon);
  border-width: 0 5px 5px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.section.login .inner .container .column.sign-in--wrap.wide .footnote.terms label.sugr-tnc .checkbox__body {
  color: var(--sugr-maroon);
  line-height: 1.4;
  font-size: 16px;
  transition: color 0.25s ease;
}

.section.login .inner .footnote a {text-decoration: underline; transition: .3s ease all;}
.section.login .inner .footnote a:hover {color: var(--sugr-peach);}


/* === CALLOUT === */

.section.callout {
  height: fit-content;
  padding: 100px 0;
  min-height: auto;
  text-align: center;
}

.section.callout .inner {
  height: auto;
  min-height: fit-content;
}

.section.callout h4 {
  font-family: 'Diagramm-Black', sans-serif;
  font-size: 50px;
  line-height: 50px;
  color: var(--sugr-peach);
  margin: 25px 0;
}

.section.callout h4 span {
  color: #FFF;
}

/* === MODAL === */

.sugr--modal.result {
  width: 0;
  height: 0;
  position: absolute;
  transform: scale(0);
  z-index: -999;
  justify-content: center;
  align-items: center;
  background: transparent;
  opacity: 0;
  display: none;
  backdrop-filter: blur(10px);
  transform-origin: center;
}

.sugr--modal.result.active {
  background: rgb(75 25 73 / 76%);
  animation-name: modalAppear;
  animation-duration: .7s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.87, -0.15, 0.53, 1.57);
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 20;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  transition-delay: .2s;
  position: fixed;
  overflow-y: scroll;
  overflow-x: hidden;
  backdrop-filter: blur(20px) brightness(0.95);
}

.sugr--modal.result.active:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  opacity: .1;
  margin: 0 auto;
  transform: scale(1.5);
  background: linear-gradient(328deg, #0e0023 13.46%, rgb(75 25 73 / 100%) 85.3%);
  background-size: 300%;
  animation: animateGradientBG 13s ease infinite;
}

@keyframes animateGradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-webkit-keyframes animateGradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-webkit-keyframes modalAppear {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes modalAppear {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}


.sugr--modal .close {
  position: fixed;
  display: block;
  top: 2%;
  right: 2%;
  font-family: 'Diagramm-Black', sans-serif;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  color: #FFF;
  width: 55px;
  padding: 7px;
  height: 55px;
  cursor: pointer;
  border: 2px white solid;
  border-radius: 50%;
  transition: .2s ease all;
}

/*.sugr--modal .close:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 5px;
  background-color: var(--sugr-purple-lt);
  transition: .3s ease all;
}

.sugr--modal .close:hover:after {
  width: 35px;
}
*/

.sugr--modal .close:hover {
  background-color: #FFF;
  color: var(--sugr-purple-lt);
}

.sugr--modal .modal-content {
  width: 100vw;
  max-width: 2200px;
  margin: auto;
  padding: 65px;
}

.sugr--modal .modal-content .container .column.modal-featured-image.control-panel-open {
  transition: .5s cubic-bezier(.37, -0.23, .42, 1.4) all;
  transition-delay: .5s;
  width: 48%;
}

.sugr--modal .modal-content .image-wrap {
  background: linear-gradient(0deg, #3f0f6082 0%, #00000091 45%);
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  transition: .5s cubic-bezier(.37, -0.23, .42, 1.4) all;
}

.sugr--modal .modal-content .container.columns .column .image-wrap img.spotlight {
  display: block;
  width: 100%;
  overflow: hidden;
  /* background: var(--sugr-purple-darkest); */
  border-radius: 16px;
  padding: 15px;
  position: relative;
  z-index: 1;
  transition: .5s cubic-bezier(.37, -0.23, .42, 1.4) all;
  /* border: 3px white solid;*/
}

.sugr--modal .modal-content .container.columns .column .image-wrap img.spotlight.salted {
  filter: saturate(0.05) blur(1px);
}

.sugr--modal .modal-content .container.columns .column .image-wrap:before {
  background: linear-gradient(318deg, var(--sugr-peach) 0%, var(--sugr-maroon) 50%, var(--sugr-purple-lt) 100%);
  /*border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;*/
  content: "";
  inset: -10px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 4px);
  /* filter: drop-shadow(2px 4px 6px black); */
  transition: all .5s ease;
  height: calc(100% - 4px);
  background-size: 300%;
  animation: imageBorder 3s ease alternate infinite;
}

@keyframes imageBorder {
  0% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

/* === Sweet and Salty Flags === */
.sugr--modal .modal-content .image-wrap .flag {
  position: absolute;
  z-index: 2;
  display: block;
  width: 120px;
  height: 250px;
  top: -250px;
  right: 0;
  background: transparent;
  clip-path: polygon(0% 0%, 60% 0, 60% 100%, 30% 90%, 0% 100%);
  opacity: 0;
  transition: .5s cubic-bezier(.37, -0.23, .42, 1.4) all;
}

.sugr--modal .modal-content .image-wrap .flag.active {
  opacity: 1;
  top: 0;
}

.sugr--modal .modal-content .image-wrap .flag.sweet {
  background: linear-gradient(360deg, var(--sugr-peach) 33%, var(--sugr-purple-lt) 100%);
}

.sugr--modal .modal-content .image-wrap .flag.salty {
  background: linear-gradient(360deg, var(--sugr-purple-lt) 33%, var(--sugr-purple-dk) 100%);
}

.section .inner .container .column .sugr--modal .modal-content .image-wrap .flag img.flag-icon {
  height: 55px;
  position: absolute;
  top: 20px;
  left: 10px;
  background: transparent;
  padding: 0;
}

.sugr--modal .modal-content .image-wrap .flag span {
  position: absolute;
  top: 140px;
  left: 0;
  font-family: 'Gellaby', 'Diagramm-Bold', sans-serif;
  font-size: 33px;
  line-height: 20px;
  color: #FFF;
  transform: rotate(90deg) translateY(20px);
}

.sugr--modal .modal-content .image-wrap .flag.salty span {
  transform: rotate(90deg) translateY(13px);
}

.sugr--modal .modal-content p {
  font-family: 'Diagramm-Regular', sans-serif;
  font-size: 1rem;
  line-height: 1.6rem;
  color: var(--sugr-purple-lt);
}

.sugr--modal .modal-content span.tooltip {
  font-family: 'Diagramm-SemiBold', sans-serif;
  font-size: 15px;
  line-height: 20px;
  text-align: left;
  padding: 10px 0;
  display: block;
  color: #FFF;
}

.sugr--modal .modal-content .image-wrap .buttons {
  display: block;
  margin: -5% auto 10px;
  /* padding: 0 0 0 10px; */
  width: 450px;
  position: relative;
  z-index: 20;
}

.sugr--modal .modal-content .sugr-btn {
  width: 200px;
  margin-right: 20px;
  display: inline-block;
}

.sugr--modal .modal-content .image-wrap .adjust-flavors {
  opacity: 0;
  position: relative;
  display: none;
}

.sugr--modal .modal-content .image-wrap .adjust-flavors.active {
  transition: .5s cubic-bezier(.37, -0.23, .42, 1.4);
  transition-delay: .8s;
  opacity: 1;
  z-index: 15;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.sugr--modal .modal-content .image-wrap .adjust-flavors.active button {
  outline: 0;
  border: 2px var(--sugr-maroon) solid;
  border-radius: 51px;
  font-family: 'Kristopher-Regular', sans-serif;
  font-size: 30px;
  line-height: 78px;
  letter-spacing: 0;
  color: var(--sugr-gray-lt);
  background: #4b002ae0;
  margin: 0 auto;
  padding: 0px 53px;
  position: relative;
  cursor: pointer;
  z-index: 9999;
  backdrop-filter: blur(3px);
  transition: .5s cubic-bezier(.37, -0.23, .42, 1.4);
}

.sugr--modal .modal-content .image-wrap .adjust-flavors.active button:hover {
  background: #4b002a;
}

.sugr--modal .modal-content .container .column .eyebrow {
  font-family: 'Diagramm-Bold', sans-serif;
  font-size: 1rem;
  line-height: 1.6rem;
  text-transform: uppercase;
  position: relative;
  width: 100%;
  display: block;
  margin-bottom: 25px;
}

.sugr--modal .modal-content .container .column .eyebrow.no-rule:after {
  content: none;
}

.sugr--modal .modal-content .container .column .eyebrow:after {
  content: "";
  width: 45px;
  height: 5px;
  background-color: var(--sugr-peach);
  position: absolute;
  margin-top: 10px;
  left: 0;
  bottom: -15px;
}

.sugr--modal .modal-content .container .column ul.previous-images {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-height: 70vh;
  /*overflow-y: scroll;*/
}

.sugr--modal .modal-content .container .column ul.previous-images li {
  margin-bottom: 15px;
}

.sugr--modal .modal-content .container .column ul.previous-images li img {
  width: calc(100% - 20px);
  display: inline-block;
  transition: .3s cubic-bezier(.37, -0.23, .42, 1.4) all;
  opacity: .6;
  transform-origin: top left;
}

.sugr--modal .modal-content .container .column ul.previous-images li:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.sugr--modal .modal-content .container .column ul.previous-images li.active img {
  opacity: 1;
  transform: scale(1.1);
}


/* === Modal Control Panel === */


.sugr--modal .modal-content .container .control-panel {
  padding: 0 20px;
  /* margin: 0; */
  background: #11111194;
  position: absolute;
  right: 14px;
  top: 0.75rem;
  opacity: 0;
  transition: .6s cubic-bezier(.37, -0.23, .42, 1.4) all;
  transition-delay: .6s;
  height: 0;
}


.sugr--modal .modal-content .container .control-panel.active {
  height: calc(100% - 1.5rem);
  opacity: 1;
  border-radius: 10px;
  border: 1px var(--sugr-purple-dk) solid;
  background: url(images/sugr-bg--candy-swirl--vert-low-opac.webp);
}

.sugr--modal .modal-content .container .control-panel .regenerate-wrap {
  opacity: 0;
  transform: scale(0);
}

.sugr--modal .modal-content .container .control-panel.active .regenerate-wrap {
  position: absolute;
  display: flex;
  align-items: center;
  width: calc(100% - 40px);
  bottom: 15px;
  transform: scale(1);
  opacity: 1;
  transition: 1s cubic-bezier(.37, -0.23, .42, 1.4) all;
  transition-delay: 1.5s;
}

.sugr--modal .modal-content .container .control-panel.active .regenerate-wrap img {
  width: 30px;
  margin-left: 8px;
  transition: .6s cubic-bezier(.37, -0.23, .42, 1.4) all;
}

.sugr--modal .modal-content .container .control-panel.active .regenerate-wrap .sugr-btn {
  background: var(--sugr-maroon);
  display: flex;
  align-items: center;
  margin: 0 15%;
  width: fit-content;
  text-align: center;
  padding: 15px 35px;
}

.sugr--modal .modal-content .container .control-panel.active .regenerate-wrap .sugr-btn:hover {
  background: var(--sugr-purple-dk);
}

.sugr--modal .modal-content .container .control-panel.active .regenerate-wrap .sugr-btn:hover img {
  transform: rotate(90deg);
}


/* === Adjust Your Tastes Dropdown === */

.sugr--modal .modal-content .container .flavors.dropdown {
  padding: 25px 0 0
}

.sugr--modal .modal-content .container .flavors.dropdown span {
  font-family: 'Gellaby';
  font-size: 36px;
  font-weight: 100;
  line-height: 38px;
  color: #FFF;
}

.sugr--modal .modal-content .container .flavors.dropdown summary:hover::after {
  background: #FFF;
  color: var(--sugr-maroon);
}

.sugr--modal .modal-content .container .flavors.dropdown .dropdown--content {
  padding: 40px 0;
}

.sugr--modal .modal-content .container .flavors.dropdown .dropdown--content .flavor-listing {}

/* === */

/*@media (min-height: 30em) {
  main {
    scroll-snap-type: y mandatory;
    height: 100vh;
    overflow-y: scroll;
  }
}*/
section {
  color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: 100vh;
}

@media (min-height: 30em) {
  section {
    height: 100vh;
  }
}

@media (min-height: 30em) {
  .section__content>* {
    opacity: 0;
    transform: translate3d(0, 4rem, 0);
    transition: opacity 800ms var(--delay),
      transform 800ms cubic-bezier(0.13, 0.07, 0.26, 0.99) var(--delay);
  }
}

.is-visible .section__content>* {
  opacity: 1;
  transform: translate3d(0, 1rem, 0);
}

.is-visible .section__img {
  opacity: 0.75;
}

/* === Buttons === */

.sugr-btn {
  font-family: 'Diagramm-Bold', sans-serif;
  font-size: 28px;
  line-height: 24px;
  text-align: center;
  padding: 20px 35px;
  display: block;
  outline: none;
  border: 0;
  transition: .3s ease all;
  cursor: pointer
}

.sugr-btn:hover {
  cursor: url('/images/sugr-icon--cube-white.svg'), auto;
}

.sugr-btn.text-sm {
  font-size: 22px;
}

.sugr-btn.centered {
  display: inline-block;
}

.sugr-btn.blur {
  background: transparent;
  backdrop-filter: blur(20px);
}

.sugr-btn.fill.peach {
  background-color: var(--sugr-peach);
  color: #FFF;
}

.sugr-btn.fill.peach:hover {
  background-color: var(--sugr-maroon);
}

.sugr-btn.fill.purple {
  background-color: var(--sugr-purple-lt);
  color: #FFF;
}

.sugr-btn.fill.purple:hover {
  background-color: var(--sugr-purple-dk);
}

.sugr-btn.fill.gradient.peach {
  background: linear-gradient(90deg, var(--sugr-peach) 33%, var(--sugr-purple-lt) 100%);
  border: 1px #FFF solid;
  color: #FFF;
}

.sugr-btn.fill.gradient.purple {
  background: linear-gradient(91deg, var(--sugr-purple-lt) 33%, var(--sugr-purple-dk) 100%);
  border: 1px var(--sugr-maroon);
      color: var(--sugr-peach);
}

.sugr-btn.fill.gradient.maroon {
  background: linear-gradient(270deg, rgba(75, 25, 73, 1) 33%, rgba(200, 70, 137, 1) 100%);
  border: 1px var(--sugr-maroon) solid;
  color: var(--sugr-peach);
}

.sugr-btn.fill,
.sugr-btn.stroke {
  border-radius: 45px;
}

.sugr-btn.stroke.peach {
  border: 1px solid var(--sugr-peach);
  color: var(--sugr-peach);
  background: transparent;
}

.sugr-btn.stroke.peach span {
  color: #FFF;
}

.sugr-btn.stroke.peach span.gellaby {
  font-family: 'Gellaby', sans-serif;
  color: #FFF;
  font-size: 1.3rem;
}

.sugr-btn.stroke.peach:hover {
  background: var(--sugr-peach);
  color: var(--sugr-purple-dk);
}

.sugr-btn.stroke.maroon {
  border: 1px solid var(--sugr-maroon);
  color: var(--sugr-peach);
  background: transparent;
}

.sugr-btn.stroke.maroon.sm.white.light {
  font-family: 'Diagramm-Medium', sans-serif;
  color: #FFF;
  font-size: 18px;
}

.sugr-btn.stroke.maroon.sm.white.light:hover {
  background: var(--sugr-maroon);
}


.sugr-btn.btn-sweet {
  border: 2px #FFF solid;
}

.sugr-btn.btn-salty {
  border: 2px var(--sugr-maroon) solid;
}

.sugr-btn.btn-sweet:hover,
.sugr-btn.btn-salty:hover {
  transform: scale(1.08);
}
