@layer properties;
@layer theme, base, components, utilities;
@layer theme {
:root, :host {
--font-sans: "montserrat", sans-serif;
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
"Courier New", monospace;
--color-white: #fff;
--spacing: 0.25rem;
--breakpoint-sm: 640px;
--breakpoint-md: 768px;
--breakpoint-lg: 993px;
--breakpoint-xl: 1200px;
--text-xs: 0.75rem;
--text-xs--line-height: calc(1 / 0.75);
--text-sm: 0.875rem;
--text-sm--line-height: calc(1.25 / 0.875);
--text-xl: 1.25rem;
--text-xl--line-height: calc(1.75 / 1.25);
--text-2xl: 1.5rem;
--text-2xl--line-height: calc(2 / 1.5);
--text-3xl: 2rem;
--text-3xl--line-height: calc(2.25 / 1.875);
--text-4xl: 2.25rem;
--text-4xl--line-height: calc(2.5 / 2.25);
--text-5xl: 3rem;
--text-5xl--line-height: 1;
--font-weight-normal: 400;
--font-weight-semibold: 600;
--font-weight-bold: 700;
--leading-tight: 1.25;
--radius-sm: 0.25rem;
--radius-md: 0.375rem;
--radius-lg: 0.5rem;
--radius-2xl: 1rem;
--radius-4xl: 2rem;
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
--default-transition-duration: 150ms;
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
--default-font-family: var(--font-sans);
--default-mono-font-family: var(--font-mono);
--breakpoint-xs: 250px;
--container-width: 1118px;
}
}
@layer base {
*, ::after, ::before, ::backdrop, ::file-selector-button {
box-sizing: border-box;
margin: 0;
padding: 0;
border: 0 solid;
}
html, :host {
line-height: 1.5;
-webkit-text-size-adjust: 100%;
tab-size: 4;
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
font-feature-settings: var(--default-font-feature-settings, normal);
font-variation-settings: var(--default-font-variation-settings, normal);
-webkit-tap-highlight-color: transparent;
}
hr {
height: 0;
color: inherit;
border-top-width: 1px;
}
abbr:where([title]) {
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
}
h1, h2, h3, h4, h5, h6 {
font-size: inherit;
font-weight: inherit;
}
a {
color: inherit;
-webkit-text-decoration: inherit;
text-decoration: inherit;
}
b, strong {
font-weight: bolder;
}
code, kbd, samp, pre {
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
font-feature-settings: var(--default-mono-font-feature-settings, normal);
font-variation-settings: var(--default-mono-font-variation-settings, normal);
font-size: 1em;
}
small {
font-size: 80%;
}
sub, sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
table {
text-indent: 0;
border-color: inherit;
border-collapse: collapse;
}
:-moz-focusring {
outline: auto;
}
progress {
vertical-align: baseline;
}
summary {
display: list-item;
}
ol, ul, menu {
list-style: none;
}
img, svg, video, canvas, audio, iframe, embed, object {
display: block;
vertical-align: middle;
}
img, video {
max-width: 100%;
height: auto;
}
button, input, select, optgroup, textarea, ::file-selector-button {
font: inherit;
font-feature-settings: inherit;
font-variation-settings: inherit;
letter-spacing: inherit;
color: inherit;
border-radius: 0;
background-color: transparent;
opacity: 1;
}
:where(select:is([multiple], [size])) optgroup {
font-weight: bolder;
}
:where(select:is([multiple], [size])) optgroup option {
padding-inline-start: 20px;
}
::file-selector-button {
margin-inline-end: 4px;
}
::placeholder {
opacity: 1;
}
@supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
::placeholder {
color: currentcolor;
@supports (color: color-mix(in lab, red, red)) {
color: color-mix(in oklab, currentcolor 50%, transparent);
}
}
}
textarea {
resize: vertical;
}
::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-date-and-time-value {
min-height: 1lh;
text-align: inherit;
}
::-webkit-datetime-edit {
display: inline-flex;
}
::-webkit-datetime-edit-fields-wrapper {
padding: 0;
}
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
padding-block: 0;
}
::-webkit-calendar-picker-indicator {
line-height: 1;
}
:-moz-ui-invalid {
box-shadow: none;
}
button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
appearance: button;
}
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
height: auto;
}
[hidden]:where(:not([hidden="until-found"])) {
display: none !important;
}
}
@layer utilities {
.pointer-events-none {
pointer-events: none;
}
.invisible {
visibility: hidden;
}
.visible {
visibility: visible;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip-path: inset(50%);
white-space: nowrap;
border-width: 0;
}
.absolute {
position: absolute;
}
.fixed {
position: fixed;
}
.relative {
position: relative;
}
.static {
position: static;
}
.sticky {
position: sticky;
}
.inset-0 {
inset: calc(var(--spacing) * 0);
}
.-start {
inset-inline-start: calc(var(--spacing) * -1);
}
.start {
inset-inline-start: var(--spacing);
}
.-end {
inset-inline-end: calc(var(--spacing) * -1);
}
.end {
inset-inline-end: var(--spacing);
}
.top-22 {
top: calc(var(--spacing) * 22);
}
.right-0 {
right: calc(var(--spacing) * 0);
}
.bottom-0 {
bottom: calc(var(--spacing) * 0);
}
.bottom-4 {
bottom: calc(var(--spacing) * 4);
}
.left-0 {
left: calc(var(--spacing) * 0);
}
.left-2 {
left: calc(var(--spacing) * 2);
}
.-z-10 {
z-index: calc(10 * -1);
}
.-z-20 {
z-index: calc(20 * -1);
}
.z-3 {
z-index: 3;
}
.z-\[1\] {
z-index: 1;
}
.order-0 {
order: 0;
}
.order-1 {
order: 1;
}
.order-2 {
order: 2;
}
.order-3 {
order: 3;
}
.order-4 {
order: 4;
}
.order-5 {
order: 5;
}
.order-6 {
order: 6;
}
.order-7 {
order: 7;
}
.order-8 {
order: 8;
}
.order-9 {
order: 9;
}
.order-10 {
order: 10;
}
.order-11 {
order: 11;
}
.order-12 {
order: 12;
}
.order-first {
order: -9999;
}
.order-last {
order: 9999;
}
.col-1 {
grid-column: 1;
}
.col-2 {
grid-column: 2;
}
.col-3 {
grid-column: 3;
}
.col-4 {
grid-column: 4;
}
.col-5 {
grid-column: 5;
}
.col-6 {
grid-column: 6;
}
.col-7 {
grid-column: 7;
}
.col-8 {
grid-column: 8;
}
.col-9 {
grid-column: 9;
}
.col-10 {
grid-column: 10;
}
.col-11 {
grid-column: 11;
}
.col-12 {
grid-column: 12;
}
.col-auto {
grid-column: auto;
}
.float-left {
float: left;
}
.float-none {
float: none;
}
.float-right {
float: right;
}
.container {
width: 100%;
@media (width >= 250px) {
max-width: 250px;
}
@media (width >= 640px) {
max-width: 640px;
}
@media (width >= 768px) {
max-width: 768px;
}
@media (width >= 993px) {
max-width: 993px;
}
@media (width >= 1200px) {
max-width: 1200px;
}
@media (width >= 1400px) {
max-width: 1400px;
}
@media (width >= 1600px) {
max-width: 1600px;
}
}
.m-0 {
margin: calc(var(--spacing) * 0);
}
.m-0\! {
margin: calc(var(--spacing) * 0) !important;
}
.m-1 {
margin: calc(var(--spacing) * 1);
}
.m-2 {
margin: calc(var(--spacing) * 2);
}
.m-3 {
margin: calc(var(--spacing) * 3);
}
.m-4 {
margin: calc(var(--spacing) * 4);
}
.m-5 {
margin: calc(var(--spacing) * 5);
}
.m-auto {
margin: auto;
}
.mx-0 {
margin-inline: calc(var(--spacing) * 0);
}
.mx-1 {
margin-inline: calc(var(--spacing) * 1);
}
.mx-2 {
margin-inline: calc(var(--spacing) * 2);
}
.mx-3 {
margin-inline: calc(var(--spacing) * 3);
}
.mx-4 {
margin-inline: calc(var(--spacing) * 4);
}
.mx-5 {
margin-inline: calc(var(--spacing) * 5);
}
.mx-auto {
margin-inline: auto;
}
.my-0 {
margin-block: calc(var(--spacing) * 0);
}
.my-1 {
margin-block: calc(var(--spacing) * 1);
}
.my-2 {
margin-block: calc(var(--spacing) * 2);
}
.my-3 {
margin-block: calc(var(--spacing) * 3);
}
.my-4 {
margin-block: calc(var(--spacing) * 4);
}
.my-5 {
margin-block: calc(var(--spacing) * 5);
}
.my-auto {
margin-block: auto;
}
.mt-0 {
margin-top: calc(var(--spacing) * 0);
}
.mt-0\.5 {
margin-top: calc(var(--spacing) * 0.5);
}
.mt-10 {
margin-top: calc(var(--spacing) * 10);
}
.mt-auto {
margin-top: auto;
}
.mb-0 {
margin-bottom: calc(var(--spacing) * 0);
}
.mb-1 {
margin-bottom: calc(var(--spacing) * 1);
}
.mb-3 {
margin-bottom: calc(var(--spacing) * 3);
}
.mb-4 {
margin-bottom: calc(var(--spacing) * 4);
}
.block {
display: block;
}
.contents {
display: contents;
}
.flex {
display: flex;
}
.flex\! {
display: flex !important;
}
.grid {
display: grid;
}
.hidden {
display: none;
}
.inline {
display: inline;
}
.inline-block {
display: inline-block;
}
.inline-flex {
display: inline-flex;
}
.table {
display: table;
}
.table-cell {
display: table-cell;
}
.table-row {
display: table-row;
}
.h-10 {
height: calc(var(--spacing) * 10);
}
.h-16 {
height: calc(var(--spacing) * 16);
}
.h-25 {
height: calc(var(--spacing) * 25);
}
.h-50 {
height: calc(var(--spacing) * 50);
}
.h-75 {
height: calc(var(--spacing) * 75);
}
.h-100 {
height: calc(var(--spacing) * 100);
}
.h-\[45px\] {
height: 45px;
}
.h-\[66px\]\! {
height: 66px !important;
}
.h-\[142px\] {
height: 142px;
}
.h-\[200px\] {
height: 200px;
}
.h-\[236px\] {
height: 236px;
}
.h-auto {
height: auto;
}
.h-full {
height: 100%;
}
.max-h-\[460px\]\! {
max-height: 460px !important;
}
.max-h-\[672px\] {
max-height: 672px;
}
.min-h-\[448px\] {
min-height: 448px;
}
.w-10 {
width: calc(var(--spacing) * 10);
}
.w-16 {
width: calc(var(--spacing) * 16);
}
.w-25 {
width: calc(var(--spacing) * 25);
}
.w-50 {
width: calc(var(--spacing) * 50);
}
.w-75 {
width: calc(var(--spacing) * 75);
}
.w-100 {
width: calc(var(--spacing) * 100);
}
.w-\[120px\]\! {
width: 120px !important;
}
.w-\[350px\] {
width: 350px;
}
.w-auto {
width: auto;
}
.w-fit {
width: fit-content;
}
.w-full {
width: 100%;
}
.max-w-\[150px\]\! {
max-width: 150px !important;
}
.max-w-\[172px\] {
max-width: 172px;
}
.max-w-\[260px\] {
max-width: 260px;
}
.max-w-\[270px\] {
max-width: 270px;
}
.max-w-\[354px\] {
max-width: 354px;
}
.max-w-\[355px\] {
max-width: 355px;
}
.max-w-\[368px\] {
max-width: 368px;
}
.max-w-\[467px\] {
max-width: 467px;
}
.max-w-\[487px\] {
max-width: 487px;
}
.max-w-\[523px\] {
max-width: 523px;
}
.max-w-\[555px\] {
max-width: 555px;
}
.max-w-\[564px\] {
max-width: 564px;
}
.max-w-\[626px\] {
max-width: 626px;
}
.max-w-\[628px\] {
max-width: 628px;
}
.max-w-\[644px\]\! {
max-width: 644px !important;
}
.max-w-\[664px\] {
max-width: 664px;
}
.max-w-\[665px\] {
max-width: 665px;
}
.max-w-\[666px\] {
max-width: 666px;
}
.max-w-\[734px\] {
max-width: 734px;
}
.max-w-\[736px\] {
max-width: 736px;
}
.max-w-\[737px\] {
max-width: 737px;
}
.max-w-\[974px\] {
max-width: 974px;
}
.max-w-full {
max-width: 100%;
}
.min-w-\[120px\] {
min-width: 120px;
}
.min-w-\[400px\] {
min-width: 400px;
}
.flex-1 {
flex: 1;
}
.flex-shrink {
flex-shrink: 1;
}
.flex-shrink-0 {
flex-shrink: 0;
}
.flex-shrink-1 {
flex-shrink: 1;
}
.shrink-0 {
flex-shrink: 0;
}
.flex-grow {
flex-grow: 1;
}
.flex-grow-0 {
flex-grow: 0;
}
.flex-grow-1 {
flex-grow: 1;
}
.grow {
flex-grow: 1;
}
.border-collapse {
border-collapse: collapse;
}
.rotate-45 {
rotate: 45deg;
}
.rotate-90 {
rotate: 90deg;
}
.rotate-180 {
rotate: 180deg;
}
.transform {
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
}
.cursor-pointer {
cursor: pointer;
}
.resize {
resize: both;
}
.grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-col {
flex-direction: column;
}
.flex-col\! {
flex-direction: column !important;
}
.flex-col-reverse {
flex-direction: column-reverse;
}
.flex-row {
flex-direction: row;
}
.flex-row\! {
flex-direction: row !important;
}
.flex-row-reverse {
flex-direction: row-reverse;
}
.flex-nowrap {
flex-wrap: nowrap;
}
.flex-wrap {
flex-wrap: wrap;
}
.flex-wrap-reverse {
flex-wrap: wrap-reverse;
}
.items-center {
align-items: center;
}
.items-end {
align-items: flex-end;
}
.items-start {
align-items: flex-start;
}
.items-stretch {
align-items: stretch;
}
.justify-between {
justify-content: space-between;
}
.justify-center {
justify-content: center;
}
.gap-1 {
gap: calc(var(--spacing) * 1);
}
.gap-2 {
gap: calc(var(--spacing) * 2);
}
.gap-3 {
gap: calc(var(--spacing) * 3);
}
.gap-4 {
gap: calc(var(--spacing) * 4);
}
.gap-6 {
gap: calc(var(--spacing) * 6);
}
.gap-8 {
gap: calc(var(--spacing) * 8);
}
.gap-9 {
gap: calc(var(--spacing) * 9);
}
.gap-10 {
gap: calc(var(--spacing) * 10);
}
.gap-12 {
gap: calc(var(--spacing) * 12);
}
.gap-15 {
gap: calc(var(--spacing) * 15);
}
.gap-25 {
gap: calc(var(--spacing) * 25);
}
.self-end {
align-self: flex-end;
}
.truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.overflow-auto {
overflow: auto;
}
.overflow-hidden {
overflow: hidden;
}
.overflow-x-auto {
overflow-x: auto;
}
.rounded {
border-radius: 0.25rem;
}
.rounded-2xl {
border-radius: var(--radius-2xl);
}
.rounded-4xl {
border-radius: var(--radius-4xl);
}
.rounded-\[4px\] {
border-radius: 4px;
}
.rounded-\[5px\] {
border-radius: 5px;
}
.rounded-\[6px\]\! {
border-radius: 6px !important;
}
.rounded-full {
border-radius: calc(infinity * 1px);
}
.rounded-lg {
border-radius: var(--radius-lg);
}
.rounded-lg\! {
border-radius: var(--radius-lg) !important;
}
.rounded-md {
border-radius: var(--radius-md);
}
.rounded-sm {
border-radius: var(--radius-sm);
}
.rounded-t-none {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.rounded-b-\[4px\] {
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
.border {
border-style: var(--tw-border-style);
border-width: 1px;
}
.border-0 {
border-style: var(--tw-border-style);
border-width: 0px;
}
.border-b {
border-bottom-style: var(--tw-border-style);
border-bottom-width: 1px;
}
.border-\[\#E5E7EB\] {
border-color: #E5E7EB;
}
.border-\[\#E9E9EA\]\! {
border-color: #E9E9EA !important;
}
.border-\[\#E5322B\]\! {
border-color: #E5322B !important;
}
.border-\[\#FF642C\]\! {
border-color: #FF642C !important;
}
.border-\[E5322B\]\! {
border-color: E5322B !important;
}
.border-\[rgba\(255\,255\,255\,0\.05\)\]\! {
border-color: rgba(255,255,255,0.05) !important;
}
.border-\[rgba\(255\,255\,255\,0\.24\)\]\! {
border-color: rgba(255,255,255,0.24) !important;
}
.border-white {
border-color: var(--color-white);
}
.bg-\[\#171A1D\] {
background-color: #171A1D;
}
.bg-\[\#E9E9EA\] {
background-color: #E9E9EA;
}
.bg-\[\#E5322B\] {
background-color: #E5322B;
}
.bg-\[\#E5322B\]\! {
background-color: #E5322B !important;
}
.bg-\[\#F5F5F5\] {
background-color: #F5F5F5;
}
.bg-\[\#FAFAFA\] {
background-color: #FAFAFA;
}
.bg-\[\#FAFAFA\]\! {
background-color: #FAFAFA !important;
}
.bg-\[\#FF642C\] {
background-color: #FF642C;
}
.bg-\[\#FF8356\] {
background-color: #FF8356;
}
.bg-\[\#FFE53B\] {
background-color: #FFE53B;
}
.bg-\[\#FFF0EA\] {
background-color: #FFF0EA;
}
.bg-\[\#FFF\] {
background-color: #FFF;
}
.bg-\[\#FFF\]\! {
background-color: #FFF !important;
}
.bg-\[\#f5f5f5\] {
background-color: #f5f5f5;
}
.bg-\[rgba\(0\,0\,0\,0\.18\)\] {
background-color: rgba(0,0,0,0.18);
}
.bg-\[rgba\(255\,255\,255\,0\.05\)\] {
background-color: rgba(255,255,255,0.05);
}
.bg-\[rgba\(255\,255\,255\,0\.08\)\] {
background-color: rgba(255,255,255,0.08);
}
.bg-\[rgba\(255\,255\,255\,0\.9\)\] {
background-color: rgba(255,255,255,0.9);
}
.bg-\[rgba\(255\,255\,255\,0\.12\)\] {
background-color: rgba(255,255,255,0.12);
}
.bg-transparent {
background-color: transparent;
}
.bg-transparent\! {
background-color: transparent !important;
}
.bg-white {
background-color: var(--color-white);
}
.bg-white\/12 {
background-color: color-mix(in srgb, #fff 12%, transparent);
@supports (color: color-mix(in lab, red, red)) {
background-color: color-mix(in oklab, var(--color-white) 12%, transparent);
}
}
.bg-white\/\[0\.08\] {
background-color: color-mix(in srgb, #fff 8%, transparent);
@supports (color: color-mix(in lab, red, red)) {
background-color: color-mix(in oklab, var(--color-white) 8%, transparent);
}
}
.bg-gradient-to-r {
--tw-gradient-position: to right in oklab;
background-image: linear-gradient(var(--tw-gradient-stops));
}
.bg-\[linear-gradient\(90deg\,\#E5322B_68\.94\%\,\#FF642C_100\%\)\] {
background-image: linear-gradient(90deg,#E5322B 68.94%,#FF642C 100%);
}
.bg-\[linear-gradient\(90deg\,\#E5322B_68\.94\%\,\#FF642C_100\%\)\]\! {
background-image: linear-gradient(90deg,#E5322B 68.94%,#FF642C 100%) !important;
}
.bg-\[linear-gradient\(90deg\,_\#FF642C_0\%\,_\#FF642C_64\.62\%\)\]\! {
background-image: linear-gradient(90deg, #FF642C 0%, #FF642C 64.62%) !important;
}
.bg-\[linear-gradient\(141deg\,\#E5322B_69\.9\%\,\#FF642C_100\%\)\] {
background-image: linear-gradient(141deg,#E5322B 69.9%,#FF642C 100%);
}
.from-\[\#E5322B\] {
--tw-gradient-from: #E5322B;
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
}
.to-\[\#FF642C\] {
--tw-gradient-to: #FF642C;
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
}
.bg-clip-text {
background-clip: text;
}
.object-contain {
object-fit: contain;
}
.object-cover {
object-fit: cover;
}
.p-0 {
padding: calc(var(--spacing) * 0);
}
.p-1 {
padding: calc(var(--spacing) * 1);
}
.p-2 {
padding: calc(var(--spacing) * 2);
}
.p-2\! {
padding: calc(var(--spacing) * 2) !important;
}
.p-3 {
padding: calc(var(--spacing) * 3);
}
.p-4 {
padding: calc(var(--spacing) * 4);
}
.p-5 {
padding: calc(var(--spacing) * 5);
}
.p-6 {
padding: calc(var(--spacing) * 6);
}
.p-8 {
padding: calc(var(--spacing) * 8);
}
.p-15 {
padding: calc(var(--spacing) * 15);
}
.p-\[10px\] {
padding: 10px;
}
.px-0 {
padding-inline: calc(var(--spacing) * 0);
}
.px-1 {
padding-inline: calc(var(--spacing) * 1);
}
.px-2 {
padding-inline: calc(var(--spacing) * 2);
}
.px-3 {
padding-inline: calc(var(--spacing) * 3);
}
.px-4 {
padding-inline: calc(var(--spacing) * 4);
}
.px-5 {
padding-inline: calc(var(--spacing) * 5);
}
.px-6 {
padding-inline: calc(var(--spacing) * 6);
}
.py-0 {
padding-block: calc(var(--spacing) * 0);
}
.py-1 {
padding-block: calc(var(--spacing) * 1);
}
.py-2 {
padding-block: calc(var(--spacing) * 2);
}
.py-3 {
padding-block: calc(var(--spacing) * 3);
}
.py-4 {
padding-block: calc(var(--spacing) * 4);
}
.py-5 {
padding-block: calc(var(--spacing) * 5);
}
.py-10 {
padding-block: calc(var(--spacing) * 10);
}
.py-15 {
padding-block: calc(var(--spacing) * 15);
}
.py-16 {
padding-block: calc(var(--spacing) * 16);
}
.py-20 {
padding-block: calc(var(--spacing) * 20);
}
.py-\[120px\] {
padding-block: 120px;
}
.pt-\[90px\] {
padding-top: 90px;
}
.pt-\[120px\] {
padding-top: 120px;
}
.pr-6 {
padding-right: calc(var(--spacing) * 6);
}
.pb-10 {
padding-bottom: calc(var(--spacing) * 10);
}
.pb-15 {
padding-bottom: calc(var(--spacing) * 15);
}
.pb-\[95px\] {
padding-bottom: 95px;
}
.pb-\[180px\] {
padding-bottom: 180px;
}
.pl-8 {
padding-left: calc(var(--spacing) * 8);
}
.text-center {
text-align: center;
}
.text-justify {
text-align: justify;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.align-baseline {
vertical-align: baseline;
}
.align-bottom {
vertical-align: bottom;
}
.align-middle {
vertical-align: middle;
}
.align-text-bottom {
vertical-align: text-bottom;
}
.align-text-top {
vertical-align: text-top;
}
.align-top {
vertical-align: top;
}
.font-\[buffalo\] {
font-family: buffalo;
}
.font-\[montserrat\] {
font-family: montserrat;
}
.text-2xl {
font-size: var(--text-2xl);
line-height: var(--tw-leading, var(--text-2xl--line-height));
}
.text-2xl\! {
font-size: var(--text-2xl) !important;
line-height: var(--tw-leading, var(--text-2xl--line-height)) !important;
}
.text-3xl {
font-size: var(--text-3xl);
line-height: var(--tw-leading, var(--text-3xl--line-height));
}
.text-4xl {
font-size: var(--text-4xl);
line-height: var(--tw-leading, var(--text-4xl--line-height));
}
.text-4xl\! {
font-size: var(--text-4xl) !important;
line-height: var(--tw-leading, var(--text-4xl--line-height)) !important;
}
.text-4xl\/10 {
font-size: var(--text-4xl);
line-height: calc(var(--spacing) * 10);
}
.text-5xl {
font-size: var(--text-5xl);
line-height: var(--tw-leading, var(--text-5xl--line-height));
}
.text-5xl\! {
font-size: var(--text-5xl) !important;
line-height: var(--tw-leading, var(--text-5xl--line-height)) !important;
}
.text-sm {
font-size: var(--text-sm);
line-height: var(--tw-leading, var(--text-sm--line-height));
}
.text-xl {
font-size: var(--text-xl);
line-height: var(--tw-leading, var(--text-xl--line-height));
}
.text-xl\! {
font-size: var(--text-xl) !important;
line-height: var(--tw-leading, var(--text-xl--line-height)) !important;
}
.text-xs {
font-size: var(--text-xs);
line-height: var(--tw-leading, var(--text-xs--line-height));
}
.text-\[12px\]\! {
font-size: 12px !important;
}
.text-\[14px\] {
font-size: 14px;
}
.text-\[14px\]\! {
font-size: 14px !important;
}
.text-\[16px\] {
font-size: 16px;
}
.text-\[16px\]\! {
font-size: 16px !important;
}
.text-\[18px\] {
font-size: 18px;
}
.text-\[18px\]\! {
font-size: 18px !important;
}
.text-\[19px\]\! {
font-size: 19px !important;
}
.text-\[20px\] {
font-size: 20px;
}
.text-\[20px\]\! {
font-size: 20px !important;
}
.text-\[24px\]\! {
font-size: 24px !important;
}
.text-\[32px\]\! {
font-size: 32px !important;
}
.text-\[40px\]\! {
font-size: 40px !important;
}
.text-\[48px\] {
font-size: 48px;
}
.leading-tight {
--tw-leading: var(--leading-tight);
line-height: var(--leading-tight);
}
.font-bold {
--tw-font-weight: var(--font-weight-bold);
font-weight: var(--font-weight-bold);
}
.font-bold\! {
--tw-font-weight: var(--font-weight-bold) !important;
font-weight: var(--font-weight-bold) !important;
}
.font-normal {
--tw-font-weight: var(--font-weight-normal);
font-weight: var(--font-weight-normal);
}
.font-normal\! {
--tw-font-weight: var(--font-weight-normal) !important;
font-weight: var(--font-weight-normal) !important;
}
.font-semibold {
--tw-font-weight: var(--font-weight-semibold);
font-weight: var(--font-weight-semibold);
}
.font-semibold\! {
--tw-font-weight: var(--font-weight-semibold) !important;
font-weight: var(--font-weight-semibold) !important;
}
.text-nowrap {
text-wrap: nowrap;
}
.text-wrap {
text-wrap: wrap;
}
.text-\[\#0E1011\] {
color: #0E1011;
}
.text-\[\#0E1011\]\! {
color: #0E1011 !important;
}
.text-\[\#4D5154\] {
color: #4D5154;
}
.text-\[\#4D5154\]\! {
color: #4D5154 !important;
}
.text-\[\#6A6D70\] {
color: #6A6D70;
}
.text-\[\#212529\]\! {
color: #212529 !important;
}
.text-\[\#FF642C\] {
color: #FF642C;
}
.text-\[\#FF642C\]\! {
color: #FF642C !important;
}
.text-\[\#FFF\] {
color: #FFF;
}
.text-\[\#FFF\]\! {
color: #FFF !important;
}
.text-transparent {
color: transparent;
}
.text-white {
color: var(--color-white);
}
.text-white\! {
color: var(--color-white) !important;
}
.capitalize {
text-transform: capitalize;
}
.lowercase {
text-transform: lowercase;
}
.uppercase {
text-transform: uppercase;
}
.italic {
font-style: italic;
}
.underline {
text-decoration-line: underline;
}
.opacity-90 {
opacity: 90%;
}
.shadow {
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.shadow-lg {
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.shadow-none {
--tw-shadow: 0 0 #0000;
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.shadow-sm {
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
.outline {
outline-style: var(--tw-outline-style);
outline-width: 1px;
}
.blur {
--tw-blur: blur(8px);
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}
.filter {
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}
.transition {
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
transition-duration: var(--tw-duration, var(--default-transition-duration));
}
.transition-\[stroke\] {
transition-property: stroke;
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
transition-duration: var(--tw-duration, var(--default-transition-duration));
}
.transition-all {
transition-property: all;
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
transition-duration: var(--tw-duration, var(--default-transition-duration));
}
.transition-colors {
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
transition-duration: var(--tw-duration, var(--default-transition-duration));
}
.transition-opacity {
transition-property: opacity;
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
transition-duration: var(--tw-duration, var(--default-transition-duration));
}
.transition-transform {
transition-property: transform, translate, scale, rotate;
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
transition-duration: var(--tw-duration, var(--default-transition-duration));
}
.duration-200 {
--tw-duration: 200ms;
transition-duration: 200ms;
}
.duration-300 {
--tw-duration: 300ms;
transition-duration: 300ms;
}
.ease-in-out {
--tw-ease: var(--ease-in-out);
transition-timing-function: var(--ease-in-out);
}
.outline-none {
--tw-outline-style: none;
outline-style: none;
}
.outline-none\! {
--tw-outline-style: none !important;
outline-style: none !important;
}
.group-hover\:bg-\[\#E5322B\] {
&:is(:where(.group):hover *) {
@media (hover: hover) {
background-color: #E5322B;
}
}
}
.group-hover\:stroke-\[\#E5322B\] {
&:is(:where(.group):hover *) {
@media (hover: hover) {
stroke: #E5322B;
}
}
}
.group-hover\:text-\[\#E5322B\]\! {
&:is(:where(.group):hover *) {
@media (hover: hover) {
color: #E5322B !important;
}
}
}
.group-hover\:text-\[\#FF642C\] {
&:is(:where(.group):hover *) {
@media (hover: hover) {
color: #FF642C;
}
}
}
.group-hover\:text-\[\#FF642C\]\! {
&:is(:where(.group):hover *) {
@media (hover: hover) {
color: #FF642C !important;
}
}
}
.group-hover\:text-\[\#FFF\]\! {
&:is(:where(.group):hover *) {
@media (hover: hover) {
color: #FFF !important;
}
}
}
.group-hover\:text-white\! {
&:is(:where(.group):hover *) {
@media (hover: hover) {
color: var(--color-white) !important;
}
}
}
.hover\:bg-\[\#E5322B\]\! {
&:hover {
@media (hover: hover) {
background-color: #E5322B !important;
}
}
}
.hover\:bg-\[\#FFF\] {
&:hover {
@media (hover: hover) {
background-color: #FFF;
}
}
}
.hover\:bg-\[\#FFF\]\! {
&:hover {
@media (hover: hover) {
background-color: #FFF !important;
}
}
}
.hover\:bg-\[linear-gradient\(90deg\,\#E5322B_68\.94\%\,\#FF642C_100\%\)\] {
&:hover {
@media (hover: hover) {
background-image: linear-gradient(90deg,#E5322B 68.94%,#FF642C 100%);
}
}
}
.hover\:bg-\[linear-gradient\(90deg\,_\#FF642C_0\%\,_\#FF642C_64\.62\%\)\]\! {
&:hover {
@media (hover: hover) {
background-image: linear-gradient(90deg, #FF642C 0%, #FF642C 64.62%) !important;
}
}
}
.hover\:text-\[\#FFF\]\! {
&:hover {
@media (hover: hover) {
color: #FFF !important;
}
}
}
.hover\:opacity-100 {
&:hover {
@media (hover: hover) {
opacity: 100%;
}
}
}
.focus\:border-\[\#FF642C\]\! {
&:focus {
border-color: #FF642C !important;
}
}
.focus\:ring-0 {
&:focus {
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
}
.focus\:ring-0\! {
&:focus {
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor) !important;
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow) !important;
}
}
.focus\:outline-none\! {
&:focus {
--tw-outline-style: none !important;
outline-style: none !important;
}
}
.focus-visible\:outline-none\! {
&:focus-visible {
--tw-outline-style: none !important;
outline-style: none !important;
}
}
.active\:border-\[\#FF642C\]\! {
&:active {
border-color: #FF642C !important;
}
}
.sm\:w-\[262px\] {
@media (width >= 640px) {
width: 262px;
}
}
.sm\:grid-cols-2 {
@media (width >= 640px) {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
.sm\:flex-row {
@media (width >= 640px) {
flex-direction: row;
}
}
.md\:grid-cols-2 {
@media (width >= 768px) {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
.lg\:col-start-2 {
@media (width >= 993px) {
grid-column-start: 2;
}
}
.lg\:block {
@media (width >= 993px) {
display: block;
}
}
.lg\:grid {
@media (width >= 993px) {
display: grid;
}
}
.lg\:hidden {
@media (width >= 993px) {
display: none;
}
}
.lg\:h-\[380px\] {
@media (width >= 993px) {
height: 380px;
}
}
.lg\:max-h-\[665px\]\! {
@media (width >= 993px) {
max-height: 665px !important;
}
}
.lg\:w-1\/4 {
@media (width >= 993px) {
width: calc(1 / 4 * 100%);
}
}
.lg\:w-fit {
@media (width >= 993px) {
width: fit-content;
}
}
.lg\:w-full\! {
@media (width >= 993px) {
width: 100% !important;
}
}
.lg\:max-w-\[325px\] {
@media (width >= 993px) {
max-width: 325px;
}
}
.lg\:max-w-\[355px\] {
@media (width >= 993px) {
max-width: 355px;
}
}
.lg\:max-w-\[379px\] {
@media (width >= 993px) {
max-width: 379px;
}
}
.lg\:max-w-\[426px\] {
@media (width >= 993px) {
max-width: 426px;
}
}
.lg\:max-w-\[450px\] {
@media (width >= 993px) {
max-width: 450px;
}
}
.lg\:max-w-\[640px\] {
@media (width >= 993px) {
max-width: 640px;
}
}
.lg\:max-w-\[664px\] {
@media (width >= 993px) {
max-width: 664px;
}
}
.lg\:grid-cols-2 {
@media (width >= 993px) {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
.lg\:grid-cols-3 {
@media (width >= 993px) {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
.lg\:grid-cols-4 {
@media (width >= 993px) {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
}
.lg\:flex-col\! {
@media (width >= 993px) {
flex-direction: column !important;
}
}
.lg\:flex-row {
@media (width >= 993px) {
flex-direction: row;
}
}
.lg\:flex-row\! {
@media (width >= 993px) {
flex-direction: row !important;
}
}
.lg\:items-center {
@media (width >= 993px) {
align-items: center;
}
}
.lg\:bg-transparent {
@media (width >= 993px) {
background-color: transparent;
}
}
.lg\:px-0 {
@media (width >= 993px) {
padding-inline: calc(var(--spacing) * 0);
}
}
.lg\:py-20 {
@media (width >= 993px) {
padding-block: calc(var(--spacing) * 20);
}
}
.lg\:pt-\[170px\] {
@media (width >= 993px) {
padding-top: 170px;
}
}
.lg\:pb-\[150px\] {
@media (width >= 993px) {
padding-bottom: 150px;
}
}
.lg\:text-\[32px\]\! {
@media (width >= 993px) {
font-size: 32px !important;
}
}
.lg\:text-\[70px\] {
@media (width >= 993px) {
font-size: 70px;
}
}
.\[\&_p\]\:m-0\! {
& p {
margin: calc(var(--spacing) * 0) !important;
}
}
.\[\&\>p\]\:m-0\! {
&>p {
margin: calc(var(--spacing) * 0) !important;
}
}
}
@font-face {
font-family: 'montserrat';
src: url(//www.fp-santagema.es/wp-content/themes/santagema/fonts/Montserrat/Montserrat-SemiBold.ttf);
font-weight: 600;
}
@font-face {
font-family: 'montserrat';
src: url(//www.fp-santagema.es/wp-content/themes/santagema/fonts/Montserrat/Montserrat-Medium.ttf);
font-weight: 500;
}
@font-face {
font-family: 'montserrat';
src: url(//www.fp-santagema.es/wp-content/themes/santagema/fonts/Montserrat/Montserrat-Regular.ttf);
font-weight: 400;
}
@font-face {
font-family: 'montserrat';
src: url(//www.fp-santagema.es/wp-content/themes/santagema/fonts/Montserrat/Montserrat-Bold.ttf);
font-weight: 700;
}
@layer utilities {
.container1 {
max-width: var(--container-width);
margin-inline: auto;
@media (max-width:993px) {
padding-inline: 12px;
}
}
.container2 {
max-width: 1246px;
margin-inline: auto;
}
}
.hero {
.logo-hero {
right: 0;
@media (max-width: 992px) {
right: initial;
left: 0;
}
}
}
.slide-em {
border-radius: 6.881px;
background: #FFF;
box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.08);
}
.form1 {
.gform_required_legend {
display: none;
}
.large {
border-radius: 8px !important;
border: 1px solid rgba(255, 255, 255, 0.32) !important;
background: rgba(255, 255, 255, 0.08) !important;
}
.large::placeholder {
color: #FFF;
}
.gfield_label {
color: #FFF !important;
}
.gfield_required {
color: #FFF !important;
}
.gform_fields {
gap: 8px !important;
}
.gform-field-label {
color: #FFF !important;
a {
color: #FFF !important;
text-decoration: underline !important;
}
}
.gform_button {
background-color: #FFF !important;
color: #0E1011 !important;
text-transform: uppercase !important;
transition: all 0.3s ease-in-out;
border-radius: 8px !important;
&:hover {
background-color: #E5322B !important;
color: #FFF !important;
}
}
}
.grid-home {
@media (max-width: 600px) {
min-width: 650px;
overflow-x: scroll;
}
}
.grid-home::-webkit-scrollbar {
width: 0px;
height: 0px;
}
.alumni-left-text {
h3 {
font-size: 26px !important;
font-family: 'montserrat' !important;
font-weight: 700 !important;
margin: 0;
padding-bottom: 16px;
}
}
.alumni-left-text ul {
list-style: none;
padding-left: 0;
margin: 0;
}
.alumni-left-text li {
position: relative;
padding-left: 40px;
margin-bottom: 12px;
}
.alumni-left-text li:last-child {
margin-bottom: 0;
}
.alumni-left-text li::before {
content: "";
position: absolute;
left: 0;
top: 2px;
width: 29px;
height: 28px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='28' viewBox='0 0 29 28' fill='none'%3E%3Cg clip-path='url(%23clip0_14787_920)'%3E%3Cpath d='M26.243 12.754V13.892C26.242 16.5594 25.3787 19.155 23.7821 21.2917C22.1854 23.4284 19.9409 24.9918 17.3831 25.7487C14.8254 26.5056 12.0915 26.4155 9.5892 25.4917C7.08688 24.568 4.95017 22.8602 3.49772 20.6229C2.04527 18.3857 1.35489 15.7389 1.52954 13.0772C1.70419 10.4156 2.73451 7.88167 4.46685 5.8534C6.1992 3.82513 8.54075 2.41115 11.1423 1.82232C13.7439 1.2335 16.4661 1.50138 18.903 2.58601' stroke='%23FFA333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M26.243 3.82202L14.744 15.333L11.294 11.883' stroke='%23FFA333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_14787_920'%3E%3Crect width='28.364' height='27.774' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}
.linea {
margin-left: calc(-50vw + 50%);
margin-right: calc(-50vw + 50%);
max-width: 100vw;
width: auto;
}
.form-tecnico {
.gfield_required_text {
display: none !important;
}
.large::placeholder {
color: #4D5154 !important;
font-size: 12px !important;
}
.gfield_select {
color: #4D5154 !important;
font-size: 12px !important;
}
.gform-theme--foundation .gform_fields {
row-gap: 16px !important;
}
.gform_button {
padding: 16px !important;
border-radius: 5px !important;
background: linear-gradient(90deg, #E5322B 68.94%, #FF642C 100%);
font-size: 16px !important;
text-transform: uppercase !important;
transition: all 0.3s ease-in-out !important;
&:hover {
background: linear-gradient(90deg, #FF642C 68.94%, #E5322B 100%);
}
}
.gform-field-label {
color: #4D5154 !important;
a {
color: #4D5154 !important;
text-decoration: underline;
}
}
}
.distribuidor::-webkit-scrollbar {
width: 0px;
height: 0px;
}
.inst {
.swiper-button-prev, .swiper-button-next {
bottom: initial !important;
left: 0 !important;
right: initial !important;
color: transparent !important;
opacity: 1 !important;
cursor: pointer !important;
pointer-events: all !important;
position: relative !important;
svg {
width: revert-layer !important;
}
@media (max-width:993px) {
top: 10px !important;
}
}
.swiper-button-next:after {
content: "";
}
.swiper-button-prev:after {
content: "";
}
.prev-inst {
right: initial !important;
left: 0px !important;
}
.next-inst {
right: initial !important;
left: 5px !important;
}
}
@property --tw-rotate-x {
syntax: "*";
inherits: false;
}
@property --tw-rotate-y {
syntax: "*";
inherits: false;
}
@property --tw-rotate-z {
syntax: "*";
inherits: false;
}
@property --tw-skew-x {
syntax: "*";
inherits: false;
}
@property --tw-skew-y {
syntax: "*";
inherits: false;
}
@property --tw-border-style {
syntax: "*";
inherits: false;
initial-value: solid;
}
@property --tw-gradient-position {
syntax: "*";
inherits: false;
}
@property --tw-gradient-from {
syntax: "<color>";
inherits: false;
initial-value: #0000;
}
@property --tw-gradient-via {
syntax: "<color>";
inherits: false;
initial-value: #0000;
}
@property --tw-gradient-to {
syntax: "<color>";
inherits: false;
initial-value: #0000;
}
@property --tw-gradient-stops {
syntax: "*";
inherits: false;
}
@property --tw-gradient-via-stops {
syntax: "*";
inherits: false;
}
@property --tw-gradient-from-position {
syntax: "<length-percentage>";
inherits: false;
initial-value: 0%;
}
@property --tw-gradient-via-position {
syntax: "<length-percentage>";
inherits: false;
initial-value: 50%;
}
@property --tw-gradient-to-position {
syntax: "<length-percentage>";
inherits: false;
initial-value: 100%;
}
@property --tw-leading {
syntax: "*";
inherits: false;
}
@property --tw-font-weight {
syntax: "*";
inherits: false;
}
@property --tw-shadow {
syntax: "*";
inherits: false;
initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
syntax: "*";
inherits: false;
}
@property --tw-shadow-alpha {
syntax: "<percentage>";
inherits: false;
initial-value: 100%;
}
@property --tw-inset-shadow {
syntax: "*";
inherits: false;
initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
syntax: "*";
inherits: false;
}
@property --tw-inset-shadow-alpha {
syntax: "<percentage>";
inherits: false;
initial-value: 100%;
}
@property --tw-ring-color {
syntax: "*";
inherits: false;
}
@property --tw-ring-shadow {
syntax: "*";
inherits: false;
initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
syntax: "*";
inherits: false;
}
@property --tw-inset-ring-shadow {
syntax: "*";
inherits: false;
initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
syntax: "*";
inherits: false;
}
@property --tw-ring-offset-width {
syntax: "<length>";
inherits: false;
initial-value: 0px;
}
@property --tw-ring-offset-color {
syntax: "*";
inherits: false;
initial-value: #fff;
}
@property --tw-ring-offset-shadow {
syntax: "*";
inherits: false;
initial-value: 0 0 #0000;
}
@property --tw-outline-style {
syntax: "*";
inherits: false;
initial-value: solid;
}
@property --tw-blur {
syntax: "*";
inherits: false;
}
@property --tw-brightness {
syntax: "*";
inherits: false;
}
@property --tw-contrast {
syntax: "*";
inherits: false;
}
@property --tw-grayscale {
syntax: "*";
inherits: false;
}
@property --tw-hue-rotate {
syntax: "*";
inherits: false;
}
@property --tw-invert {
syntax: "*";
inherits: false;
}
@property --tw-opacity {
syntax: "*";
inherits: false;
}
@property --tw-saturate {
syntax: "*";
inherits: false;
}
@property --tw-sepia {
syntax: "*";
inherits: false;
}
@property --tw-drop-shadow {
syntax: "*";
inherits: false;
}
@property --tw-drop-shadow-color {
syntax: "*";
inherits: false;
}
@property --tw-drop-shadow-alpha {
syntax: "<percentage>";
inherits: false;
initial-value: 100%;
}
@property --tw-drop-shadow-size {
syntax: "*";
inherits: false;
}
@property --tw-duration {
syntax: "*";
inherits: false;
}
@property --tw-ease {
syntax: "*";
inherits: false;
}
@layer properties {
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
*, ::before, ::after, ::backdrop {
--tw-rotate-x: initial;
--tw-rotate-y: initial;
--tw-rotate-z: initial;
--tw-skew-x: initial;
--tw-skew-y: initial;
--tw-border-style: solid;
--tw-gradient-position: initial;
--tw-gradient-from: #0000;
--tw-gradient-via: #0000;
--tw-gradient-to: #0000;
--tw-gradient-stops: initial;
--tw-gradient-via-stops: initial;
--tw-gradient-from-position: 0%;
--tw-gradient-via-position: 50%;
--tw-gradient-to-position: 100%;
--tw-leading: initial;
--tw-font-weight: initial;
--tw-shadow: 0 0 #0000;
--tw-shadow-color: initial;
--tw-shadow-alpha: 100%;
--tw-inset-shadow: 0 0 #0000;
--tw-inset-shadow-color: initial;
--tw-inset-shadow-alpha: 100%;
--tw-ring-color: initial;
--tw-ring-shadow: 0 0 #0000;
--tw-inset-ring-color: initial;
--tw-inset-ring-shadow: 0 0 #0000;
--tw-ring-inset: initial;
--tw-ring-offset-width: 0px;
--tw-ring-offset-color: #fff;
--tw-ring-offset-shadow: 0 0 #0000;
--tw-outline-style: solid;
--tw-blur: initial;
--tw-brightness: initial;
--tw-contrast: initial;
--tw-grayscale: initial;
--tw-hue-rotate: initial;
--tw-invert: initial;
--tw-opacity: initial;
--tw-saturate: initial;
--tw-sepia: initial;
--tw-drop-shadow: initial;
--tw-drop-shadow-color: initial;
--tw-drop-shadow-alpha: 100%;
--tw-drop-shadow-size: initial;
--tw-duration: initial;
--tw-ease: initial;
}
}
}