﻿.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.split {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: black;
}

.split-left {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 0 25rem; /* Changed from 400px to 25rem */
    -ms-flex: 0 0 25rem;
    flex: 0 0 25rem;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}

.split-right {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 1 0;
    -ms-flex: 1 0;
    flex: 1 0;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}

.split-bottom {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 1 0;
    -ms-flex: 1 0;
    flex: 1 0;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}

/*DISPLAY CLASSES*/
.d-inblock {
    display: inline-block;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: end;
}

/*OVERFLOW CLASSES*/
.o-auto {
    overflow: auto;
}

.o-hidding {
    overflow: hidden;
}

/*PADDING CLASSES - Convert to rem units*/
.p-0 {
    padding: 0 !important;
}

.pb-10 {
    padding-bottom: 0.625rem; /* Changed from 10px to rem */
}

.p-5 {
    padding: 0.3125rem; /* Changed from 5px to rem */
}

.p-10 {
    padding: 0.625rem; /* Changed from 10px to rem */
}

.p-12 {
    padding: 0.75rem; /* Changed from 12px to rem */
}

.p-20 {
    padding: 1.25rem; /* Changed from 20px to rem */
}

.p-50 {
    padding: 3.125rem; /* Changed from 50px to rem */
}

.pb-5 {
    padding-bottom: 0.3125rem; /* Changed from 5px to rem */
}

.pb-15 {
    padding-bottom: 0.9375rem; /* Changed from 15px to rem */
}

.pb-20 {
    padding-bottom: 1.25rem; /* Changed from 20px to rem */
}

.pt-2 {
    padding-top: 0.125rem; /* Changed from 2px to rem */
}

.pt-5 {
    padding-top: 0.3125rem; /* Changed from 5px to rem */
}

.pt-12 {
    padding-top: 0.75rem; /* Changed from 12px to rem */
}

.pt-10 {
    padding-top: 0.625rem; /* Changed from 10px to rem */
}

.pt-15 {
    padding-top: 0.9375rem; /* Changed from 15px to rem */
}

.pt-20 {
    padding-top: 1.25rem; /* Changed from 20px to rem */
}

.pt-30 {
    padding-top: 1.875rem; /* Changed from 30px to rem */
}

.pt-40 {
    padding-top: 2.5rem; /* Changed from 40px to rem */
}

.pl-10 {
    padding-left: 0.625rem; /* Changed from 10px to rem */
}

.p-10-14 {
    padding: 0.625rem 0.875rem; /* Changed from 10px 14px to rem */
}

.p-10-5 {
    padding: 0.625rem 0.3125rem; /* Changed from 10px 5px to rem */
}

.p-10-0 {
    padding: 0.625rem 0; /* Changed from 10px 0px to rem */
}

.p-0-10 {
    padding: 0 0.625rem; /* Changed from 0px 10px to rem */
}

.p-5-0 {
    padding: 0.3125rem 0; /* Changed from 5px 0px to rem */
}

.p-10-15 {
    padding: 0.625rem 0.9375rem; /* Changed from 10px 15px to rem */
}

/*MARGIN CLASSES - Convert to rem units*/
.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.mb-10 {
    margin-bottom: 0.625rem; /* Changed from 10px to rem */
}

.mt-10 {
    margin-top: 0.625rem; /* Changed from 10px to rem */
}

.mt-20 {
    margin-top: 1.25rem; /* Changed from 20px to rem */
}

.m-30 {
    margin: 1.875rem; /* Changed from 30px to rem */
}

