/* ==========================================================================
   ICMGP 2026 — FULL THEME CSS
   Logo-based palette:
   Deep Navy, Conference Blue, Magenta, Orange/Gold, Soft Sky
   ========================================================================== */

/* ==========================================================================
   1. IMPORTS & GLOBAL RESET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --icmgp-navy: #102a5c;
  --icmgp-navy-dark: #071936;
  --icmgp-blue: #0b5fa5;
  --icmgp-blue-soft: #eaf4ff;
  --icmgp-sky: #18a7d8;
  --icmgp-magenta: #d92c8a;
  --icmgp-orange: #f28c1b;
  --icmgp-gold: #f7b733;
  --icmgp-text: #1f2937;
  --icmgp-muted: #6b7280;
  --icmgp-border: #d8e3f0;
  --icmgp-soft-bg: #f5f8fc;
  --icmgp-white: #ffffff;
  --icmgp-black: #000000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  position: relative;
  font-size: 16px;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: 0 !important;
  font-family: "Roboto", sans-serif;
  background: var(--icmgp-white);
  color: var(--icmgp-text);
}

/* ==========================================================================
   2. UTILITY CLASSES
   ========================================================================== */

p {
  font-family: "Roboto", sans-serif;
  margin-bottom: 8px;
  line-height: 1.32;
  color: var(--icmgp-text);
}

ul,
ul li {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--icmgp-blue);
  text-decoration: none !important;
  display: inline-block;
}

a:hover {
  color: var(--icmgp-magenta);
}

form a {
  color: var(--icmgp-blue);
}

form a:hover {
  color: var(--icmgp-magenta);
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1,
.fHeading .fModuleTitle h3 {
  font-family: "Roboto", sans-serif;
  line-height: 1;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.5rem;
}

.fHeading .fModuleTitle {
  text-align: center;
  margin-bottom: 20px;
}

.fHeading .fModuleTitle h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */

.fModule {
  margin: 1rem 0;
  padding: 1rem 0;
}

header .fModule,
footer .fModule {
  margin: 0;
}

.region-header.row {
  align-items: center;
}

header h1 {
  font-size: 1.5rem;
}

footer {
  padding: 1rem 0;
  background: var(--icmgp-navy-dark);
  color: var(--icmgp-white);
  border-top: 1px solid var(--icmgp-blue);
  display: none;
}

footer p,
footer h3,
footer a {
  color: var(--icmgp-white) !important;
}

footer .fHeading .fModuleTitle h3 {
  font-size: 1.75rem;
}

footer .fHeading .fModuleTitle h3::after {
  background: var(--icmgp-gold);
}

footer p {
  font-weight: normal;
  margin-bottom: 8px;
}

footer img {
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
}

footer nav ul {
  display: block;
  text-align: left;
}

/* ==========================================================================
   5. NAVIGATION
   ========================================================================== */

nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  text-align: right;
}

nav ul li a {
  color: var(--icmgp-blue);
  padding: 5px;
  transition: color 0.3s ease;
}

.main-menu a {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: capitalize;
  color: var(--icmgp-navy);
  position: relative;
}

.main-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--icmgp-magenta) 0%,
    var(--icmgp-orange) 52%,
    var(--icmgp-gold) 100%
  );
  transition: width 0.6s ease;
}

.main-menu a:hover {
  color: var(--icmgp-magenta);
}

.main-menu a:hover::before {
  width: 100%;
}

.main-menu .fMenu li {
  position: relative;
}

.main-menu .fMenu ul {
  position: absolute;
  top: 100%;
  width: 250px;
  background: var(--icmgp-navy);
  left: 0;
  padding: 0;
  text-align: left;
  box-shadow: 0 8px 20px rgba(7, 25, 54, 0.18);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  z-index: 9999;
}

.main-menu .fMenu li:hover ul {
  display: block;
}

.main-menu .fMenu ul li {
  margin: 0;
}

.main-menu .fMenu ul li a {
  display: block;
  padding: 0.65rem 0.75rem;
  color: var(--icmgp-white);
  font-weight: 600;
}

.main-menu .fMenu ul li a:hover {
  background: var(--icmgp-blue);
  color: var(--icmgp-white);
}

/* ==========================================================================
   6. TOP HEADER / TOP BAR WITH LEFT LOGO
   ========================================================================== */

