@font-face
{
    font-family: "Montserrat";
    src: url(/fonts/Montserrat-Variable.ttf?7e687123cd4528224ce5a4daf9a8141e);
}

@font-face
{
    font-family: "Raleway";
    src: url(/fonts/Raleway-Variable.ttf?e14d84ccec6be3ff19e3f22ffbad917d);
}

@font-face
{
    font-family: "Roboto";
    src: url(/fonts/Roboto-Thin.ttf?a732a12eb077422324070eba5dd22533);
    font-weight: 200;
}
@font-face
{
    font-family: "Roboto";
    src: url(/fonts/Roboto-Light.ttf?333da16a3f3cc391d0876c6d773efc6f);
    font-weight: 300;
}
@font-face
{
    font-family: "Roboto";
    src: url(/fonts/Roboto-Medium.ttf?7c8d04cd831df3033c8a96a2668d645e);
    font-weight: 400;
}
@font-face
{
    font-family: "Roboto";
    src: url(/fonts/Roboto-Regular.ttf?fc2b5060f7accec5cf74437196c1b027);
    font-weight: 500;
}
@font-face
{
    font-family: "Roboto";
    src: url(/fonts/Roboto-Bold.ttf?f80816a5455d171f948d98c32f20c46e);
    font-weight: 600;
}

body {
    max-width: 100vw;
    font-family: 'Roboto' !important;
    color: #a8927b;
    overflow-x: hidden;
    font-variant-numeric: lining-nums;
    font-size: 16px;
}

.text-\[48px\] {
    line-height: 3.5rem;
}

.font-roboto {
    font-family: Roboto !important;
}
.font-raleway {
    font-family: Raleway !important;
}
.font-montserrat {
    font-family: Montserrat !important;
}

html {
    max-width: 100vw;
    overflow-x: hidden;
}

:root {
    --swiper-pagination-color: #F20519;
    --swiper-pagination-bullet-inactive-color: rgba(223, 176, 109, 0.671);
    --swiper-pagination-bullet-width: 20px;
    --swiper-pagination-bullet-height: 20px;
    --theme-color-primary: #F20519;
    --theme-color-secondary: #303030;
}


.property-block .thumb {
    background-size: 100% !important;
    transition: 3s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}

.property-block:hover .thumb {
    background-size: 140% !important;
}

.property-block .price,
.property-block .btn-more {
    transition: .3s ease 0s;
}

.property-block:hover .price {
    color: #FFFFFF !important;
    background-color: var(--theme-color-secondary) !important;
}

.property-block:hover .btn-more {
    color: #FFFFFF !important;
    background-color: var(--theme-color-secondary);
}

.property-block.new .btn-more, .btn-red-gradient {
    background: linear-gradient(to right, #F20519, #9B030F);
}

.property-block.new :hover .btn-more, .btn-red-gradient:hover {
    background: linear-gradient(to right, #F20519, #F20519);
}

.bg-primary-gradient {
    background: radial-gradient(#4A4A4A, #303030);
}

.no-match {
    color: #303030;
}

#header {
    border-bottom-width: 2px;
    border-bottom-style: solid;
    transition: .3s ease 0s;
    background-color: transparent;
}

#header:not(.bg-\[\#303030\]) {
    border-bottom-color: transparent;
}

#header li {
    position: relative;
}

#header a {
    transition: color 0.3s ease;; /* Cor de destaque */
}

/* Efeito hover no link */
#header.bg-\[\#303030\] a:hover, #header.bg-\[\#303030\] span:hover, #header a.active, #header span.active {
    color: #F20519 ; /* Cor de destaque */
}

/* Destaque inferior no hover */
#header li:not(.default)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F20519 ; /* Cor do destaque */
    transition: width 0.3s ease;
}

#header li:not(.default):hover::after {
    width: 100%;
}

#header .btn-property:hover {
    color: #FFFFFF !important;
    background-color: #595959 !important;
    transition: .3s ease 0s;
}


@keyframes animate {
    80% {
        stroke: #F6F6F6;
        fill: transparent;
        stroke-dashoffset: 0;
        /* contorno totalmente desenhado */
    }

    70% {
        stroke: #F6F6F6;
        fill: transparent;
        stroke-dashoffset: 0;
    }

    96% {
        stroke: #F6F6F6;
        fill: #F6F6F6;
        /* só aqui o preenchimento aparece */
        stroke-dashoffset: 0;
    }

    100% {
        stroke: transparent;
        /* stroke some depois do fill estar visível */
        fill: #F6F6F6;
        stroke-dashoffset: 0;
    }
}

@keyframes animate2 {
    80% {
        stroke: #E32029;
        fill: transparent;
        stroke-dashoffset: 0;
        /* contorno totalmente desenhado */
    }

    70% {
        stroke: #E32029;
        fill: transparent;
        stroke-dashoffset: 0;
    }

    96% {
        stroke: #E32029;
        fill: #E32029;
        /* só aqui o preenchimento aparece */
        stroke-dashoffset: 0;
    }

    100% {
        stroke: transparent;
        /* stroke some depois do fill estar visível */
        fill: #E32029;
        stroke-dashoffset: 0;
    }
}

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

    90% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        z-index: -1;
    }
}

@keyframes show {
    0% {
        transform: scale(.5);
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

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

#loader {
    z-index: 999;
    opacity: 1;

    svg {
        width: 500px;
        height: 500px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);

        .line-1,
        .line-2 {
            stroke: #F6F6F6;
            stroke-width: 3px;
            fill: transparent;
            stroke-dasharray: 960;
            stroke-dashoffset: 960;
            transition: .5s ease 0s;
            animation: animate 3s ease 0.5s forwards;
            /* animation: animate 2s steps(1, end) forwards; */
        }

        .line-2 {
            animation: animate2 3s ease 0.5s forwards;
            stroke: #E32029;
        }
    }
}

