body {
    background: rgb(35, 35, 35);
    color: var(--theme-body-color);
    font-family: var(--theme-font-family);
    overflow-x: hidden;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}


::-webkit-scrollbar {
    background: rgba(31, 31, 31, 1);
    height: 10px;
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--theme-button-background);
}

*::selection {
    background: rgba(255, 255, 255, 0.26);
}

img::selection {
    background: transparent;
}

.navContainer {
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: all ease 0.3s;
}

.mainNavBar {
    background: black;
    color: white;
    font-family: 'Lexend', var(--theme-font-family);
}

.mainNavList {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.mainNavList > li {
    /*margin-right: 5px;*/
}

.mainNavContainer {
    display: flex;
    /*justify-content: end;*/
}

.topbarLink {
    position: relative;
    display: flex;
    align-items: center;
    font-size: .875rem;
    font-weight: normal;
    line-height: 1.5rem;
    padding: .5rem;
    color: inherit;
}

.topbarLink:hover {
    background: rgb(28, 27, 27) !important;
    color: white !important;
}

.topbarLink .navbar-dropdown-img {
    height: 20px;
    margin: 0 10px 0 0;
}


.dropdownDivider {
    height: 0;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid;
    border-color: rgba(255, 255, 255, 0.1);
}

.secondNavContainer {
    padding: 0 20px;
    padding-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#navbarContainer {
    background: rgba(28, 27, 27, 0.28);
    transition: background 0.3s ease;
}

.scrolled {
    background: #101015 !important;
}

#navbarContainer.style-1 {
    padding: 0 20px;
    padding-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#navbarContainer.style-1.sticky {
    padding-top: 0;
}

.secondNavContainer.style-1 .navbar-left {
    display: flex;
    align-items: center;
}

.secondNavContainer .navbar-right {
    display: flex;
    align-items: center;
}

.secondNavContainer .navbar-logo {
    max-height: 75px;
    margin-right: 20px;
}

.secondNavContainer .navbar-item {
    position: relative;
    display: inline-block;
    padding: 5px 5px;
    font-size: 20px;
    margin: 0 5px;
    font-family: 'Lexend', var(--theme-font-family);
    font-weight: bold;
    color: var(--theme-body-color);
}

.secondNavContainer .navbar-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 3px;
    width: 0;
    background: var(--theme-button-background);
    transition: all ease 0.3s;
}

.secondNavContainer .navbar-item:hover::after,
.secondNavContainer .navbar-item.active::after {
    width: 100%;
    transition: all ease 0.3s;
}

.secondNavContainer .navbar-btn {
    margin-left: 10px;
}

/** Navbar left dropdown **/
.secondNavContainer .navbar-dropdown {
    position: relative;
    display: inline-block;
}

.secondNavContainer .navbar-dropdown-btn .arrow {
    margin-left: 10px;
    font-size: 10px;
    transition: all ease 0.3s;
}

.secondNavContainer .selected .arrow {
    transform: rotate(180deg);
    transition: all ease 0.3s;
}

.mainNavList .selected .arrow {
    transform: rotate(180deg);
    transition: all ease 0.3s;
}

.mainNavList .selected + .navbar-dropdown-body {
    top: calc(100%);
    visibility: visible;
    opacity: 1;
    transition: all ease 0.3s;
}

.secondNavContainer .selected + .navbar-dropdown-body {
    top: calc(100% + 17px);
    visibility: visible;
    opacity: 1;
    transition: all ease 0.3s;
}

.mainNavList .navbar-dropdown-body {
    background: rgb(16 16 21 / 95%);
    position: absolute;
    top: calc(100%);
    left: 0;
    right: 0;
    width: 300px;
    opacity: 0;
    overflow: hidden;
    padding: 5px 0;
    visibility: hidden;
    white-space: nowrap;
    min-width: 100%;
    transition: all ease 0.3s;
}

.secondNavContainer .navbar-dropdown-body {
    /*background: var(--theme-dropdown-background);*/
    background: rgb(16 16 21 / 95%);
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    width: 300px;
    opacity: 0;
    overflow: hidden;
    padding: 5px 5px;
    visibility: hidden;
    white-space: nowrap;
    min-width: 100%;
    transition: all ease 0.3s;
}

.secondNavContainer .navbar-dropdown-item {
    display: block;
    padding: 5px 25px;
    border-left: 3px solid transparent;
    color: var(--theme-color);
    transition: all ease 0.2s;
}

.secondNavContainer .navbar-dropdown-item:hover {
    background: var(--theme-navbar-background);
    border-color: var(--theme-button-background);
    transition: all ease 0.2s;
}

.mainNavList .navbar-dropdown-item {
    width: 100%;
    text-align: left;
    color: white;
    padding-left: 8px;
}

.logoutItem {
    color: #ee0000 !important;
}

.logoutItem:hover {
    background: #b20000 !important;
    color: white !important;
}

.mainNavList .navbar-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transition: all ease 0.2s;
    color: white;
}

/** Navbar Right dropdown **/
.secondNavContainer .navbar-right .navbar-dropdown-btn {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 0px;
    color: var(--theme-color);
    border-radius: 5px;
    transition: all ease 0.3s;
}

.secondNavContainer .navbar-right .navbar-dropdown-btn:focus {
    background: transparent;
}

.secondNavContainer .navbar-right .navbar-dropdown-img {
    height: 20px;
    margin: 0 10px 0 0;
}

.mainNavBar .navbar-dropdown-body {
    right: 0;
    left: auto;
    transition: all ease 0.3s;
}

.mainNavList > li {
    position: relative;
}

.mainNavBar .navbar-dropdown-body {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    min-width: 200px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.secondNavContainer .navbar-right .navbar-dropdown-body {
    right: 0;
    left: auto;
    transition: all ease 0.3s;
}

#navbarMobileContainer {
    position: fixed;
    max-height: 100vh;
    overflow-y: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.514);
    padding: 50px;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    transition: all ease 0.3s;
}

#navbarMobileContainer .navbar-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
}

#navbarMobileContainer.active {
    opacity: 1;
    visibility: visible;
    transition: all ease 0.3s;
}

:root {
    --background-url: url(/assets/img/bg01.webp);
    --background-url2: url(/assets/img/bg02.webp);
    --background-url3: url(/assets/img/bg03.webp);
    --background-url4: url(/assets/img/bg04.webp);
    --background-url5: url(/assets/img/bg05.webp);
    --background-url6: url(/assets/img/bg06.webp);
    --background-url7: url(/assets/img/bg07.webp);
    --background-url8: url(/assets/img/bg08.webp);
    --background-url9: url(/assets/img/bg09.webp);
    --background-url10: url(/assets/img/bg10.webp);
}

.authContainer {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background: none; /* on retire le background ici */
    overflow: hidden;
}

.authContainer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(rgba(31, 31, 31, 0.25), rgba(31, 31, 31, 0.90)), var(--background-url) center / cover fixed;
    filter: blur(10px);
    -webkit-filter: blur(10px);
}

.authContainer > * {
    position: relative;
    z-index: 1;
}

.authCard {
    margin-top: 10rem;
    background: rgb(31 35 41 / 77%);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 3rem;
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: cardFloat 0.6s ease-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (min-width: 1367px) and (max-width: 1920px) {
    .authCard {
        margin-top: 12rem !important;
    }
}

@media (min-width: 1921px) and (max-width: 2560px) {
    .authCard {
        margin-top: 20rem !important;
    }
}

@media (min-width: 2560px) {
    .authCard {
        margin-top: 20rem !important;
    }
}

.authSwitcher {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #212121;
    margin-bottom: 1rem;
}

.authSwitcher .btn {
    border: none;
    padding: 12px 24px;
    width: 100%;
    font-family: Lexend;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.authSwitcher .btn:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.authSwitcher .btn:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.authSwitcher .btn:not(.active) {
    background: transparent;
    color: #8b949e;
}

.authSwitcher .btn:not(.active):hover {
    background: #312e2e;
    color: #ff5500;
}

.authSwitcher .btn.active {
    background: linear-gradient(45deg, #ff5500, #ff962f);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.authSwitcher .btn:last-child.active {
    background: linear-gradient(45deg, #ff962f, #ff5500) !important;

}

.authContainer .alert,
.forumContent .alert{
    padding: 0.25rem 0.25rem;
    font-size: 12px;
    font-family: Lexend;
}

.emailVerifyAlert{
    position: fixed;
    right: 0;
    bottom: 0;

    font-size: 12px;
    font-family: Lexend;
    z-index: 10000;
}

.authContainer .alert .bold,
.forumContent .alert .bold{
    font-weight: bold;
}

.header-content .btn,
.authContainer .btn {
    border: none;
    padding: 12px 24px;
    width: 50%;
    font-family: Lexend;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(45deg, #ff5500, #ff962f);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.header-content .btn:hover,
.authContainer button.btn:hover {
    box-shadow: white 0px 0px 3px 2px;
}

.authHeader {
    text-align: center;
    margin-bottom: 1rem;
}

.authHeader h1 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    background: linear-gradient(45deg, #ff5500, #ff8000);
    font-family: Lexend;
    font-weight: bold;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.authHeader p {
    color: #8d8d8d;
    font-family: Lexend;
    font-size: 0.9rem;
}

/* HOME HEADER */
#homeHeader {
    position: relative;
    background-color: #000;
}

#homeHeader .header-badge {
    font-weight: bold;
}

#homeHeader .badge-circle {
    color: var(--theme-button-background);
    font-size: 11px;
}

#homeHeader .badge-value {
    color: var(--theme-button-background);
    font-size: 17px;
}

#homeHeader .header-divider {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
}

#homeHeader.style-1 {
    height: calc(100vh);
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    position: relative;
}

#homeHeader.style-1 .header-content {
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

#homeHeader.style-1 .header-title {
    font-weight: bold;
}

#homeHeader.style-1 .header-logo {
    max-width: 300px;
}

#homeHeader.style-1 .header-socials {
    padding-top: 10;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

#homeHeader.style-1 .header-btns {
    display: flex;
    align-items: center;
    margin-top: 10px;
    justify-content: center;
}


#homeHeader .background-anim {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: kenburns-random 18s ease-in-out infinite alternate;
    filter: blur(3px);
    -webkit-filter: blur(3px);

    transition: opacity 2s;

}

#homeHeader .background-anim:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: cover;
    background-position: center;
    z-index: 0;
    content: "";
    background: linear-gradient(rgba(31, 31, 31, 0.25), rgba(31, 31, 31, 0.85)), var(--background-url) center / cover fixed;

}

@keyframes kenburns-random {
    0% {
        transform: scale(1) translate(0, 0);
    }
    25% {
        transform: scale(1.08) translate(-2%, -1%);
    }
    50% {
        transform: scale(1.12) translate(3%, -2%);
    }
    75% {
        transform: scale(1.09) translate(-1%, 2%);
    }
    100% {
        transform: scale(1.1) translate(0, 0);
    }
}

.mouse-bounce {
    display: inline-block;
    margin-top: 2rem;
    height: 40px; /* au moins la hauteur du SVG */
    overflow: visible; /* important */
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-bounce {
    animation: bounce 1s infinite;
}

#homeHeader .header-content {
    position: relative;
    z-index: 1;
}

/* Header general */
#homeHeader .header-btn {
    background: var(--theme-button-background);
    color: var(--theme-button-color);
    padding: 15px 20px;
    min-width: 200px;
    border: 0;
    font-weight: bold;
    border-radius: 15px;
    position: relative;
    transition: all ease 0.3s;
    animation: pulse 2s infinite;
}

#homeHeader .header-btn:hover {
    background: var(--theme-button-background-2);
    color: var(--theme-button-color);
    transition: all ease 0.3s;
}

#homeHeader .header-btn .ip {
    display: block;
    letter-spacing: 1.2px;
    transition: all ease 0.3s;
}

#homeHeader .header-btn:hover .ip {
    transform: translateY(-7px);
    transition: all ease 0.3s;
}

#homeHeader .header-btn .after {
    position: absolute;
    bottom: 5px;
    left: 0;
    opacity: 0;
    font-size: 12px;
    right: 0;
    transition: all ease 0.3s;
}

#homeHeader .header-btn:hover .after {
    opacity: 1;
    transition: all ease 0.3s;
}

#homeHeader .header-btn.btn-theme-second {
    color: var(--theme-button-second-color);
}

#homeHeader .socials-item {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid white;
    border-radius: 100%;
    margin-right: 10px;
    transition: all ease 0.3s;
}

#homeHeader .socials-item:hover {
    color: black;
    background: white;
    transition: all ease 0.3s;
}

/** banner header **/
#bannerHeader {
    position: relative;
    /*margin-top: var(--navbar-height);*/
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#bannerHeader .header-text {
    font-weight: bold;
    letter-spacing: 3px;
}

#bannerHeader .header-divider {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
}

/** Home News **/
#homeNews {
    display: flex;
    height: 85vh;
    min-height: 400px;
}

#homeNews.header {
    height: 70vh;
}

#homeNews .news-active {
    position: relative;
    margin: 20px;
    flex: 0 0 70%;
    background: black;
    max-height: 100%;
    overflow: hidden;
}

#homeNews .news-active .img {
    background-size: cover;
    background-position: center center;
    height: 100%;
    transition: all ease 0.2s;
}

#homeNews .news-active:hover .img {
    transform: scale(1.05);
    opacity: 0.9;
    transition: all ease 0.2s;
}

#homeNews .news-active .informations {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.418);
    transition: all ease 0.2s;
}

#homeNews .news-active:hover .informations {
    background: rgba(0, 0, 0, 0.651);
    transition: all ease 0.2s;
}