.top-head {
  position: relative;
  background-image:
    linear-gradient(
      90deg,
      rgba(7, 25, 54, 0.96) 0%,
      rgba(16, 42, 92, 0.94) 42%,
      rgba(11, 95, 165, 0.90) 100%
    ),
    url(https://storage.unitedwebnetwork.com/files/1395/cd6c6f75754ed8d05f588198ddbda2b4.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 12px 0;
  min-height: 96px;
  display: flex;
  align-items: center;
  border-bottom: 4px solid var(--icmgp-orange);
  box-shadow: 0 4px 16px rgba(7, 25, 54, 0.18);
}

/* ICMGP logo fixed on the left side of the top bar */
.top-head::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 155px;
  height: 74px;
  background-image: url("https://icmgp2026india.com/gp/ICMGP%202026%20Logo%20(PNG).png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  z-index: 2;
}

/* Push top-bar content to the right so it does not overlap logo */
.top-head > .container,
.top-head > .container-fluid,
.top-head .region-header {
  position: relative;
  z-index: 3;
  padding-left: 200px;
}

/* Existing logo modules */
#fModule-61905,
#fModule-61909,
#fModule-61908 {
  padding: 10px !important;
}

.fLogoLeft img,
.fLogoRight img {
  max-height: 142px;
}

.fLogoCenter img {
  max-height: 172px;
}

/* Hide old left logo module if it exists, since new logo is now placed in top bar */
.top-head #fModule-61905.fLogoLeft {
  display: none;
}

/* ==========================================================================
   7. FORM ELEMENTS
   ========================================================================== */

.fForm label {
  display: block;
  width: 100%;
  margin: 0.625rem 0 0;
  font-weight: normal;
  color: var(--icmgp-text);
}

.fForm input[type="text"],
.fForm input[type="email"],
.fForm input[type="password"],
.fForm textarea,
.fForm select,
.fForm .date {
  width: 100%;
  max-width: 99%;
  height: 42px;
  padding: 0 0.9375rem;
  border: 1px solid var(--icmgp-border);
  border-radius: 6px;
  background: var(--icmgp-white);
  color: var(--icmgp-text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.fForm textarea {
  height: auto;
  min-height: 110px;
  padding-top: 0.75rem;
}

.fForm input[type="text"]:hover,
.fForm input[type="email"]:hover,
.fForm input[type="password"]:hover,
.fForm textarea:hover,
.fForm select:hover,
.fForm input[type="text"]:focus,
.fForm input[type="email"]:focus,
.fForm input[type="password"]:focus,
.fForm textarea:focus,
.fForm select:focus {
  border-color: var(--icmgp-blue);
  box-shadow: 0 0 0 3px rgba(11, 95, 165, 0.12);
  outline: none;
}

.fForm .buttons {
  clear: both;
  padding-left: 0;
}

.fForm .buttons input,
a.fButton,
a.fButton2,
.fForm input[type='submit'] {
  display: inline-block;
  margin: 0.75rem 0.625rem 0 0;
  padding: 0.875rem 0.8125rem;
  min-width: 200px;
  min-height: 42px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  color: var(--icmgp-white);
  text-align: center;
  background: linear-gradient(135deg, var(--icmgp-blue) 0%, var(--icmgp-navy) 100%);
  border: 2px solid var(--icmgp-blue);
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.fForm .buttons input:hover,
a.fButton:hover,
.fbutton-btn a:hover,
.fForm input[type="submit"]:hover {
  background: linear-gradient(135deg, var(--icmgp-magenta) 0%, var(--icmgp-orange) 100%);
  border-color: var(--icmgp-orange);
  color: var(--icmgp-white);
  box-shadow: 0 5px 15px rgba(242, 140, 27, 0.28);
}

/* ==========================================================================
   8. ICON SET
   ========================================================================== */

.iconset .fMenu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.iconset .fMenu > li {
  flex: 1 1 280px;
  list-style: none;
  padding: 1rem !important;
  background: var(--icmgp-soft-bg);
  border: 1px solid var(--icmgp-border);
  border-radius: 10px;
  position: relative;
  text-align: left;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.iconset .fMenu > li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(7, 25, 54, 0.12);
}

.iconset .fMenu > li > a {
  font-weight: bold;
  color: var(--icmgp-navy);
  display: block;
}

.iconset .fMenu > li > a:hover {
  color: var(--icmgp-magenta);
}

.iconset img {
  max-width: 64px;
  margin-bottom: 0.5rem;
}

.iconset .fMenu ul {
  margin: 1rem 0 0 1.375rem !important;
  display: block;
}

.iconset .fMenu ul li {
  margin-bottom: 0.25rem !important;
  list-style: square inside;
  text-align: left;
  color: var(--icmgp-text);
}

.iconset .fMenu ul a {
  font-weight: 500;
  color: var(--icmgp-text);
}

.iconset .fMenu ul a:hover {
  color: var(--icmgp-blue);
}

form.fForm .form-item {
  padding-top: 0;
  padding-bottom: 1rem;
}

form.fForm label {
  width: 100%;
  text-align: left;
  display: block;
  padding-top: 0;
  font-weight: bold;
}

form.fForm fieldset legend,
.path-user-login- form label {
  padding: 0.5rem 0;
  font-size: 1.25rem;
  color: var(--icmgp-navy);
  margin-bottom: 0;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}

.fForm .hint,
.fForm .error {
  margin-left: 0 !important;
}

.fForm .error {
  color: var(--icmgp-magenta);
}

/* ==========================================================================
   9. HIDE & UTILITY OVERRIDES
   ========================================================================== */

.no-title .fPageTitle,
.no-header header,
.no-footer footer,
#nav-up {
  display: none !important;
}

.fPageTitle {
  background: linear-gradient(135deg, var(--icmgp-navy) 0%, var(--icmgp-blue) 100%);
  text-align: center;
  border-bottom: 4px solid var(--icmgp-orange);
}

.fPageTitle h1 {
  color: var(--icmgp-white);
  padding: 1.5rem;
  margin: 0;
}

/* ==========================================================================
   10. CUSTOM
   ========================================================================== */

.bg-grey {
  background: var(--icmgp-soft-bg);
}

.fBanner .fGalleryText {
  position: absolute;
  top: 40%;
  left: 9%;
  transform: translateY(-50%);
  width: 33%;
}

.fBanner .fGalleryText div .fButton {
  background: var(--icmgp-white);
  color: var(--icmgp-navy);
  border-color: var(--icmgp-white);
}

.fBanner .fGalleryText div .fButton:hover {
  background: var(--icmgp-orange);
  color: var(--icmgp-white);
  border-color: var(--icmgp-orange);
}

.fBanner .fGalleryText h3 {
  color: var(--icmgp-white);
  font-size: 40px;
  margin-bottom: 0;
}

.fBanner .fGalleryText p {
  font-size: 16px;
  color: var(--icmgp-white);
  margin: 10px 0;
}

.banner-wrapper {
  position: relative;
}

.fHeading .fModuleTitle {
  margin-bottom: 20px;
  text-align: left;
}

.fHeading .fModuleTitle h3 {
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
  color: var(--icmgp-navy);
}

.fHeading .fModuleTitle h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--icmgp-magenta) 0%,
    var(--icmgp-orange) 50%,
    var(--icmgp-gold) 100%
  );
  border-radius: 999px;
}

