/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.trix-content .attachment-gallery > action-text-attachment,
.trix-content .attachment-gallery > .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}

.trix-content .attachment-gallery.attachment-gallery--2 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--2 > .attachment,
.trix-content .attachment-gallery.attachment-gallery--4 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--4 > .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

.trix-content action-text-attachment .attachment {
  padding: 0 !important;
  max-width: 100% !important;
}
:root {
  --sap-green: #588C08;
  --olive-green: #385905;
  --kiwi-green: #B3D929;
  --success-green: #28a745;
  --success-green-darker: #218838;
  /* Primary Colors */
  --primary-green: var(--sap-green);
  --primary-green-dark: var(--olive-green);
  --primary-green-light: #f5faf5;
  --primary-green-lighter: #f0fdf4;

  --kiwi-green: #B3D929;
  --sap-green: #588C08;
  --olive-green: #385905;
  
  /* Neutral Colors */
  --white: #fff;
  --black: #333;
  --gray-50: #f9fafb;
  --gray-100: #f0fdf4;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Text Colors */
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  
  /* Background Colors */
  --bg-primary: #fff;
  --bg-secondary: #f9fafb;
  --bg-accent: var(--primary-green-light);
  --bg-dark: #111827;
  
  /* Border Colors */
  --border-light: #e5e7eb;
  --border-medium: #d1d5db;
  --border-dark: #374151;
  
  /* Error Colors */
  --error-red: #dc2626;

  /* Status Colors */
  --success: #16a34a;
  --success-light: #dcfce7;
  --success-dark: #15803d;
  --warning: #fbbf24;
  --warning-light: #fef3c7;
  --danger: #dc2626;
  --danger-light: #fecaca;
  
  /* Alert Colors */
  --alert-primary-bg: #cce5ff;
  --alert-primary-border: #b8daff;
  --alert-primary-text: #004085;
  --alert-success-bg: #dff0d8;
  --alert-success-border: #d6e9c6;
  --alert-success-text: #3c763d;
  --alert-danger-bg: #f8d7da;
  --alert-danger-border: #f5c6cb;
  --alert-danger-text: #721c24;
  --alert-warning-bg: #fff3cd;
  --alert-warning-border: #ffeeba;
  --alert-warning-text: #856404;
  --alert-secondary-bg: #e2e3e5;
  --alert-secondary-border: #d6d8db;
  --alert-secondary-text: #383d41;
  
  /* Shadow Colors */
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-dark: rgba(0, 0, 0, 0.5);

/***** OLD VARIABLES - DELETE WHEN REFACTORING COMPLETE *****/
--white: #fff;
--black: #0D0D0D;
--black-light:#2c3e50;
--light-gray: rgb(248, 249, 250);
--gray: #dee2e6;


--orange: #FFA500;
--orange-darker: #b37300;
--yellow: #F2E205;
--yellow-darker: #a99e04;
--blue: #0583F2;
--blue-darker: #045ca9;
--pink: #da0c5d;
--red: #dc3545;
--red-darker: #c82333;

--primary: var(--sap-green);
--primary-darker: var(--olive-green);
--secondary: var(--kiwi-green );
--danger: var(--red);
--danger-darker: var(--red-darker);
--text-color: var(--black);
--link-color: var(--sap-green);
--link-color-hover: var(--olive-green);
--font-size: 16px;
--header-color: var(--white);  
}

/* Primary Color Classes */
.primary-green {
  color: var(--primary-green);
}

.primary-green-dark {
  color: var(--primary-green-dark);
}

.primary-green-light {
  color: var(--primary-green-light);
}

.primary-green-lighter {
  color: var(--primary-green-lighter);
}

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

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

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

.bg-primary-green-lighter {
  background-color: var(--primary-green-lighter);
}

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

/* Neutral Color Classes */
.white {
  color: var(--white);
}

.black {
  color: var(--black);
}

.gray-50 {
  color: var(--gray-50);
}

.gray-100 {
  color: var(--gray-100);
}

.gray-200 {
  color: var(--gray-200);
}

.gray-300 {
  color: var(--gray-300);
}

.gray-400 {
  color: var(--gray-400);
}

.gray-500 {
  color: var(--gray-500);
}

.gray-600 {
  color: var(--gray-600);
}