#homeNews .news-active .informations .title {
    margin: 0;
    max-width: 70%;
    color: white;
    font-weight: bold;
}

#homeNews .news-active .informations .text {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    max-height: 4rem;
    margin: 0;
    max-width: 70%;
    color: rgb(194, 194, 194);
    transition: all ease 0.2s;
}

#homeNews .news-active .informations .infobadge {
    background: var(--theme-button-background);
    color: var(--theme-button-color);
    font-weight: bold;
    padding: 5px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: inline-block;
}

#homeNews .news-items {
    flex: 1;
}

#homeNews .news-item {
    display: block;
    position: relative;
    height: calc((100% / 3) - 27px);
    margin-top: 20px;
    background: black;
    margin-right: 20px;
    overflow: hidden;
}

#homeNews .news-item .img {
    background-size: cover;
    background-position: center center;
    height: 100%;
    transition: all ease 0.2s;
}

#homeNews .news-item:hover .img {
    transform: scale(1.05);
    opacity: 0.9;
    transition: all ease 0.2s;
}

#homeNews .news-item .informations {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    right: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.651);
    transition: all ease 0.2s;
}

#homeNews .news-item:hover .informations {
    opacity: 1;
    transition: all ease 0.2s;
}

#homeNews .news-item .informations .title {
    margin: 0;
    color: white;
    font-weight: bold;
}

#homeNews .news-item .informations .text {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    font-size: 13px;
    margin: 0;
    max-height: 4rem;
    color: rgb(194, 194, 194);
    transition: all ease 0.2s;
}

.global-title {
    text-align: center;
    position: relative;
    font-weight: bold;
}

.global-title.left {
    text-align: left;
}

#homeNewsSlider .slide {
    min-height: 500px;
    margin: 0 100px;
    border-top: 10px solid var(--theme-button-background);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    position: relative;
}

#homeNewsSlider .content {
    position: absolute;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.377);
    max-width: 30%;
    backdrop-filter: blur(15px);
    transition: all ease 0.4s;
}

#homeNewsSlider .slide:hover .content {
    background: rgba(0, 0, 0, 0.753);
    transition: all ease 0.4s;
}

#homeNewsSlider .title {
    color: white;
    font-weight: bold;
}

#homeNewsSlider .text {
    margin-top: 30px;
}

#homeNewsSlider .content-btn {
    display: block;
}

/* home content header */
#footerStats {
    position: relative;
    background-attachment: fixed;
}

#footerStats .content-top-divider {
    top: 0;
    position: absolute;
    transform: rotate(180deg);
    left: 0;
    right: 0;
}

#footerStats .content-bottom-divider {
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
}

#footerStats .content {
    display: flex;
    justify-content: center;
}

#footerStats .content-item {
    flex: 1;
    text-align: center;
}

#footerStats .item-title {
    color: var(--theme-button-background);
    font-size: 60px;
    font-weight: bold;
}

#footerStats .item-text {
    font-size: 20px;
}

/** home infos **/
#homeInfos .info-item {
    text-align: center;
    background: var(--theme-navbar-background);
    margin: 0 30px;
    padding: 30px;
}

#homeInfos .info-item i {
    border-bottom: 5px solid var(--theme-button-background);
    padding: 20px;
    border-radius: 100%;
}

#homeInfos .item-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

#homeInfos .item-title {
    font-weight: bold;
}

#homeInfos .item-text {
    opacity: 0.6;
}

#homeDescription {
    text-align: center;
}

#homeDescription p {
    text-align: center;
}

#homeDescription .title {
    font-weight: bold;
}

#footer {
    padding: 20px 0;
    text-align: center;
    background: var(--theme-navbar-background);
}

#bigFooter .footer-text {
    opacity: 0.6;
}

#bigFooter .socials {
    display: flex;
    flex-direction: column;
}

#bigFooter .socials-item {
    display: inline-block;
    padding: 2px 0;
    color: var(--theme-button-background);
    font-weight: bold;
    text-transform: capitalize;
    transition: all ease 0.2s;
}

#bigFooter .socials-item:hover {
    color: var(--theme-button-background-2);
    transform: translateX(10px);
    transition: all ease 0.2s;
}

#bigFooter .socials-item i {
    margin: 0 10px;
    color: white;
    opacity: 0.6;
}

#bigFooter .socials-item .fa-circle {
    color: var(--theme-button-background);
}

#bigFooter .section-title {
    position: relative;
    padding: 10px 0;
}

#bigFooter .section-title::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    height: 3px;
    background: var(--theme-button-background);
    width: 50px;
    border-radius: 3px;
}

#profile .informations {
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid var(--theme-button-background);
}

#profile .informations-title {
    text-align: center;
    background: var(--theme-button-background);
}

#profile .informations-content {
    padding: 10px;
}

#profile h6 {
    font-size: 13px;
}

#post .post-btn {
    display: flex;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
}

#post .comment-info {
    overflow: hidden;
    border-radius: 5px;
}

#post .comment-info-title {
    background: var(--theme-button-background);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#post .comment-info-content {
    border: 2px solid var(--theme-button-background);
    padding: 10px;
}

#post .comment-info h6 {
    font-size: 12px;
}

#cps .click-box {
    position: relative;
    background: black;
    height: 200px;
    border-radius: 30px;
    overflow: hidden;
}

#cps .click-second-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--theme-button-background);
    transition: all ease 0.3s;
}

#cps .click-stat {
    display: block;
    padding: 10px;
    border-radius: 10px;
    background: var(--theme-dropdown-background);
}

#cps .click-text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: bold;
    color: var(--theme-button-color);
    transform: translate(-50%, -50%);
}

#cps .click-text::selection {
    background: transparent;
}

#cps .click-text-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: bold;
    color: var(--theme-button-color);
    transform: translate(-50%, -50%);
    animation: flickerAnimation 1s infinite;
}

#cps .click-text-2::selection {
    background: transparent;
}

#cps .click-box:hover {
    cursor: pointer;
}

#forum i:not(.btn i) {
    color: var(--theme-button-background);
}

#forum .forum-info {
    overflow: hidden;
    border-radius: 5px;
}

#forum .forum-info-title {
    background: var(--theme-button-background);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 0 10px;
}

#forum .forum-info-content {
    border: 2px solid var(--theme-button-background);
    padding: 10px;
}

#forum .forum-info h6 {
    font-size: 12px;
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media only screen and (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

#homeTrailer {
    text-align: center;
}

#homeTrailer iframe {
    width: 800px;
    height: 443px;
    max-width: 100%;
    max-height: 25vw;
    overflow: hidden;
}

#homeTrailer.notext iframe {
    max-height: 40vw;
}

#homeTD {
}

@media only screen and (max-width: 992px) {
    /** topnav **/
    #navbarContainer .navbar-item {
        display: none !important;
    }

    /* home header */
    #homeHeader .header-btns {
        flex-direction: column;
    }

    #homeHeader .header-btn {
        margin: 0 !important;
        margin-bottom: 20px !important;
    }

    #homeHeader .header-socials {
        justify-content: center !important;
    }

    #homeHeader .header-description {
        padding: 0 20px !important;
    }

    #homeHeader .header-content {
        text-align: center !important;
        height: auto !important;
        min-height: auto;
        padding: 30px 0 !important;
    }

    #homeHeader.style-2 .header-content {
        flex-direction: column-reverse;
        justify-content: center;
    }

    #homeHeader.style-3 .header-content {
        flex-direction: column;
        justify-content: center;
    }

    #homeHeader .header-logo {
        max-width: 200px !important;
        margin-top: 50px !important;
    }

    /** news **/
    #homeNews .news-items {
        display: none !important;
    }

    #homeNews .news-active {
        flex: auto !important;
        width: 100%;
    }

    #homeNews {
        max-height: 40vh !important;
    }

    #homeNewsSlider .slide {
        margin: 0 !important;
        min-height: 400px;
    }

    #homeNewsSlider .content {
        max-width: 100%;
    }

    /** footer **/
    #bigFooter {
        text-align: center;
    }

    #footerStats .content {
        display: block !important;
    }

    #bigFooter .section-title::after {
        display: none;
    }

    .classements {
        transform: scale(0.8);
    }

    #homeTrailer {
        position: relative;
        padding-bottom: 56.25%;
    }

    #homeTrailer iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: 800px;
        max-height: 443px !important;
    }
}

.classement .name {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0), 0 0 10px rgba(255, 255, 255, 0),
    0 0 15px rgba(255, 255, 255, 0), 0 0 20px #0000006e, 0 0 30px #00000060,
    0 0 40px #0000006c, 0 0 55px #00000079, 0 0 75px #00000065;
}

.classement img {
    display: block;
    margin: auto;
}

.classement .ranking {
    max-width: 100px;
    margin: auto;
}

.classement .ranking .fill {
    background-size: cover;
    display: flex;

    align-items: center;
    justify-content: center;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0), 0 0 10px rgba(255, 255, 255, 0),
    0 0 15px rgba(255, 255, 255, 0), 0 0 20px #0000006e, 0 0 30px #00000060,
    0 0 40px #0000006c, 0 0 55px #00000079, 0 0 75px #00000065;
    font-weight: bold;
}

.classement .ranking .fill i,
.classement .ranking .fill span {
    margin-top: 5px;
}

.classement h5 span {
    color: var(--theme-button-background);
}

.classement .ranking.one {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
}

.classement .ranking.one .fill {
    padding: 25px 10px;
}

.classement .ranking.one {
    color: var(--body);
}

.classement .ranking.two {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
}

.classement .ranking.two .fill {
    padding: 17px 10px;
}

.classement .ranking.two {
    color: rgb(196, 143, 0);
}

.classement .ranking.three {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
}

.classement .ranking.three {
    color: #494949;
}

.classement .name:nth-child(1) {
    background: var(--theme-button-background);
    text-transform: uppercase;
}

#particles-js,
#particles-js-2,
#particles-js-3 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#loader {
    position: fixed;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--theme-body-background);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    animation: load 1s forwards ease-in-out;
    transition: all ease 0.3s;
}

#loader img {
    width: 200px;
}

@keyframes load {
    0% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        transition: all ease 0.3s;
    }
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.user-html-content img {
    max-width: 100%;
}

.calendar {
    background: linear-gradient(
        260deg,
        rgba(36, 36, 36, 0.123) 0%,
        rgba(0, 0, 0, 0.322) 100%
    ),
    url("https://i.ibb.co/6gHvCT1/h0k-LXJ5yliy-FQDxmgi-K05-ZX5-YOn7n-Cw-Fl4pj-MJJI.png");
    padding: 30px;
    background-size: cover;
    background-position: center center;
    border-radius: 15px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: 0;
    margin-top: 0 !important;
}

.calendar .door {
    background: rgba(255, 255, 255, 0.151);
    backdrop-filter: blur(13px);
    border-radius: 0;
    cursor: default;
}

.calendar .door.enabled {
    cursor: pointer;
}

.calendar .door.enabled:hover {
    animation: shake 1s;

    animation-iteration-count: infinite;
}

.calendar .door.enabled {
    background: var(--theme-button-background);
}

.calendar .door.enabled {
    background: url("/assets/themes/revolution/img/iron.png") !important;
    background-position: center center !important;
    background-size: 100% !important;
}

.calendar .door,
.calendar .door button {
    color: rgb(255, 255, 255) !important;
    text-shadow: var(--theme-button-background) 0px 0px 5px,
    var(--theme-button-background) 0px 0px 10px,
    var(--theme-button-background) 0px 0px 15px,
    var(--theme-button-background) 0px 0px 20px,
    var(--theme-button-background) 0px 0px 30px,
    var(--theme-button-background) 0px 0px 40px,
    var(--theme-button-background) 0px 0px 50px,
    var(--theme-button-background) 0px 0px 75px,
    0px 0px 20px rgba(255, 255, 255, 0);
}

.calendar .day-8 .door.enabled,
.calendar .day-20 .door.enabled {
    background: url("https://i.ibb.co/T46kjX6/Seamless-Christmas-Stripe-Pattern-Vector-Image.jpg") !important;
    background-position: left center !important;
    background-size: 100% !important;
}

.calendar .day-24 .door.enabled,
.calendar .day-23 .door.enabled,
.calendar .day-11 .door.enabled {
    background: url("/assets/themes/revolution/img/diamond.png") !important;
    background-position: center center !important;
    background-size: cover !important;
}

.calendar .day-10 .door.enabled,
.calendar .day-4 .door.enabled,
.calendar .day-2 .door.enabled {
    background: url("https://i.ibb.co/ky5C0gz/unnamed.png") !important;
    background-position: center center !important;
    background-size: cover !important;
}

.calendar .day-13 .door.enabled,
.calendar .day-14 .door.enabled,
.calendar .day-1 .door.enabled {
    background: url("/assets/themes/revolution/img/gold.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
}

.calendar .day-3 .door.enabled {
    background: url("https://i.ibb.co/jJ4Shhk/f344745bd37b52b4eaf0071e1160d070.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
}

.calendar .day-5 .door.enabled,
.calendar .day-19 .door.enabled {
    background: url("https://i.ibb.co/BGk64z0/unnamed.png") !important;
    background-position: center center !important;
    background-size: cover !important;
}

.calendar label {
    height: 115px;
}

.calendar-header {
    background: var(--theme-button-background);
    width: 96%;
    max-width: 900px;
    margin: 2% auto;
    margin-bottom: 0 !important;
    padding: 10px;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.card-img-top {
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
    max-height: 300px;
    min-height: 300px;
    object-fit: contain;
}

.card-img-top-profile {
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
    max-height: 250px;
    min-height: 250px;
    object-fit: contain;
}

#homeContent {
    /*background: rgb(35, 35, 35);*/
    /*transform: translateY(-3rem);*/
}

#homeDescription .title {
    font-family: Lexend;
}

#homeDescription .text {
    font-family: Lexend;
    color: rgba(255, 255, 255, 0.7);
}

