html {
  scroll-behavior: smooth !important;
}

#winBlock {
		font-family: "Roboto", sans-serif;

}
#order .shadow {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}

#ribbon path {
  fill: var(--ribbon-color);
}

#ribbon rect {
  fill: var(--ribbon-dark-color);
}

#order .order {
  --background-color: var(--color-primary);
  --border-radius: 32px;
  --form-radius: calc(var(--border-radius) / 4);
  --font-size: 18px;
  --ribbon-size: 150px;
  --ribbon-color: rgb(175, 0, 0);
  --ribbon-dark-color: rgb(125, 0, 0);
  --grad-from: rgb(220, 220, 220);
  --grad-to: var(--color-primary);
  --grad-direction: to bottom right;
  --form-gap: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px 0;
  border-radius: var(--border-radius);
  padding: 24px;
  background-color: #fff;
  gap: 32px 64px;
  box-sizing: border-box;
}

#order .order__left {
  position: relative;
  display: flex;
  flex: 1 1 min(40%, 210px);
  border-radius: var(--border-radius);
  padding: 8px;
  background: linear-gradient(var(--grad-direction), var(--grad-from), var(--grad-to));
  background-color: var(--background-color);
  box-sizing: inherit;
}

#order .order__inner {
  position: absolute;
  left: -17px;
  top: -17px;
  width: var(--ribbon-size);
  height: var(--ribbon-size);
}

#order .order__ribbon {
  width: 100%;
  height: 100%;
}

#order .order__discount {
  position: absolute;
  left: 40%;
  top: 40%;
  margin: 0;
  width: auto;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
  letter-spacing: 0.2em;
}

#order .order__product-wrap {
  position: relative;
  margin-top: auto;
  margin-right: auto;
  margin-left: auto;
}

#order .order__product {
  display: block;
  max-width: 100%;
  max-height: 450px;
  -o-object-fit: contain;
  object-fit: contain;
}

#order .order__sale-wrap {
  position: absolute;
  top: -45px;
  right: -15px;
  width: 90px;
  height: 90px;
  transform: rotate(25deg);
  animation: ScaleRotate 4s linear infinite;
}

#order .order__sale {
  width: 100%;
  height: 100%;
  fill: var(--ribbon-color);
}

#order .order__discount-value {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

#order .order__right {
  flex: 1 1 min(50%, 260px);
  align-self: center;
  min-width: 260px;
  box-sizing: inherit;
}

#order .order__prices {
  margin: 0;
  margin-bottom: var(--form-gap);
  border-bottom: 1px solid #d5d5d5;
  padding: 0;
  padding-bottom: var(--form-gap);
}

#order .order__form {
  margin-bottom: var(--form-gap);
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: var(--form-gap);
  box-sizing: inherit;
}

#order .order__prod-left {
  margin: 0;
  padding: 0;
}

#order .prod-left {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: calc(var(--font-size) - 2px);
  text-align: center;
}

#order .prod-left__text {
  margin-right: 6px;
  color: #161616;
}

#order .prod-left__pad {
  flex: 0 0 auto;
  border-radius: 5px;
  padding: 8px 8px 6px;
  box-sizing: border-box;
  line-height: 1;
  color: #fff;
  background-color: var(--background-color);
}

#order .prod-left__pad b {
  animation: 1s ease-in-out infinite blink;
}

#order .prod-left__pad--low {
  color: #fff;
  background-color: #b51111;
}

#order .form {
  width: 100%;
  font-family: inherit;
}

#order .form__group {
  position: relative;
  margin-bottom: calc(var(--form-gap) / 2);
  padding: var(--form-gap) 0 0;
  box-sizing: inherit;
  max-width: 320px;
  margin-right: auto;
  margin-left: auto;
}

#order .form__group:last-of-type {
  margin-bottom: calc(var(--form-gap) * 1.5);
}