.gray-700 {
  color: var(--gray-700);
}

.gray-800 {
  color: var(--gray-800);
}

.gray-900 {
  color: var(--gray-900);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Background Color Classes */
.bg-primary {
  background-color: var(--bg-primary);
}

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

.bg-accent {
  background-color: hsl(var(--olive-green) / .3);
}

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

/* Status Color Classes */
.success {
  color: var(--success);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Alert Color Classes */
.alert-primary-bg {
  background-color: var(--alert-primary-bg);
}

.alert-primary-border {
  border-color: var(--alert-primary-border);
}

.alert-primary-text {
  color: var(--alert-primary-text);
}

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

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

.alert-success-text {
  color: var(--alert-success-text);
}

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

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

.alert-danger-text {
  color: var(--alert-danger-text);
}

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

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

.alert-warning-text {
  color: var(--alert-warning-text);
}

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

.alert-secondary-border {
  border-color: var(--alert-secondary-border);
}

.alert-secondary-text {
  color: var(--alert-secondary-text);
}

/* Shadow Classes */
.shadow-light {
  box-shadow: 0 1px 3px 0 var(--shadow-light), 0 1px 2px 0 var(--shadow-light);
}

.shadow-medium {
  box-shadow: 0 4px 6px -1px var(--shadow-medium), 0 2px 4px -1px var(--shadow-medium);
}

.shadow-dark {
  box-shadow: 0 10px 15px -3px var(--shadow-dark), 0 4px 6px -2px var(--shadow-dark);
}


.sap-green {
  color: var(--sap-green);
}

.primary {
  color: var(--primary);
}
/********************** layout ***********************/
.responsive-two-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .responsive-two-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .responsive-two-columns {
    gap: 0.5rem;
  }
}

.one-card-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 2rem 1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 0.75rem;
  padding: 2.5rem;
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-light);
}
  
@media (max-width: 480px) {
  .card {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
}


.float-right {
  float: right;
}

.float-left {
  float: left;
}

.center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/********************** typeography ***********************/

.italic {
  font-style: italic;
}

.small {
  font-size: 0.8rem;
}

.semibold {
  font-weight: 600;
}

.strikethrough {
  text-decoration: line-through;
}

.text-medium {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-small {
  font-size: 0.875rem;
  line-height: 1.2;
}

/********************** borders ***********************/

.border-light {
  border: 1px solid var(--border-light);
}

.border-medium {
  border: 1px solid var(--border-medium);
}

.border-dark {
  border: 1px solid var(--border-dark);
}

/********************** icons ***********************/

.icon {
  width: 20px;
  height: 20px;
}

.icon-large {
  width: 40px;
  height: 40px;
}


.w-50 {
  width: 50%;
}

.w-65 {
  width: 60%;
}

.w-75 {
  width: 75%;
}

  
/********************** padding ***********************/

.p-10 {
  padding: 10px;
}

.p-20 {
  padding: 20px;
}

.p-40 {
  padding: 40px;
}
  
/********************** margin ***********************/

.m-10 {
  margin: 10px;
}

.m-20 {
  margin: 20px;
}

/********************** margin top ***********************/

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

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

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

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

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

.mt-40 {
  margin-top: 40px;
}
  
/********************** margin bottom ***********************/

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

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

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

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

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

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

/********************** margin top and bottom ***********************/

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

/********************** margin left and right ***********************/
.mx-5px {
  margin-left: 5px;
  margin-right: 5px;
}

.mx-10px {
  margin-left: 10px;
  margin-right: 10px;
}

.mx-15px {
  margin-left: 15px;
  margin-right: 15px;
}

.mx-20px {
  margin-left: 20px;
  margin-right: 20px;
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,700;0,900&display=swap');

html {
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins',-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-primary);
}

h1 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.5rem;
  font-weight: 900;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-darker);
}

small {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1;
  display: block;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }
}

section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

section .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

section .section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  section {
    padding: 2rem 0;
  }
  
  section .section-title {
    font-size: 2rem;
  }
  
  section .section-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  section {
    padding: 1.5rem 0;
  }
  
  section .section-title {
    font-size: 1.75rem;
  }
}
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn:hover {
  background: var(--gray-50);
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
  border: 2px solid var(--primary-green);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--primary-green-dark);
  border: 2px solid var(--primary-green-dark);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-outline-primary:hover {
  background: var(--primary-green-lighter);
}