.text-white {
    color: white !important;
}

.header-description {
    font-family: Lexend;
}

.background2 {
    background: rgb(31, 31, 31)
}

.sectionTitle {
    font-family: Lexend;
    font-weight: bold;
}

.newsCard {
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.377);
    box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 20px 5px;
    transition: box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.newsCard:hover {
    box-shadow: 0 0 20px 4px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.02);
}

.newsCard img {
    border-radius: 15px 15px 0px 0px;

}

.newsCardList {
    background: rgb(35, 35, 35);
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 20px 5px;
    transition: box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.newsCardList:hover {
    box-shadow: 0 0 20px 4px rgba(255, 255, 255, 0.3);
}

.newsCardList img {
    border-radius: 15px 15px 0px 0px;
    object-fit: cover;

}

.newsCardList .btn {
    border: none;
    padding: 12px 24px;
    width: 45%;
    font-family: Lexend;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(45deg, #ff5500, #ff962f);
    transition: background 0.3s ease;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.newsCardList .btn:hover {
    background: linear-gradient(45deg, #fb691f, #fbae62);
}

#newsContainer .row {
    display: flex;
    align-items: stretch;
}


#newsContainer .row.col-md-4 {
    display: flex;
    flex-direction: column;
}

#newsContainer .newsCard {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#newsContainer .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    font-family: Lexend;
}

#newsContainer .card-title {
    font-family: Lexend;
    font-weight: bold;
    min-height: 48px;
    max-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limite à 2 lignes */
    -webkit-box-orient: vertical;
}

#newsContainer .btn {
    border: none;
    padding: 12px 24px;
    width: 50%;
    font-family: Lexend;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(45deg, #ff5500, #ff962f);
    transition: background 0.3s ease;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#newsContainer .btn:hover {
    background: linear-gradient(45deg, #fb691f, #fbae62);
}

.hubBackground {
    position: relative;
    overflow: hidden;
}

.hubBackground::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(rgba(31, 31, 31, 0.25), rgba(31, 31, 31, 0.90)), var(--background-url) center / cover;
    filter: blur(5px);
    -webkit-filter: blur(5px);
}

.footer {
    background: rgba(0, 0, 0, 1);
    padding: 2rem;
}

.footerTitle {
    text-align: center;
    font-family: Lexend;
    font-weight: bold;
    margin-bottom: 1rem;
}

.lexend {
    font-family: Lexend;
}

.weight-600 {
    font-weight: 600;
}

.background3 {
    background: #0B0B0F;
    flex: 1 0 auto;

}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.shopCard {
    background: rgb(35, 35, 35);
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 20px 5px;
    transition: box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shopCard:hover {
    box-shadow: 0 0 20px 4px rgba(255, 255, 255, 0.3);
}

/* S'assurer que toutes les cartes ont la même hauteur */
.shopCard .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Fixer une hauteur minimale pour le titre pour uniformiser la mise en page */
.shopCard .card-title {
    min-height: 3rem; /* Ajuste selon la taille de police */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Espacement cohérent entre le bouton et le prix */
.shopCard .btn {
    border: none;
    padding: 12px 24px;
    width: 50%;
    font-family: Lexend;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(45deg, #ff5500, #ff962f);
    transition: background 0.3s ease;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.shopCard .btn:hover {
    background: linear-gradient(45deg, #fb691f, #fbae62);
}

.shopCard .card-img-top {
    max-height: 250px !important;
    min-height: 250px !important;
}

.newsCatList a {
    transition: background 0.3s ease;
}

.newsCatList a:first-child {
    border-radius: 10px 10px 0 0;
}

.newsCatList a:last-child {
    border-radius: 0 0 10px 10px;
}

.newsCatList a.active {
    background: linear-gradient(45deg, #ff5500, #ff962f) !important;
}

.newsCatList a:not(.active):hover {
    background: rgb(20, 20, 20);
}

.sidebarLogged .btn {
    border: none;
    padding: 12px 24px;
    width: 100%;
    font-family: Lexend;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(45deg, #ff5500, #ff962f);
    transition: background 0.3s ease;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-top: 0.5rem;
}


.shopContent .modal .btn-theme:hover,
.sidebarLogged .btn:hover {
    background: linear-gradient(45deg, #fb691f, #fbae62);
}

#navbarMobileContainer .btn-theme2,
.emailVerifyAlert .btn-theme2,
.shopCartCard .btn-theme2,
.shopContent .modal .btn-theme2 {
    background: linear-gradient(45deg, #ff5500, #ff962f) !important;
    transition: background 0.3s ease !important;
    color: white;
    font-family: Lexend;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);

}

#navbarMobileContainer .btn-theme2:hover,
.emailVerifyAlert .btn-theme2:hover,
.shopContent .modal .btn-theme2:hover,
.shopCartCard .btn-theme2:hover {
    background: linear-gradient(45deg, #fb691f, #fbae62) !important;
}

.shopContent {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.shopContent .modal {
    background: linear-gradient(rgba(255, 255, 255, 0.15), rgba(0, 0, 25, 0.10));
}

.shopContent .modal .close:hover {
    color: white
}

.shopContent .modal .modal-header,
.shopContent .modal .modal-footer {
    background: #0B0B0F;
    font-family: Lexend;
}

.shopContent .modal .modal-body {
    background: rgb(22, 22, 22);
    font-family: Lexend;
}

.shopContent .modal .modal-header {
    border-radius: 10px 10px 0px 0px;
}

.shopContent .modal .modal-footer {
    border-radius: 0px 0px 10px 10px;
}

.shopContent .modal .modal-content {
    box-shadow: rgb(31, 31, 31) 0px 0px 20px 0px
}

.shopCartCard {
    background: rgb(35, 35, 35);
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 20px 5px;
    transition: box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shopCartCard .table {
    border: none;
    font-family: Lexend;
}

.shopCartCard .table th {
    background: rgb(40, 40, 40);
!important;
}

.voteCard {
    background: rgb(35, 35, 35);
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 20px 5px;
}

.voteCard .btn-theme2 {
    background: linear-gradient(45deg, #ff5500, #ff962f) !important;
    transition: all 0.3s ease !important;
    color: white;
    font-family: Lexend;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);

}

.voteCard .btn-theme2:hover {
    background: linear-gradient(45deg, #fb691f, #fbae62) !important;
}

.voteCard .table {
    border: none;
    font-family: Lexend;
}

.voteCard .table th {
    background: rgb(40, 40, 40);
!important;
}

.forumContent {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.forumNav .breadcrumb {
    background: rgb(31, 31, 31);
    border-radius: 15px;
    font-family: Lexend;
}

.forumContent .card-header {
    background: rgb(31, 31, 31) !important;
    font-family: Lexend;
    border-radius: 15px 15px 0px 0px;
}

.forumContent .list-group-item {
    background: rgb(35, 35, 35) !important;
    font-family: Lexend;
    border-radius: 0px 0px 15px 15px;
    padding: .5rem 0.25rem;
}

.forumContent .card {
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px 5px;
}

.forumContent .card .h5 {
    margin-bottom: 0px;
}

.forumContent .card-body {
    background: rgb(35, 35, 35) !important;
    border-radius: 0px 0px 15px 15px;
    font-family: Lexend;
}

.forumContent .btn-theme2 {
    background: linear-gradient(45deg, #ff5500, #ff962f) !important;
    transition: background 0.3s ease !important;
    color: white;
    font-family: Lexend;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.forumContent .btn-theme2:hover{
    background: linear-gradient(45deg, #fb691f, #fbae62)!important;
}

/*! tw-spacing.css | Tailwind-inspired spacing utilities | MIT License */
.tw-m-px {
    margin: 1px;
}

.tw-mt-px {
    margin-top: 1px;
}

.tw-mr-px {
    margin-right: 1px;
}

.tw-mb-px {
    margin-bottom: 1px;
}

.tw-ml-px {
    margin-left: 1px;
}

.tw-mx-px {
    margin-left: 1px;
    margin-right: 1px;
}

.tw-my-px {
    margin-top: 1px;
    margin-bottom: 1px;
}

.tw-m-0 {
    margin: 0px;
}

.tw-mt-0 {
    margin-top: 0px;
}

.tw-mr-0 {
    margin-right: 0px;
}

.tw-mb-0 {
    margin-bottom: 0px;
}

.tw-ml-0 {
    margin-left: 0px;
}

.tw-mx-0 {
    margin-left: 0px;
    margin-right: 0px;
}

.tw-my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.tw-m-0\.5 {
    margin: 0.125rem;
}

.-tw-m-0\.5 {
    margin: -0.125rem;
}

.tw-mt-0\.5 {
    margin-top: 0.125rem;
}

.-tw-mt-0\.5 {
    margin-top: -0.125rem;
}

.tw-mr-0\.5 {
    margin-right: 0.125rem;
}

.-tw-mr-0\.5 {
    margin-right: -0.125rem;
}

.tw-mb-0\.5 {
    margin-bottom: 0.125rem;
}

.-tw-mb-0\.5 {
    margin-bottom: -0.125rem;
}

.tw-ml-0\.5 {
    margin-left: 0.125rem;
}

.-tw-ml-0\.5 {
    margin-left: -0.125rem;
}

.tw-mx-0\.5 {
    margin-left: 0.125rem;
    margin-right: 0.125rem;
}

.-tw-mx-0\.5 {
    margin-left: -0.125rem;
    margin-right: -0.125rem;
}

.tw-my-0\.5 {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
}

.-tw-my-0\.5 {
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
}

.tw-m-1 {
    margin: 0.25rem;
}

.-tw-m-1 {
    margin: -0.25rem;
}

.tw-mt-1 {
    margin-top: 0.25rem;
}

.-tw-mt-1 {
    margin-top: -0.25rem;
}

.tw-mr-1 {
    margin-right: 0.25rem;
}

.-tw-mr-1 {
    margin-right: -0.25rem;
}

.tw-mb-1 {
    margin-bottom: 0.25rem;
}

.-tw-mb-1 {
    margin-bottom: -0.25rem;
}

.tw-ml-1 {
    margin-left: 0.25rem;
}

.-tw-ml-1 {
    margin-left: -0.25rem;
}

.tw-mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.-tw-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
}

.tw-my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.-tw-my-1 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
}

.tw-m-1\.5 {
    margin: 0.375rem;
}

.-tw-m-1\.5 {
    margin: -0.375rem;
}

.tw-mt-1\.5 {
    margin-top: 0.375rem;
}

.-tw-mt-1\.5 {
    margin-top: -0.375rem;
}

.tw-mr-1\.5 {
    margin-right: 0.375rem;
}

.-tw-mr-1\.5 {
    margin-right: -0.375rem;
}

.tw-mb-1\.5 {
    margin-bottom: 0.375rem;
}

.-tw-mb-1\.5 {
    margin-bottom: -0.375rem;
}

.tw-ml-1\.5 {
    margin-left: 0.375rem;
}

.-tw-ml-1\.5 {
    margin-left: -0.375rem;
}

.tw-mx-1\.5 {
    margin-left: 0.375rem;
    margin-right: 0.375rem;
}

.-tw-mx-1\.5 {
    margin-left: -0.375rem;
    margin-right: -0.375rem;
}

.tw-my-1\.5 {
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
}

.-tw-my-1\.5 {
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
}

.tw-m-2 {
    margin: 0.5rem;
}

.-tw-m-2 {
    margin: -0.5rem;
}

.tw-mt-2 {
    margin-top: 0.5rem;
}

.-tw-mt-2 {
    margin-top: -0.5rem;
}

.tw-mr-2 {
    margin-right: 0.5rem;
}

.-tw-mr-2 {
    margin-right: -0.5rem;
}

.tw-mb-2 {
    margin-bottom: 0.5rem;
}

.-tw-mb-2 {
    margin-bottom: -0.5rem;
}

.tw-ml-2 {
    margin-left: 0.5rem;
}

.-tw-ml-2 {
    margin-left: -0.5rem;
}

.tw-mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.-tw-mx-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.tw-my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.-tw-my-2 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
}

.tw-m-2\.5 {
    margin: 0.625rem;
}

.-tw-m-2\.5 {
    margin: -0.625rem;
}

.tw-mt-2\.5 {
    margin-top: 0.625rem;
}

.-tw-mt-2\.5 {
    margin-top: -0.625rem;
}

.tw-mr-2\.5 {
    margin-right: 0.625rem;
}

.-tw-mr-2\.5 {
    margin-right: -0.625rem;
}

.tw-mb-2\.5 {
    margin-bottom: 0.625rem;
}

.-tw-mb-2\.5 {
    margin-bottom: -0.625rem;
}

.tw-ml-2\.5 {
    margin-left: 0.625rem;
}

.-tw-ml-2\.5 {
    margin-left: -0.625rem;
}

.tw-mx-2\.5 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
}

.-tw-mx-2\.5 {
    margin-left: -0.625rem;
    margin-right: -0.625rem;
}

.tw-my-2\.5 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
}

.-tw-my-2\.5 {
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
}

.tw-m-3 {
    margin: 0.75rem;
}

.-tw-m-3 {
    margin: -0.75rem;
}

.tw-mt-3 {
    margin-top: 0.75rem;
}

.-tw-mt-3 {
    margin-top: -0.75rem;
}

.tw-mr-3 {
    margin-right: 0.75rem;
}

.-tw-mr-3 {
    margin-right: -0.75rem;
}

.tw-mb-3 {
    margin-bottom: 0.75rem;
}

.-tw-mb-3 {
    margin-bottom: -0.75rem;
}

.tw-ml-3 {
    margin-left: 0.75rem;
}

.-tw-ml-3 {
    margin-left: -0.75rem;
}

.tw-mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
}

.-tw-mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.tw-my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.-tw-my-3 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
}

.tw-m-3\.5 {
    margin: 0.875rem;
}

.-tw-m-3\.5 {
    margin: -0.875rem;
}

.tw-mt-3\.5 {
    margin-top: 0.875rem;
}

.-tw-mt-3\.5 {
    margin-top: -0.875rem;
}

.tw-mr-3\.5 {
    margin-right: 0.875rem;
}

.-tw-mr-3\.5 {
    margin-right: -0.875rem;
}

.tw-mb-3\.5 {
    margin-bottom: 0.875rem;
}

.-tw-mb-3\.5 {
    margin-bottom: -0.875rem;
}

.tw-ml-3\.5 {
    margin-left: 0.875rem;
}

.-tw-ml-3\.5 {
    margin-left: -0.875rem;
}

.tw-mx-3\.5 {
    margin-left: 0.875rem;
    margin-right: 0.875rem;
}

.-tw-mx-3\.5 {
    margin-left: -0.875rem;
    margin-right: -0.875rem;
}

.tw-my-3\.5 {
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
}

.-tw-my-3\.5 {
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
}

.tw-m-4 {
    margin: 1rem;
}

.-tw-m-4 {
    margin: -1rem;
}

.tw-mt-4 {
    margin-top: 1rem;
}

.-tw-mt-4 {
    margin-top: -1rem;
}

.tw-mr-4 {
    margin-right: 1rem;
}

.-tw-mr-4 {
    margin-right: -1rem;
}

.tw-mb-4 {
    margin-bottom: 1rem;
}

.-tw-mb-4 {
    margin-bottom: -1rem;
}

.tw-ml-4 {
    margin-left: 1rem;
}

.-tw-ml-4 {
    margin-left: -1rem;
}

.tw-mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.-tw-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem;
}

.tw-my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.-tw-my-4 {
    margin-top: -1rem;
    margin-bottom: -1rem;
}

.tw-m-5 {
    margin: 1.25rem;
}

.-tw-m-5 {
    margin: -1.25rem;
}

.tw-mt-5 {
    margin-top: 1.25rem;
}

.-tw-mt-5 {
    margin-top: -1.25rem;
}

.tw-mr-5 {
    margin-right: 1.25rem;
}

.-tw-mr-5 {
    margin-right: -1.25rem;
}

.tw-mb-5 {
    margin-bottom: 1.25rem;
}

.-tw-mb-5 {
    margin-bottom: -1.25rem;
}

.tw-ml-5 {
    margin-left: 1.25rem;
}

.-tw-ml-5 {
    margin-left: -1.25rem;
}

.tw-mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
}

.-tw-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
}

.tw-my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.-tw-my-5 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
}

.tw-m-6 {
    margin: 1.5rem;
}

.-tw-m-6 {
    margin: -1.5rem;
}

.tw-mt-6 {
    margin-top: 1.5rem;
}

.-tw-mt-6 {
    margin-top: -1.5rem;
}

.tw-mr-6 {
    margin-right: 1.5rem;
}

.-tw-mr-6 {
    margin-right: -1.5rem;
}

.tw-mb-6 {
    margin-bottom: 1.5rem;
}

.-tw-mb-6 {
    margin-bottom: -1.5rem;
}

.tw-ml-6 {
    margin-left: 1.5rem;
}

.-tw-ml-6 {
    margin-left: -1.5rem;
}

.tw-mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.-tw-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.tw-my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.-tw-my-6 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
}

.tw-m-7 {
    margin: 1.75rem;
}

.-tw-m-7 {
    margin: -1.75rem;
}

.tw-mt-7 {
    margin-top: 1.75rem;
}

.-tw-mt-7 {
    margin-top: -1.75rem;
}

.tw-mr-7 {
    margin-right: 1.75rem;
}

.-tw-mr-7 {
    margin-right: -1.75rem;
}

.tw-mb-7 {
    margin-bottom: 1.75rem;
}

.-tw-mb-7 {
    margin-bottom: -1.75rem;
}

.tw-ml-7 {
    margin-left: 1.75rem;
}

.-tw-ml-7 {
    margin-left: -1.75rem;
}

.tw-mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem;
}

.-tw-mx-7 {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
}

.tw-my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
}

.-tw-my-7 {
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
}

.tw-m-8 {
    margin: 2rem;
}

.-tw-m-8 {
    margin: -2rem;
}

.tw-mt-8 {
    margin-top: 2rem;
}

.-tw-mt-8 {
    margin-top: -2rem;
}

.tw-mr-8 {
    margin-right: 2rem;
}

.-tw-mr-8 {
    margin-right: -2rem;
}

.tw-mb-8 {
    margin-bottom: 2rem;
}

.-tw-mb-8 {
    margin-bottom: -2rem;
}

.tw-ml-8 {
    margin-left: 2rem;
}

.-tw-ml-8 {
    margin-left: -2rem;
}

.tw-mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.-tw-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem;
}

.tw-my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.-tw-my-8 {
    margin-top: -2rem;
    margin-bottom: -2rem;
}

.tw-m-9 {
    margin: 2.25rem;
}

.-tw-m-9 {
    margin: -2.25rem;
}

.tw-mt-9 {
    margin-top: 2.25rem;
}

.-tw-mt-9 {
    margin-top: -2.25rem;
}

.tw-mr-9 {
    margin-right: 2.25rem;
}

.-tw-mr-9 {
    margin-right: -2.25rem;
}

.tw-mb-9 {
    margin-bottom: 2.25rem;
}

.-tw-mb-9 {
    margin-bottom: -2.25rem;
}

.tw-ml-9 {
    margin-left: 2.25rem;
}

.-tw-ml-9 {
    margin-left: -2.25rem;
}

.tw-mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem;
}