#loader.loaded {
    animation: .5s ease 0s forwards 1 loading;
}

#loader img {
    animation: 5s ease 0s forwards 1 show;
}

/*
! tailwindcss v3.4.3 | 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.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  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: Playfair, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
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. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. 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-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
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-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: 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,
input:where([type='button']),
input:where([type='reset']),
input:where([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;
}

/*
Reset default styling for dialogs.
*/
dialog {
  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 images 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-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --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-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::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-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --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-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

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

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

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
.pointer-events-none {
  pointer-events: none !important;
}
.fixed {
  position: fixed !important;
}
.absolute {
  position: absolute !important;
}
.relative {
  position: relative !important;
}
.-bottom-5 {
  bottom: -1.25rem !important;
}
.-left-8 {
  left: -2rem !important;
}
.-right-1 {
  right: -0.25rem !important;
}
.-right-8 {
  right: -2rem !important;
}
.bottom-0 {
  bottom: 0px !important;
}
.bottom-16 {
  bottom: 4rem !important;
}
.bottom-3 {
  bottom: 0.75rem !important;
}
.bottom-5 {
  bottom: 1.25rem !important;
}
.left-0 {
  left: 0px !important;
}
.left-10 {
  left: 2.5rem !important;
}
.right-0 {
  right: 0px !important;
}
.right-5 {
  right: 1.25rem !important;
}
.top-0 {
  top: 0px !important;
}
.top-3 {
  top: 0.75rem !important;
}
.top-\[110px\] {
  top: 110px !important;
}
.top-\[175px\] {
  top: 175px !important;
}
.top-\[4rem\] {
  top: 4rem !important;
}
.top-full {
  top: 100% !important;
}
.-z-10 {
  z-index: -10 !important;
}
.z-0 {
  z-index: 0 !important;
}
.z-10 {
  z-index: 10 !important;
}
.z-20 {
  z-index: 20 !important;
}
.z-30 {
  z-index: 30 !important;
}
.z-40 {
  z-index: 40 !important;
}
.z-50 {
  z-index: 50 !important;
}
.z-\[60\] {
  z-index: 60 !important;
}
.col-span-full {
  grid-column: 1 / -1 !important;
}
.mx-6 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}
.my-20 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}
.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}
.-ml-px {
  margin-left: -1px !important;
}
.-mt-px {
  margin-top: -1px !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-10 {
  margin-bottom: 2.5rem !important;
}
.mb-16 {
  margin-bottom: 4rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-20 {
  margin-bottom: 5rem !important;
}
.mb-3 {
  margin-bottom: 0.75rem !important;
}
.mb-4 {
  margin-bottom: 1rem !important;
}
.mb-5 {
  margin-bottom: 1.25rem !important;
}
.mb-6 {
  margin-bottom: 1.5rem !important;
}
.mb-8 {
  margin-bottom: 2rem !important;
}
.me-2 {
  margin-inline-end: 0.5rem !important;
}
.ml-3 {
  margin-left: 0.75rem !important;
}
.ml-4 {
  margin-left: 1rem !important;
}
.mr-1 {
  margin-right: 0.25rem !important;
}
.ms-2 {
  margin-inline-start: 0.5rem !important;
}
.ms-auto {
  margin-inline-start: auto !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-10 {
  margin-top: 2.5rem !important;
}
.mt-16 {
  margin-top: 4rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-20 {
  margin-top: 5rem !important;
}
.mt-3 {
  margin-top: 0.75rem !important;
}
.mt-4 {
  margin-top: 1rem !important;
}
.mt-5 {
  margin-top: 1.25rem !important;
}
.mt-6 {
  margin-top: 1.5rem !important;
}
.mt-8 {
  margin-top: 2rem !important;
}
.line-clamp-\[2\] {
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}
.line-clamp-\[3\] {
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
}
.line-clamp-\[4\] {
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 4 !important;
}
.block {
  display: block !important;
}
.inline-block {
  display: inline-block !important;
}
.flex {
  display: flex !important;
}
.inline-flex {
  display: inline-flex !important;
}
.table {
  display: table !important;
}
.grid {
  display: grid !important;
}
.hidden {
  display: none !important;
}
.h-16 {
  height: 4rem !important;
}
.h-5 {
  height: 1.25rem !important;
}
.h-6 {
  height: 1.5rem !important;
}
.h-7 {
  height: 1.75rem !important;
}
.h-\[125px\] {
  height: 125px !important;
}
.h-\[138px\] {
  height: 138px !important;
}
.h-\[140px\] {
  height: 140px !important;
}
.h-\[15px\] {
  height: 15px !important;
}
.h-\[175px\] {
  height: 175px !important;
}
.h-\[20px\] {
  height: 20px !important;
}
.h-\[215px\] {
  height: 215px !important;
}
.h-\[24px\] {
  height: 24px !important;
}
.h-\[250px\] {
  height: 250px !important;
}
.h-\[25px\] {
  height: 25px !important;
}
.h-\[30px\] {
  height: 30px !important;
}
.h-\[335px\] {
  height: 335px !important;
}
.h-\[340px\] {
  height: 340px !important;
}
.h-\[350px\] {
  height: 350px !important;
}
.h-\[35px\] {
  height: 35px !important;
}
.h-\[360px\] {
  height: 360px !important;
}
.h-\[38px\] {
  height: 38px !important;
}
.h-\[390px\] {
  height: 390px !important;
}
.h-\[40px\] {
  height: 40px !important;
}
.h-\[48px\] {
  height: 48px !important;
}
.h-\[530px\] {
  height: 530px !important;
}
.h-\[60px\] {
  height: 60px !important;
}
.h-\[62px\] {
  height: 62px !important;
}
.h-\[74px\] {
  height: 74px !important;
}
.h-\[75px\] {
  height: 75px !important;
}
.h-auto {
  height: auto !important;
}
.h-full {
  height: 100% !important;
}
.h-screen {
  height: 100vh !important;
}
.max-h-full {
  max-height: 100% !important;
}
.min-h-\[56px\] {
  min-height: 56px !important;
}
.min-h-screen {
  min-height: 100vh !important;
}
.w-10\/12 {
  width: 83.333333% !important;
}
.w-11\/12 {
  width: 91.666667% !important;
}
.w-16 {
  width: 4rem !important;
}
.w-3\/12 {
  width: 25% !important;
}
.w-4\/12 {
  width: 33.333333% !important;
}
.w-5 {
  width: 1.25rem !important;
}
.w-5\/12 {
  width: 41.666667% !important;
}
.w-6 {
  width: 1.5rem !important;
}
.w-6\/12 {
  width: 50% !important;
}
.w-7 {
  width: 1.75rem !important;
}
.w-7\/12 {
  width: 58.333333% !important;
}
.w-8\/12 {
  width: 66.666667% !important;
}
.w-9\/12 {
  width: 75% !important;
}
.w-\[11px\] {
  width: 11px !important;
}
.w-\[138px\] {
  width: 138px !important;
}
.w-\[15px\] {
  width: 15px !important;
}
.w-\[175px\] {
  width: 175px !important;
}
.w-\[205px\] {
  width: 205px !important;
}
.w-\[20px\] {
  width: 20px !important;
}
.w-\[235px\] {
  width: 235px !important;
}
.w-\[250px\] {
  width: 250px !important;
}
.w-\[252px\] {
  width: 252px !important;
}
.w-\[25px\] {
  width: 25px !important;
}
.w-\[30px\] {
  width: 30px !important;
}
.w-\[350px\] {
  width: 350px !important;
}
.w-\[35px\] {
  width: 35px !important;
}
.w-\[360px\] {
  width: 360px !important;
}
.w-\[38px\] {
  width: 38px !important;
}
.w-\[40px\] {
  width: 40px !important;
}
.w-\[41px\] {
  width: 41px !important;
}
.w-\[60px\] {
  width: 60px !important;
}
.w-\[62px\] {
  width: 62px !important;
}
.w-\[74px\] {
  width: 74px !important;
}
.w-\[75px\] {
  width: 75px !important;
}
.w-\[80px\] {
  width: 80px !important;
}
.w-\[8px\] {
  width: 8px !important;
}
.w-auto {
  width: auto !important;
}
.w-full {
  width: 100% !important;
}
.w-screen {
  width: 100vw !important;
}
.min-w-\[10px\] {
  min-width: 10px !important;
}
.max-w-7xl {
  max-width: 80rem !important;
}
.max-w-\[190px\] {
  max-width: 190px !important;
}
.max-w-\[448px\] {
  max-width: 448px !important;
}
.max-w-\[810px\] {
  max-width: 810px !important;
}
.max-w-\[90\%\] {
  max-width: 90% !important;
}
.max-w-\[unset\] {
  max-width: unset !important;
}
.max-w-full {
  max-width: 100% !important;
}
.flex-1 {
  flex: 1 1 0% !important;
}
.shrink-0 {
  flex-shrink: 0 !important;
}
.translate-x-full {
  --tw-translate-x: 100% !important;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}
.scale-100 {
  --tw-scale-x: 1 !important;
  --tw-scale-y: 1 !important;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}
.cursor-default {
  cursor: default !important;
}
.cursor-pointer {
  cursor: pointer !important;
}
.select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}
.select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}
.resize {
  resize: both !important;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-col {
  flex-direction: column !important;
}
.flex-col-reverse {
  flex-direction: column-reverse !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.items-start {
  align-items: flex-start !important;
}
.items-end {
  align-items: flex-end !important;
}
.items-center {
  align-items: center !important;
}
.items-baseline {
  align-items: baseline !important;
}
.justify-end {
  justify-content: flex-end !important;
}
.justify-center {
  justify-content: center !important;
}
.justify-between {
  justify-content: space-between !important;
}
.justify-items-center {
  justify-items: center !important;
}
.gap-1 {
  gap: 0.25rem !important;
}
.gap-10 {
  gap: 2.5rem !important;
}
.gap-16 {
  gap: 4rem !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-3 {
  gap: 0.75rem !important;
}
.gap-4 {
  gap: 1rem !important;
}
.gap-5 {
  gap: 1.25rem !important;
}
.gap-6 {
  gap: 1.5rem !important;
}
.gap-8 {
  gap: 2rem !important;
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important;
}
.self-center {
  align-self: center !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.text-ellipsis {
  text-overflow: ellipsis !important;
}
.whitespace-nowrap {
  white-space: nowrap !important;
}
.text-nowrap {
  text-wrap: nowrap !important;
}
.rounded {
  border-radius: 0.25rem !important;
}
.rounded-\[15px\] {
  border-radius: 15px !important;
}
.rounded-\[25px\] {
  border-radius: 25px !important;
}
.rounded-full {
  border-radius: 9999px !important;
}
.rounded-lg {
  border-radius: 0.5rem !important;
}
.rounded-md {
  border-radius: 0.375rem !important;
}
.rounded-xl {
  border-radius: 0.75rem !important;
}
.rounded-b-xl {
  border-bottom-right-radius: 0.75rem !important;
  border-bottom-left-radius: 0.75rem !important;
}
.rounded-l-md {
  border-top-left-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}
.rounded-r-md {
  border-top-right-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
}
.rounded-t-xl {
  border-top-left-radius: 0.75rem !important;
  border-top-right-radius: 0.75rem !important;
}
.rounded-bl-md {
  border-bottom-left-radius: 0.375rem !important;
}
.rounded-br-md {
  border-bottom-right-radius: 0.375rem !important;
}
.rounded-tl-md {
  border-top-left-radius: 0.375rem !important;
}
.rounded-tr-md {
  border-top-right-radius: 0.375rem !important;
}
.border {
  border-width: 1px !important;
}
.border-2 {
  border-width: 2px !important;
}
.border-\[2px\] {
  border-width: 2px !important;
}
.border-b-2 {
  border-bottom-width: 2px !important;
}
.border-b-4 {
  border-bottom-width: 4px !important;
}
.border-b-8 {
  border-bottom-width: 8px !important;
}
.border-b-\[14px\] {
  border-bottom-width: 14px !important;
}
.border-r {
  border-right-width: 1px !important;
}
.border-t-\[11px\] {
  border-top-width: 11px !important;
}
.border-\[\#65656\] {
  border-color: #65656 !important;
}
.border-\[\#BFBFBF\] {
  --tw-border-opacity: 1 !important;
  border-color: rgb(191 191 191 / var(--tw-border-opacity)) !important;
}
.border-\[\#F2F2F2\] {
  --tw-border-opacity: 1 !important;
  border-color: rgb(242 242 242 / var(--tw-border-opacity)) !important;
}
.border-black {
  --tw-border-opacity: 1 !important;
  border-color: rgb(0 0 0 / var(--tw-border-opacity)) !important;
}
.border-gray-300 {
  --tw-border-opacity: 1 !important;
  border-color: rgb(209 213 219 / var(--tw-border-opacity)) !important;
}
.border-green-800 {
  --tw-border-opacity: 1 !important;
  border-color: rgb(22 101 52 / var(--tw-border-opacity)) !important;
}
.border-red-800 {
  --tw-border-opacity: 1 !important;
  border-color: rgb(153 27 27 / var(--tw-border-opacity)) !important;
}
.border-transparent {
  border-color: transparent !important;
}
.border-white {
  --tw-border-opacity: 1 !important;
  border-color: rgb(255 255 255 / var(--tw-border-opacity)) !important;
}
.border-b-\[\#F20519\] {
  --tw-border-opacity: 1 !important;
  border-bottom-color: rgb(242 5 25 / var(--tw-border-opacity)) !important;
}
.bg-\[\#0000007e\] {
  background-color: #0000007e !important;
}
.bg-\[\#000000b8\] {
  background-color: #000000b8 !important;
}
.bg-\[\#25D366\] {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(37 211 102 / var(--tw-bg-opacity)) !important;
}
.bg-\[\#2b2b2b\] {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(43 43 43 / var(--tw-bg-opacity)) !important;
}
.bg-\[\#30303054\] {
  background-color: #30303054 !important;
}
.bg-\[\#30303099\] {
  background-color: #30303099 !important;
}
.bg-\[\#303030\] {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(48 48 48 / var(--tw-bg-opacity)) !important;
}
.bg-\[\#303030bf\] {
  background-color: #303030bf !important;
}
.bg-\[\#3FAAD7\] {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(63 170 215 / var(--tw-bg-opacity)) !important;
}
.bg-\[\#535353\] {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(83 83 83 / var(--tw-bg-opacity)) !important;
}
.bg-\[\#F20519\] {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(242 5 25 / var(--tw-bg-opacity)) !important;
}
.bg-\[\#F2F2F2\] {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(242 242 242 / var(--tw-bg-opacity)) !important;
}
.bg-\[\#FF9922\] {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 153 34 / var(--tw-bg-opacity)) !important;
}
.bg-\[\#FFDEE1\] {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 222 225 / var(--tw-bg-opacity)) !important;
}
.bg-\[\#ff757e\] {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 117 126 / var(--tw-bg-opacity)) !important;
}
.bg-black {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity)) !important;
}
.bg-gray-100 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity)) !important;
}
.bg-gray-800 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity)) !important;
}
.bg-green-200 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(187 247 208 / var(--tw-bg-opacity)) !important;
}
.bg-red-200 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity)) !important;
}
.bg-red-50 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity)) !important;
}
.bg-red-500 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity)) !important;
}
.bg-red-800 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(153 27 27 / var(--tw-bg-opacity)) !important;
}
.bg-transparent {
  background-color: transparent !important;
}
.bg-white {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
}
.from-gray-700 {
  --tw-gradient-from: #374151 var(--tw-gradient-from-position) !important;
  --tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}