footer p,
footer h3 {
  color: var(--icmgp-white);
}

.fModule table {
  width: 100%;
}

.fModule table th,
.fModule table td {
  border: 1px solid var(--icmgp-border);
  padding: 0.5rem;
  vertical-align: middle;
}

.fModule table th {
  background: linear-gradient(135deg, var(--icmgp-navy) 0%, var(--icmgp-blue) 100%);
  color: var(--icmgp-white);
}

#fModule-53313 table {
  margin-bottom: 10px;
}

.fCustomList li {
  padding-left: 40px !important;
  margin-bottom: 10px !important;
  position: relative;
}

.fCustomList li::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(https://img.icons8.com/material-rounded/24/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  animation: mymove 1s infinite;
  filter: invert(37%) sepia(84%) saturate(1200%) hue-rotate(184deg) brightness(85%) contrast(92%);
}

@keyframes mymove {
  from {
    left: 0;
  }

  to {
    left: 10px;
  }
}

.fForm .user-register-group {
  padding: 0;
  border-top: none;
  margin-top: 20px;
}

.fForm .user-register-group legend {
  display: none;
}

.fForm .user-register-group label {
  display: flex;
  align-items: center;
}

.fForm .user-register-group .f-table td {
  padding: 0;
}

.fForm fieldset {
  margin: 0;
  padding: 0;
}

.f-table-invoice {
  margin-top: 20px;
}

.f-table th,
.f-table tr.thead td {
  background: linear-gradient(135deg, var(--icmgp-navy) 0%, var(--icmgp-blue) 100%);
  color: var(--icmgp-white);
}