.-tw-mx-9 {
    margin-left: -2.25rem;
    margin-right: -2.25rem;
}

.tw-my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
}

.-tw-my-9 {
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
}

.tw-m-10 {
    margin: 2.5rem;
}

.-tw-m-10 {
    margin: -2.5rem;
}

.tw-mt-10 {
    margin-top: 2.5rem;
}

.-tw-mt-10 {
    margin-top: -2.5rem;
}

.tw-mr-10 {
    margin-right: 2.5rem;
}

.-tw-mr-10 {
    margin-right: -2.5rem;
}

.tw-mb-10 {
    margin-bottom: 2.5rem;
}

.-tw-mb-10 {
    margin-bottom: -2.5rem;
}

.tw-ml-10 {
    margin-left: 2.5rem;
}

.-tw-ml-10 {
    margin-left: -2.5rem;
}

.tw-mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
}

.-tw-mx-10 {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
}

.tw-my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.-tw-my-10 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
}

.tw-m-11 {
    margin: 2.75rem;
}

.-tw-m-11 {
    margin: -2.75rem;
}

.tw-mt-11 {
    margin-top: 2.75rem;
}

.-tw-mt-11 {
    margin-top: -2.75rem;
}

.tw-mr-11 {
    margin-right: 2.75rem;
}

.-tw-mr-11 {
    margin-right: -2.75rem;
}

.tw-mb-11 {
    margin-bottom: 2.75rem;
}

.-tw-mb-11 {
    margin-bottom: -2.75rem;
}

.tw-ml-11 {
    margin-left: 2.75rem;
}

.-tw-ml-11 {
    margin-left: -2.75rem;
}

.tw-mx-11 {
    margin-left: 2.75rem;
    margin-right: 2.75rem;
}

.-tw-mx-11 {
    margin-left: -2.75rem;
    margin-right: -2.75rem;
}

.tw-my-11 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
}

.-tw-my-11 {
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
}

.tw-m-12 {
    margin: 3rem;
}

.-tw-m-12 {
    margin: -3rem;
}

.tw-mt-12 {
    margin-top: 3rem;
}

.-tw-mt-12 {
    margin-top: -3rem;
}

.tw-mr-12 {
    margin-right: 3rem;
}

.-tw-mr-12 {
    margin-right: -3rem;
}

.tw-mb-12 {
    margin-bottom: 3rem;
}

.-tw-mb-12 {
    margin-bottom: -3rem;
}

.tw-ml-12 {
    margin-left: 3rem;
}

.-tw-ml-12 {
    margin-left: -3rem;
}

.tw-mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
}

.-tw-mx-12 {
    margin-left: -3rem;
    margin-right: -3rem;
}

.tw-my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.-tw-my-12 {
    margin-top: -3rem;
    margin-bottom: -3rem;
}

.tw-m-14 {
    margin: 3.5rem;
}

.-tw-m-14 {
    margin: -3.5rem;
}

.tw-mt-14 {
    margin-top: 3.5rem;
}

.-tw-mt-14 {
    margin-top: -3.5rem;
}

.tw-mr-14 {
    margin-right: 3.5rem;
}

.-tw-mr-14 {
    margin-right: -3.5rem;
}

.tw-mb-14 {
    margin-bottom: 3.5rem;
}

.-tw-mb-14 {
    margin-bottom: -3.5rem;
}

.tw-ml-14 {
    margin-left: 3.5rem;
}

.-tw-ml-14 {
    margin-left: -3.5rem;
}

.tw-mx-14 {
    margin-left: 3.5rem;
    margin-right: 3.5rem;
}

.-tw-mx-14 {
    margin-left: -3.5rem;
    margin-right: -3.5rem;
}

.tw-my-14 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

.-tw-my-14 {
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
}

.tw-m-16 {
    margin: 4rem;
}

.-tw-m-16 {
    margin: -4rem;
}

.tw-mt-16 {
    margin-top: 4rem;
}

.-tw-mt-16 {
    margin-top: -4rem;
}

.tw-mr-16 {
    margin-right: 4rem;
}

.-tw-mr-16 {
    margin-right: -4rem;
}

.tw-mb-16 {
    margin-bottom: 4rem;
}

.-tw-mb-16 {
    margin-bottom: -4rem;
}

.tw-ml-16 {
    margin-left: 4rem;
}

.-tw-ml-16 {
    margin-left: -4rem;
}

.tw-mx-16 {
    margin-left: 4rem;
    margin-right: 4rem;
}

.-tw-mx-16 {
    margin-left: -4rem;
    margin-right: -4rem;
}

.tw-my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.-tw-my-16 {
    margin-top: -4rem;
    margin-bottom: -4rem;
}

.tw-m-20 {
    margin: 5rem;
}

.-tw-m-20 {
    margin: -5rem;
}

.tw-mt-20 {
    margin-top: 5rem;
}

.-tw-mt-20 {
    margin-top: -5rem;
}

.tw-mr-20 {
    margin-right: 5rem;
}

.-tw-mr-20 {
    margin-right: -5rem;
}

.tw-mb-20 {
    margin-bottom: 5rem;
}

.-tw-mb-20 {
    margin-bottom: -5rem;
}

.tw-ml-20 {
    margin-left: 5rem;
}

.-tw-ml-20 {
    margin-left: -5rem;
}

.tw-mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
}

.-tw-mx-20 {
    margin-left: -5rem;
    margin-right: -5rem;
}

.tw-my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.-tw-my-20 {
    margin-top: -5rem;
    margin-bottom: -5rem;
}

.tw-m-24 {
    margin: 6rem;
}

.-tw-m-24 {
    margin: -6rem;
}

.tw-mt-24 {
    margin-top: 6rem;
}

.-tw-mt-24 {
    margin-top: -6rem;
}

.tw-mr-24 {
    margin-right: 6rem;
}

.-tw-mr-24 {
    margin-right: -6rem;
}

.tw-mb-24 {
    margin-bottom: 6rem;
}

.-tw-mb-24 {
    margin-bottom: -6rem;
}

.tw-ml-24 {
    margin-left: 6rem;
}

.-tw-ml-24 {
    margin-left: -6rem;
}

.tw-mx-24 {
    margin-left: 6rem;
    margin-right: 6rem;
}

.-tw-mx-24 {
    margin-left: -6rem;
    margin-right: -6rem;
}

.tw-my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.-tw-my-24 {
    margin-top: -6rem;
    margin-bottom: -6rem;
}

.tw-m-28 {
    margin: 7rem;
}

.-tw-m-28 {
    margin: -7rem;
}

.tw-mt-28 {
    margin-top: 7rem;
}

.-tw-mt-28 {
    margin-top: -7rem;
}

.tw-mr-28 {
    margin-right: 7rem;
}

.-tw-mr-28 {
    margin-right: -7rem;
}

.tw-mb-28 {
    margin-bottom: 7rem;
}

.-tw-mb-28 {
    margin-bottom: -7rem;
}

.tw-ml-28 {
    margin-left: 7rem;
}

.-tw-ml-28 {
    margin-left: -7rem;
}

.tw-mx-28 {
    margin-left: 7rem;
    margin-right: 7rem;
}

.-tw-mx-28 {
    margin-left: -7rem;
    margin-right: -7rem;
}

.tw-my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem;
}

.-tw-my-28 {
    margin-top: -7rem;
    margin-bottom: -7rem;
}

.tw-m-32 {
    margin: 8rem;
}

.-tw-m-32 {
    margin: -8rem;
}

