/* ==========================================================================
    TABLE OF CONTENTS
    ==========================================================================
    1. Variables & Mixins
    2. Reset & Base Styles
    3. Typography
    4. Layout & Grid
    5. Header
    6. Sidebar
    7. Main Content
    8. Forms
    9. Modals & Dialogs
    10. Notifications & Alerts
    11. Pagination
    12. Breadcrumbs
    13. Tabs & Accordions
    14. Tooltips & Popovers
    15. Loaders & Spinners
    16. Media
    17. Footer
    18. Utility Classes
    19. Animations & Transitions
    20. Responsive / Media Queries
    21. Print Styles
    22. Dark Mode / Theme Overrides
    ========================================================================== */
/* ==========================================================================
    1. Variables & Mixins
    ========================================================================== */
.highlight-blue-small, .highlight-blue, .highlight-red-small, .highlight-red, .highlight {
  color: #fff;
  padding: 1rem;
  margin-right: 1rem;
  border-radius: 15px;
}

.h7, h6, h5, h4, h3, h2, h1 {
  font-weight: 500;
}

.footer-link, .forgot-password-link, .hide-decoration {
  text-decoration: none;
  color: inherit;
}

.gsi-button-container, .menubar-logo, .container-side {
  display: flex;
  align-items: center;
}

.footer-content, .input-base-item, .input-base-container, .login-container, .section, .container {
  display: flex;
  flex-direction: column;
}

.payment-card-section, .sub-section, .additional-file-input {
  display: flex;
  flex-direction: row;
}

/* 18.6 Media Queries & Responsive Utilities */
/* ==========================================================================
    2. Reset & Base Styles
    ========================================================================== */