.discount-code .form-item {
  display: flex;
  align-items: stretch;
  gap: 5px;
  flex-wrap: wrap;
}

.discount-code .form-item > * {
  flex: 0 0 auto;
}

.discount-code .form-item label {
  width: 100%;
}

.discount-code .form-item input[type='text'] {
  width: 80%;
}

.discount-code .form-item input[type='submit'] {
  width: 18%;
  margin: 0;
}

#f-messages .item {
  padding: 0.7em 1em;
  background-color: var(--icmgp-blue-soft);
  color: var(--icmgp-navy);
  border-bottom: 3px solid var(--icmgp-orange);
  margin-bottom: 0.1em;
  font-size: 110%;
  position: fixed;
  z-index: 9999;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
}

.icon-status-orange {
  display: none;
}

/* ==========================================================================
   11. ABSTRACT GUIDELINES
   ========================================================================== */

.abstract-guidelines ul {
  list-style-type: disc !important;
  list-style-position: outside !important;
  margin: 0 0 1rem 1.5em !important;
  padding: 0 !important;
}

.abstract-guidelines ul li {
  margin-bottom: 0.5em;
  color: var(--icmgp-text);
}

/* ==========================================================================
   12. CONSENT / FORM FIELD OVERRIDES
   ========================================================================== */

#form-item-field_id_33291 > label[for="field_id_33291"] {
  display: none;
}

/* Ensure the “Consent” heading field stays visible */
#form-item-field_id_33292 {
  display: block !important;
}

/* Remove indent on options container */
#form-item-field_id_33291 .form-item-option.checkbox {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* Lay out each checkbox option as a flex row */
#form-item-field_id_33291 .form-item-option.checkbox label {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

/* Kill any float/position on the checkbox itself */
#form-item-field_id_33291 .form-item-option.checkbox label input[type="checkbox"] {
  float: none !important;
  position: static !important;
  margin: 0 !important;
  flex: none !important;
}

/* Force show the Pay button */
.fForm .buttons,
.fForm .buttons .f-button {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.checks {
  height: max-content !important;
}

.intl-tel-input {
  width: 100%;
}

.listing-container {
  margin: 30px 0;
}

.fModuleTitle h3 {
  margin-bottom: 30px;
  padding-bottom: 10px;
  display: inline-block;
  border-bottom: 1px solid var(--icmgp-border);
}

/* Full-width aligned heading strip */
.form-heading-legend {
  display: block;
  width: 100%;
  background-color: var(--icmgp-blue-soft);
  color: var(--icmgp-navy);
  font-weight: 700;
  padding: 10px 15px;
  margin: 0 0 10px 0;
  border-radius: 6px;
  text-align: left;
  border-left: 4px solid var(--icmgp-orange);
}

/* Ensure consistent left alignment for all form labels & text */
.container .form-item,
.container .form-heading,
.container label {
  text-align: left !important;
  margin-left: 0 !important;
}

#form-item-field_id_34038 {
  overflow: visible;
}

/* ==========================================================================
   13. RESPONSIVE
   ========================================================================== */

@media (max-width: 767px) {
  .top-head {
    min-height: auto;
    padding: 18px 12px;
    display: block;
    text-align: center;
    background-position: center;
  }

  .top-head::before {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    display: block;
    width: 178px;
    height: 82px;
    margin: 0 auto 12px auto;
    background-position: center;
  }

  .top-head > .container,
  .top-head > .container-fluid,
  .top-head .region-header {
    padding-left: 0;
  }

  #fModule-61905,
  #fModule-61909,
  #fModule-61908 {
    text-align: center;
  }

  #fModule-61905 img {
    max-height: 100px;
  }

  #fModule-61909 img,
  #fModule-61908 img {
    max-height: 130px;
  }

  .listing-container span {
    display: block !important;
  }
}

@media (max-width: 480px) {
  body {
    padding-bottom: 0 !important;
  }

  .body {
    padding: 0 0.9375rem;
  }

  .fBanner .fGalleryText {
    width: 92%;
    top: 35%;
  }

  .fBanner .fGalleryText h3 {
    font-size: 19px;
  }

  .banner-wrapper .fTimer {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: translateY(0%) !important;
    padding: 1rem !important;
  }

  .fTimer .row {
    gap: 11px !important;
    justify-content: space-between;
    display: flex;
    margin: 0;
  }

  footer {
    position: relative;
  }

  .discount-code .form-item input[type="text"],
  .discount-code .form-item input[type="submit"] {
    width: 100%;
  }

  .fPageTitle h1 {
    padding: 1.1rem;
    font-size: 1.25rem;
  }

  .fHeading .fModuleTitle h3 {
    font-size: 1.4rem;
  }

  .fForm .buttons input,
  a.fButton,
  a.fButton2,
  .fForm input[type='submit'] {
    width: 100%;
    min-width: 100%;
    margin-right: 0;
  }
}

