html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  font-size: 16px;
}
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}

a.anchor-tag-reset {
  text-decoration: none;
  display: inherit;
  height: inherit;
  /* width: inherit;  */
  width: initial;
  flex-direction: inherit;
  flex-wrap: inherit;
  justify-content: inherit;
  align-items: inherit;
  row-gap: inherit;
  column-gap: inherit;
}

/* 
issue: button, spans etc has a width or padding, and when link is added to it, the click on white space doesnt redirect to the link url
to fix: i have added a pseudo selector ::before so that it takes whole width of the element.
!UPDATE: THIS DOESNT WORK WHILE NESTED CASES EXIST (LINK GIVEN TO PARENT DIV AND A BUTTON WITH LINK EXIST INSIDE IT)

a.anchor-tag-reset::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
*/

a button {
  pointer-events: none;
}

button {
  cursor: pointer;
}

/* Italics not working */
em {
  font-style: italic;
}

/* container styles */
.container {
  width: 100%;

  margin-right: auto;
  margin-left: auto;
}

.page-preview {
  min-height: 100vh;
}

strong {
  font-weight: bold;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;

  margin-right: auto;
  margin-left: auto;
}

/* :not(.content-editor) div[name="Span"] :not(:first-child), 
:not(.content-editor) div[name="Paragraph"] :not(:first-child), 
:not(.content-editor) div[name="Link"] :not(:first-child) {
  margin-top: 16px;
} */
:not(.content-editor) .cd-paragraph-clean :not(:first-child) {
  margin-top: 16px;
}

/* react grid layout scss */
/* File generated by shrinker.ch - DateTime: 2020-06-12, 22:54:06 */
.react-grid-layout {
  position: relative;
  transition: height 200ms ease;
}

.react-grid-item {
  /* transition: all 200ms ease;
  transition-property: left, top; */
}

.react-grid-item.cssTransforms {
  transition-property: transform;
}