.tw-mt-32 {
    margin-top: 8rem;
}

.-tw-mt-32 {
    margin-top: -8rem;
}

.tw-mr-32 {
    margin-right: 8rem;
}

.-tw-mr-32 {
    margin-right: -8rem;
}

.tw-mb-32 {
    margin-bottom: 8rem;
}

.-tw-mb-32 {
    margin-bottom: -8rem;
}

.tw-ml-32 {
    margin-left: 8rem;
}

.-tw-ml-32 {
    margin-left: -8rem;
}

.tw-mx-32 {
    margin-left: 8rem;
    margin-right: 8rem;
}

.-tw-mx-32 {
    margin-left: -8rem;
    margin-right: -8rem;
}

.tw-my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem;
}

.-tw-my-32 {
    margin-top: -8rem;
    margin-bottom: -8rem;
}

.tw-m-36 {
    margin: 9rem;
}

.-tw-m-36 {
    margin: -9rem;
}

.tw-mt-36 {
    margin-top: 9rem;
}

.-tw-mt-36 {
    margin-top: -9rem;
}

.tw-mr-36 {
    margin-right: 9rem;
}

.-tw-mr-36 {
    margin-right: -9rem;
}

.tw-mb-36 {
    margin-bottom: 9rem;
}

.-tw-mb-36 {
    margin-bottom: -9rem;
}

.tw-ml-36 {
    margin-left: 9rem;
}

.-tw-ml-36 {
    margin-left: -9rem;
}

.tw-mx-36 {
    margin-left: 9rem;
    margin-right: 9rem;
}

.-tw-mx-36 {
    margin-left: -9rem;
    margin-right: -9rem;
}

.tw-my-36 {
    margin-top: 9rem;
    margin-bottom: 9rem;
}

.-tw-my-36 {
    margin-top: -9rem;
    margin-bottom: -9rem;
}

.tw-m-40 {
    margin: 10rem;
}

.-tw-m-40 {
    margin: -10rem;
}

.tw-mt-40 {
    margin-top: 10rem;
}

.-tw-mt-40 {
    margin-top: -10rem;
}

.tw-mr-40 {
    margin-right: 10rem;
}

.-tw-mr-40 {
    margin-right: -10rem;
}

.tw-mb-40 {
    margin-bottom: 10rem;
}

.-tw-mb-40 {
    margin-bottom: -10rem;
}

.tw-ml-40 {
    margin-left: 10rem;
}

.-tw-ml-40 {
    margin-left: -10rem;
}

.tw-mx-40 {
    margin-left: 10rem;
    margin-right: 10rem;
}

.-tw-mx-40 {
    margin-left: -10rem;
    margin-right: -10rem;
}

.tw-my-40 {
    margin-top: 10rem;
    margin-bottom: 10rem;
}

.-tw-my-40 {
    margin-top: -10rem;
    margin-bottom: -10rem;
}

.tw-m-44 {
    margin: 11rem;
}

.-tw-m-44 {
    margin: -11rem;
}

.tw-mt-44 {
    margin-top: 11rem;
}

.-tw-mt-44 {
    margin-top: -11rem;
}

.tw-mr-44 {
    margin-right: 11rem;
}

.-tw-mr-44 {
    margin-right: -11rem;
}

.tw-mb-44 {
    margin-bottom: 11rem;
}

.-tw-mb-44 {
    margin-bottom: -11rem;
}

.tw-ml-44 {
    margin-left: 11rem;
}

.-tw-ml-44 {
    margin-left: -11rem;
}

.tw-mx-44 {
    margin-left: 11rem;
    margin-right: 11rem;
}

.-tw-mx-44 {
    margin-left: -11rem;
    margin-right: -11rem;
}

.tw-my-44 {
    margin-top: 11rem;
    margin-bottom: 11rem;
}

.-tw-my-44 {
    margin-top: -11rem;
    margin-bottom: -11rem;
}

.tw-m-48 {
    margin: 12rem;
}

.-tw-m-48 {
    margin: -12rem;
}

.tw-mt-48 {
    margin-top: 12rem;
}

.-tw-mt-48 {
    margin-top: -12rem;
}

.tw-mr-48 {
    margin-right: 12rem;
}

.-tw-mr-48 {
    margin-right: -12rem;
}

.tw-mb-48 {
    margin-bottom: 12rem;
}

.-tw-mb-48 {
    margin-bottom: -12rem;
}

.tw-ml-48 {
    margin-left: 12rem;
}

.-tw-ml-48 {
    margin-left: -12rem;
}

.tw-mx-48 {
    margin-left: 12rem;
    margin-right: 12rem;
}

.-tw-mx-48 {
    margin-left: -12rem;
    margin-right: -12rem;
}

.tw-my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem;
}

.-tw-my-48 {
    margin-top: -12rem;
    margin-bottom: -12rem;
}

.tw-m-52 {
    margin: 13rem;
}

.-tw-m-52 {
    margin: -13rem;
}

.tw-mt-52 {
    margin-top: 13rem;
}

.-tw-mt-52 {
    margin-top: -13rem;
}

.tw-mr-52 {
    margin-right: 13rem;
}

.-tw-mr-52 {
    margin-right: -13rem;
}

.tw-mb-52 {
    margin-bottom: 13rem;
}

.-tw-mb-52 {
    margin-bottom: -13rem;
}

.tw-ml-52 {
    margin-left: 13rem;
}

.-tw-ml-52 {
    margin-left: -13rem;
}

.tw-mx-52 {
    margin-left: 13rem;
    margin-right: 13rem;
}

.-tw-mx-52 {
    margin-left: -13rem;
    margin-right: -13rem;
}

.tw-my-52 {
    margin-top: 13rem;
    margin-bottom: 13rem;
}

.-tw-my-52 {
    margin-top: -13rem;
    margin-bottom: -13rem;
}

.tw-m-56 {
    margin: 14rem;
}

.-tw-m-56 {
    margin: -14rem;
}

.tw-mt-56 {
    margin-top: 14rem;
}

.-tw-mt-56 {
    margin-top: -14rem;
}

.tw-mr-56 {
    margin-right: 14rem;
}

.-tw-mr-56 {
    margin-right: -14rem;
}

.tw-mb-56 {
    margin-bottom: 14rem;
}

.-tw-mb-56 {
    margin-bottom: -14rem;
}

.tw-ml-56 {
    margin-left: 14rem;
}

.-tw-ml-56 {
    margin-left: -14rem;
}

.tw-mx-56 {
    margin-left: 14rem;
    margin-right: 14rem;
}

.-tw-mx-56 {
    margin-left: -14rem;
    margin-right: -14rem;
}

.tw-my-56 {
    margin-top: 14rem;
    margin-bottom: 14rem;
}

.-tw-my-56 {
    margin-top: -14rem;
    margin-bottom: -14rem;
}

.tw-m-60 {
    margin: 15rem;
}

.-tw-m-60 {
    margin: -15rem;
}

.tw-mt-60 {
    margin-top: 15rem;
}

.-tw-mt-60 {
    margin-top: -15rem;
}

.tw-mr-60 {
    margin-right: 15rem;
}

.-tw-mr-60 {
    margin-right: -15rem;
}

.tw-mb-60 {
    margin-bottom: 15rem;
}

.-tw-mb-60 {
    margin-bottom: -15rem;
}

.tw-ml-60 {
    margin-left: 15rem;
}

.-tw-ml-60 {
    margin-left: -15rem;
}

.tw-mx-60 {
    margin-left: 15rem;
    margin-right: 15rem;
}

.-tw-mx-60 {
    margin-left: -15rem;
    margin-right: -15rem;
}

.tw-my-60 {
    margin-top: 15rem;
    margin-bottom: 15rem;
}

.-tw-my-60 {
    margin-top: -15rem;
    margin-bottom: -15rem;
}

.tw-m-64 {
    margin: 16rem;
}

.-tw-m-64 {
    margin: -16rem;
}

.tw-mt-64 {
    margin-top: 16rem;
}

.-tw-mt-64 {
    margin-top: -16rem;
}

.tw-mr-64 {
    margin-right: 16rem;
}

.-tw-mr-64 {
    margin-right: -16rem;
}

.tw-mb-64 {
    margin-bottom: 16rem;
}

.-tw-mb-64 {
    margin-bottom: -16rem;
}

.tw-ml-64 {
    margin-left: 16rem;
}

.-tw-ml-64 {
    margin-left: -16rem;
}

.tw-mx-64 {
    margin-left: 16rem;
    margin-right: 16rem;
}

.-tw-mx-64 {
    margin-left: -16rem;
    margin-right: -16rem;
}

.tw-my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem;
}

.-tw-my-64 {
    margin-top: -16rem;
    margin-bottom: -16rem;
}

.tw-m-72 {
    margin: 18rem;
}

.-tw-m-72 {
    margin: -18rem;
}

.tw-mt-72 {
    margin-top: 18rem;
}

.-tw-mt-72 {
    margin-top: -18rem;
}

.tw-mr-72 {
    margin-right: 18rem;
}

.-tw-mr-72 {
    margin-right: -18rem;
}

.tw-mb-72 {
    margin-bottom: 18rem;
}

.-tw-mb-72 {
    margin-bottom: -18rem;
}

.tw-ml-72 {
    margin-left: 18rem;
}

.-tw-ml-72 {
    margin-left: -18rem;
}

.tw-mx-72 {
    margin-left: 18rem;
    margin-right: 18rem;
}

.-tw-mx-72 {
    margin-left: -18rem;
    margin-right: -18rem;
}

.tw-my-72 {
    margin-top: 18rem;
    margin-bottom: 18rem;
}

.-tw-my-72 {
    margin-top: -18rem;
    margin-bottom: -18rem;
}

.tw-m-80 {
    margin: 20rem;
}

.-tw-m-80 {
    margin: -20rem;
}

.tw-mt-80 {
    margin-top: 20rem;
}

.-tw-mt-80 {
    margin-top: -20rem;
}

.tw-mr-80 {
    margin-right: 20rem;
}

.-tw-mr-80 {
    margin-right: -20rem;
}

.tw-mb-80 {
    margin-bottom: 20rem;
}

.-tw-mb-80 {
    margin-bottom: -20rem;
}

.tw-ml-80 {
    margin-left: 20rem;
}

.-tw-ml-80 {
    margin-left: -20rem;
}

.tw-mx-80 {
    margin-left: 20rem;
    margin-right: 20rem;
}

.-tw-mx-80 {
    margin-left: -20rem;
    margin-right: -20rem;
}

.tw-my-80 {
    margin-top: 20rem;
    margin-bottom: 20rem;
}

.-tw-my-80 {
    margin-top: -20rem;
    margin-bottom: -20rem;
}

.tw-m-96 {
    margin: 24rem;
}

.-tw-m-96 {
    margin: -24rem;
}

.tw-mt-96 {
    margin-top: 24rem;
}

.-tw-mt-96 {
    margin-top: -24rem;
}

.tw-mr-96 {
    margin-right: 24rem;
}

.-tw-mr-96 {
    margin-right: -24rem;
}

.tw-mb-96 {
    margin-bottom: 24rem;
}

.-tw-mb-96 {
    margin-bottom: -24rem;
}

.tw-ml-96 {
    margin-left: 24rem;
}

.-tw-ml-96 {
    margin-left: -24rem;
}

.tw-mx-96 {
    margin-left: 24rem;
    margin-right: 24rem;
}

.-tw-mx-96 {
    margin-left: -24rem;
    margin-right: -24rem;
}

.tw-my-96 {
    margin-top: 24rem;
    margin-bottom: 24rem;
}

.-tw-my-96 {
    margin-top: -24rem;
    margin-bottom: -24rem;
}

.tw-p-px {
    padding: 1px;
}

.tw-pt-px {
    padding-top: 1px;
}

.tw-pr-px {
    padding-right: 1px;
}

.tw-pb-px {
    padding-bottom: 1px;
}

.tw-pl-px {
    padding-left: 1px;
}

.tw-px-px {
    padding-left: 1px;
    padding-right: 1px;
}

.tw-py-px {
    padding-top: 1px;
    padding-bottom: 1px;
}

.tw-p-0 {
    padding: 0px;
}

.tw-pt-0 {
    padding-top: 0px;
}

.tw-pr-0 {
    padding-right: 0px;
}

.tw-pb-0 {
    padding-bottom: 0px;
}

.tw-pl-0 {
    padding-left: 0px;
}

.tw-px-0 {
    padding-left: 0px;
    padding-right: 0px;
}

.tw-py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
}

.tw-p-0\.5 {
    padding: 0.125rem;
}

.tw-pt-0\.5 {
    padding-top: 0.125rem;
}

.tw-pr-0\.5 {
    padding-right: 0.125rem;
}

.tw-pb-0\.5 {
    padding-bottom: 0.125rem;
}

.tw-pl-0\.5 {
    padding-left: 0.125rem;
}

.tw-px-0\.5 {
    padding-left: 0.125rem;
    padding-right: 0.125rem;
}

.tw-py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}

.tw-p-1 {
    padding: 0.25rem;
}

.tw-pt-1 {
    padding-top: 0.25rem;
}

.tw-pr-1 {
    padding-right: 0.25rem;
}

.tw-pb-1 {
    padding-bottom: 0.25rem;
}

.tw-pl-1 {
    padding-left: 0.25rem;
}

.tw-px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.tw-py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.tw-p-1\.5 {
    padding: 0.375rem;
}

.tw-pt-1\.5 {
    padding-top: 0.375rem;
}

.tw-pr-1\.5 {
    padding-right: 0.375rem;
}