.btn-outline-secondary {
  background-color: var(--white);
  color: var(--text-primary);
  border: 1px solid var(--border-dark);
}

.btn-outline-secondary:hover {
  background-color: var(--gray-50);
  color: var(--text-primary);
  border-color: var(--border-dark);
}

.btn-outline-danger {
  background-color: var(--white);
  color: var(--error-red);
  border: 1px solid var(--error-red);
}

.btn-outline-danger:hover {
  background-color: var(--error-red);
  color: var(--white);
  border-color: var(--error-red);
}

.btn-white {
  background: var(--white);
  color: var(--primary-green);
}

.btn-white:hover {
  background: var(--gray-50);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--primary-green-dark);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.25rem 0.5em;
}

.btn-full {
  width: 100%;
}

.btn-half {
  width: 50%;
}

.button-row {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}


.badge {
  display: inline-block;
  background: var(--gray-200);
  color: var(--gray-700);
  padding: 0.33rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
}

.badge-rounded {
  border-radius: 2rem;
}

.badge-green {
  background: var(--bg-accent);
  color: var(--primary-green);
}

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

.badge-dark-gray {
  background: var(--gray-700);
  color: var(--white);
}

.badge-red {
  background: var(--error-red);
  color: var(--white);
}

.badge-pink-outline {
  background: var(--white);
  color: var(--pink);
  border: 1px solid var(--pink);
}

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

.badge-warning-outline {
  background: var(--white);
  color: var(--warning);
  border: 1px solid var(--warning);
}
.error_messages {
  color: var(--error-red);
}

.invalid-feedback {
  display: none;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="date"],
input[type="time"] {
  border: 1px solid var(--border-medium);
  border-radius: 0.25rem;
  padding: 0.5rem;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  background-color: var(--white);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

input[type="file"] {
  border: 1px solid var(--border-medium);
  border-radius: 0.25rem;
  padding: 0.5rem;
  font-size: 1rem;
  width: 100%;
}

textarea {
  border: 1px solid var(--border-medium);
  border-radius: 0.25rem;
  padding: 0.5rem;
  font-size: 1rem;
  width: 100%;
  height: 200px;
  margin-bottom: 1rem;
}

select {
  border: 1px solid var(--border-medium);
  border-radius: 0.25rem;
  padding: 0.5rem;
  font-size: 1rem;
  width: 100%;
}

input:focus {
  outline: none;
  border-color: var(--sap-green);
  box-shadow: 0 0 0 2px rgba(var(--sap-green-rgb), 0.2);
}

.input-group {
  display: flex;
  align-items: center;
  width: 100%;
}

.input-group input {
  margin-bottom: 0;
}

.input-group-append {
  display: flex;
  margin-left: -1px;
}

.input-group-append > .btn {
  position: relative;
  z-index: 2;
}

.input-group-append > .btn:focus {
  z-index: 3;
}

.input-group-append > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-append > .btn:not(:first-child) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.modal.show {
  opacity: 1;
}

.modal-dialog {
  position: relative;
  width: 80%;
  margin: 50px auto;
  z-index: 1001;
}

.modal-dialog.modal-lg {
  max-width: 700px;
  margin: 3% auto;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-dialog.modal-md {
  max-width: 500px;
}

.modal-dialog.modal-sm {
  max-width: 300px;
}

.modal-content {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  z-index: 1002;
  position: relative;
}

.modal-content.modal-rounded {
  border-radius: 12px;
}

.modal-header {
  padding: 1rem;
  border-bottom: 1px solid var(--border-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.modal-header.modal-header-lg {
  padding: 2rem 2rem 1rem 2rem;
}

.modal-body {
  padding: 1rem;
}

.modal-body p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.modal-body.modal-body-lg {
  padding: 2rem;
}

.close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--gray-400);
  padding: 0.5rem;
  line-height: 1;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.close:hover {
  color: var(--white);
  background-color: var(--kiwi-green);
}

.close.close-absolute {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
/*
 * This is a manifest file for the new layout stylesheets
 * It includes all the new CSS files from the new directory
 *












 */