#order .form__field {
  box-sizing: inherit;
  display: block;
  border: 1px solid var(--background-color);
  border-radius: var(--form-radius);
  padding: 8px 16px;
  width: 100%;
  font-family: inherit;
  font-size: var(--font-size);
  line-height: 1;
  text-align: left;
  outline: none;
  color: #161616;
}

#order .form__field::-moz-placeholder {
  color: transparent;
}

#order .form__field::placeholder {
  color: transparent;
}

#order .form__field:-moz-placeholder-shown ~ .form__label {
  top: calc(var(--form-gap) * 1.5);
  left: 1rem;
  font-size: var(--font-size);
  color: rgba(0, 0, 0, 0.5);
  cursor: text;
}

#order .form__field:placeholder-shown ~ .form__label {
  top: calc(var(--form-gap) * 1.5);
  left: 1rem;
  font-size: var(--font-size);
  color: rgba(0, 0, 0, 0.5);
  cursor: text;
}

#order .form__field:focus ~ .form__label {
  position: absolute;
  top: 0;
  left: 0.5rem;
  display: block;
  font-size: 0.8rem;
  color: #333;
}

#order .form__field:required, #order .form__field:invalid {
  box-shadow: none;
}

#order .form__label {
  position: absolute;
  top: 0;
  left: 0.5rem;
  display: block;
  font-family: inherit;
  transition: 0.2s;
  font-weight: 700;
  font-size: 0.8rem;
  color: #333;
}

#order .form__label > span {
  color: var(--grad-to);
}

#order .form__btn {
  box-sizing: inherit;
  display: block;
  margin-right: auto;
  margin-left: auto;
  border-radius: var(--form-radius);
  padding: 10px 16px;
  width: 100%;
  max-width: 320px;
  font-weight: 700;
  font-size: var(--font-size);
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--background-color);
  border: 1px solid transparent;
  cursor: pointer;
  transition-property: color, background-color, border-color;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}

#order .form__btn:hover, #order .form__btn:focus {
  color: var(--background-color);
  background-color: #fff;
  border-color: currentColor;
}

#order .prices {
  box-sizing: inherit;
  display: flex;
  justify-content: center;
  gap: 16px;
}

#order .prices__column {
  box-sizing: inherit;
  display: flex;
  flex-direction: column;
  width: 50%;
}

#order .prices__column.old {
  opacity: 0.7;
}

#order .prices__title {
  box-sizing: inherit;
  margin: 0;
  margin-bottom: 4px;
  padding: 0;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  color: #161616;
}

#order .prices__price {
  box-sizing: inherit;
  margin: 0;
  margin-top: auto;
  padding: 0;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  color: #161616;
}

#order .prices__price--new {
  font-weight: 700;
  font-size: 28px;
  transform: translatey(3px);
}

#order .prices__price--old {
  font-size: 24px;
}

#order .prices__price--old > span {
  text-decoration: line-through;
  text-decoration-color: #b61717;
  text-decoration-thickness: 3px;
}

@media screen and (min-width: 576px) {
  #order .prices__price--new {
    font-size: 34px;
  }

  #order .prices__price--old {
    font-size: 28px;
  }
}

@keyframes blink {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes ScaleRotate {
  0%, 100% {
    transform: scale(0.9) rotate(35deg);
  }

  50% {
    transform: scale(1.2) rotate(15deg);
  }
}

/*! CSS Used from: https://r.xleads.partners/optiheart/es/buy3/css/tailwind.css */

*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

::before,
::after {
  --tw-content: '';
}

h3 {
  font-size: inherit;
  font-weight: inherit;
}

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

h3,
p {
  margin: 0;
}

:disabled {
  cursor: default;
}

img,
svg {
  display: block;
  vertical-align: middle;
}

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

*,
::before,
::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-scroll-snap-strictness: proximity;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
}

.comment:not(:last-child) {
  /* margin-bottom: 1.5rem; */
  /* padding-bottom: 1.5rem; */
}