.m-10-0 {
    margin: 0.625rem 0; /* Changed from 10px 0px to rem */
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

/*COLOR CLASSES*/
.mc-blue {
    color: #006dcc;
}

.red {
    color: red;
}

.bg-main {
    background-color: #1a1a1a;
}

.white {
    color: #dddddd;
}

.yellow {
    color: #ebeb00;
}

.black {
    color: black;
}

.bg-black {
    background-color: #000000;
}

.bg-op {
    background-color: rgba(0,0,0,0.8);
}

.op-4 {
    opacity: 0.4;
}

.op-7 {
    opacity: 0.7;
}

/*POSITION CLASSES*/
.p-rel {
    position: relative;
}

.vert-top {
    vertical-align: top !important;
}

.vert-middle {
    vertical-align: middle !important;
}

/*WIDTH CLASSES - Make more flexible*/
.maxw-400 {
    max-width: 25rem; /* Changed from 400px to rem */
    width: 100%; /* Add responsive width */
}

.w-20 {
    width: 20%;
}

.w-35 {
    width: 35%;
}

.w-60 {
    width: 60%;
}

.w-100 {
    width: 100%;
}

.w-300 {
    width: 18.75rem; /* Changed from 300px to rem */
    max-width: 100%; /* Ensure it doesn't overflow */
}

/*TEXT/FONT CLASSES*/
.uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.bold {
    font-weight: bold;
}

.lighter {
    font-weight: lighter;
}

/* Standardized Font Scale - Base 16px (1rem) */
.font-12 {
    font-size: 0.75rem;    /* 12px equivalent */
}

.font-13 {
    font-size: 0.8125rem;  /* 13px equivalent */
}

.font-16 {
    font-size: 1rem;       /* 16px equivalent - base size */
}

.font-17 {
    font-size: 1.0625rem;  /* 17px equivalent */
}

.font-18 {
    font-size: 1.125rem;   /* 18px equivalent */
}

.font-20 {
    font-size: 1.25rem !important;  /* 20px equivalent */
}

.font-22 {
    font-size: 1.375rem;   /* 22px equivalent */
}

.font-24 {
    font-size: 1.5rem;     /* 24px equivalent */
}

.font-25 {
    font-size: 1.5625rem;  /* 25px equivalent */
}

.font-30 {
    font-size: 1.875rem;   /* 30px equivalent */
}

/* Additional semantic font sizes for better hierarchy */
.font-small {
    font-size: 0.875rem;   /* 14px - small text */
}

.font-body {
    font-size: 1rem;       /* 16px - body text */
}

.font-large {
    font-size: 1.125rem;   /* 18px - large body text */
}

.font-heading-6 {
    font-size: 1.25rem;    /* 20px - h6 size */
}

.font-heading-5 {
    font-size: 1.375rem;   /* 22px - h5 size */
}

.font-heading-4 {
    font-size: 1.5rem;     /* 24px - h4 size */
}

.font-heading-3 {
    font-size: 1.75rem;    /* 28px - h3 size */
}

.font-heading-2 {
    font-size: 2rem;       /* 32px - h2 size */
}

.font-heading-1 {
    font-size: 2.5rem;     /* 40px - h1 size */
}

/*HEIGHT CLASSES - Make flexible*/
.mh-461 {
    min-height: auto; /* Remove fixed height constraint */
}

.h-50 {
    min-height: 3.125rem; /* Changed from 50px to rem */
    height: auto; /* Keep flexible height */
}

.h-245 {
    min-height: 15.3125rem; /* Changed from 245px to rem, use min-height */
    height: auto; /* Make height flexible */
}

.lh-25 {
    line-height: 1.5625rem; /* Changed from 25px to rem */
}

.lh-15 {
    line-height: 0.9375rem; /* Changed from 15px to rem */
}

.lh-17 {
    line-height: 1.0625rem; /* Changed from 17px to rem */
}

.lh-30 {
    line-height: 1.875rem; /* Changed from 30px to rem */
}

/* Additional responsive utility classes */
.min-w-0 {
    min-width: 0; /* Prevent flex item from growing beyond container */
}

.max-w-full {
    max-width: 100%;
}

.overflow-wrap {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Container classes for better responsive behavior */
.container-fluid {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.container-sm {
    max-width: 36rem; /* 576px equivalent */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.container-md {
    max-width: 48rem; /* 768px equivalent */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.container-lg {
    max-width: 62rem; /* 992px equivalent */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