.tw-pb-1\.5 {
    padding-bottom: 0.375rem;
}

.tw-pl-1\.5 {
    padding-left: 0.375rem;
}

.tw-px-1\.5 {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
}

.tw-py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.tw-p-2 {
    padding: 0.5rem;
}

.tw-pt-2 {
    padding-top: 0.5rem;
}

.tw-pr-2 {
    padding-right: 0.5rem;
}

.tw-pb-2 {
    padding-bottom: 0.5rem;
}

.tw-pl-2 {
    padding-left: 0.5rem;
}

.tw-px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.tw-py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.tw-p-2\.5 {
    padding: 0.625rem;
}

.tw-pt-2\.5 {
    padding-top: 0.625rem;
}

.tw-pr-2\.5 {
    padding-right: 0.625rem;
}

.tw-pb-2\.5 {
    padding-bottom: 0.625rem;
}

.tw-pl-2\.5 {
    padding-left: 0.625rem;
}

.tw-px-2\.5 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}

.tw-py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

.tw-p-3 {
    padding: 0.75rem;
}

.tw-pt-3 {
    padding-top: 0.75rem;
}

.tw-pr-3 {
    padding-right: 0.75rem;
}

.tw-pb-3 {
    padding-bottom: 0.75rem;
}

.tw-pl-3 {
    padding-left: 0.75rem;
}

.tw-px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.tw-py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.tw-p-3\.5 {
    padding: 0.875rem;
}

.tw-pt-3\.5 {
    padding-top: 0.875rem;
}

.tw-pr-3\.5 {
    padding-right: 0.875rem;
}

.tw-pb-3\.5 {
    padding-bottom: 0.875rem;
}

.tw-pl-3\.5 {
    padding-left: 0.875rem;
}

.tw-px-3\.5 {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
}

.tw-py-3\.5 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

.tw-p-4 {
    padding: 1rem;
}

.tw-pt-4 {
    padding-top: 1rem;
}

.tw-pr-4 {
    padding-right: 1rem;
}

.tw-pb-4 {
    padding-bottom: 1rem;
}

.tw-pl-4 {
    padding-left: 1rem;
}

.tw-px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.tw-py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.tw-p-5 {
    padding: 1.25rem;
}

.tw-pt-5 {
    padding-top: 1.25rem;
}

.tw-pr-5 {
    padding-right: 1.25rem;
}

.tw-pb-5 {
    padding-bottom: 1.25rem;
}

.tw-pl-5 {
    padding-left: 1.25rem;
}

.tw-px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.tw-py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.tw-p-6 {
    padding: 1.5rem;
}

.tw-pt-6 {
    padding-top: 1.5rem;
}

.tw-pr-6 {
    padding-right: 1.5rem;
}

.tw-pb-6 {
    padding-bottom: 1.5rem;
}

.tw-pl-6 {
    padding-left: 1.5rem;
}

.tw-px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.tw-py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.tw-p-7 {
    padding: 1.75rem;
}

.tw-pt-7 {
    padding-top: 1.75rem;
}

.tw-pr-7 {
    padding-right: 1.75rem;
}

.tw-pb-7 {
    padding-bottom: 1.75rem;
}

.tw-pl-7 {
    padding-left: 1.75rem;
}

.tw-px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

.tw-py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}

.tw-p-8 {
    padding: 2rem;
}

.tw-pt-8 {
    padding-top: 2rem;
}

.tw-pr-8 {
    padding-right: 2rem;
}

.tw-pb-8 {
    padding-bottom: 2rem;
}

.tw-pl-8 {
    padding-left: 2rem;
}

.tw-px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.tw-py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.tw-p-9 {
    padding: 2.25rem;
}

.tw-pt-9 {
    padding-top: 2.25rem;
}

.tw-pr-9 {
    padding-right: 2.25rem;
}

.tw-pb-9 {
    padding-bottom: 2.25rem;
}

.tw-pl-9 {
    padding-left: 2.25rem;
}

.tw-px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
}

.tw-py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
}

.tw-p-10 {
    padding: 2.5rem;
}

.tw-pt-10 {
    padding-top: 2.5rem;
}

.tw-pr-10 {
    padding-right: 2.5rem;
}

.tw-pb-10 {
    padding-bottom: 2.5rem;
}

.tw-pl-10 {
    padding-left: 2.5rem;
}

.tw-px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.tw-py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.tw-p-11 {
    padding: 2.75rem;
}

.tw-pt-11 {
    padding-top: 2.75rem;
}

.tw-pr-11 {
    padding-right: 2.75rem;
}

.tw-pb-11 {
    padding-bottom: 2.75rem;
}

.tw-pl-11 {
    padding-left: 2.75rem;
}

.tw-px-11 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
}

.tw-py-11 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
}

.tw-p-12 {
    padding: 3rem;
}

.tw-pt-12 {
    padding-top: 3rem;
}

.tw-pr-12 {
    padding-right: 3rem;
}

.tw-pb-12 {
    padding-bottom: 3rem;
}

.tw-pl-12 {
    padding-left: 3rem;
}

.tw-px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.tw-py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.tw-p-14 {
    padding: 3.5rem;
}

.tw-pt-14 {
    padding-top: 3.5rem;
}

.tw-pr-14 {
    padding-right: 3.5rem;
}

.tw-pb-14 {
    padding-bottom: 3.5rem;
}

.tw-pl-14 {
    padding-left: 3.5rem;
}

.tw-px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
}

.tw-py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.tw-p-16 {
    padding: 4rem;
}

.tw-pt-16 {
    padding-top: 4rem;
}

.tw-pr-16 {
    padding-right: 4rem;
}

.tw-pb-16 {
    padding-bottom: 4rem;
}

.tw-pl-16 {
    padding-left: 4rem;
}

.tw-px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
}

.tw-py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.tw-p-20 {
    padding: 5rem;
}

.tw-pt-20 {
    padding-top: 5rem;
}

.tw-pr-20 {
    padding-right: 5rem;
}

.tw-pb-20 {
    padding-bottom: 5rem;
}

.tw-pl-20 {
    padding-left: 5rem;
}

.tw-px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
}

.tw-py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.tw-p-24 {
    padding: 6rem;
}

.tw-pt-24 {
    padding-top: 6rem;
}

.tw-pr-24 {
    padding-right: 6rem;
}

.tw-pb-24 {
    padding-bottom: 6rem;
}

.tw-pl-24 {
    padding-left: 6rem;
}

.tw-px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
}

.tw-py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.tw-p-28 {
    padding: 7rem;
}

.tw-pt-28 {
    padding-top: 7rem;
}

.tw-pr-28 {
    padding-right: 7rem;
}

.tw-pb-28 {
    padding-bottom: 7rem;
}

.tw-pl-28 {
    padding-left: 7rem;
}

.tw-px-28 {
    padding-left: 7rem;
    padding-right: 7rem;
}

.tw-py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.tw-p-32 {
    padding: 8rem;
}

.tw-pt-32 {
    padding-top: 8rem;
}

.tw-pr-32 {
    padding-right: 8rem;
}

.tw-pb-32 {
    padding-bottom: 8rem;
}

.tw-pl-32 {
    padding-left: 8rem;
}

.tw-px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
}

.tw-py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.tw-p-36 {
    padding: 9rem;
}

.tw-pt-36 {
    padding-top: 9rem;
}

.tw-pr-36 {
    padding-right: 9rem;
}

.tw-pb-36 {
    padding-bottom: 9rem;
}

.tw-pl-36 {
    padding-left: 9rem;
}

.tw-px-36 {
    padding-left: 9rem;
    padding-right: 9rem;
}

.tw-py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
}

.tw-p-40 {
    padding: 10rem;
}

.tw-pt-40 {
    padding-top: 10rem;
}

.tw-pr-40 {
    padding-right: 10rem;
}

.tw-pb-40 {
    padding-bottom: 10rem;
}

.tw-pl-40 {
    padding-left: 10rem;
}

.tw-px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
}

.tw-py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.tw-p-44 {
    padding: 11rem;
}

.tw-pt-44 {
    padding-top: 11rem;
}

.tw-pr-44 {
    padding-right: 11rem;
}

.tw-pb-44 {
    padding-bottom: 11rem;
}

.tw-pl-44 {
    padding-left: 11rem;
}

.tw-px-44 {
    padding-left: 11rem;
    padding-right: 11rem;
}

.tw-py-44 {
    padding-top: 11rem;
    padding-bottom: 11rem;
}

.tw-p-48 {
    padding: 12rem;
}

.tw-pt-48 {
    padding-top: 12rem;
}

.tw-pr-48 {
    padding-right: 12rem;
}

.tw-pb-48 {
    padding-bottom: 12rem;
}

.tw-pl-48 {
    padding-left: 12rem;
}

.tw-px-48 {
    padding-left: 12rem;
    padding-right: 12rem;
}

.tw-py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem;
}

.tw-p-52 {
    padding: 13rem;
}

.tw-pt-52 {
    padding-top: 13rem;
}

.tw-pr-52 {
    padding-right: 13rem;
}

.tw-pb-52 {
    padding-bottom: 13rem;
}

.tw-pl-52 {
    padding-left: 13rem;
}

.tw-px-52 {
    padding-left: 13rem;
    padding-right: 13rem;
}

.tw-py-52 {
    padding-top: 13rem;
    padding-bottom: 13rem;
}

.tw-p-56 {
    padding: 14rem;
}

.tw-pt-56 {
    padding-top: 14rem;
}

.tw-pr-56 {
    padding-right: 14rem;
}

.tw-pb-56 {
    padding-bottom: 14rem;
}

.tw-pl-56 {
    padding-left: 14rem;
}

.tw-px-56 {
    padding-left: 14rem;
    padding-right: 14rem;
}

.tw-py-56 {
    padding-top: 14rem;
    padding-bottom: 14rem;
}

.tw-p-60 {
    padding: 15rem;
}

.tw-pt-60 {
    padding-top: 15rem;
}

.tw-pr-60 {
    padding-right: 15rem;
}

.tw-pb-60 {
    padding-bottom: 15rem;
}

.tw-pl-60 {
    padding-left: 15rem;
}

.tw-px-60 {
    padding-left: 15rem;
    padding-right: 15rem;
}

.tw-py-60 {
    padding-top: 15rem;
    padding-bottom: 15rem;
}

.tw-p-64 {
    padding: 16rem;
}

.tw-pt-64 {
    padding-top: 16rem;
}

.tw-pr-64 {
    padding-right: 16rem;
}

.tw-pb-64 {
    padding-bottom: 16rem;
}

.tw-pl-64 {
    padding-left: 16rem;
}

.tw-px-64 {
    padding-left: 16rem;
    padding-right: 16rem;
}

.tw-py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem;
}

.tw-p-72 {
    padding: 18rem;
}

.tw-pt-72 {
    padding-top: 18rem;
}

.tw-pr-72 {
    padding-right: 18rem;
}

.tw-pb-72 {
    padding-bottom: 18rem;
}

.tw-pl-72 {
    padding-left: 18rem;
}

.tw-px-72 {
    padding-left: 18rem;
    padding-right: 18rem;
}

.tw-py-72 {
    padding-top: 18rem;
    padding-bottom: 18rem;
}

.tw-p-80 {
    padding: 20rem;
}

.tw-pt-80 {
    padding-top: 20rem;
}

.tw-pr-80 {
    padding-right: 20rem;
}

.tw-pb-80 {
    padding-bottom: 20rem;
}

.tw-pl-80 {
    padding-left: 20rem;
}

.tw-px-80 {
    padding-left: 20rem;
    padding-right: 20rem;
}

.tw-py-80 {
    padding-top: 20rem;
    padding-bottom: 20rem;
}

.tw-p-96 {
    padding: 24rem;
}

.tw-pt-96 {
    padding-top: 24rem;
}

.tw-pr-96 {
    padding-right: 24rem;
}

.tw-pb-96 {
    padding-bottom: 24rem;
}

.tw-pl-96 {
    padding-left: 24rem;
}

.tw-px-96 {
    padding-left: 24rem;
    padding-right: 24rem;
}

.tw-py-96 {
    padding-top: 24rem;
    padding-bottom: 24rem;
}

.tw-m-auto {
    margin: auto;
}

.tw-mt-auto {
    margin-top: auto;
}

.tw-mr-auto {
    margin-right: auto;
}

.tw-mb-auto {
    margin-bottom: auto;
}

.tw-ml-auto {
    margin-left: auto;
}

.tw-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.tw-my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.tw-bg-slate-50 {
    background-color: #f8fafc;
}

.tw-text-slate-50 {
    color: #f8fafc;
}

.tw-bg-slate-100 {
    background-color: #f1f5f9;
}

.tw-text-slate-100 {
    color: #f1f5f9;
}

.tw-bg-slate-200 {
    background-color: #e2e8f0;
}

.tw-text-slate-200 {
    color: #e2e8f0;
}

.tw-bg-slate-300 {
    background-color: #cbd5e1;
}

.tw-text-slate-300 {
    color: #cbd5e1;
}

.tw-bg-slate-400 {
    background-color: #94a3b8;
}

.tw-text-slate-400 {
    color: #94a3b8;
}

.tw-bg-slate-500 {
    background-color: #64748b;
}

.tw-text-slate-500 {
    color: #64748b;
}

.tw-bg-slate-600 {
    background-color: #475569;
}

.tw-text-slate-600 {
    color: #475569;
}

.tw-bg-slate-700 {
    background-color: #334155;
}

.tw-text-slate-700 {
    color: #334155;
}

.tw-bg-slate-800 {
    background-color: #1e293b;
}