/* ==========================================================================
   FIX: ICMGP PAGE TITLE BAR WITH LEFT LOGO
   Add this at the END of the CSS
   ========================================================================== */

.fPageTitle {
  position: relative !important;
  min-height: 116px !important;
  background: linear-gradient(
    135deg,
    #14447d 0%,
    #0c5f94 48%,
    #0477a8 100%
  ) !important;
  border-bottom: 5px solid #f4a51c !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 230px !important;
  text-align: center !important;
  overflow: hidden !important;
}

/* Soft decorative glow */
.fPageTitle::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0) 68%
  );
  z-index: 1;
  pointer-events: none;
}

/* Logo on left side of title bar */
.fPageTitle::before {
  content: "";
  position: absolute;
  left: 44px;
  top: 50%;
  transform: translateY(-50%);
  width: 165px;
  height: 82px;
  background-image: url("https://icmgp2026india.com/gp/ICMGP%202026%20Logo%20(PNG).png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  z-index: 3;
}

/* Force title text to be visible */
.fPageTitle h1,
.fPageTitle h1#heading,
.fPageTitle #heading {
  position: relative !important;
  z-index: 4 !important;
  color: #ffffff !important;
  font-family: "Roboto", Arial, sans-serif !important;
  font-size: 30px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  letter-spacing: -0.3px !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22) !important;
}

/* ==========================================================================
   BETTER MAIN PAGE WIDTH + RESPONSIVENESS
   ========================================================================== */

.body,
#fContent,
#fContent > .container {
  max-width: 100% !important;
}

#fContent > .container {
  width: 92% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Keep acceptance cards responsive */
#fModule-62664 .f-list-item-container {
  width: 100% !important;
}
.fForm .form-item .date {
  width: 100% !important;
}
/* Tablet */
@media (max-width: 991px) {
  .fPageTitle {
    min-height: 108px !important;
    padding: 0 170px !important;
  }

  .fPageTitle::before {
    left: 28px;
    width: 125px;
    height: 68px;
  }

  .fPageTitle h1,
  .fPageTitle h1#heading,
  .fPageTitle #heading {
    font-size: 26px !important;
  }

  #fContent > .container {
    width: 94% !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .fPageTitle {
    min-height: auto !important;
    display: block !important;
    padding: 18px 16px 20px 16px !important;
    text-align: center !important;
  }

  .fPageTitle::before {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    display: block !important;
    width: 155px !important;
    height: 76px !important;
    margin: 0 auto 10px auto !important;
    background-position: center !important;
  }

  .fPageTitle h1,
  .fPageTitle h1#heading,
  .fPageTitle #heading {
    font-size: 23px !important;
    line-height: 1.25 !important;
    padding: 0 !important;
    text-align: center !important;
  }

  #fContent > .container {
    width: 94% !important;
  }

  .aal-summary {
    padding: 20px !important;
    margin-bottom: 22px !important;
  }

  .aal-summary-title {
    font-size: 18px !important;
  }

  .aal-summary-subtitle {
    font-size: 14px !important;
  }

  #fModule-62664 .f-list-column-1,
  #fModule-62664 .f-list-column-2 {
    display: block !important;
    width: 100% !important;
    padding: 20px !important;
    text-align: left !important;
  }

  #fModule-62664 .f-list-column-2 {
    padding-top: 16px !important;
    border-top: 1px solid #e5e7eb !important;
    background: #f8fafc !important;
  }

  .aal-action-box {
    width: 100% !important;
    align-items: stretch !important;
  }

  .aal-download-btn {
    width: 100% !important;
    text-align: center !important;
  }

  .aal-category-row {
    align-items: flex-start !important;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .fPageTitle::before {
    width: 138px !important;
    height: 68px !important;
  }

  .fPageTitle h1,
  .fPageTitle h1#heading,
  .fPageTitle #heading {
    font-size: 20px !important;
  }

  .aal-category-row {
    display: block !important;
  }

  .aal-category-label {
    display: block !important;
    margin-bottom: 7px !important;
  }

  #fModule-62664 .f-list-title {
    font-size: 16px !important;
  }
}