.react-grid-item.react-grid-placeholder {
  background: #bebebe;
  opacity: 0.2;
  transition-duration: 100ms;
  z-index: 2;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.rgl-container {
  position: relative;
  /* height: inherit; */
  width: 100%;
  padding: 0;
}

.rgl-bg {
  position: absolute;
}

/* .rgl-bg-canvas {
  background-color: #e7eaf0;
  /* margin-left: 0px; 
  position: relative;
 
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  color: #00a8d5;
  font-weight: 400;
  font-size: 0.9rem;
  padding-left: 10px;
  font-weight: 500;
} */
/* @media (max-width: 800px) {
    .rgl-bg-canvas {
        height: 25px;
   }
}
*/
.react-resizable {
  position: relative;
}

/* extras */
.column-align-center {
  display: flex;
  justify-content: center;
}

.column-align-right {
  display: flex;
  justify-content: flex-end;
}

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

body {
  font-family: "Nunito Sans";
}

.preview-loader-outer {
  height: 90vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-loader {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.preview-loader .dot {
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  background: #0a0a0a;
  animation-duration: 1.3s;
  animation-iteration-count: infinite;
}

@keyframes loader_left {
  0% {
    opacity: 0.8;
  }

  20% {
    opacity: 0.3;
  }

  40% {
    opacity: 0.8;
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes loader_middle {
  0% {
    opacity: 1;
  }

  20% {
    opacity: 0.8;
  }

  40% {
    opacity: 0.3;
  }

  60% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}

@keyframes loader_right {
  0% {
    opacity: 1;
  }

  20% {
    opacity: 1;
  }

  40% {
    opacity: 0.8;
  }

  60% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

.preview-loader .dot:nth-of-type(1) {
  animation-name: loader_left;
}

.preview-loader .dot:nth-of-type(2) {
  animation-name: loader_middle;
}

.preview-loader .dot:nth-of-type(3) {
  animation-name: loader_right;
}

.isFlex {
  justify-content: inherit;
  align-items: inherit;
  flex-wrap: inherit;
  flex-direction: inherit;
}

.error-state {
  color: red !important;
  font-size: 14px !important;
}

.success-state {
  color: green !important;
  font-size: 14px !important;
}

/* footer credit */
.footer-credit {
  position: fixed;
  z-index: 2147483647;
  top: auto;
  right: 12px;
  bottom: 12px;
  left: auto;
  color: #4f4f4f;
  background-color: rgb(255, 255, 255);
  border-radius: 3px;
  padding: 6px 8px 6px 6px;
  font-size: 12px;
  line-height: 14px;
  text-decoration: none;
  transform: none;
  margin: 0;
  width: auto;
  height: auto;
  overflow: visible;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

/* preview page loader */
.preview-loader-outer {
  height: 90vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-loader {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  opacity: 0.2;
}

.preview-loader .dot {
  width: 0.625em;
  height: 0.625em;
  border-radius: 50%;
  background: #0a0a0a;
  animation-duration: 1.3s;
  animation-iteration-count: infinite;
}

@keyframes loader_left {
  0% {
    opacity: 0.8;
  }

  20% {
    opacity: 0.3;
  }

  40% {
    opacity: 0.8;
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes loader_middle {
  0% {
    opacity: 1;
  }

  20% {
    opacity: 0.8;
  }

  40% {
    opacity: 0.3;
  }

  60% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}

@keyframes loader_right {
  0% {
    opacity: 1;
  }

  20% {
    opacity: 1;
  }

  40% {
    opacity: 0.8;
  }

  60% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

.preview-loader .dot:nth-of-type(1) {
  animation-name: loader_left;
}

.preview-loader .dot:nth-of-type(2) {
  animation-name: loader_middle;
}

.preview-loader .dot:nth-of-type(3) {
  animation-name: loader_right;
}

:not(.content-editor) .cd-paragraph-clean :not(:first-child) {
  margin-top: 16px;
}

.cd-padding {
  padding: 0.05px;
}

/* input */
input::placeholder,
textarea::placeholder {
  color: inherit;
  background: transparent;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
}

/* Used exclusively inside builder */
.cd-empty-div {
  padding: 0 125px 125px 0 !important;
  /* padding:0 125px calc(200px * 1/var(--canvas-transform)) 0 !important;  */
}
.cd-empty-div a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* for image elements */
span img {
  max-width: 100%;
  max-height: inherit;
}

/* for video elements */
span video {
  width: 100%;
  height: 100%;
}

/* placeholder styles */

.cd-element-placeholder-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 30px;
  height: 100%;
  background-color: rgb(255 255 255 / 50%);
  font-family: "Nunito Sans", sans-serif;
  color: rgb(0 0 0 / 30%);
}

.cd-element-placeholder-wrapper .cd-element-placeholder-icon {
  width: 15%;
  height: auto;
  min-width: 20px;
  max-width: 80px;
}

.cd-element-placeholder-wrapper .cd-element-placeholder-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}
/* New styles based on parent dimensions */
.cd-element-placeholder-wrapper.hide-icon .cd-element-placeholder-icon {
  display: none;
}

.cd-element-placeholder-wrapper.hide-text .cd-element-placeholder-text {
  display: none;
}

/* internal class for slider */
.cd-slider-v1--slidesWrapper {
  height: 100% !important;
  white-space: nowrap !important;
  position: relative !important;
  display: block !important;
  /* overflow: hidden !important; */
}
.cd-slider-v1--slidesWrapper > * {
  white-space: normal;
}
.cd-slider-v1--slide {
  display: inline-flex !important;
  vertical-align: top !important;
}
.cd-slider-v1--slidesWrapper.cd-empty-div {
  padding: 0px 0px 100px 0px !important;
}
.cd-slider-v1--slide.cd-empty-div {
  padding: 0px 0px 100px 0px !important;
}

.cd-slider-v1--arrowBar {
  z-index: 900;
}
.cd-slider-v1--arrowBar > * {
  cursor: pointer;
}
/* Linear */
.cd-slider-v1--slideTransitionLinear .cd-slider-v1--slide {
  transition: transform 700ms linear 0s !important;
}

/* Ease-In */
.cd-slider-v1--slideTransitionEaseIn .cd-slider-v1--slide {
  transition: transform 700ms ease-in 0s !important;
}

/* Ease-Out */
.cd-slider-v1--slideTransitionEaseOut .cd-slider-v1--slide {
  transition: transform 700ms ease-out 0s !important;
}

/* Ease-In-Out */
.cd-slider-v1--slideTransitionEaseInOut .cd-slider-v1--slide {
  transition: transform 700ms ease-in-out 0s !important;
}

/* Ease-Out-In */
.cd-slider-v1--slideTransitionEaseOutIn .cd-slider-v1--slide {
  transition: transform 700ms cubic-bezier(0.42, 0, 0.58, 1) 0s !important;
}

/* Quad Easing (Quadratic) */
.cd-slider-v1--slideTransitionQuadEasing .cd-slider-v1--slide {
  transition: transform 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s !important;
}

/* Cubic Easing */
.cd-slider-v1--slideTransitionCubicEasing .cd-slider-v1--slide {
  transition: transform 700ms cubic-bezier(0.32, 0.64, 0.45, 0.93) 0s !important;
}

/* Quart Easing */
.cd-slider-v1--slideTransitionQuartEasing .cd-slider-v1--slide {
  transition: transform 700ms cubic-bezier(0.5, 0.9, 0.5, 0.9) 0s !important;
}

/* Quint Easing */
.cd-slider-v1--slideTransitionQuintEasing .cd-slider-v1--slide {
  transition: transform 700ms cubic-bezier(0.23, 1, 0.32, 1) 0s !important;
}

/* Sine Easing */
.cd-slider-v1--slideTransitionSineEasing .cd-slider-v1--slide {
  transition: transform 700ms cubic-bezier(0.39, 0.575, 0.565, 1) 0s !important;
}

/* Exponential Easing */
.cd-slider-v1--slideTransitionExpoEasing .cd-slider-v1--slide {
  transition: transform 700ms cubic-bezier(0.7, 0, 0.84, 0) 0s !important;
}

/* Elastic Easing */
.cd-slider-v1--slideTransitionElasticEasing .cd-slider-v1--slide {
  transition: transform 700ms cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s !important;
}

/* Bounce Easing */
.cd-slider-v1--slideTransitionBounceEasing .cd-slider-v1--slide {
  transition: transform 700ms cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s !important; /* Or custom keyframe animations for bounce effects */
}

/* Back Easing */
.cd-slider-v1--slideTransitionBackEasing .cd-slider-v1--slide {
  transition: transform 700ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s !important;
}

/* todo: transition easing timing need to be input from user */
/* end of slider easing */

/* client loader */
:root {
  --_gc: 102, 93, 192; /* RGB equivalent of #665dc0 */
}

.client-loader {
  --_g1: no-repeat
    radial-gradient(farthest-side, rgba(var(--_gc), 1) 90%, transparent);
  --_g2: no-repeat
    radial-gradient(farthest-side, rgba(var(--_gc), 0.7) 90%, transparent);
  --_g3: no-repeat
    radial-gradient(farthest-side, rgba(var(--_gc), 0.4) 90%, transparent);
  --_g4: no-repeat
    radial-gradient(farthest-side, rgba(var(--_gc), 0.1) 90%, transparent);
  height: 30px;
  aspect-ratio: 2.5;
  background: var(--_g1), var(--_g2), var(--_g3), var(--_g4);
  background-size: 20% 50%;
  animation: l43 1s infinite linear;
}
@keyframes l43 {
  0% {
    background-position: calc(0 * 100% / 3) 50%, calc(1 * 100% / 3) 50%,
      calc(2 * 100% / 3) 50%, calc(3 * 100% / 3) 50%;
  }
  16.67% {
    background-position: calc(0 * 100% / 3) 0, calc(1 * 100% / 3) 50%,
      calc(2 * 100% / 3) 50%, calc(3 * 100% / 3) 50%;
  }
  33.33% {
    background-position: calc(0 * 100% / 3) 100%, calc(1 * 100% / 3) 0,
      calc(2 * 100% / 3) 50%, calc(3 * 100% / 3) 50%;
  }
  50% {
    background-position: calc(0 * 100% / 3) 50%, calc(1 * 100% / 3) 100%,
      calc(2 * 100% / 3) 0, calc(3 * 100% / 3) 50%;
  }
  66.67% {
    background-position: calc(0 * 100% / 3) 50%, calc(1 * 100% / 3) 50%,
      calc(2 * 100% / 3) 100%, calc(3 * 100% / 3) 0;
  }
  83.33% {
    background-position: calc(0 * 100% / 3) 50%, calc(1 * 100% / 3) 50%,
      calc(2 * 100% / 3) 50%, calc(3 * 100% / 3) 100%;
  }
  100% {
    background-position: calc(0 * 100% / 3) 50%, calc(1 * 100% / 3) 50%,
      calc(2 * 100% / 3) 50%, calc(3 * 100% / 3) 50%;
  }
}

/* default input field styles for checkbox and field */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide spinner for Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

input[type="checkbox"] {
  margin: 0; /* Remove default margin which is added by useragent */
  padding: 0; /* Remove default padding because it doesnst work */
  box-shadow: 0px -4px 2px 0px #00000005 inset, 0px 0px 0px 1px #ededed;

  appearance: none; /* Remove default checkbox */
  /* background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><rect width="24" height="24" fill="none" stroke="black" stroke-width="2"/></svg>'); SVG for unchecked state */
  /* background-size: cover; Ensure the image covers the entire checkbox */
  cursor: pointer; /* Change cursor to pointer when hovering over the checkbox */
}
input[type="checkbox"]:checked {
  border: 1.5px solid #057ae5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 12' fill='none' style='&%2310;'%3E%3Cg filter='url(%23filter0_d_7839_26669)'%3E%3Cpath d='M5 6L7.61491 9.13789C7.99759 9.59711 8.69502 9.62023 9.10727 9.18737L15 3' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d_7839_26669' x='0' y='0' width='20' height='16.498' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='2'/%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.34 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_7839_26669'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_7839_26669' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
  box-shadow: 0px -2.5px 3px 0px #188dfa inset, 0px 0px 0px 1px #8bc6fd;
  background-color: #057ae5;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
}
input[type="checkbox"]:hover {
  box-shadow: 0px -4px 2px 0px #00000005 inset, 0px 0px 0px 1px #ededed,
    0px 3px 5px 0px #0000001a;
}

input[type="checkbox"]:checked:hover {
  background-color: #0468c5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 12' fill='none' style='&%2310;'%3E%3Cg filter='url(%23filter0_d_7839_26669)'%3E%3Cpath d='M5 6L7.61491 9.13789C7.99759 9.59711 8.69502 9.62023 9.10727 9.18737L15 3' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d_7839_26669' x='0' y='0' width='20' height='16.498' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='2'/%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.50 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_7839_26669'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_7839_26669' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}
/* select */
select {
  -webkit-appearance: none; /* For Safari */
  -moz-appearance: none; /* For Firefox */
  appearance: none; /* Standard syntax */
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='currentColor' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A")
    no-repeat right 12px center;
  padding-right: 36px; /* Space for the arrow */
}
/* Remove arrow in IE */
select::-ms-expand {
  display: none;
}

/* toggle switch */
/* 
input.v1checkbox-switch:where([type="checkbox"]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  color: inherit;
  font-size: inherit;
  width: 2em;
  height: 1em;
  box-sizing: content-box;
  border: 1px solid;
  border-radius: 1em;
  vertical-align: text-bottom;
  margin: auto;
}

input.v1checkbox-switch:where([type="checkbox"])::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  box-sizing: border-box;
  width: 0.7em;
  height: 0.7em;
  margin: 0 0.15em;
  border: 1px solid;
  border-radius: 50%;
  background: currentcolor;
}

input.v1checkbox-switch:where([type="checkbox"]):checked::before {
  left: 1em;
}

input.v1checkbox-switch:where([type="checkbox"]):disabled {
  opacity: 0.4;
} */

/*Payment Overlay */

/* Overlay background */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Overlay content area */
.overlay-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 600px;
  height: 98vh;
  position: relative;
  text-align: center;
}

/* Close button */
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* Main content styling */
.content h2 {
  margin-top: 0;
}

.content p {
  margin: 20px 0;
}

/*Client toast */

.cd-client-toast {
  padding: 12px;
  border: 1px solid #00000014;
}

.cd-client-toast .cd-client-toast-body {
  margin: 0;
  padding: 0;
}

.cd-client-toast .cd-client-toast-body .inner-head {
  display: none;
}

.cd-client-toast .cd-client-toast-body .inner-body {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.cd-client-toast .cd-client-toast-body .inner-body .new-icon-wrap .css-spinner {
  border-bottom-color: #1a1a1a;
  border-top-color: #1a1a1a;
  border-right-color: #1a1a1a;
}

.cd-client-toast .cd-client-toast-body .inner-body .text {
  font-size: 14px;
  font-weight: 600;
  line-height: 16.94px;
  letter-spacing: 0.01em;
  color: #1a1a1a;
}

.cd-client-toast.fullpagewidthbanner {
  border-radius: 0px;
}

.cd-client-toast.type-error,
.cd-client-toast.type-warning {
  background: linear-gradient(
    0deg,
    rgba(211, 32, 41, 0.1),
    rgba(211, 32, 41, 0.1)
  );
  background-color: #fff;
}

.cd-client-toast.type-error .text,
.cd-client-toast.type-warning .text {
  color: #e13942;
}

.Toastify__toast-container:has(.cd-client-toast-v1) {
  --toastify-toast-width: fit-content !important;
  --toastify-toast-min-height: 0 !important;
}

.Toastify__toast-container:has(.fullpagewidthbanner) {
  --toastify-toast-width: 100vw !important;
  box-sizing: content-box;
}

.css-spinner {
  border: 1px solid transparent;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  -webkit-animation: spin 1s linear infinite;
  /* Safari */
  border-bottom: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
  border-top: 1px solid #eeeeee;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

[data-prevent-selection="true"] {
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}

/* 
.react-grid-item :is(ul, ol) {
  padding-left: 28px;
}

.react-grid-item :is(ul, ol) li {
  margin-bottom: 10px;
}
.react-grid-item ul li {
  list-style-type: disc;
}
.react-grid-item ul ul li {
  list-style-type: circle;
}
.react-grid-item ol li {
  list-style-type: decimal;
}
.react-grid-item ol ol li {
  list-style-type: lower-alpha;
}
.react-grid-item ol ol ol li {
  list-style-type: lower-roman;
}

.react-grid-item :is(li + li, li :is(ul, ol)) {
  margin-top: 8px;
} */
