﻿:root {
    --font-family: "Source Sans Pro";

    --color-primary: #19293f;
    --color-accent: #acb8c8;
    --color-red: #d23e34;
    --color-neutral: #535f6f;
    --color-white: #ffffff;
    --color-dark: #000000;
    --font-size-xs: 0.75rem; /* 12px */
    --line-height-xs: 1rem; /* 16px */

    --font-size-sm: 0.875rem; /* 14px */
    --line-height-sm: 1.25rem; /* 20px */

    --font-size-base: 1rem; /* 16px */
    --line-height-base: 1.5rem; /* 24px */

    --font-size-lg: 1.125rem; /* 18px */
    --line-height-lg: 1.75rem; /* 28px */

    --font-size-xl: 1.25rem; /* 20px */
    --line-height-xl: 1.75rem; /* 28px */

    --font-size-2xl: 1.5rem; /* 24px */
    --line-height-2xl: 2rem; /* 32px */

    --font-size-3xl: 1.875rem; /* 30px */
    --line-height-3xl: 2.25rem; /* 36px */

    --font-size-4xl: 2.25rem; /* 36px */
    --line-height-4xl: 2.5rem; /* 40px */

    --font-size-5xl: 3rem; /* 48px */
    --line-height-5xl: 1;
    --font-size-6xl: 3.75rem; /* 60px */
    --line-height-6xl: 1;
}
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-family);
}
    
a {
    color: var(--color-red);
}
a:link {
    color: var(--color-red);
}

a:visited {
    color: var(--color-red);
}

    a:hover {
        color: var(--color-red) !important;
        text-decoration: none;
    }

    a:active {
        color: var(--color-red) !important;
    }

.text-xs {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
}

.text-sm {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
}

.text-base {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.text-lg {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-lg);
}

.text-xl {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-xl);
}

.text-2xl {
    font-size: var(--font-size-2xl);
    line-height: var(--line-height-2xl);
}

.text-3xl {
    font-size: var(--font-size-3xl);
    line-height: var(--line-height-3xl);
}

.text-4xl {
    font-size: var(--font-size-4xl);
    line-height: var(--line-height-4xl);
}

.text-5xl {
    font-size: var(--font-size-5xl);
    line-height: var(--line-height-5xl);
}

.text-6xl {
    font-size: var(--font-size-6xl);
    line-height: var(--line-height-6xl);
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.font-black {
    font-weight: 900;
}

.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}
.flex-row-reverse {
    flex-direction: row-reverse;
}
.flex-col {
    flex-direction: column;
}
.flex-col-reverse {
    flex-direction: column-reverse;
}

.agency-logo-none {
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
}
    .agency-logo-none > img {
        display: none;
    }
    .agency-logo-none > div {
        display: flex;
        flex-direction: column;
        align-self: flex-end;
    }

.agency-logo-left {
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
}

    .agency-logo-left > div {
        display: flex;
        flex-direction: column;
        align-self: flex-end;
    }

.agency-logo-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.agency-logo-right {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 0.5rem;
}


.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.items-center {
    align-items: center;
}

.items-baseline {
    align-items: baseline;
}

.self-auto {
    align-self: auto;
}
.self-start {
    align-self: flex-start;
}
.self-end {
    align-self: flex-end;
}
.self-center {
    align-self: center;
}
.self-stretch {
    align-self: stretch;
}
.self-baseline {
    align-self: baseline;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-grow {
    flex-grow: 1;
}

.flex-shrink {
    flex-shrink: 1;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.order-last {
    order: 9999;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
/* Extra small devices (phones, up to 320px) */
@media (max-width: 639px) {
    /* CSS rules for extra small devices */
}

/* Small devices (phones, 640px and up) */
@media (min-width: 640px) and (max-width: 767px) {
    /* CSS rules for small devices */
    .container {
        max-width: 640px;
    }
}

/* Medium devices (tablets, 768px and up) */
 @media (min-width: 768px) /*and (max-width: 1023px)*/ { 
    /* CSS rules for medium devices */
    .container {
        max-width: 768px;
    }
    .md\:flex {
        display: flex;
    }
    .md\:order-last {
        order: 9999;
    }
 }

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) and (max-width: 1279px) {
    /* CSS rules for large devices */
    .container {
        max-width: 1024px;
    }
}

/* Extra large devices (large desktops, 1280px and up) */
@media (min-width: 1280px) {
    /* CSS rules for extra large devices */
    .container {
        max-width: 1280px;
    }
}



label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

input {
    padding: 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid #535f6f;
    transition: border-color 0.2s ease;
}

input:focus {
    outline: none;
    border-color: var(--color-accent);
}

    input[type=submit], input[type=button] {
        padding: 0.5rem 1rem;
        background-color: var(--color-accent);
        color: var(--color-white);
        border: none;
        border-radius: 0.25rem;
        cursor: pointer;
    }

    input[type=submit]:hover, input[type=button]:hover {
        background-color: var(--color-accent);
    }

fieldset {
    margin-top: 1rem;
}

.btn-primary {
    background-color: #19293f !important;
}

.border-b-0 {
    border-bottom-width: 0px;
    border-bottom-style: solid;
}
.border-b-2 {
    border-bottom-width: 2px;
    border-bottom-style: solid;
}
.border-b-4 {
    border-bottom-width: 4px;
    border-bottom-style: solid;
}
.border-b-6 {
    border-bottom-width: 6px;
    border-bottom-style: solid;
}
.border-b-8 {
    border-bottom-width: 8px;
    border-bottom-style: solid;
}
.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.border-red {
    border-color: var(--color-red) !important;

}

.size-16 {
    width: 4rem; /* 64px */
    height: 4rem; /* 64px */
}

.size-20 {
    width: 5rem; /* 80px */
    height: 5rem; /* 80px */
}

.size-24 {
    width: 6rem; /* 96px */
    height: 6rem; /* 96px */
}

.size-28 {
    width: 7rem; /* 112px */
    height: 7rem; /* 112px */
}

.size-32 {
    width: 8rem; /* 128px */
    height: 8rem; /* 128px */
}

.size-36 {
    width: 9rem; /* 144px */
    height: 9rem; /* 144px */
}

.size-40 {
    width: 10rem; /* 160px */
    height: 10rem; /* 160px */
}

.size-44 {
    width: 11rem; /* 176px */
    height: 11rem; /* 176px */
}

.size-48 {
    width: 12rem; /* 192px */
    height: 12rem; /* 192px */
}

.size-52 {
    width: 13rem; /* 208px */
    height: 13rem; /* 208px */
}

.size-56 {
    width: 14rem; /* 224px */
    height: 14rem; /* 224px */
}

.size-60 {
    width: 15rem; /* 240px */
    height: 15rem; /* 240px */
}

.size-64 {
    width: 16rem; /* 256px */
    height: 16rem; /* 256px */
}


/* 4:3 Aspect Ratio */
.size-b {
    width: 12rem; /* 192px */
    height: 9rem; /* 144px */
    background-size: 100% 100%;
}

/* 16:9 Aspect Ratio */
.size-c {
    width: 16rem; /* 256px */
    height: 9rem; /* 144px */
    background-size: 100% 100%;
}

/* 3:2 Aspect Ratio */
.size-d {
    width: 16rem; /* 256px */
    height: 10.67rem; /* 170.67px */
    background-size: 100% 100%;
}

.size-e {
    width: 18rem; /* 288px */
    height: 6rem; /* 96px */
    background-size: 100% 100%; /* Ensures the image fills the container */
}

#UpdatePanel2 > #gridContainer td {
    text-align: left;
}