.comment__top {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.comment__stars {
  margin-bottom: 0.5rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
}

.comment__stars>svg {
  margin-right: 0.25rem;
  height: 1rem;
  width: 1rem;
}

.star {
  fill: #ffc107;
}

.comment__stars>span {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

@media (min-width: 640px) {
  .comment__content {
    margin-left: 4rem;
  }
}

.comment__content {
  /* margin-left: 4rem; */
  font-size: 17px;
  color: #333;
}

.comment__content>p~img {
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  max-height: 20rem;
  border-radius: 0.5rem;
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.comment__text > a {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(225 29 72 / var(--tw-text-opacity));
}

.comments {
  margin-bottom: 40px;
  padding-bottom: 50px;
}

.comments__title {
  display: inline-block;
  /* margin-bottom: 20px; */
  font-size: 2rem;
}

.swiper-buttons {
  display: flex;
  gap: 2rem;
}

.swiper-button-next, .swiper-button-prev {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  margin-top: unset;
  display: block;
  width: 44px;
  height: 44px;
  background-color: var(--swiper-theme-color);
  border-radius: 9999px;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none!important;
  letter-spacing: 0;
  color: #fff;
  font-variant: initial;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.7);
}

.comment:not(:last-child) {
  margin-bottom: 30px;
}

.comment__top {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.comment__avatar {
  margin-right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.comment__info {
  margin-right: auto;
}

.comment__author {
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}

.comment__time {
  margin-top: auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  white-space: nowrap;
  color: #666;
}

.comment__text {
  margin: 0;
}

.comment__stars {
  display: flex;
}

.comment__stars>.star {
  margin-right: 7px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: rgb(245, 195, 16);
}

.comment__stars>.star--empty {
  fill: #c7c7c7;
}

.comment__rating {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}

.comment__text~.comment__img {
  margin-top: 10px;
}

.comment .comment__link {
  position: relative;
  font-weight: 700;
  text-decoration: none;
  color: rgb(224, 62, 82);
}

.deal-wheel-section {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  overflow: hidden;
}

@media not all and (min-width: 768px) {
  .deal-wheel-section {
    flex-wrap: wrap;
  }
}

.deal-wheel-content {
  align-self: center;
  text-align: center;
}

.deal-wheel-title {
  margin-bottom: 2.25rem;
}

@keyframes tw-pulse {
  50% {
    opacity: .5;
  }
}

.deal-wheel-title {
  animation: tw-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
}

.deal-wheel-subtitle {
	font-family: "Roboto", sans-serif;
  margin-bottom: 2.5rem;
  text-align: center;
}

.deal-wheel-btn {
	font-family: "Roboto", sans-serif;
  border-radius: 1rem;
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity));
  padding: 1rem;
  font-size: 18px !important;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1 !important;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  border: 2px solid rgb(22 163 74);
}

#dealWheel img {
  margin-bottom: 0px !important;
  border: 0 none;
}

.deal-wheel {
  --size: clamp(250px, 80vmin, 700px);
  --lg-hs: 0 3%;
  --lg-stop: 50%;
  --lg: linear-gradient(hsl(var(--lg-hs) 0%) 0 var(--lg-stop), hsl(var(--lg-hs) 20%) var(--lg-stop) 100%);
  position: relative;
  display: grid;
  align-items: center;
  grid-gap: calc(var(--size) / 20);
  grid-template-areas: "spinner" "trigger";
  font-size: calc(var(--size) / 21);
}

.deal-wheel > * {
  grid-area: spinner;
}

.deal-wheel__img img,
.ticker img {
  display: block;
  height: auto;
  max-width: 100%;
}

.spinner {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-areas: "spinner";
  margin: 0;
  border-radius: 50%;
  padding: 0;
  width: var(--size);
  height: var(--size);
  max-width: 429px;
  max-height: 429px;
  background: none !important;
  transform: rotate(calc(var(--rotate, 25) * 1deg));
}

.spinner * {
  grid-area: spinner;
}

.prize {
  display: flex;
  align-items: center;
  padding: 0 calc(var(--size) / 6) 0 calc(var(--size) / 20);
  width: 50%;
  height: 50%;
  font-size: 0;
  transform: rotate(var(--rotate));
  transform-origin: center right;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.ticker {
  max-width: 528px;
  transform: rotate(calc(var(--rotate, 25) * 1deg));
  transition-duration: 4.5s;
  pointer-events: none;
}

.ticker.slow {
  animation: rotate 120s linear infinite;
}

.is-spinning .spinner {
  transition: transform 8s cubic-bezier(0.1, -0.01, 0, 1);
}

.is-spinning .ticker {
  transition: transform 8s cubic-bezier(0.1, -0.01, 0, 1);
}

.ticker {
  transition-duration: 4.5s;
  pointer-events: none;
}

.deal-wheel {
  max-width: 429px;
  max-height: 429px;
  pointer-events: none;
}

@media (max-width: 1300px) {
  .deal-wheel {
    max-width: 384px;
    max-height: 384px;
  }

  .spinner {
    max-width: 384px;
    max-height: 384px;
  }
}

@media (max-width: 767px) {
  .deal-wheel {
    right: 0;
    top: 100%;
    max-width: 300px;
    max-height: 300px;
    position: static;
  }

  .spinner {
    max-width: 300px;
    max-height: 300px;
  }

  .deal-wheel__img {
    max-width: 300px;
    max-height: 300px;
  }

  .ticker {
    max-width: 300px;
    max-height: 300px;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
*/

html {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain img and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

.tw-clear-both {
  clear: both;
}

.tw-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.tw-my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.tw-mb-6 {
  margin-bottom: 1.5rem;
}

.tw-mb-4 {
  margin-bottom: 1rem;
}

.tw-mb-8 {
  margin-bottom: 2rem;
}

.tw-mb-5 {
  margin-bottom: 1.25rem;
}

.tw-mb-2 {
  margin-bottom: 0.5rem;
}

.tw-mb-9 {
  margin-bottom: 2.25rem;
}

.tw-mb-10 {
  margin-bottom: 2.5rem;
}

.tw-block {
  display: block;
}

.tw-inline-block {
  display: inline-block;
}

.tw-flex {
  display: flex;
}

.tw-h-full {
  height: 100%;
}

.tw-max-h-80 {
  max-height: 20rem;
}

.tw-max-h-\[150px\] {
  max-height: 150px;
}

.tw-flex-grow {
  flex-grow: 1;
}

.tw-basis-1\/3 {
  flex-basis: 33.333333%;
}

.tw-basis-2\/3 {
  flex-basis: 66.666667%;
}

@keyframes tw-pulse {
  50% {
    opacity: .5;
  }
}

.tw-animate-pulse {
  animation: tw-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.tw-items-center {
  align-items: center;
}

.tw-justify-center {
  justify-content: center;
}

.tw-justify-between {
  justify-content: space-between;
}

.tw-gap-4 {
  gap: 1rem;
}

.tw-gap-8 {
  gap: 2rem;
}

.tw-self-center {
  align-self: center;
}

.tw-overflow-hidden {
  overflow: hidden;
}

.tw-rounded-lg {
  border-radius: 0.5rem;
}

.tw-rounded-xl {
  border-radius: 0.75rem;
}

.tw-rounded-2xl {
  border-radius: 1rem;
}

.tw-border-4 {
  border-width: 4px;
}

.tw-border-2 {
  border-width: 2px;
}

.tw-border-solid {
  border-style: solid;
}

.tw-border-green-500 {
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity));
}

.tw-border-primary {
  border-color: var(--color-primary);
}

.tw-bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}

.tw-bg-primary {
  background-color: var(--color-primary);
}

.tw-bg-green-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity));
}