html {
  font-family: "Inter", sans-serif;
  color: #fff;
  background: #444140;
  scroll-padding-top: 2rem;
  background: linear-gradient(180deg, rgb(68, 65, 64) 37%, rgb(105, 39, 56) 76%, rgb(145, 11, 47) 100%);
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.glass {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  margin: 0.5rem;
}

.generic-stroke {
  border: 1px solid #fff;
}

.muted-stroke {
  border: 1px solid #aaaaaa;
}

.no-border {
  border: none;
}

.no-margin {
  margin: 0;
}

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

.no-top-margin {
  margin-top: 0;
}

.no-padding {
  padding: 0;
}

.bottom-padding {
  padding: 0 0 1rem 0;
}

.highlighted-background {
  background-color: #e3e3e3;
}

.accented-background-light {
  background-color: rgba(69, 105, 144, 0.5);
}

/* ==========================================================================
    3. Typography
    ========================================================================== */
h1 {
  font-size: 48px;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

h5 {
  font-size: 1.25rem;
  margin-bottom: 0.125rem;
}

h6 {
  font-size: 1rem;
  margin-bottom: 0.0625rem;
}

.h7 {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.shallow {
  padding: 0;
  margin: 0.5rem;
}

.hide-decoration {
  flex: 1;
}

.highlight {
  background-color: #000000;
  margin-left: 1rem;
  flex: 1;
}
.highlight:hover {
  background-color: #282828;
  transition: color 0.3s ease;
}

.highlight-red {
  background-color: #ff1654;
}
.highlight-red:hover {
  background-color: rgba(255, 22, 84, 0.5);
  transition: color 0.3s ease;
}

.highlight-red-small {
  background-color: #ff1654;
  padding: 0.125rem 0.5rem 0.125rem 0.5rem;
  margin: 0;
  white-space: nowrap;
}

.highlight-blue {
  background-color: #247ba0;
}

.highlight-blue-small {
  background-color: #247ba0;
  padding: 0.125rem 0.5rem 0.125rem 0.5rem;
  margin: 0;
}

.forgot-password-link {
  color: #aaaaaa;
  font-size: 0.875rem;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}
.forgot-password-link:hover {
  color: #fff;
  transition: color 0.3s ease;
}

/* ==========================================================================
    4. Layout & Grid
    ========================================================================== */
.full-width {
  width: 100%;
}

.container {
  justify-content: flex-start;
  align-items: center;
  padding: 1rem;
  /* width: 60vw; */
  height: 100%;
}
@media screen and (max-width: 599px) {
  .container {
    width: 100%;
  }
}

.container-side {
  padding: 1rem;
  width: 20vw;
}
@media screen and (max-width: 599px) {
  .container-side {
    display: none;
  }
}

.section {
  justify-content: flex-start;
  width: 100%;
}

.title-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
@media screen and (max-width: 959px) {
  .title-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.introduction {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.left-margin {
  margin-left: 1rem;
}

.right-margin {
  margin-right: 1rem;
}

.login-container {
  align-items: center;
  background-color: rgba(217, 217, 217, 0.25);
  padding: 2rem;
  border-radius: 16px;
  width: 300px;
}
@media screen and (max-width: 380px) {
  .login-container {
    width: 250px;
  }
}

.error-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.error-popup-center {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 200px;
  width: 500px;
  background-color: #ff1654;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 15px;
}

.success-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.success-popup-center {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 200px;
  width: 500px;
  background-color: #247ba0;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 15px;
}

.additional-file-input-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .additional-file-input {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
  }
}

.sub-section {
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1rem;
}

.payment-card-section {
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1rem;
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .payment-card-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
@media screen and (max-width: 599px) {
  .payment-card-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

@media screen and (min-width: 600px) {
  .hide-on-large {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .hide-on-mobile {
    display: none;
  }
}

/* ==========================================================================
    5. Header
    ========================================================================== */
.menubar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 1rem;
  background-color: #000000;
  height: 2rem;
  padding: 0 0.25rem;
}
.menubar-logo {
  gap: 0.5rem;
  align-items: flex-start;
}
.menubar-logo h3 {
  color: #aaaaaa;
  font-size: 1.25rem;
  padding: 0;
  margin: 0;
}
.menubar-logo h3:hover {
  color: #fff;
  cursor: pointer;
}
.menubar-button {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.menubar-button:hover {
  background-color: #fff;
  color: #000000;
  border-radius: 10px;
}
.menubar-button:active {
  cursor: pointer;
  background-color: #aaaaaa;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
    6. Sidebar
    ========================================================================== */
/* 6.1 Sidebar Navigation */
/* 6.2 Sidebar Widgets */
/* ==========================================================================
    7. Main Content
    ========================================================================== */
/* 7.1 Hero / Banner */
/* 7.2 Cards */
.payment-card {
  color: #fff;
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 0.2rem solid #247ba0;
  width: 15rem;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.payment-card ul {
  display: flex;
  flex-direction: column;
}

.payment-card-selected {
  border: 0.2rem solid #ff1654;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}

/* 7.3 Tables */
/* 7.4 Lists */
/* ==========================================================================
    8. Forms
    ========================================================================== */
.input-base:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.input-base-item {
  margin-bottom: 1rem;
  padding: 0.25rem 0.5rem 0.25rem 0.5rem;
  background-color: #444140;
  color: #fff;
  border-radius: 10px;
  border: 1px solid #fff;
  box-sizing: border-box;
  font-size: 1rem;
}
.input-base-item:focus {
  outline: 3px solid #247ba0;
}
.input-base-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
@media screen and (max-width: 599px) {
  .input-base-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.error-message {
  color: #ff1654;
  font-size: 0.875rem;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

.submit-button {
  background-color: #247ba0;
  color: #fff;
  border: none;
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.submit-button:hover {
  background-color: rgb(226, 0, 60.1373390558);
}
.submit-button:active {
  background-color: rgb(175, 0, 46.5665236052);
}

.submit-button-wide {
  background-color: #247ba0;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}
.submit-button-wide:hover {
  background-color: rgb(226, 0, 60.1373390558);
}
.submit-button-wide:active {
  background-color: rgb(175, 0, 46.5665236052);
}

.upload-button {
  background-color: #ff1654;
  color: #fff;
  border: none;
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.upload-button:hover {
  background-color: rgb(226, 0, 60.1373390558);
}
.upload-button:active {
  background-color: rgb(175, 0, 46.5665236052);
}

.remove-button {
  color: #000000;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.remove-button:hover {
  background-color: rgb(255, 73, 121.4291845494);
  color: #fff;
}
.remove-button:active {
  background-color: rgb(255, 124, 158.8583690987);
}

.login-button-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 1rem;
}

.loans-login-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 1rem 1rem;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 15px 0 0 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.loans-login-button:hover {
  background-color: rgb(175, 0, 46.4601769912);
}

.login-button-rest {
  background-color: rgb(175, 0, 46.4601769912);
}

.login-button-active {
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  background-color: #e2003c;
  border: solid 1px #fff;
}

.pro-login-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 1rem 1rem 1rem 0;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 15px 15px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.pro-login-button:hover {
  background-color: rgb(17.2653061224, 58.9897959184, 76.7346938776);
}

.pro-button-rest {
  background-color: rgb(26.6326530612, 90.9948979592, 118.3673469388);
}

.pro-button-active {
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  background-color: #247ba0;
  border: solid 1px #fff;
}

.focused {
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  background-color: #247ba0;
  border: solid 1px #fff;
}

.gsi-button-container {
  margin: 1rem;
}

/* ==========================================================================
    9. Modals & Dialogs
    ========================================================================== */
/* ==========================================================================
    10. Notifications & Alerts
    ========================================================================== */
/* 10.1 Toast Messages */
/* 10.2 Inline Alerts */
/* 10.3 Badges & Tags */
.purple-tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  font-size: 0.75rem;
  color: #fff;
}

.purple-tag {
  background-color: #9000b1;
}

/* ==========================================================================
    11. Pagination
    ========================================================================== */
/* ==========================================================================
    12. Breadcrumbs
    ========================================================================== */
/* ==========================================================================
    13. Tabs & Accordions
    ========================================================================== */
/* ==========================================================================
    14. Tooltips & Popovers
    ========================================================================== */
/* ==========================================================================
    15. Loaders & Spinners
    ========================================================================== */
/* ==========================================================================
    16. Media
    ========================================================================== */
/* 16.1 Images & Avatars */
/* 16.2 Video & Embeds */
/* 16.3 Icons */
/* ==========================================================================
    17. Footer
    ========================================================================== */
/* 17.1 Footer Navigation */
/* 17.2 Footer Info & Legal */
/* ==========================================================================
    18. Utility Classes
    ========================================================================== */
/* 18.1 Spacing (Margins & Padding) */
/* 18.2 Display & Visibility */
/* 18.3 Flexbox & Alignment */
/* 18.4 Text Alignment & Colors */
/* 18.5 Borders & Shadows */
/* ==========================================================================
    19. Animations & Transitions
    ========================================================================== */
.shrinking-horizontal-bar {
  width: 100%;
  height: 4px;
  background-color: #fff;
  animation: shrink-horizontal 3s ease-in-out infinite;
}
@keyframes shrink-horizontal {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

/* ==========================================================================
    20. Responsive / Media Queries
    ========================================================================== */
/* 20.1 Mobile (max-width: 576px) */
/* 20.2 Tablet (max-width: 768px) */
/* 20.3 Desktop (max-width: 1024px) */
/* 20.4 Large Desktop (min-width: 1200px) */
/* ==========================================================================
    21. Print Styles
    ========================================================================== */
/* ==========================================================================
    22. Dark Mode / Theme Overrides
    ========================================================================== */
/* ==========================================================================
    23. Cookie Consent Banner & Policy
    ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  justify-content: center;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cookie-banner-inner {
  max-width: 860px;
  width: 100%;
}
.cookie-banner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}
.cookie-banner-text {
  font-size: 0.875rem;
  color: #e3e3e3;
  margin: 0 0 0.875rem;
  line-height: 1.5;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner-details {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cookie-banner-details.open {
  display: block;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category-info {
  flex: 1;
  padding-right: 1.25rem;
}
.cookie-category-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cookie-category-desc {
  font-size: 0.8rem;
  color: #aaaaaa;
  margin: 0;
  line-height: 1.4;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #247ba0;
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}
.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.55;
  cursor: not-allowed;
}
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #aaaaaa;
  border-radius: 24px;
  transition: background-color 0.25s ease;
}
.cookie-toggle-slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.cookie-required-badge {
  font-size: 0.68rem;
  background-color: rgba(170, 170, 170, 0.4);
  color: #e3e3e3;
  padding: 0.1rem 0.4rem;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.cookie-customise-btn {
  background: none;
  border: none;
  color: #aaaaaa;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0.5rem 0;
  font-family: "Inter", sans-serif;
}
.cookie-customise-btn:hover {
  color: #fff;
  transition: color 0.2s ease;
}

.cookie-policy-section {
  width: 100%;
  margin-bottom: 2rem;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin: 0.75rem 0 0;
  border-radius: 15px;
  overflow: hidden;
}
.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-table th {
  font-weight: 600;
  color: #e3e3e3;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(0, 0, 0, 0.25);
}
.cookie-table td {
  color: #e3e3e3;
}
.cookie-table td code {
  background: rgba(0, 0, 0, 0.35);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.8rem;
}
.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-preferences-card {
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}

.cookie-policy-legal-basis {
  font-size: 0.82rem;
  color: #aaaaaa;
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid #247ba0;
  padding: 0.5rem 0.875rem;
  border-radius: 0 10px 10px 0;
  margin: 0.5rem 0 1rem;
}

.footer-link {
  color: #aaaaaa;
  font-size: 0.82rem;
}
.footer-link:hover {
  color: #fff;
  transition: color 0.2s ease;
}

.footer-content {
  align-items: center;
}

.footer-separator {
  color: #aaaaaa;
  margin: 0.5rem 0.4rem;
  font-size: 0.82rem;
}

/*# sourceMappingURL=styles.css.map */