.tw-text-slate-800 {
    color: #1e293b;
}

.tw-bg-slate-900 {
    background-color: #0f172a;
}

.tw-text-slate-900 {
    color: #0f172a;
}

.tw-bg-slate-950 {
    background-color: #020617;
}

.tw-text-slate-950 {
    color: #020617;
}

.tw-bg-gray-50 {
    background-color: #f9fafb;
}

.tw-text-gray-50 {
    color: #f9fafb;
}

.tw-bg-gray-100 {
    background-color: #f3f4f6;
}

.tw-text-gray-100 {
    color: #f3f4f6;
}

.tw-bg-gray-200 {
    background-color: #e5e7eb;
}

.tw-text-gray-200 {
    color: #e5e7eb;
}

.tw-bg-gray-300 {
    background-color: #d1d5db;
}

.tw-text-gray-300 {
    color: #d1d5db;
}

.tw-bg-gray-400 {
    background-color: #9ca3af;
}

.tw-text-gray-400 {
    color: #9ca3af;
}

.tw-bg-gray-500 {
    background-color: #6b7280;
}

.tw-text-gray-500 {
    color: #6b7280;
}

.tw-bg-gray-600 {
    background-color: #4b5563;
}

.tw-text-gray-600 {
    color: #4b5563;
}

.tw-bg-gray-700 {
    background-color: #374151;
}

.tw-text-gray-700 {
    color: #374151;
}

.tw-bg-gray-800 {
    background-color: #1f2937;
}

.tw-text-gray-800 {
    color: #1f2937;
}

.tw-bg-gray-900 {
    background-color: #111827;
}

.tw-text-gray-900 {
    color: #111827;
}

.tw-bg-gray-950 {
    background-color: #030712;
}

.tw-text-gray-950 {
    color: #030712;
}

.tw-bg-red-50 {
    background-color: #fef2f2;
}

.tw-text-red-50 {
    color: #fef2f2;
}

.tw-bg-red-100 {
    background-color: #fee2e2;
}

.tw-text-red-100 {
    color: #fee2e2;
}

.tw-bg-red-200 {
    background-color: #fecaca;
}

.tw-text-red-200 {
    color: #fecaca;
}

.tw-bg-red-300 {
    background-color: #fca5a5;
}

.tw-text-red-300 {
    color: #fca5a5;
}

.tw-bg-red-400 {
    background-color: #f87171;
}

.tw-text-red-400 {
    color: #f87171;
}

.tw-bg-red-500 {
    background-color: #ef4444;
}

.tw-text-red-500 {
    color: #ef4444;
}

.tw-bg-red-600 {
    background-color: #dc2626;
}

.tw-text-red-600 {
    color: #dc2626;
}

.tw-bg-red-700 {
    background-color: #b91c1c;
}

.tw-text-red-700 {
    color: #b91c1c;
}

.tw-bg-red-800 {
    background-color: #991b1b;
}

.tw-text-red-800 {
    color: #991b1b;
}

.tw-bg-red-900 {
    background-color: #7f1d1d;
}

.tw-text-red-900 {
    color: #7f1d1d;
}

.tw-bg-red-950 {
    background-color: #450a0a;
}

.tw-text-red-950 {
    color: #450a0a;
}

.tw-bg-orange-50 {
    background-color: #fff7ed;
}

.tw-text-orange-50 {
    color: #fff7ed;
}

.tw-bg-orange-100 {
    background-color: #ffedd5;
}

.tw-text-orange-100 {
    color: #ffedd5;
}

.tw-bg-orange-200 {
    background-color: #fed7aa;
}

.tw-text-orange-200 {
    color: #fed7aa;
}

.tw-bg-orange-300 {
    background-color: #fdba74;
}

.tw-text-orange-300 {
    color: #fdba74;
}

.tw-bg-orange-400 {
    background-color: #fb923c;
}

.tw-text-orange-400 {
    color: #fb923c;
}

.tw-bg-orange-500 {
    background-color: #f97316;
}

.tw-text-orange-500 {
    color: #f97316;
}

.tw-bg-orange-600 {
    background-color: #ea580c;
}

.tw-text-orange-600 {
    color: #ea580c;
}

.tw-bg-orange-700 {
    background-color: #c2410c;
}

.tw-text-orange-700 {
    color: #c2410c;
}

.tw-bg-orange-800 {
    background-color: #9a3412;
}

.tw-text-orange-800 {
    color: #9a3412;
}

.tw-bg-orange-900 {
    background-color: #7c2d12;
}

.tw-text-orange-900 {
    color: #7c2d12;
}

.tw-bg-orange-950 {
    background-color: #431407;
}

.tw-text-orange-950 {
    color: #431407;
}

.tw-bg-amber-50 {
    background-color: #fffbeb;
}

.tw-text-amber-50 {
    color: #fffbeb;
}

.tw-bg-amber-100 {
    background-color: #fef3c7;
}

.tw-text-amber-100 {
    color: #fef3c7;
}

.tw-bg-amber-200 {
    background-color: #fde68a;
}

.tw-text-amber-200 {
    color: #fde68a;
}

.tw-bg-amber-300 {
    background-color: #fcd34d;
}

.tw-text-amber-300 {
    color: #fcd34d;
}

.tw-bg-amber-400 {
    background-color: #fbbf24;
}

.tw-text-amber-400 {
    color: #fbbf24;
}

.tw-bg-amber-500 {
    background-color: #f59e0b;
}

.tw-text-amber-500 {
    color: #f59e0b;
}

.tw-bg-amber-600 {
    background-color: #d97706;
}

.tw-text-amber-600 {
    color: #d97706;
}

.tw-bg-amber-700 {
    background-color: #b45309;
}

.tw-text-amber-700 {
    color: #b45309;
}

.tw-bg-amber-800 {
    background-color: #92400e;
}

.tw-text-amber-800 {
    color: #92400e;
}

.tw-bg-amber-900 {
    background-color: #78350f;
}

.tw-text-amber-900 {
    color: #78350f;
}

.tw-bg-amber-950 {
    background-color: #451a03;
}

.tw-text-amber-950 {
    color: #451a03;
}

.tw-bg-yellow-50 {
    background-color: #fefce8;
}

.tw-text-yellow-50 {
    color: #fefce8;
}

.tw-bg-yellow-100 {
    background-color: #fef9c3;
}

.tw-text-yellow-100 {
    color: #fef9c3;
}

.tw-bg-yellow-200 {
    background-color: #fef08a;
}

.tw-text-yellow-200 {
    color: #fef08a;
}

.tw-bg-yellow-300 {
    background-color: #fde047;
}

.tw-text-yellow-300 {
    color: #fde047;
}

.tw-bg-yellow-400 {
    background-color: #facc15;
}

.tw-text-yellow-400 {
    color: #facc15;
}

.tw-bg-yellow-500 {
    background-color: #eab308;
}

.tw-text-yellow-500 {
    color: #eab308;
}

.tw-bg-yellow-600 {
    background-color: #ca8a04;
}

.tw-text-yellow-600 {
    color: #ca8a04;
}

.tw-bg-yellow-700 {
    background-color: #a16207;
}

.tw-text-yellow-700 {
    color: #a16207;
}

.tw-bg-yellow-800 {
    background-color: #854d0e;
}

.tw-text-yellow-800 {
    color: #854d0e;
}

.tw-bg-yellow-900 {
    background-color: #713f12;
}

.tw-text-yellow-900 {
    color: #713f12;
}

.tw-bg-yellow-950 {
    background-color: #422006;
}

.tw-text-yellow-950 {
    color: #422006;
}

.tw-bg-lime-50 {
    background-color: #f7fee7;
}

.tw-text-lime-50 {
    color: #f7fee7;
}

.tw-bg-lime-100 {
    background-color: #ecfccb;
}

.tw-text-lime-100 {
    color: #ecfccb;
}

.tw-bg-lime-200 {
    background-color: #d9f99d;
}

.tw-text-lime-200 {
    color: #d9f99d;
}

.tw-bg-lime-300 {
    background-color: #bef264;
}

.tw-text-lime-300 {
    color: #bef264;
}

.tw-bg-lime-400 {
    background-color: #a3e635;
}

.tw-text-lime-400 {
    color: #a3e635;
}

.tw-bg-lime-500 {
    background-color: #84cc16;
}

.tw-text-lime-500 {
    color: #84cc16;
}

.tw-bg-lime-600 {
    background-color: #65a30d;
}

.tw-text-lime-600 {
    color: #65a30d;
}

.tw-bg-lime-700 {
    background-color: #4d7c0f;
}

.tw-text-lime-700 {
    color: #4d7c0f;
}

.tw-bg-lime-800 {
    background-color: #3f6212;
}

.tw-text-lime-800 {
    color: #3f6212;
}

.tw-bg-lime-900 {
    background-color: #365314;
}

.tw-text-lime-900 {
    color: #365314;
}

.tw-bg-lime-950 {
    background-color: #1a2e05;
}

.tw-text-lime-950 {
    color: #1a2e05;
}

.tw-bg-green-50 {
    background-color: #f0fdf4;
}

.tw-text-green-50 {
    color: #f0fdf4;
}

.tw-bg-green-100 {
    background-color: #dcfce7;
}

.tw-text-green-100 {
    color: #dcfce7;
}

.tw-bg-green-200 {
    background-color: #bbf7d0;
}

.tw-text-green-200 {
    color: #bbf7d0;
}

.tw-bg-green-300 {
    background-color: #86efac;
}

.tw-text-green-300 {
    color: #86efac;
}

.tw-bg-green-400 {
    background-color: #4ade80;
}

.tw-text-green-400 {
    color: #4ade80;
}

.tw-bg-green-500 {
    background-color: #22c55e;
}

.tw-text-green-500 {
    color: #22c55e;
}

.tw-bg-green-600 {
    background-color: #16a34a;
}

.tw-text-green-600 {
    color: #16a34a;
}

.tw-bg-green-700 {
    background-color: #15803d;
}

.tw-text-green-700 {
    color: #15803d;
}

.tw-bg-green-800 {
    background-color: #166534;
}

.tw-text-green-800 {
    color: #166534;
}

.tw-bg-green-900 {
    background-color: #14532d;
}

.tw-text-green-900 {
    color: #14532d;
}

.tw-bg-green-950 {
    background-color: #052e16;
}

.tw-text-green-950 {
    color: #052e16;
}

.tw-bg-emerald-50 {
    background-color: #ecfdf5;
}

.tw-text-emerald-50 {
    color: #ecfdf5;
}

.tw-bg-emerald-100 {
    background-color: #d1fae5;
}

.tw-text-emerald-100 {
    color: #d1fae5;
}

.tw-bg-emerald-200 {
    background-color: #a7f3d0;
}

.tw-text-emerald-200 {
    color: #a7f3d0;
}

.tw-bg-emerald-300 {
    background-color: #6ee7b7;
}

.tw-text-emerald-300 {
    color: #6ee7b7;
}

.tw-bg-emerald-400 {
    background-color: #34d399;
}

.tw-text-emerald-400 {
    color: #34d399;
}

.tw-bg-emerald-500 {
    background-color: #10b981;
}

.tw-text-emerald-500 {
    color: #10b981;
}

.tw-bg-emerald-600 {
    background-color: #059669;
}

.tw-text-emerald-600 {
    color: #059669;
}

.tw-bg-emerald-700 {
    background-color: #047857;
}

.tw-text-emerald-700 {
    color: #047857;
}

.tw-bg-emerald-800 {
    background-color: #065f46;
}

.tw-text-emerald-800 {
    color: #065f46;
}

.tw-bg-emerald-900 {
    background-color: #064e3b;
}

.tw-text-emerald-900 {
    color: #064e3b;
}

.tw-bg-emerald-950 {
    background-color: #022c22;
}

.tw-text-emerald-950 {
    color: #022c22;
}

.tw-bg-teal-50 {
    background-color: #f0fdfa;
}

.tw-text-teal-50 {
    color: #f0fdfa;
}

.tw-bg-teal-100 {
    background-color: #ccfbf1;
}

.tw-text-teal-100 {
    color: #ccfbf1;
}

.tw-bg-teal-200 {
    background-color: #99f6e4;
}

.tw-text-teal-200 {
    color: #99f6e4;
}

.tw-bg-teal-300 {
    background-color: #5eead4;
}

.tw-text-teal-300 {
    color: #5eead4;
}

.tw-bg-teal-400 {
    background-color: #2dd4bf;
}

.tw-text-teal-400 {
    color: #2dd4bf;
}

.tw-bg-teal-500 {
    background-color: #14b8a6;
}

.tw-text-teal-500 {
    color: #14b8a6;
}

.tw-bg-teal-600 {
    background-color: #0d9488;
}

.tw-text-teal-600 {
    color: #0d9488;
}

.tw-bg-teal-700 {
    background-color: #0f766e;
}

.tw-text-teal-700 {
    color: #0f766e;
}

.tw-bg-teal-800 {
    background-color: #115e59;
}

.tw-text-teal-800 {
    color: #115e59;
}

.tw-bg-teal-900 {
    background-color: #134e4a;
}

.tw-text-teal-900 {
    color: #134e4a;
}

.tw-bg-teal-950 {
    background-color: #042f2e;
}

.tw-text-teal-950 {
    color: #042f2e;
}

.tw-bg-cyan-50 {
    background-color: #ecfeff;
}

.tw-text-cyan-50 {
    color: #ecfeff;
}

.tw-bg-cyan-100 {
    background-color: #cffafe;
}

.tw-text-cyan-100 {
    color: #cffafe;
}

