@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Roboto:wght@400;700&display=swap');

/* ROOT VARIABLES */
:root {

    /* Fonts */
    --font-family-sans: 'Roboto', sans-serif;
    --font-family-serif: 'Merriweather', serif;

    /* Colors */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-light-grey: #dddddd;
    --color-dark-grey: #444444;
    --color-success: #28a745;
    --color-warning: #ffc107;
    --color-danger: #dc3545;

    /* Font sizes */
    --font-title: 2.5rem;
    --font-subtitle: 1.7rem;
    --font-body: 1rem;
    --font-helper: 0.8rem;

    /* Line heights */
    --line-height-title: 1.2;
    --line-height-subtitle: 1.4;
    --line-height-body: 1.6;
    --line-height-helper: 1.4;

    /* Font weights */
    --extra-bold:800;
    --bold:700;
    --semi-bold:600;
    --medium:500;
    --regular:400;
    --light:300;
    --extra-light:200;
    
    /* Adjust as needed */
    --font-weight-regular: normal;

    /* Borders */
    --card-corners: 6px;
    --no-border: 0px solid black;

}


/* Fonts */
.title-font {
    font-family: var(--font-family-serif);
    font-size: var(--font-title);
    line-height: var(--line-height-title);
    font-weight: var(--font-weight-bold);
}

.subtitle-font {
    font-family: var(--font-family-sans);
    font-size: var(--font-subtitle);
    line-height: var(--line-height-subtitle);
    font-weight: var(--font-weight-medium);
}

.body-font {
    font-family: var(--font-family-sans);
    font-size: var(--font-body);
    line-height: var(--line-height-body);
    font-weight: var(--font-weight-regular);
}

.helper-font {
    font-family: var(--font-family-sans);
    font-size: var(--font-helper);
    line-height: var(--line-height-helper);
    font-weight: var(--font-weight-regular);
}


/* Color Classes */
.text-black {
    color: var(--color-black);
}

.text-white {
    color: var(--color-white);
}

.text-light-grey {
    color: var(--color-light-grey);
}

.text-dark-grey {
    color: var(--color-dark-grey);
}

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

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

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


/* Color Classes for Backgrounds */
.bg-black {
    background-color: var(--color-black);
}

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

.bg-light-grey {
    background-color: var(--color-light-grey);
}

.bg-dark-grey {
    background-color: var(--color-dark-grey);
}

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

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

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


/* Color Classes for Borders */
.border-black {
    border-color: var(--color-black);
}

.border-white {
    border-color: var(--color-white);
}

.border-light-grey {
    border-color: var(--color-light-grey);
}

.border-dark-grey {
    border-color: var(--color-dark-grey);
}

.border-success {
    border-color: var(--color-success);
}

.border-warning {
    border-color: var(--color-warning);
}

.border-danger {
    border-color: var(--color-danger);
}


/* Frames */
.frame-square {
    border-radius: 0;
}

.frame-rounded {
    border-radius: 0.25rem;
    /* Adjust as needed */
}

.frame-pill {
    border-radius: 9999px;
}

.frame-circle {
    border-radius: 50%;
}

.frame-sixes{
    border-radius:6px;
}