.tw-object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.tw-object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.tw-p-4 {
  padding: 1rem;
}

.tw-py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.tw-py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.tw-py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.tw-px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.tw-pt-3 {
  padding-top: 0.75rem;
}

.tw-text-center {
  text-align: center;
}

.tw-text-right {
  text-align: right;
}

.tw-text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.\!tw-text-lg {
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}

.\!tw-text-base {
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}

.tw-text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.tw-text-\[28px\] {
  font-size: 28px;
}

.\!tw-text-\[18px\] {
  font-size: 18px !important;
}

.tw-font-semibold {
  font-weight: 600;
}

.tw-font-bold {
  font-weight: 700;
}

.tw-uppercase {
  text-transform: uppercase;
}

.tw-leading-tight {
  line-height: 1.25;
}

.\!tw-leading-tight {
  line-height: 1.25 !important;
}

.tw-leading-none {
  line-height: 1;
}

.\!tw-leading-none {
  line-height: 1 !important;
}

.tw-text-secondary {
  color: var(--color-secondary);
}

.tw-text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity));
}

.tw-text-alternative {
  color: var(--color-alternative);
}

.tw-text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity));
}

.tw-text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.tw-shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.tw-transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

:root {
  --color-primary: #1ea400;
  /* --color-primary:  */
  --color-secondary: #f85a1b;
  --color-alternative: #004dde;
  /* --color-alert: ; */
}

