﻿/* Color Pallete Variables */
:root {
    --white: #FFFFFF;
    --black: #000000;
    --primary-dark: #EC1C24;
    --primary-medium: #F05157;
    --primary-light: #FEEEE5;
    --secondary-dark: #2952A3;
    --secondary-medium: #7094DB;
    --secondary-light: #EFF3FB;
    --bg-grey-1: #F7F9FC;
    --bg-grey-2: #F1F5F7;
    --bg-grey-3: #EEEFF2;
    --bg-grey-4: #D4D7DD;
    --bg-grey-5: #B4B8BE;
    --bg-grey-6: #A0A2A7;
    --bg-grey-7: #737475;
    --bg-grey-8: #58595B;
    --bg-grey-9: #404041;
    --bg-grey-10: #363637;
    --text-grey-1: #A0A2A7;
    --text-grey-2: #737475;
    --text-grey-3: #58595B;
    --text-grey-4: #404041;
    --text-grey-5: #363637;
    --error: #C70505;
    --success: #00994D;
    --warning: #F8A213;
    --font-family: 'Lato', sans-serif;
    --fs-h1: 24px;
    --fs-h2: 18px;
    --fs-h3: 16px;
    --fs-h4: 16px;
    --fs-h5: 14px;
    --fs-body: 14px;
    --fs-small: 12px;
    --lh-h1: 36px;
    --lh-h2: 30px;
    --lh-h3: 26px;
    --lh-h4: 26px;
    --lh-h5: 22px;
    --lh-body: 22px;
    --lh-small: 20px;
    --fw-h1: bold;
    --fw-h2: bold;
    --fw-h3: bold;
    --fw-h4: normal;
    --fw-h5: bold;
    --fw-body: normal;
    --fw-small: normal;
    
    --input-control-height: 26px;
    --grid-control-height: 26px;
}

body,
input,
textarea,
select,
button {
    font-family: var(--font-family);
}

h1 {
    font-size: var(--fs-h1);
    font-weight: var(--fw-h1);
    line-height: var(--lh-h1);
}

h2 {
    font-size: var(--fs-h2);
    font-weight: var(--fw-h2);
    line-height: var(--lh-h2);
}

h3 {
    font-size: var(--fs-h3);
    font-weight: var(--fw-h3);
    line-height: var(--lh-h3);
}

h4 {
    font-size: var(--fs-h4);
    font-weight: var(--fw-h4);
    line-height: var(--lh-h4);
}

h5 {
    font-size: var(--fs-h5);
    font-weight: var(--fw-h5);
    line-height: var(--lh-h5);
}

p {
    font-size: var(--fs-body);
    font-weight: var(--fw-body);
    line-height: var(--lh-body);
}

small {
    font-size: var(--fs-small);
    font-weight: var(--fw-small);
    line-height: var(--lh-small);
}

/* Label */
.label {
    margin-top: 5px;
    padding-bottom: 104.5px;
    font-size: 12px;
    color: var(--text-grey-3);
    line-height: 15px;
}

.page-filters label {
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--text-grey-3);
    line-height: 22px;
}

.btn-gap-left {
    margin-left: 9px;
}
.btn-gap-right {
    margin-right: 9px;
}

.validation-message {
    margin-top: 6px;
    display: flex;
    background-color: #FFEBEB;
    color: #C70505;
    font-size: 12px;
    line-height: 22px;
    gap: 7px;
    padding: 0 7px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    width: max-content;
}