.from-gray-700\/50 {
  --tw-gradient-from: rgb(55 65 81 / 0.5) var(--tw-gradient-from-position) !important;
  --tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}
.via-transparent {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position) !important;
  --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to) !important;
}
.bg-cover {
  background-size: cover !important;
}
.bg-\[100\%_70\%\] {
  background-position: 100% 70% !important;
}
.bg-center {
  background-position: center !important;
}
.bg-no-repeat {
  background-repeat: no-repeat !important;
}
.fill-\[\#0bc231\] {
  fill: #0bc231 !important;
}
.fill-\[\#303030\] {
  fill: #303030 !important;
}
.fill-\[\#858585\] {
  fill: #858585 !important;
}
.fill-\[\#F20519\] {
  fill: #F20519 !important;
}
.fill-\[\#F2F2F2\] {
  fill: #F2F2F2 !important;
}
.fill-\[\#FFFFFF\] {
  fill: #FFFFFF !important;
}
.fill-white {
  fill: #fff !important;
}
.stroke-gray-400 {
  stroke: #9ca3af !important;
}
.stroke-gray-600 {
  stroke: #4b5563 !important;
}
.stroke-red-500 {
  stroke: #ef4444 !important;
}
.p-0 {
  padding: 0px !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 0.75rem !important;
}
.p-6 {
  padding: 1.5rem !important;
}
.p-8 {
  padding: 2rem !important;
}
.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}
.px-10 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}
.px-16 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}
.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}
.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}
.px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.px-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.py-14 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}
.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-20 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}
.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.pb-3 {
  padding-bottom: 0.75rem !important;
}
.pb-4 {
  padding-bottom: 1rem !important;
}
.pb-72 {
  padding-bottom: 18rem !important;
}
.pe-1 {
  padding-inline-end: 0.25rem !important;
}
.pe-10 {
  padding-inline-end: 2.5rem !important;
}
.pe-2 {
  padding-inline-end: 0.5rem !important;
}
.pe-5 {
  padding-inline-end: 1.25rem !important;
}
.ps-1 {
  padding-inline-start: 0.25rem !important;
}
.ps-2 {
  padding-inline-start: 0.5rem !important;
}
.pt-10 {
  padding-top: 2.5rem !important;
}
.pt-20 {
  padding-top: 5rem !important;
}
.pt-5 {
  padding-top: 1.25rem !important;
}
.pt-\[13rem\] {
  padding-top: 13rem !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.text-start {
  text-align: start !important;
}
.text-end {
  text-align: end !important;
}
.text-\[0\.75rem\] {
  font-size: 0.75rem !important;
}
.text-\[0\.8rem\] {
  font-size: 0.8rem !important;
}
.text-\[10px\] {
  font-size: 10px !important;
}
.text-\[11px\] {
  font-size: 11px !important;
}
.text-\[12px\] {
  font-size: 12px !important;
}
.text-\[13px\] {
  font-size: 13px !important;
}
.text-\[14px\] {
  font-size: 14px !important;
}
.text-\[16px\] {
  font-size: 16px !important;
}
.text-\[175px\] {
  font-size: 175px !important;
}
.text-\[18px\] {
  font-size: 18px !important;
}
.text-\[22px\] {
  font-size: 22px !important;
}
.text-\[23px\] {
  font-size: 23px !important;
}
.text-\[24px\] {
  font-size: 24px !important;
}
.text-\[26px\] {
  font-size: 26px !important;
}
.text-\[28px\] {
  font-size: 28px !important;
}
.text-\[38px\] {
  font-size: 38px !important;
}
.text-base {
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}
.text-lg {
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}
.text-sm {
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}
.text-xl {
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
}
.font-bold {
  font-weight: 700 !important;
}
.font-light {
  font-weight: 300 !important;
}
.font-medium {
  font-weight: 500 !important;
}
.font-normal {
  font-weight: 400 !important;
}
.font-semibold {
  font-weight: 600 !important;
}
.font-thin {
  font-weight: 100 !important;
}
.uppercase {
  text-transform: uppercase !important;
}
.capitalize {
  text-transform: capitalize !important;
}
.leading-10 {
  line-height: 2.5rem !important;
}
.leading-5 {
  line-height: 1.25rem !important;
}
.leading-6 {
  line-height: 1.5rem !important;
}
.leading-7 {
  line-height: 1.75rem !important;
}
.leading-loose {
  line-height: 2 !important;
}
.leading-relaxed {
  line-height: 1.625 !important;
}
.tracking-\[1px\] {
  letter-spacing: 1px !important;
}
.tracking-tight {
  letter-spacing: -0.025em !important;
}
.text-\[\#303030\] {
  --tw-text-opacity: 1 !important;
  color: rgb(48 48 48 / var(--tw-text-opacity)) !important;
}
.text-\[\#646464\] {
  --tw-text-opacity: 1 !important;
  color: rgb(100 100 100 / var(--tw-text-opacity)) !important;
}
.text-\[\#858585\] {
  --tw-text-opacity: 1 !important;
  color: rgb(133 133 133 / var(--tw-text-opacity)) !important;
}
.text-\[\#997f6f\] {
  --tw-text-opacity: 1 !important;
  color: rgb(153 127 111 / var(--tw-text-opacity)) !important;
}
.text-\[\#BFBFBF\] {
  --tw-text-opacity: 1 !important;
  color: rgb(191 191 191 / var(--tw-text-opacity)) !important;
}
.text-\[\#F20519\] {
  --tw-text-opacity: 1 !important;
  color: rgb(242 5 25 / var(--tw-text-opacity)) !important;
}
.text-\[\#aaa\] {
  --tw-text-opacity: 1 !important;
  color: rgb(170 170 170 / var(--tw-text-opacity)) !important;
}
.text-black {
  --tw-text-opacity: 1 !important;
  color: rgb(0 0 0 / var(--tw-text-opacity)) !important;
}
.text-gray-500 {
  --tw-text-opacity: 1 !important;
  color: rgb(107 114 128 / var(--tw-text-opacity)) !important;
}
.text-gray-600 {
  --tw-text-opacity: 1 !important;
  color: rgb(75 85 99 / var(--tw-text-opacity)) !important;
}
.text-gray-700 {
  --tw-text-opacity: 1 !important;
  color: rgb(55 65 81 / var(--tw-text-opacity)) !important;
}
.text-gray-900 {
  --tw-text-opacity: 1 !important;
  color: rgb(17 24 39 / var(--tw-text-opacity)) !important;
}
.text-green-800 {
  --tw-text-opacity: 1 !important;
  color: rgb(22 101 52 / var(--tw-text-opacity)) !important;
}
.text-red-600 {
  --tw-text-opacity: 1 !important;
  color: rgb(220 38 38 / var(--tw-text-opacity)) !important;
}
.text-red-800 {
  --tw-text-opacity: 1 !important;
  color: rgb(153 27 27 / var(--tw-text-opacity)) !important;
}
.text-white {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
.underline {
  text-decoration-line: underline !important;
}
.antialiased {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}
.opacity-0 {
  opacity: 0 !important;
}
.opacity-100 {
  opacity: 1 !important;
}
.opacity-20 {
  opacity: 0.2 !important;
}
.opacity-50 {
  opacity: 0.5 !important;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1) !important;
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25) !important;
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1) !important;
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}
.shadow-gray-500\/20 {
  --tw-shadow-color: rgb(107 114 128 / 0.2) !important;
  --tw-shadow: var(--tw-shadow-colored) !important;
}
.ring-gray-300 {
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity)) !important;
}
.ring-white {
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity)) !important;
}
.brightness-50 {
  --tw-brightness: brightness(.5) !important;
  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) !important;
}
.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) !important;
}
.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px) !important;
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important;
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important;
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
.transition-all {
  transition-property: all !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
.duration-150 {
  transition-duration: 150ms !important;
}
.duration-200 {
  transition-duration: 200ms !important;
}
.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.selection\:bg-red-500 *::-moz-selection {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity)) !important;
}
.selection\:bg-red-500 *::selection {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity)) !important;
}
.selection\:text-white *::-moz-selection {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
.selection\:text-white *::selection {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
.selection\:bg-red-500::-moz-selection {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity)) !important;
}
.selection\:bg-red-500::selection {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity)) !important;
}
.selection\:text-white::-moz-selection {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
.selection\:text-white::selection {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
.hover\:bg-\[\#303030\]:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(48 48 48 / var(--tw-bg-opacity)) !important;
}
.hover\:bg-\[\#F20519\]:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(242 5 25 / var(--tw-bg-opacity)) !important;
}
.hover\:text-\[\#303030\]:hover {
  --tw-text-opacity: 1 !important;
  color: rgb(48 48 48 / var(--tw-text-opacity)) !important;
}
.hover\:text-\[\#FFFFFF\]:hover {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
.hover\:text-gray-400:hover {
  --tw-text-opacity: 1 !important;
  color: rgb(156 163 175 / var(--tw-text-opacity)) !important;
}
.hover\:text-gray-500:hover {
  --tw-text-opacity: 1 !important;
  color: rgb(107 114 128 / var(--tw-text-opacity)) !important;
}
.hover\:text-gray-700:hover {
  --tw-text-opacity: 1 !important;
  color: rgb(55 65 81 / var(--tw-text-opacity)) !important;
}
.hover\:text-gray-900:hover {
  --tw-text-opacity: 1 !important;
  color: rgb(17 24 39 / var(--tw-text-opacity)) !important;
}
.hover\:text-white:hover {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}
.focus\:z-10:focus {
  z-index: 10 !important;
}
.focus\:rounded-sm:focus {
  border-radius: 0.125rem !important;
}
.focus\:border-blue-300:focus {
  --tw-border-opacity: 1 !important;
  border-color: rgb(147 197 253 / var(--tw-border-opacity)) !important;
}
.focus\:outline-none:focus {
  outline: 2px solid transparent !important;
  outline-offset: 2px !important;
}
.focus\:outline:focus {
  outline-style: solid !important;
}
.focus\:outline-2:focus {
  outline-width: 2px !important;
}
.focus\:outline-red-500:focus {
  outline-color: #ef4444 !important;
}
.focus\:ring:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}
.active\:bg-gray-100:active {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity)) !important;
}
.active\:text-\[\#303030\]:active {
  --tw-text-opacity: 1 !important;
  color: rgb(48 48 48 / var(--tw-text-opacity)) !important;
}
.active\:text-gray-700:active {
  --tw-text-opacity: 1 !important;
  color: rgb(55 65 81 / var(--tw-text-opacity)) !important;
}
.group:hover .group-hover\:stroke-gray-600 {
  stroke: #4b5563 !important;
}
@media (prefers-reduced-motion: no-preference) {

  .motion-safe\:hover\:scale-\[1\.01\]:hover {
    --tw-scale-x: 1.01 !important;
    --tw-scale-y: 1.01 !important;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
  }
}
@media (min-width: 640px) {

  .sm\:fixed {
    position: fixed !important;
  }

  .sm\:right-0 {
    right: 0px !important;
  }

  .sm\:top-0 {
    top: 0px !important;
  }

  .sm\:ml-0 {
    margin-left: 0px !important;
  }

  .sm\:flex {
    display: flex !important;
  }

  .sm\:hidden {
    display: none !important;
  }

  .sm\:flex-1 {
    flex: 1 1 0% !important;
  }

  .sm\:items-center {
    align-items: center !important;
  }

  .sm\:justify-center {
    justify-content: center !important;
  }

  .sm\:justify-between {
    justify-content: space-between !important;
  }

  .sm\:text-left {
    text-align: left !important;
  }

  .sm\:text-right {
    text-align: right !important;
  }
}
@media (min-width: 768px) {

  .md\:top-\[200px\] {
    top: 200px !important;
  }

  .md\:h-\[100px\] {
    height: 100px !important;
  }

  .md\:h-\[120px\] {
    height: 120px !important;
  }

  .md\:h-\[640px\] {
    height: 640px !important;
  }

  .md\:w-10\/12 {
    width: 83.333333% !important;
  }

  .md\:w-3\/12 {
    width: 25% !important;
  }

  .md\:w-4\/12 {
    width: 33.333333% !important;
  }

  .md\:w-6\/12 {
    width: 50% !important;
  }

  .md\:w-8\/12 {
    width: 66.666667% !important;
  }

  .md\:w-\[25px\] {
    width: 25px !important;
  }

  .md\:w-auto {
    width: auto !important;
  }

  .md\:max-w-full {
    max-width: 100% !important;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .md\:flex-row {
    flex-direction: row !important;
  }

  .md\:px-16 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .md\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .md\:text-\[14px\] {
    font-size: 14px !important;
  }

  .md\:text-\[16px\] {
    font-size: 16px !important;
  }

  .md\:text-\[20px\] {
    font-size: 20px !important;
  }

  .md\:text-\[48px\] {
    font-size: 48px !important;
  }

  .md\:leading-none {
    line-height: 1 !important;
  }
}
@media (min-width: 1024px) {

  .lg\:top-\[225px\] {
    top: 225px !important;
  }

  .lg\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .lg\:my-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .lg\:mb-0 {
    margin-bottom: 0px !important;
  }

  .lg\:mt-10 {
    margin-top: 2.5rem !important;
  }

  .lg\:h-\[120px\] {
    height: 120px !important;
  }

  .lg\:h-\[170px\] {
    height: 170px !important;
  }

  .lg\:h-\[290px\] {
    height: 290px !important;
  }

  .lg\:h-\[36px\] {
    height: 36px !important;
  }

  .lg\:h-\[450px\] {
    height: 450px !important;
  }

  .lg\:h-\[745px\] {
    height: 745px !important;
  }

  .lg\:w-10\/12 {
    width: 83.333333% !important;
  }

  .lg\:w-11\/12 {
    width: 91.666667% !important;
  }

  .lg\:w-3\/12 {
    width: 25% !important;
  }

  .lg\:w-4\/12 {
    width: 33.333333% !important;
  }

  .lg\:w-5\/12 {
    width: 41.666667% !important;
  }

  .lg\:w-6\/12 {
    width: 50% !important;
  }

  .lg\:w-7\/12 {
    width: 58.333333% !important;
  }

  .lg\:w-8\/12 {
    width: 66.666667% !important;
  }

  .lg\:w-\[21\%\] {
    width: 21% !important;
  }

  .lg\:w-\[350px\] {
    width: 350px !important;
  }

  .lg\:w-\[36px\] {
    width: 36px !important;
  }

  .lg\:w-\[410px\] {
    width: 410px !important;
  }

  .lg\:w-\[500px\] {
    width: 500px !important;
  }

  .lg\:w-full {
    width: 100% !important;
  }

  .lg\:max-w-\[31ch\] {
    max-width: 31ch !important;
  }

  .lg\:flex-row {
    flex-direction: row !important;
  }

  .lg\:items-end {
    align-items: flex-end !important;
  }

  .lg\:justify-start {
    justify-content: flex-start !important;
  }

  .lg\:justify-center {
    justify-content: center !important;
  }

  .lg\:gap-0 {
    gap: 0px !important;
  }

  .lg\:gap-5 {
    gap: 1.25rem !important;
  }

  .lg\:gap-8 {
    gap: 2rem !important;
  }

  .lg\:overflow-hidden {
    overflow: hidden !important;
  }

  .lg\:text-ellipsis {
    text-overflow: ellipsis !important;
  }

  .lg\:text-nowrap {
    text-wrap: nowrap !important;
  }

  .lg\:p-8 {
    padding: 2rem !important;
  }

  .lg\:px-14 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .lg\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .lg\:px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .lg\:text-start {
    text-align: start !important;
  }

  .lg\:text-end {
    text-align: end !important;
  }

  .lg\:text-\[32px\] {
    font-size: 32px !important;
  }

  .lg\:font-bold {
    font-weight: 700 !important;
  }

  .lg\:font-semibold {
    font-weight: 600 !important;
  }
}
@media (min-width: 1280px) {

  .xl\:absolute {
    position: absolute !important;
  }

  .xl\:-left-8 {
    left: -2rem !important;
  }

  .xl\:-right-8 {
    right: -2rem !important;
  }

  .xl\:mx-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .xl\:mb-0 {
    margin-bottom: 0px !important;
  }

  .xl\:mb-5 {
    margin-bottom: 1.25rem !important;
  }

  .xl\:mb-8 {
    margin-bottom: 2rem !important;
  }

  .xl\:mt-0 {
    margin-top: 0px !important;
  }

  .xl\:block {
    display: block !important;
  }

  .xl\:flex {
    display: flex !important;
  }

  .xl\:hidden {
    display: none !important;
  }

  .xl\:h-\[190px\] {
    height: 190px !important;
  }

  .xl\:h-\[355px\] {
    height: 355px !important;
  }

  .xl\:h-\[38px\] {
    height: 38px !important;
  }

  .xl\:h-\[460px\] {
    height: 460px !important;
  }

  .xl\:h-\[945px\] {
    height: 945px !important;
  }

  .xl\:w-10\/12 {
    width: 83.333333% !important;
  }

  .xl\:w-11\/12 {
    width: 91.666667% !important;
  }

  .xl\:w-2\/12 {
    width: 16.666667% !important;
  }

  .xl\:w-3\/12 {
    width: 25% !important;
  }

  .xl\:w-4\/12 {
    width: 33.333333% !important;
  }

  .xl\:w-5\/12 {
    width: 41.666667% !important;
  }

  .xl\:w-6\/12 {
    width: 50% !important;
  }

  .xl\:w-7\/12 {
    width: 58.333333% !important;
  }

  .xl\:w-8\/12 {
    width: 66.666667% !important;
  }

  .xl\:w-\[1100px\] {
    width: 1100px !important;
  }

  .xl\:w-\[570px\] {
    width: 570px !important;
  }

  .xl\:w-auto {
    width: auto !important;
  }

  .xl\:w-full {
    width: 100% !important;
  }

  .xl\:max-w-\[570px\] {
    max-width: 570px !important;
  }

  .xl\:flex-row {
    flex-direction: row !important;
  }

  .xl\:flex-col {
    flex-direction: column !important;
  }

  .xl\:flex-nowrap {
    flex-wrap: nowrap !important;
  }

  .xl\:justify-start {
    justify-content: flex-start !important;
  }

  .xl\:gap-0 {
    gap: 0px !important;
  }

  .xl\:rounded-md {
    border-radius: 0.375rem !important;
  }

  .xl\:bg-\[\#00000082\] {
    background-color: #00000082 !important;
  }

  .xl\:p-4 {
    padding: 1rem !important;
  }

  .xl\:px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .xl\:px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .xl\:px-3 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .xl\:px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .xl\:py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .xl\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .xl\:py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .xl\:ps-2 {
    padding-inline-start: 0.5rem !important;
  }

  .xl\:pt-0 {
    padding-top: 0px !important;
  }

  .xl\:text-start {
    text-align: start !important;
  }

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

  .xl\:text-\[14px\] {
    font-size: 14px !important;
  }

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

  .xl\:text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }

  .xl\:font-bold {
    font-weight: 700 !important;
  }
}
@media (min-width: 1536px) {

  .\32xl\:top-\[250px\] {
    top: 250px !important;
  }

  .\32xl\:mx-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .\32xl\:mb-0 {
    margin-bottom: 0px !important;
  }

  .\32xl\:mb-5 {
    margin-bottom: 1.25rem !important;
  }

  .\32xl\:mb-8 {
    margin-bottom: 2rem !important;
  }

  .\32xl\:block {
    display: block !important;
  }

  .\32xl\:h-\[250px\] {
    height: 250px !important;
  }

  .\32xl\:h-\[470px\] {
    height: 470px !important;
  }

  .\32xl\:h-\[500px\] {
    height: 500px !important;
  }

  .\32xl\:h-\[52px\] {
    height: 52px !important;
  }

  .\32xl\:w-10\/12 {
    width: 83.333333% !important;
  }

  .\32xl\:w-11\/12 {
    width: 91.666667% !important;
  }

  .\32xl\:w-2\/12 {
    width: 16.666667% !important;
  }

  .\32xl\:w-5\/12 {
    width: 41.666667% !important;
  }

  .\32xl\:w-7\/12 {
    width: 58.333333% !important;
  }

  .\32xl\:w-8\/12 {
    width: 66.666667% !important;
  }

  .\32xl\:w-\[195px\] {
    width: 195px !important;
  }

  .\32xl\:w-\[52px\] {
    width: 52px !important;
  }

  .\32xl\:w-auto {
    width: auto !important;
  }

  .\32xl\:w-full {
    width: 100% !important;
  }

  .\32xl\:max-w-\[768px\] {
    max-width: 768px !important;
  }

  .\32xl\:flex-row {
    flex-direction: row !important;
  }

  .\32xl\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }

  .\32xl\:flex-nowrap {
    flex-wrap: nowrap !important;
  }

  .\32xl\:justify-start {
    justify-content: flex-start !important;
  }

  .\32xl\:gap-0 {
    gap: 0px !important;
  }

  .\32xl\:gap-2 {
    gap: 0.5rem !important;
  }

  .\32xl\:gap-4 {
    gap: 1rem !important;
  }

  .\32xl\:px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .\32xl\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .\32xl\:px-20 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .\32xl\:text-\[16px\] {
    font-size: 16px !important;
  }
}
.rtl\:flex-row-reverse:where([dir="rtl"], [dir="rtl"] *) {
  flex-direction: row-reverse !important;
}
.rtl\:space-x-reverse:where([dir="rtl"], [dir="rtl"] *) > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 1 !important;
}
@media (prefers-color-scheme: dark) {

  .dark\:border-gray-600 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(75 85 99 / var(--tw-border-opacity)) !important;
  }

  .dark\:bg-gray-800 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity)) !important;
  }

  .dark\:bg-gray-800\/50 {
    background-color: rgb(31 41 55 / 0.5) !important;
  }

  .dark\:bg-gray-900 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity)) !important;
  }

  .dark\:bg-red-800\/20 {
    background-color: rgb(153 27 27 / 0.2) !important;
  }

  .dark\:bg-gradient-to-bl {
    background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important;
  }

  .dark\:stroke-gray-600 {
    stroke: #4b5563 !important;
  }

  .dark\:text-gray-300 {
    --tw-text-opacity: 1 !important;
    color: rgb(209 213 219 / var(--tw-text-opacity)) !important;
  }

  .dark\:text-gray-400 {
    --tw-text-opacity: 1 !important;
    color: rgb(156 163 175 / var(--tw-text-opacity)) !important;
  }

  .dark\:text-gray-600 {
    --tw-text-opacity: 1 !important;
    color: rgb(75 85 99 / var(--tw-text-opacity)) !important;
  }

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

  .dark\:shadow-none {
    --tw-shadow: 0 0 #0000 !important;
    --tw-shadow-colored: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:ring-1 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:ring-inset {
    --tw-ring-inset: inset !important;
  }

  .dark\:ring-white\/5 {
    --tw-ring-color: rgb(255 255 255 / 0.05) !important;
  }

  .dark\:hover\:text-white:hover {
    --tw-text-opacity: 1 !important;
    color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:border-blue-700:focus {
    --tw-border-opacity: 1 !important;
    border-color: rgb(29 78 216 / var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:border-blue-800:focus {
    --tw-border-opacity: 1 !important;
    border-color: rgb(30 64 175 / var(--tw-border-opacity)) !important;
  }

  .dark\:active\:bg-gray-700:active {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity)) !important;
  }

  .dark\:active\:text-gray-300:active {
    --tw-text-opacity: 1 !important;
    color: rgb(209 213 219 / var(--tw-text-opacity)) !important;
  }

  .group:hover .dark\:group-hover\:stroke-gray-400 {
    stroke: #9ca3af !important;
  }
}