body {
  font-size: 18px;
  min-width: 360px;
}

b {
  font-weight: 700;
}

.hl-accent {
  font-weight: 700;
  color: var(--color-primary);
}

.hl-secondary {
  font-weight: 700;
  color: var(--color-secondary);
}

.lead {
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
  font-weight: 600;
}

@media (min-width: 640px) {
  .lead {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
}

.subtitle {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: var(--color-alternative);
}

.blockquote {
  margin-bottom: 1.5rem;
}

.blockquote p {
  margin-bottom: 0px;
}

.blockquote__img {
  height: 5rem;
  width: 5rem;
  border-top-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

@media not all and (min-width: 768px) {
  .blockquote__img {
    align-self: flex-start;
  }
}

.blockquote--ava {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top-width: 2px;
  border-bottom-width: 2px;
  border-style: solid;
  border-color: var(--color-primary);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

@media not all and (min-width: 768px) {
  .blockquote--ava {
    flex-direction: column;
  }
}

mark {
  --color1: springgreen;
  --color2: springgreen;
  --bg-height: 100%;
  all: unset;
  background-image: linear-gradient(var(--color1), var(--color2));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 var(--bg-height);
  animation: highlight 800ms 1 ease-out;
  animation-fill-mode: forwards;
  animation-play-state: paused;
}

@keyframes highlight {
  to {
    background-size: 100% var(--bg-height);
  }
}

.hover\:tw-bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.hover\:tw-text-primary:hover {
  color: var(--color-primary);
}

@media not all and (min-width: 768px) {
  .max-md\:tw-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .max-md\:tw-max-h-80 {
    max-height: 20rem;
  }

  .max-md\:tw-flex-wrap {
    flex-wrap: wrap;
  }

  .max-md\:tw-rounded-lg {
    border-radius: 0.5rem;
  }

  .max-md\:tw-pt-4 {
    padding-top: 1rem;
  }

  .max-md\:tw-shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}

@media not all and (min-width: 640px) {
  .max-sm\:tw-max-h-80 {
    max-height: 20rem;
  }
}

@media (min-width: 640px) {
  .sm\:tw-float-right {
    float: right;
  }

  .sm\:tw-float-left {
    float: left;
  }

  .sm\:tw-mr-4 {
    margin-right: 1rem;
  }

  .sm\:-tw-mt-10 {
    margin-top: -2.5rem;
  }

  .sm\:tw-ml-4 {
    margin-left: 1rem;
  }

  .sm\:tw-mb-1 {
    margin-bottom: 0.25rem;
  }

  .sm\:tw-w-1\/3 {
    width: 33.333333%;
  }

  .sm\:tw-max-w-\[80\%\] {
    max-width: 80%;
  }

  .sm\:tw-max-w-\[90\%\] {
    max-width: 90%;
  }

  .sm\:tw-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .sm\:tw-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 768px) {
  .md\:tw-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}