/* Shadows */
.shadow-light {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.shadow-medium {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.shadow-heavy {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}


/* FONT STYLES AND MODIFICATIONS */
.italic {
    font-style: italic;
}

.underlined {
    text-decoration: underline;
    text-decoration-color: inherit;
}

.bold {
    font-weight: bold;
}

.upper {
    text-transform: uppercase;
}

.lower {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}


/* WIDTH AND HEIGHT */
.w-full {
    width: 100%;
}

.w-wrap {
    width: auto;
}

.w-one-third {
    width: 33%;
}

.w-half {
    width: 50%;
}

.w-two-third {
    width: 66%;
}

.h-fill {
    height: 100%;
}

.h-wrap {
    height: auto;
}

.h-one-third {
    height: 33%;
}

.h-half {
    height: 50%;
}

.h-two-third {
    height: 66%;
}

.w-20 {
    width: 20px;
}

.w-30 {
    width: 30px;
}

.w-40 {
    width: 40px;
}

.w-60 {
    width: 60px;
}

.w-80 {
    width: 80px;
}

.w-100 {
    width: 100px;
}

.w-200 {
    width: 200px;
}

.w-300 {
    width: 300px;
}

.w-400 {
    width: 400px;
}

.w-500 {
    width: 500px;
}

.w-600 {
    width: 600px;
}

.w-700 {
    width: 700px;
}

.w-800 {
    width: 800px;
}

.w-900 {
    width: 900px;
}

.w-1000 {
    width: 1000px;
}

.w-1100 {
    width: 1100px;
}

.w-1200 {
    width: 1200px;
}

.w-1300 {
    width: 1300px;
}

.w-1400 {
    width: 1400px;
}

.w-1500 {
    width: 1500px;
}

.w-1600 {
    width: 1600px;
}

.h-20 {
    height: 20px;
}

.h-30 {
    height: 30px;
}

.h-40 {
    height: 40px;
}

.h-60 {
    height: 60px;
}

.h-80 {
    height: 80px;
}

.h-100 {
    height: 100px;
}

.h-200 {
    height: 200px;
}

.h-300 {
    height: 300px;
}

.h-400 {
    height: 400px;
}

.h-500 {
    height: 500px;
}

.h-600 {
    height: 600px;
}

.h-700 {
    height: 700px;
}

.h-800 {
    height: 800px;
}

.h-900 {
    height: 900px;
}

.h-1000 {
    height: 1000px;
}

.h-1100 {
    height: 1100px;
}

.h-1200 {
    height: 1200px;
}

.h-1300 {
    height: 1300px;
}

.h-1400 {
    height: 1400px;
}

.w-min-20 {
    min-width: 20px;
}

.w-min-40 {
    min-width: 40px;
}

.w-min-60 {
    min-width: 60px;
}

.w-min-80 {
    min-width: 80px;
}

.w-min-100 {
    min-width: 100px;
}

.w-min-200 {
    min-width: 200px;
}

.w-min-300 {
    min-width: 300px;
}

.w-min-400 {
    min-width: 400px;
}

.w-min-500 {
    min-width: 500px;
}

.w-min-600 {
    min-width: 600px;
}

.w-min-700 {
    min-width: 700px;
}

.w-min-800 {
    min-width: 800px;
}

.w-min-900 {
    min-width: 900px;
}

.w-min-1000 {
    min-width: 1000px;
}

.w-min-1100 {
    min-width: 1100px;
}

.w-min-1200 {
    min-width: 1200px;
}

.w-min-1300 {
    min-width: 1300px;
}

.w-min-1400 {
    min-width: 1400px;
}

.h-min-20 {
    min-height: 20px;
}

.h-min-40 {
    min-height: 40px;
}

.h-min-60 {
    min-height: 60px;
}

.h-min-80 {
    min-height: 80px;
}

.h-min-100 {
    min-height: 100px;
}

.h-min-200 {
    min-height: 200px;
}

.h-min-300 {
    min-height: 300px;
}

.h-min-400 {
    min-height: 400px;
}

.h-min-500 {
    min-height: 500px;
}

.h-min-600 {
    min-height: 600px;
}

.h-min-700 {
    min-height: 700px;
}

.h-min-800 {
    min-height: 800px;
}

.h-min-900 {
    min-height: 900px;
}

.h-min-1000 {
    min-height: 1000px;
}

.h-min-1100 {
    min-height: 1100px;
}

.h-min-1200 {
    min-height: 1200px;
}

.h-min-1300 {
    min-height: 1300px;
}

.h-min-1400 {
    min-height: 1400px;
}

.w-max-20 {
    max-width: 20px;
}

.w-max-40 {
    max-width: 40px;
}

.w-max-60 {
    max-width: 60px;
}

.w-max-80 {
    max-width: 80px;
}

.w-max-100 {
    max-width: 100px;
}

.w-max-200 {
    max-width: 200px;
}

.w-max-300 {
    max-width: 300px;
}

.w-max-400 {
    max-width: 400px;
}

.w-max-500 {
    max-width: 500px;
}

.w-max-600 {
    max-width: 600px;
}

.w-max-700 {
    max-width: 700px;
}

.w-max-800 {
    max-width: 800px;
}

.w-max-900 {
    max-width: 900px;
}

.w-max-1000 {
    max-width: 1000px;
}

.w-max-1100 {
    max-width: 1100px;
}

.w-max-1200 {
    max-width: 1200px;
}

.w-max-1300 {
    max-width: 1300px;
}

.w-max-1400 {
    max-width: 1400px;
}

.h-max-20 {
    max-height: 20px;
}

.h-max-40 {
    max-height: 40px;
}

.h-max-60 {
    max-height: 60px;
}

.h-max-80 {
    max-height: 80px;
}

.h-max-100 {
    max-height: 100px;
}

.h-max-200 {
    max-height: 200px;
}

.h-max-300 {
    max-height: 300px;
}

.h-max-400 {
    max-height: 400px;
}

.h-max-500 {
    max-height: 500px;
}

.h-max-600 {
    max-height: 600px;
}

.h-max-700 {
    max-height: 700px;
}

.h-max-800 {
    max-height: 800px;
}

.h-max-900 {
    max-height: 900px;
}

.h-max-1000 {
    max-height: 1000px;
}

.h-max-1100 {
    max-height: 1100px;
}

.h-max-1200 {
    max-height: 1200px;
}

.h-max-1300 {
    max-height: 1300px;
}

.h-max-1400 {
    max-height: 1400px;
}



/* FLEXBOXES */
.flex-13 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

.flex-46 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.flex-79 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
}

.flex-31 {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
}

.flex-64 {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.flex-97 {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
}

.flex-17 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.flex-28 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.flex-39 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}

.flex-71 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.flex-82 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.flex-93 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.flex-2-around {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
}

.flex-2-between {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.flex-2-even {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
}

.flex-8-around {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-end;
}

.flex-8-between {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.flex-8-even {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-end;
}

.flex-4-around {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}

.flex-4-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.flex-4-even {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
}

.flex-6-around {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
}

.flex-6-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.flex-6-even {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-end;
}

.flex-5r-around {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.flex-5r-between {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.flex-5r-even {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.flex-5c-around {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.flex-5c-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.flex-5c-even {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}



/* CURSORS */
.clickable {
    cursor: pointer;
}

.highlightable {
    cursor: text;
}

.grabbable {
    cursor: grab;
}

.copyable {
    cursor: copy;
}

.unclickable {
    cursor: none;
}

.uninteractive {
    cursor: default;
}



/* VISIBILITY */
.hide {
    display: none !important;
}

.invisible {
    opacity: 0;
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-20 {
    opacity: 0.2;
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-40 {
    opacity: 0.4;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-90 {
    opacity: 0.9;
}

.opaque {
    opacity: 1;
}



/* BORDERS */
.borderless {
    border: 0px solid black;
}



/* Z INDEX */
.z1 {
    z-index: 1;
}

.z2 {
    z-index: 2;
}

.z3 {
    z-index: 3;
}

.z4 {
    z-index: 4;
}

.z5 {
    z-index: 5;
}

.z6 {
    z-index: 6;
}



/* TEXT ALIGN */
.align-left {
    text-align: left;
}

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

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



/* IMAGE */
.image-contain {
    object-fit: contain;
    width:100%;
    height:100%;
}

.image-cover {
    object-fit: cover;
    width:100%;
    height:100%;
}

.image-scale-down {
    object-fit: scale-down;
    width:100%;
    height:100%;
}

.image-fill {
    object-fit: fill;
    width:100%;
    height:100%;
}

.image-blank {
  background-color: var(--color-light-grey);
}




/* OBJECT POSITION */
.ob-0 {
    object-position: center bottom;
}



/* POSITION */
.pos-absolute {
    position: absolute;
}

.pos-relative {
    position: relative;
}


/* Margin Classes */
.mt-0 {
    margin-top: 0;
}

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

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

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

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

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

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

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

.ml-8 {
    margin-left: 8px;
}

.ml-16 {
    margin-left: 16px;
}

.ml-24 {
    margin-left: 24px;
}

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

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

.mr-8 {
    margin-right: 8px;
}

.mr-16 {
    margin-right: 16px;
}

.mr-24 {
    margin-right: 24px;
}


/* Padding Classes */
.pt-0 {
    padding-top: 0;
}

.pt-auto {
    padding-top: auto;
}

.pt-8 {
    padding-top: 8px;
}

.pt-16 {
    padding-top: 16px;
}

.pt-24 {
    padding-top: 24px;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-auto {
    padding-bottom: auto;
}

.pb-8 {
    padding-bottom: 8px;
}

.pb-16 {
    padding-bottom: 16px;
}

.pb-24 {
    padding-bottom: 24px;
}

.pl-0 {
    padding-left: 0;
}

.pl-auto {
    padding-left: auto;
}

.pl-8 {
    padding-left: 8px;
}

.pl-16 {
    padding-left: 16px;
}

.pl-24 {
    padding-left: 24px;
}

.pr-0 {
    padding-right: 0;
}

.pr-auto {
    padding-right: auto;
}

.pr-8 {
    padding-right: 8px;
}

.pr-16 {
    padding-right: 16px;
}

.pr-24 {
    padding-right: 24px;
}





/* POSITIONS */
.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.top-auto {
    top: auto;
}

.right-auto {
    right: auto;
}

.bottom-auto {
    bottom: auto;
}

.left-auto {
    left: auto;
}


/* OVERFLOWS */
.x-auto {
    overflow-x: auto;
}

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

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

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

/* OVERFLOW Y */
.y-auto {
    overflow-y: auto;
}

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

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

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


/* TEXT WRAP */
.text-nowrap {
    white-space: nowrap;
}

.text-wrap {
    white-space: normal;
}

.text-wrap-break-word {
    overflow-wrap: break-word;
}


/* Margin relative units */
.mt-050-rel {
    margin-top: 0.5rem;
}

.mt-100-rel {
    margin-top: 1rem;
}

.mt-150-rel {
    margin-top: 1.5rem;
}

.mt-225-rel {
    margin-top: 2.25rem;
}

.mt-300-rel {
    margin-top: 3rem;
}

.mt-450-rel {
    margin-top: 4.5rem;
}

.mb-050-rel {
    margin-bottom: 0.5rem;
}

.mb-100-rel {
    margin-bottom: 1rem;
}

.mb-150-rel {
    margin-bottom: 1.5rem;
}

.mb-225-rel {
    margin-bottom: 2.25rem;
}

.mb-300-rel {
    margin-bottom: 3rem;
}

.mb-450-rel {
    margin-bottom: 4.5rem;
}

.ml-050-rel {
    margin-left: 0.5rem;
}

.ml-100-rel {
    margin-left: 1rem;
}

.ml-150-rel {
    margin-left: 1.5rem;
}

.ml-225-rel {
    margin-left: 2.25rem;
}

.ml-300-rel {
    margin-left: 3rem;
}

.ml-450-rel {
    margin-left: 4.5rem;
}

.mr-050-rel {
    margin-right: 0.5rem;
}

.mr-100-rel {
    margin-right: 1rem;
}

.mr-150-rel {
    margin-right: 1.5rem;
}

.mr-225-rel {
    margin-right: 2.25rem;
}

.mr-300-rel {
    margin-right: 3rem;
}

.mr-450-rel {
    margin-right: 4.5rem;
}

/* General Margin */
.m-050-rel {
    margin: 0.5rem;
}

.m-100-rel {
    margin: 1rem;
}

.m-150-rel {
    margin: 1.5rem;
}

.m-225-rel {
    margin: 2.25rem;
}

.m-300-rel {
    margin: 3rem;
}

.m-450-rel {
    margin: 4.5rem;
}



/* Padding Top */
.pt-050-rel {
    padding-top: 0.5rem;
}

.pt-100-rel {
    padding-top: 1rem;
}

.pt-150-rel {
    padding-top: 1.5rem;
}

.pt-225-rel {
    padding-top: 2.25rem;
}

.pt-300-rel {
    padding-top: 3rem;
}

.pt-450-rel {
    padding-top: 4.5rem;
}

/* Padding Right */
.pr-050-rel {
    padding-right: 0.5rem;
}

.pr-100-rel {
    padding-right: 1rem;
}

.pr-150-rel {
    padding-right: 1.5rem;
}

.pr-225-rel {
    padding-right: 2.25rem;
}

.pr-300-rel {
    padding-right: 3rem;
}

.pr-450-rel {
    padding-right: 4.5rem;
}

/* Padding Bottom */
.pb-050-rel {
    padding-bottom: 0.5rem;
}

.pb-100-rel {
    padding-bottom: 1rem;
}

.pb-150-rel {
    padding-bottom: 1.5rem;
}

.pb-225-rel {
    padding-bottom: 2.25rem;
}

.pb-300-rel {
    padding-bottom: 3rem;
}

.pb-450-rel {
    padding-bottom: 4.5rem;
}

/* Padding Left */
.pl-050-rel {
    padding-left: 0.5rem;
}

.pl-100-rel {
    padding-left: 1rem;
}

.pl-150-rel {
    padding-left: 1.5rem;
}

.pl-225-rel {
    padding-left: 2.25rem;
}

.pl-300-rel {
    padding-left: 3rem;
}

.pl-450-rel {
    padding-left: 4.5rem;
}

/* General Padding */
.p-050-rel {
    padding: 0.5rem;
}

.p-100-rel {
    padding: 1rem;
}

.p-150-rel {
    padding: 1.5rem;
}

.p-225-rel {
    padding: 2.25rem;
}

.p-300-rel {
    padding: 3rem;
}

.p-450-rel {
    padding: 4.5rem;
}


/* Disabled */
.disabled {
    opacity: 0.7;
    /* Example: reduce opacity for disabled look */
    cursor: not-allowed;
    /* Example: change cursor for disabled state */
}