.flex {
    display: flex;
}

.block {
    display: block;
}

.grid {
    display: grid;
}

.fixed {
    position: fixed;
}

.none {
    display: none;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

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

.col-span-1 {
    grid-column: span 1 / span 1;
}

.col-span-2 {
    grid-column: span 2 / span 2;
}

.w-full {
    width: 100%;
}

.w-auto {
    width: auto;
}

.w-fit {
    width: fit-content;
}

.w-2 {
    width: 0.5rem;
}

.w-3 {
    width: 0.75rem;
}

.w-4 {
    width: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-7 {
    width: 1.75rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.w-14 {
    width: 3.5rem;
}

.w-16 {
    width: 4rem;
}

.w-18 {
    width: 4.5rem;
}

.w-20 {
    width: 5rem;
}

.w-22 {
    width: 5.5rem;
}

.w-24 {
    width: 6rem;
}

.w-28 {
    width: 7rem;
}

.w-32 {
    width: 8rem;
}

.w-40 {
    width: 10rem;
}

.w-44 {
    width: 11rem;
}

.w-48 {
    width: 12rem;
}

.w-54 {
    width: 13.5rem;
}

.w-56 {
    width: 14rem;
}

.w-60 {
    width: 15rem;
}

.w-64 {
    width: 16rem;
}

.w-72 {
    width: 18rem;
}

.w-74 {
    width: 18.5rem;
}

.w-76 {
    width: 19rem;
}

.w-80 {
    width: 20rem;
}

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

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

.shrink {
    flex-shrink: 1;
}

.shrink-0 {
    flex-shrink: 0;
}

.max-w-0 {
    max-width: 0;
}

.max-w-2 {
    max-width: 0.5rem;
}

.max-w-3 {
    max-width: 0.75rem;
}

.max-w-4 {
    max-width: 1rem;
}

.max-w-5 {
    max-width: 1.25rem;
}

.max-w-6 {
    max-width: 1.5rem;
}

.max-w-7 {
    max-width: 1.75rem;
}

.max-w-8 {
    max-width: 2rem;
}

.max-w-10 {
    max-width: 2.5rem;
}

.max-w-12 {
    max-width: 3rem;
}

.max-w-14 {
    max-width: 3.5rem;
}

.max-w-16 {
    max-width: 4rem;
}

.max-w-18 {
    max-width: 4.5rem;
}

.max-w-20 {
    max-width: 5rem;
}

.max-w-22 {
    max-width: 5.5rem;
}

.max-w-24 {
    max-width: 6rem;
}

.max-w-28 {
    max-width: 7rem;
}

.max-w-32 {
    max-width: 8rem;
}

.max-w-60 {
    max-width: 15rem;
}

.max-w-72 {
    max-width: 18rem;
}

.max-w-80 {
    max-width: 20rem;
}

.max-w-96 {
    max-width: 24rem;
}

.max-w-xs {
    max-width: 20rem;
}

.max-w-sm {
    max-width: 24rem;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-lg {
    max-width: 32rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-h-12 {
    max-height: 3rem;
}

.max-h-14 {
    max-height: 3.5rem;
}

.max-h-16 {
    max-height: 4rem;
}

.max-h-20 {
    max-height: 5rem;
}

.max-h-24 {
    max-height: 6rem;
}

.max-h-28 {
    max-height: 7rem;
}

.max-h-60 {
    max-height: 15rem;
}

.max-h-96 {
    max-height: 24rem;
}

.max-h-1xl {
    max-height: 30rem;
}

.max-h-2xl {
    max-height: 42rem;
}

.max-h-3xl {
    max-height: 48rem;
}

.max-h-4xl {
    max-height: 56rem;
}

.max-h-5xl {
    max-height: 64rem;
}

.max-h-6xl {
    max-height: 72rem;
}

.min-h-0 {
    min-height: 0;
}

.min-h-xs {
    min-height: 20rem;
}

.min-h-lg {
    min-height: 28rem;
}

.min-h-1xl {
    min-height: 30rem;
}

.min-h-2xl {
    min-height: 42rem;
}

.min-h-3xl {
    min-height: 48rem;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-visible {
    overflow: visible;
}

.overflow-clip {
    overflow: clip;
}

.overflow-x-scroll {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.overflow-x-scroll::-webkit-scrollbar {
    display: none;
}

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

.overflow-y-scroll {
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.overflow-y-scroll::-webkit-scrollbar {
    display: none;
}

.overflow-y-clip {
    overflow-y: clip;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

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

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

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

.justify-center.mobile {
    justify-content: start;
}

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

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

.object-top {
    object-position: top;
}

.object-bottom {
    object-position: bottom;
}

.rounded-lg {
    border-radius: 0.375rem;
}

.rounded-xl {
    border-radius: 0.5rem;
}

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

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

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 15px 15px 10px -10px rgba(0, 0, 0, 0.1), 0 2px 10px -2px rgba(0, 0, 0, 0.1)
}

.border {
    border-width: 1px;
}

.border-top {
    border-top-width: 1px;
}

.border-right {
    border-right-width: 1px;
}

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

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

.border-8 {
    border-width: 8px;
}

.hover\:border:hover {
    border-width: 1px;
}

.hover\:border-black:hover {
    border-color: #000;
}

.hover\:border-white:hover {
    border-color: #FFF;
}

.hover\:border-\[\#0073E6\]:hover {
    border-color: #0073E6;
}

.border-box {
    box-sizing: border-box;
}

.border-bottom {
    border-bottom-width: 1px;
}

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

.border-dashed {
    border-style: dashed;
}

.border-transparent {
    border-color: transparent;
}

.border-slate-400 {
    border-color: rgb(108 125 142);
}

.border-slate-500 {
    background-color: rgb(158 174 191);
}

.border-slate-600 {
    border-color: rgb(71 85 105);
}

.border-white {
    border-color: #fff;
}

.border-black {
    border-color: #000;
}

.border-pink {
    border-color: #FF107F;
}

.border-blue {
    border-color: #0273E6;
}

.border-\[\#A70EDA\] {
    border-color: #A70EDA;
}

.border-\[\#FF7F29\] {
    border-color: #FF7F29;
}

.border-\[\#F2F2FA\] {
    border-color: #F2F2FA;
}

.border-\[\#0073E6\] {
    border-color: #0073E6;
}

.border-\[\#660EBA\] {
    border-color: #660EBA;
}

.border-\[\#0273E6\] {
    border-color: #0273E6;
}

.border-\[\#FF1494\] {
    border-color: #FF1494;
}

.border-\[\#C66CFF\] {
    border-color: #C66CFF;
}

.border-\[\#D1D5DB\] {
    border-color: #D1D5DB;
}

.border-\[\#e9d5ff\] {
    border-color: #e9d5ff;
}

.border-\[\#CCC\] {
    border-color: #CCC;
}

.border-\[\#33FF57\] {
    border-color: #33FF57;
}

.border-\[\#4BC0C0\] {
    border-color: #4BC0C0;
}

.list-disc {
    list-style-type: disc;
}

.underline {
    text-decoration: underline !important;
}

.no-underline {
    text-decoration: none !important;
}

.overline {
    text-decoration: overline !important;
}

.line-through {
    text-decoration: line-through !important;
}

.underline-dotted {
    text-decoration: underline dotted;
}

.underline-double {
    text-decoration: underline double;
}

.underline-solid {
    text-decoration: underline solid;
}

.underline-dashed {
    text-decoration: underline dashed;
}

.underline-wavy {
    text-decoration: underline wavy;
}

.underline-offset-auto {
    text-underline-offset: auto;
}

.underline-offset-0 {
    text-underline-offset: 0px;
}

.underline-offset-1 {
    text-underline-offset: 1px;
}

.underline-offset-2 {
    text-underline-offset: 2px;
}

.underline-offset-3 {
    text-underline-offset: 3px;
}

.gap-0\.5 {
    gap: 0.125rem;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-7 {
    gap: 1.75rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-10 {
    gap: 2.5rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-16 {
    gap: 4rem;
}

.gap-20 {
    gap: 5rem;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-2\.5 {
    padding: 0.625rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-12 {
    padding: 3rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-3 {
    padding-bottom: 0.75rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.pb-10 {
    padding-bottom: 2.5rem;
}

.pb-12 {
    padding-bottom: 3rem;
}

.pb-16 {
    padding-bottom: 4rem;
}

.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

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

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}

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

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

.py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

.py-3\.5 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

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

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

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

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

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

.py-18 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-22 {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
}

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

.pb-12 {
    padding-bottom: 3rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.pt-0\.5 {
    padding-top: 0.125rem;
}

.pt-1 {
    padding-top: 0.25rem;
}

.pt-1\.5 {
    padding-top: 0.375rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-2\.5 {
    padding-top: 0.625rem;
}

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

.pt-4 {
    padding-top: 1rem;
}

.pt-5 {
    padding-top: 1.25rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.pt-12 {
    padding-top: 3rem;
}

.pt-24 {
    padding-top: 6rem;
}

.pl-4 {
    padding-left: 1rem;
}

.pl-6 {
    padding-left: 1.5rem;
}

.pl-10 {
    padding-left: 2.5rem;
}

.pr-3 {
    padding-right: 0.75rem;
}

.pr-10 {
    padding-right: 2.5rem;
}

.pr-12 {
    padding-right: 3rem;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-100 {
    z-index: 100;
}

.z-999 {
    z-index: 999;
}

.z-9999 {
    z-index: 9999;
}

.h-full {
    height: 100%;
}

.h-fit {
    height: fit-content;
}

.h-px {
    height: 1px;
}

.h-0\.5 {
    height: 0.125rem;
}

.h-2 {
    height: 0.5rem;
}

.h-3 {
    height: 0.75rem;
}

.h-4 {
    height: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.h-7 {
    height: 1.75rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-14 {
    height: 3.5rem;
}

.h-16 {
    height: 4rem;
}

.h-18 {
    height: 4.5rem;
}

.h-20 {
    height: 5rem;
}

.h-22 {
    height: 5.5rem;
}

.h-24 {
    height: 6rem;
}

.h-28 {
    height: 7rem;
}

.h-32 {
    height: 8rem;
}

.h-36 {
    height: 9rem;
}

.h-40 {
    height: 10rem;
}

.h-44 {
    height: 11rem;
}

.h-48 {
    height: 12rem;
}

.h-54 {
    height: 13.5rem;
}

.h-60 {
    height: 15rem;
}

.h-64 {
    height: 16rem;
}

.h-80 {
    height: 20rem;
}

.font-poppins {
    font-family: var(--poppins-font);
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

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

.text-1xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

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

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

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

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

.text-start {
    text-align: start;
}

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

.text-end {
    text-align: end;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

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

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

.text-nowrap {
    text-wrap: nowrap;
}

.text-wrap {
    text-wrap: wrap;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.line-clamp-4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

.text-white {
    color: #FFF;
}

.text-white\/50 {
    color: rgba(255, 255, 255, 0.5);
}

.hover\:text-white:hover {
    color: #FFF;
}

.hover\:text-\[\#FB1FA3\]:hover {
    color: #FB1FA3;
}

.text-gray {
    color: #AAA;
}

.text-\[\#374151\] {
    color: #374151;
}

.text-\[\#505059\] {
    color: #505059;
}

.text-black {
    color: #000;
}

.hover\:text-black:hover {
    color: #000;
}

.text-pink {
    color: #ff004f;
}

.text-\[\#FF0000\] {
    color: #FF0000;
}

.text-\[\#472A83\] {
    color: #472A83;
}

.text-\[\#FF107F\] {
    color: #FF107F;
}

.text-\[\#A70EDA\] {
    color: #A70EDA;
}

.text-\[\#FB1FA3\] {
    color: #FB1FA3;
}

.text-\[\#0073E6\] {
    color: #0073E6;
}

.text-\[\#FF7F29\] {
    color: #FF7F29;
}

.text-blue {
    color: #0273E6;
}

.text-\[\#660EBA\] {
    color: #660EBA;
}

.text-\[\#0273E6\] {
    color: #0273E6;
}

.text-\[\#FF1494\] {
    color: #FF1494;
}

.text-\[\#C66CFF\] {
    color: #C66CFF;
}

.text-\[\#a12fcc\] {
    color: #a12fcc;
}

.hover\:text-\[\#9406b0\]:hover {
    color: #9406b0;
}

.hover\:text-\[\#A70EDA\]:hover {
    color: #A70EDA;
}

.hover\:text-\[\#0073E6\]:hover {
    color: #0073E6;
}

.hover\:text-\[\#660EBA\]:hover {
    color: #660EBA;
}

.hover\:text-\[\#FF7F29\]:hover {
    color: #FF7F29;
}

.bg-transparent {
    background-color: transparent;
}

.bg-neutral-50 {
    background-color: #fafafa;
}

.bg-black {
    background-color: #000;
}

.bg-black-color {
    background-color: hsl(220, 24%, 12%);
}

.bg-black-color-light {
    background-color: hsl(220, 24%, 15%);
}

.bg-black-color-lighten {
    background-color: hsl(220, 20%, 18%);
}

.bg-black\/50 {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-white {
    background-color: #FFF;
}

.bg-white\/25 {
    background-color: rgba(255, 255, 255, 0.25);
}

.bg-white\/30 {
    background-color: rgba(255, 255, 255, 0.3);
}

.bg-white\/50 {
    background-color: rgba(255, 255, 255, 0.5);
}

.bg-gray {
    background-color: #f8f8f8;
}

.bg-\[\#EEE\] {
    background-color: #EEE;
}

.bg-\[\#ECE4FF\] {
    background-color: #ECE4FF;
}

.bg-\[\#C71CFF\] {
    background-color: #C71CFF;
}

.bg-\[\#9057CE\] {
    background-color: #9057CE;
}

.bg-\[\#A70EDA\] {
    background-color: #A70EDA;
}

.bg-\[\#FB1FA3\] {
    background-color: #FB1FA3;
}

.bg-\[\#FF8019\] {
    background-color: #FF8019;
}

.bg-\[\#C18709\] {
    background-color: #C18709;
}

.bg-\[\#FF7F29\] {
    background-color: #FF7F29;
}

.bg-\[\#33FF57\] {
    background-color: #33FF57;
}

.bg-\[\#4BC0C0\] {
    background-color: #4BC0C0;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f0f2f5;
}

.bg-gray-200 {
    background-color: #e5e7eb;
}

.bg-gray-300 {
    background-color: #d1d5db;
}

.bg-slate-100 {
    background-color: rgb(208 220 229);
}

.bg-slate-200 {
    background-color: rgb(158 174 191);
}

.bg-slate-400 {
    background-color: rgb(108 125 142);
}

.bg-slate-600 {
    background-color: rgb(71 85 105);
}

.bg-blue {
    background-color: rgba(51, 138, 255, 0.27);
}

.bg-\[\#F3F4F6\] {
    background-color: #f3f4f6;
}

.bg-\[\#FF107F\] {
    background-color: #FF107F;
}

.bg-\[\#0073E6\] {
    background-color: #0073E6;
}

.bg-\[\#ff004f\] {
    background-color: #ff004f;
}

.bg-\[\#f53639\] {
    background-color: #f53639;
}

.bg-\[\#aa2224\] {
    background-color: #aa2224;
}

.bg-\[\#660EBA\] {
    background-color: #660EBA;
}

.bg-\[\#BA4DDE\] {
    background-color: #BA4DDE;
}

.bg-\[\#a12fcc\] {
    background-color: #a12fcc;
}

.bg-\[\#F2F2FA\] {
    background-color: #F2F2FA;
}

.bg-\[\#8EC228\] {
    background-color: #8EC228;
}

.bg-\[\#4caf50\] {
    background-color: #4caf50;
}

.bg-\[\#0273E6\] {
    background-color: #0273E6;
}

.fill-\[\#0273E6\] {
    fill: #0273E6;
}

.fill-\[\#FF1494\] {
    fill: #FF1494;
}

.fill-\[\#C66CFF\] {
    fill: #C66CFF;
}

.blur {
    filter: blur(4px);
}

.group-hover\:blur-none:hover {
    filter: blur(0px);
}

.backdrop-blur-none {
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.backdrop-blur-md {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.backdrop-blur-lg {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.backdrop-blur-xl {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.backdrop-blur-2xl {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.backdrop-blur-3xl {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.hover\:backdrop-blur-none:hover {
    backdrop-filter: blur(0px);
}

.group-hover\:scale-105:hover {
    transform: scale(1.05);
}

.opacity-50 {
    opacity: 0.5;
}

.transition {
    transition: all 0.3s ease-in-out;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}

.pointer-events-none {
    pointer-events: none;
}

.appearance-none {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
}

.relative {
    position: relative;
}

.group {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.hover\:border-\[\#ff004f\]:hover {
    border-color: #ff004f;
}

.hover\:border-\[\#A70EDA\]:hover {
    border-color: #A70EDA;
}

.hover\:bg-\[\#ff004f\]:hover {
    background-color: #ff004f;
}

.hover\:bg-black:hover {
    background-color: #000;
}

.hover\:bg-white:hover {
    background-color: #FFF;
}

.hover\:bg-black-color:hover {
    background-color: hsl(220, 24%, 12%);
}

.hover\:bg-black-color-light:hover {
    background-color: hsl(220, 24%, 15%);
}

.hover\:bg-black-color-lighten:hover {
    background-color: hsl(220, 20%, 18%);
}

.hover\:bg-transparent:hover {
    background-color: transparent;
}

.hover\:bg-\[\#e00046\]:hover {
    background-color: #e00046;
}

.hover\:bg-\[\#1781eb\]:hover {
    background-color: #1781eb;
}

.hover\:bg-\[\#7810da\]:hover {
    background-color: #7810da;
}

.hover\:bg-\[\#9406b0\]:hover {
    background-color: #9406b0;
}

.hover\:bg-\[\#A70EDA\]:hover {
    background-color: #A70EDA;
}

.hover\:bg-slate-200:hover {
    background-color: rgb(158 174 191);
}

.hover\:bg-\[\#660EBA\]:hover {
    background-color: #660EBA;
}

.hover\:bg-gray-100:hover {
    background-color: #f0f2f5;
}

.hover\:bg-\[\#EEE\]:hover {
    background-color: #EEE;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 0.5s;
}

.right-3 {
    right: 0.75rem;
}

.top-1\/2 {
    top: 50%;
}

.left-1\/2 {
    left: 50%;
}

.top-0 {
    top: 0;
}

.top-2 {
    top: 0.5rem;
}

.top-3 {
    top: 0.75rem;
}

.top-4 {
    top: 1rem;
}

.top-5 {
    top: 1.25rem;
}

.top-6 {
    top: 1.5rem;
}

.top-7 {
    top: 1.75rem;
}

.top-8 {
    top: 2rem;
}

.top-9 {
    top: 2.25rem;
}

.top-10 {
    top: 2.5rem;
}

.top-11 {
    top: 2.75rem;
}

.top-12 {
    top: 3rem;
}

.top-14 {
    top: 3.5rem;
}

.top-16 {
    top: 4rem;
}

.top-20 {
    top: 5rem;
}

.top-full {
    top: 100%;
}

.bottom-0 {
    bottom: 0;
}

.bottom-1 {
    bottom: 0.25rem;
}

.bottom-2 {
    bottom: 0.5rem;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.right-2 {
    right: 0.5rem;
}

.top-1 {
    top: 0.25rem;
}

.bottom-1 {
    bottom: 0.25rem;
}

.left-1 {
    left: 0.25rem;
}

.right-1 {
    right: 0.25rem;
}

.top-2 {
    top: 0.5rem;
}

.bottom-2 {
    bottom: 0.5rem;
}

.left-2 {
    left: 0.5rem;
}

.right-2 {
    right: 0.5rem;
}

.top-3 {
    top: 0.75rem;
}

.bottom-3 {
    bottom: 0.75rem;
}

.left-3 {
    left: 0.75rem;
}

.right-3 {
    right: 0.75rem;
}

.top-4 {
    top: 1rem;
}

.bottom-4 {
    bottom: 1rem;
}

.left-4 {
    left: 1rem;
}

.right-4 {
    right: 1rem;
}

.top-5 {
    top: 1.25rem;
}

.bottom-5 {
    bottom: 1.25rem;
}

.left-5 {
    left: 1.25rem;
}

.right-5 {
    right: 1.25rem;
}

.top-6 {
    top: 1.5rem;
}

.bottom-6 {
    bottom: 1.5rem;
}

.left-6 {
    left: 1.5rem;
}

.right-6 {
    right: 1.5rem;
}

.top-7 {
    top: 1.75rem;
}

.bottom-7 {
    bottom: 1.75rem;
}

.left-7 {
    left: 1.75rem;
}

.right-7 {
    right: 1.75rem;
}

.top-8 {
    top: 2rem;
}

.bottom-8 {
    bottom: 2rem;
}

.left-8 {
    left: 2rem;
}

.right-8 {
    right: 2rem;
}

.bottom-full {
    bottom: 100%;
}

.transform {
    transform: translateY(0);
}

.-translate-y-1\/2 {
    transform: translateY(-50%);
}

.hover\:-translate-y-2:hover {
    transform: translateY(-0.5rem);
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) scale(var(--tw-scale-x), var(--tw-scale-y));
}

.mb-0 {
    margin-bottom: 0;
}

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

.mb-3 {
    margin-bottom: 0.75rem;
}

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

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

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

.mt-0 {
    margin-top: 0;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

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

.mr-0 {
    margin-right: 0;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

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

.ml-0 {
    margin-left: 0;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-3 {
    margin-left: 0.75rem;
}

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

.ml-5 {
    margin-left: 1.25rem;
}

.ml-6 {
    margin-left: 1.5rem;
}

.ml-8 {
    margin-left: 2rem;
}

.ml-10 {
    margin-left: 2.5rem;
}

.hidden {
    display: none;
}

.bg-purple-50 {
    background-color: #f5f3ff;
}

.bg-purple-100 {
    background-color: #ede9fe;
}

.border-purple-100 {
    border-color: #ede9fe;
}

.border-purple-200 {
    border-color: #ddd6fe;
}

.hover\:border-purple-200:hover {
    border-color: #ddd6fe;
}

.text-purple-600 {
    color: #7e22ce;
}

.border-purple-500 {
    border-color: #8b5cf6;
}

.focus\:border-purple-500:focus {
    border-color: #8b5cf6;
}

.focus\:ring-purple-500:focus {
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.5);
}

.bg-purple-600 {
    background-color: #7e22ce;
}

.hover\:bg-purple-700:hover {
    background-color: #6d28d9;
}

.bg-\[\#5a0ca6\] {
    background-color: #5a0ca6;
}

.hover\:bg-\[\#5a0ca6\]:hover {
    background-color: #5a0ca6;
}

.text-gray-600 {
    color: #4b5563;
}

.bg-green-100 {
    background-color: #dcfce7;
}

.border-green-400 {
    border-color: #4ade80;
}

.text-green-700 {
    color: #15803d;
}

.bg-red-100 {
    background-color: #fee2e2;
}

.border-red-400 {
    border-color: #f87171;
}

.text-red-700 {
    color: #b91c1c;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.bg-gray-200 {
    background-color: #e5e7eb;
}

.text-gray-700 {
    color: #374151;
}

.hover\:bg-gray-300:hover {
    background-color: #d1d5db;
}

.rounded-xl {
    border-radius: 0.5rem;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.hover\:shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.transition-all {
    transition-property: all;
}

.duration-300 {
    transition-duration: 300ms;
}

.appearance-custom {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.overflow-hidden {
    overflow: hidden;
}

.space-y-4 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.space-x-3 {
    display: flex;
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.ml-3 {
    margin-left: 0.75rem;
}

/* Estilo customizado para checkbox redondo */
input[type="checkbox"].rounded-full {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="checkbox"].rounded-full:checked {
    background-color: #660EBA;
    border-color: #660EBA;
}

input[type="checkbox"].rounded-full:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
}

input[type="checkbox"].rounded-full:focus {
    box-shadow: 0 0 0 3px rgba(102, 14, 186, 0.3);
}

input[type="checkbox"].rounded-full:hover {
    border-color: #660EBA;
}