.tw-bg-cyan-200 {
    background-color: #a5f3fc;
}

.tw-text-cyan-200 {
    color: #a5f3fc;
}

.tw-bg-cyan-300 {
    background-color: #67e8f9;
}

.tw-text-cyan-300 {
    color: #67e8f9;
}

.tw-bg-cyan-400 {
    background-color: #22d3ee;
}

.tw-text-cyan-400 {
    color: #22d3ee;
}

.tw-bg-cyan-500 {
    background-color: #06b6d4;
}

.tw-text-cyan-500 {
    color: #06b6d4;
}

.tw-bg-cyan-600 {
    background-color: #0891b2;
}

.tw-text-cyan-600 {
    color: #0891b2;
}

.tw-bg-cyan-700 {
    background-color: #0e7490;
}

.tw-text-cyan-700 {
    color: #0e7490;
}

.tw-bg-cyan-800 {
    background-color: #155e75;
}

.tw-text-cyan-800 {
    color: #155e75;
}

.tw-bg-cyan-900 {
    background-color: #164e63;
}

.tw-text-cyan-900 {
    color: #164e63;
}

.tw-bg-cyan-950 {
    background-color: #083344;
}

.tw-text-cyan-950 {
    color: #083344;
}

.tw-bg-sky-50 {
    background-color: #f0f9ff;
}

.tw-text-sky-50 {
    color: #f0f9ff;
}

.tw-bg-sky-100 {
    background-color: #e0f2fe;
}

.tw-text-sky-100 {
    color: #e0f2fe;
}

.tw-bg-sky-200 {
    background-color: #bae6fd;
}

.tw-text-sky-200 {
    color: #bae6fd;
}

.tw-bg-sky-300 {
    background-color: #7dd3fc;
}

.tw-text-sky-300 {
    color: #7dd3fc;
}

.tw-bg-sky-400 {
    background-color: #38bdf8;
}

.tw-text-sky-400 {
    color: #38bdf8;
}

.tw-bg-sky-500 {
    background-color: #0ea5e9;
}

.tw-text-sky-500 {
    color: #0ea5e9;
}

.tw-bg-sky-600 {
    background-color: #0284c7;
}

.tw-text-sky-600 {
    color: #0284c7;
}

.tw-bg-sky-700 {
    background-color: #0369a1;
}

.tw-text-sky-700 {
    color: #0369a1;
}

.tw-bg-sky-800 {
    background-color: #075985;
}

.tw-text-sky-800 {
    color: #075985;
}

.tw-bg-sky-900 {
    background-color: #0c4a6e;
}

.tw-text-sky-900 {
    color: #0c4a6e;
}

.tw-bg-sky-950 {
    background-color: #082f49;
}

.tw-text-sky-950 {
    color: #082f49;
}

.tw-bg-blue-50 {
    background-color: #eff6ff;
}

.tw-text-blue-50 {
    color: #eff6ff;
}

.tw-bg-blue-100 {
    background-color: #dbeafe;
}

.tw-text-blue-100 {
    color: #dbeafe;
}

.tw-bg-blue-200 {
    background-color: #bfdbfe;
}

.tw-text-blue-200 {
    color: #bfdbfe;
}

.tw-bg-blue-300 {
    background-color: #93c5fd;
}

.tw-text-blue-300 {
    color: #93c5fd;
}

.tw-bg-blue-400 {
    background-color: #60a5fa;
}

.tw-text-blue-400 {
    color: #60a5fa;
}

.tw-bg-blue-500 {
    background-color: #3b82f6;
}

.tw-text-blue-500 {
    color: #3b82f6;
}

.tw-bg-blue-600 {
    background-color: #2563eb;
}

.tw-text-blue-600 {
    color: #2563eb;
}

.tw-bg-blue-700 {
    background-color: #1d4ed8;
}

.tw-text-blue-700 {
    color: #1d4ed8;
}

.tw-bg-blue-800 {
    background-color: #1e40af;
}

.tw-text-blue-800 {
    color: #1e40af;
}

.tw-bg-blue-900 {
    background-color: #1e3a8a;
}

.tw-text-blue-900 {
    color: #1e3a8a;
}

.tw-bg-blue-950 {
    background-color: #172554;
}

.tw-text-blue-950 {
    color: #172554;
}

.tw-bg-indigo-50 {
    background-color: #eef2ff;
}

.tw-text-indigo-50 {
    color: #eef2ff;
}

.tw-bg-indigo-100 {
    background-color: #e0e7ff;
}

.tw-text-indigo-100 {
    color: #e0e7ff;
}

.tw-bg-indigo-200 {
    background-color: #c7d2fe;
}

.tw-text-indigo-200 {
    color: #c7d2fe;
}

.tw-bg-indigo-300 {
    background-color: #a5b4fc;
}

.tw-text-indigo-300 {
    color: #a5b4fc;
}

.tw-bg-indigo-400 {
    background-color: #818cf8;
}

.tw-text-indigo-400 {
    color: #818cf8;
}

.tw-bg-indigo-500 {
    background-color: #6366f1;
}

.tw-text-indigo-500 {
    color: #6366f1;
}

.tw-bg-indigo-600 {
    background-color: #4f46e5;
}

.tw-text-indigo-600 {
    color: #4f46e5;
}

.tw-bg-indigo-700 {
    background-color: #4338ca;
}

.tw-text-indigo-700 {
    color: #4338ca;
}

.tw-bg-indigo-800 {
    background-color: #3730a3;
}

.tw-text-indigo-800 {
    color: #3730a3;
}

.tw-bg-indigo-900 {
    background-color: #312e81;
}

.tw-text-indigo-900 {
    color: #312e81;
}

.tw-bg-indigo-950 {
    background-color: #1e1b4b;
}

.tw-text-indigo-950 {
    color: #1e1b4b;
}

.tw-bg-violet-50 {
    background-color: #f5f3ff;
}

.tw-text-violet-50 {
    color: #f5f3ff;
}

.tw-bg-violet-100 {
    background-color: #ede9fe;
}

.tw-text-violet-100 {
    color: #ede9fe;
}

.tw-bg-violet-200 {
    background-color: #ddd6fe;
}

.tw-text-violet-200 {
    color: #ddd6fe;
}

.tw-bg-violet-300 {
    background-color: #c4b5fd;
}

.tw-text-violet-300 {
    color: #c4b5fd;
}

.tw-bg-violet-400 {
    background-color: #a78bfa;
}

.tw-text-violet-400 {
    color: #a78bfa;
}

.tw-bg-violet-500 {
    background-color: #8b5cf6;
}

.tw-text-violet-500 {
    color: #8b5cf6;
}

.tw-bg-violet-600 {
    background-color: #7c3aed;
}

.tw-text-violet-600 {
    color: #7c3aed;
}

.tw-bg-violet-700 {
    background-color: #6d28d9;
}

.tw-text-violet-700 {
    color: #6d28d9;
}

.tw-bg-violet-800 {
    background-color: #5b21b6;
}

.tw-text-violet-800 {
    color: #5b21b6;
}

.tw-bg-violet-900 {
    background-color: #4c1d95;
}

.tw-text-violet-900 {
    color: #4c1d95;
}

.tw-bg-violet-950 {
    background-color: #2e1065;
}

.tw-text-violet-950 {
    color: #2e1065;
}

.tw-bg-purple-50 {
    background-color: #faf5ff;
}

.tw-text-purple-50 {
    color: #faf5ff;
}

.tw-bg-purple-100 {
    background-color: #f3e8ff;
}

.tw-text-purple-100 {
    color: #f3e8ff;
}

.tw-bg-purple-200 {
    background-color: #e9d5ff;
}

.tw-text-purple-200 {
    color: #e9d5ff;
}

.tw-bg-purple-300 {
    background-color: #d8b4fe;
}

.tw-text-purple-300 {
    color: #d8b4fe;
}

.tw-bg-purple-400 {
    background-color: #c084fc;
}

.tw-text-purple-400 {
    color: #c084fc;
}

.tw-bg-purple-500 {
    background-color: #a855f7;
}

.tw-text-purple-500 {
    color: #a855f7;
}

.tw-bg-purple-600 {
    background-color: #9333ea;
}

.tw-text-purple-600 {
    color: #9333ea;
}

.tw-bg-purple-700 {
    background-color: #7e22ce;
}

.tw-text-purple-700 {
    color: #7e22ce;
}

.tw-bg-purple-800 {
    background-color: #6b21a8;
}

.tw-text-purple-800 {
    color: #6b21a8;
}

.tw-bg-purple-900 {
    background-color: #581c87;
}

.tw-text-purple-900 {
    color: #581c87;
}

.tw-bg-purple-950 {
    background-color: #3b0764;
}

.tw-text-purple-950 {
    color: #3b0764;
}

.tw-bg-fuchsia-50 {
    background-color: #fdf4ff;
}

.tw-text-fuchsia-50 {
    color: #fdf4ff;
}

.tw-bg-fuchsia-100 {
    background-color: #fae8ff;
}

.tw-text-fuchsia-100 {
    color: #fae8ff;
}

.tw-bg-fuchsia-200 {
    background-color: #f5d0fe;
}

.tw-text-fuchsia-200 {
    color: #f5d0fe;
}

.tw-bg-fuchsia-300 {
    background-color: #f0abfc;
}

.tw-text-fuchsia-300 {
    color: #f0abfc;
}

.tw-bg-fuchsia-400 {
    background-color: #e879f9;
}

.tw-text-fuchsia-400 {
    color: #e879f9;
}

.tw-bg-fuchsia-500 {
    background-color: #d946ef;
}

.tw-text-fuchsia-500 {
    color: #d946ef;
}

.tw-bg-fuchsia-600 {
    background-color: #c026d3;
}

.tw-text-fuchsia-600 {
    color: #c026d3;
}

.tw-bg-fuchsia-700 {
    background-color: #a21caf;
}

.tw-text-fuchsia-700 {
    color: #a21caf;
}

.tw-bg-fuchsia-800 {
    background-color: #86198f;
}

.tw-text-fuchsia-800 {
    color: #86198f;
}

.tw-bg-fuchsia-900 {
    background-color: #701a75;
}

.tw-text-fuchsia-900 {
    color: #701a75;
}

.tw-bg-fuchsia-950 {
    background-color: #4a044e;
}

.tw-text-fuchsia-950 {
    color: #4a044e;
}

.tw-bg-pink-50 {
    background-color: #fdf2f8;
}

.tw-text-pink-50 {
    color: #fdf2f8;
}

.tw-bg-pink-100 {
    background-color: #fce7f3;
}

.tw-text-pink-100 {
    color: #fce7f3;
}

.tw-bg-pink-200 {
    background-color: #fbcfe8;
}

.tw-text-pink-200 {
    color: #fbcfe8;
}

.tw-bg-pink-300 {
    background-color: #f9a8d4;
}

.tw-text-pink-300 {
    color: #f9a8d4;
}

.tw-bg-pink-400 {
    background-color: #f472b6;
}

.tw-text-pink-400 {
    color: #f472b6;
}

.tw-bg-pink-500 {
    background-color: #ec4899;
}

.tw-text-pink-500 {
    color: #ec4899;
}

.tw-bg-pink-600 {
    background-color: #db2777;
}

.tw-text-pink-600 {
    color: #db2777;
}

.tw-bg-pink-700 {
    background-color: #be185d;
}

.tw-text-pink-700 {
    color: #be185d;
}

.tw-bg-pink-800 {
    background-color: #9d174d;
}

.tw-text-pink-800 {
    color: #9d174d;
}

.tw-bg-pink-900 {
    background-color: #831843;
}

.tw-text-pink-900 {
    color: #831843;
}

.tw-bg-pink-950 {
    background-color: #500724;
}

.tw-text-pink-950 {
    color: #500724;
}

.tw-bg-rose-50 {
    background-color: #fff1f2;
}

.tw-text-rose-50 {
    color: #fff1f2;
}

.tw-bg-rose-100 {
    background-color: #ffe4e6;
}

.tw-text-rose-100 {
    color: #ffe4e6;
}

.tw-bg-rose-200 {
    background-color: #fecdd3;
}

.tw-text-rose-200 {
    color: #fecdd3;
}

.tw-bg-rose-300 {
    background-color: #fda4af;
}

.tw-text-rose-300 {
    color: #fda4af;
}

.tw-bg-rose-400 {
    background-color: #fb7185;
}

.tw-text-rose-400 {
    color: #fb7185;
}

.tw-bg-rose-500 {
    background-color: #f43f5e;
}

.tw-text-rose-500 {
    color: #f43f5e;
}

.tw-bg-rose-600 {
    background-color: #e11d48;
}

.tw-text-rose-600 {
    color: #e11d48;
}

.tw-bg-rose-700 {
    background-color: #be123c;
}

.tw-text-rose-700 {
    color: #be123c;
}

.tw-bg-rose-800 {
    background-color: #9f1239;
}

.tw-text-rose-800 {
    color: #9f1239;
}

.tw-bg-rose-900 {
    background-color: #881337;
}

.tw-text-rose-900 {
    color: #881337;
}

.tw-bg-rose-950 {
    background-color: #4c0519;
}

.tw-text-rose-950 {
    color: #4c0519;
}

.tw-bg-black {
    background-color: #000;
}

.tw-text-black {
    color: #000;
}

.tw-bg-white {
    background-color: #fff;
}

.tw-text-white {
    color: #fff;
}

.tw-bg-transparent {
    background-color: transparent;
}

.tw-text-transparent {
    color: transparent;
}

.tw-bg-current {
    background-color: currentColor;
}

.tw-text-current {
    color: currentColor;
}
