/**
 * Filename:     global.css (Refactored with CSS Variables)
 * Version:      2.0.0 (Updated 20 Sep 2025)
 * Website:      https://www.zymphonies.com
 * Description:  Global styles using CSS Custom Properties
 * Author:		Zymphonies Team
 * info@zymphonies.com
**/

/* ==========================================================================
   1. CUSTOM PROPERTIES (VARIABLES)
   ========================================================================== */

:root {
  /* Colors Palette */
  --color-warm-orange: #FF8C42; /* Primary action color */
  --color-warm-orange-dark: #E67E3A; /* Primary button hover state */
  --color-trust-blue: #3B82F6; /* Application header, Active/Accent, Secondary */
  --color-trust-white: #fff;
  --color-trust-blue-dark: #3472D8; /* Secondary button hover state */
  --color-gentle-lavender: #F3E8FF; /* Subtle hover, Sidebar active, Accent Card */
  --color-cream-white: #FEFDF8; /* Premium background, Card background */
  --color-grey-dark: #4a4a4a; /* Main body text */
  --color-grey-medium: #666; /* Links, default border */
  --color-grey-light: #e6e6e6; /* Secondary button, subtle table row border */

  /* Status Colors */
  --color-success: #10B981; /* Success Green */
  --color-success-dark: #065F46; /* Success text */
  --color-success-light: #ECFDF5; /* Success background */
  --color-warning: #FF8C42; /* Warning Accent (same as warm-orange) */
  --color-warning-text: #9A3412; /* Warning text */
  --color-warning-light: #FFF7ED; /* Warning background */
  --color-error: #EF4444; /* Error Red */
  --color-error-dark: #991B1B; /* Error text */
  --color-error-light: #FEF2F2; /* Error background */
  --color-border-error: #FCA5A5; /* Error border */

  /* Typography */
  --font-family-primary: "Source Sans Pro", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 140%;
  --heading-font-weight: 600;

  /* Spacing */
  --spacing-base: 1em;
  --spacing-small: 0.5em;
  --padding-messages: 10px 20px;
  --padding-btn: 15px;
  --padding-table-cell: 10px 12px;

  /* Borders & Radius */
  --border-radius-small: 2px;
  --border-radius-medium: 5px;
  --border-radius-large: 10px;
  --border-color-default: #e3e3e3;
  --border-color-table: #e6e4df;

  /* Transitions */
  --transition-speed-medium: all 0.5s;
}

/* ==========================================================================
   2. BASE & RESET STYLES
   ========================================================================== */

@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700&display=swap");

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: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/* Body and Global Text */
body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-grey-dark);
  overflow-x: hidden;
  font-weight: 400;
  background: var(--color-cream-white);
  background-size: 100%;
  text-align: left; }

p {
  margin: 0 0 20px 0; }

a {
  color: var(--color-grey-medium); }
  a:hover {
    color: var(--color-trust-blue); /* Was var(--color-warm-orange) in old hover, changed to blue to keep distinct from primary */
    text-decoration: none; }

em {
  font-style: italic; }

strong, b {
  font-weight: 500; }

img {
  max-width: 100%; }

ol, ul {
  padding-left: 20px;
  margin-bottom: 20px; }
  ol li, ul li {
    list-style: outside; }

.list-unstyled li {
  list-style: none; }

ol li {
  list-style-type: decimal; }

ul.links.inline {
  padding: 0; }
  ul.links.inline li {
    list-style: none; }

/* ==========================================================================
   3. HEADINGS
   ========================================================================== */

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
  font-family: var(--font-family-primary);
  color: var(--color-warm-orange);
  font-weight: var(--heading-font-weight);
  margin: 10px 0;
  line-height: 120%; }

h1, .h1 {
  font-size: 2em; }

h2, .h2 {
  font-size: 1.5em; }

h3, .h3 {
  font-size: 1.2em; }

h4, .h4 {
  font-size: 1.1em; }

h2.title {
  color: var(--color-warm-orange);
}

.custom-block-title {
  text-align: center;
  margin: 20px 0; }
  .custom-block-title h2 {
    font-size: 1.5em;
    color: var(--color-warm-orange);
    margin-bottom: 5px;
    font-weight: bold; }

h1.page-title {
    background: #f8f8f8;
    color: var(--color-trust-blue);
    padding: 10px;
    border-radius: 15px;
    text-align: center;
}

/* ==========================================================================
   4. MESSAGES & ALERTS
   ========================================================================== */

.messages {
  background: no-repeat 10px 17px;
  border: 1px solid;
  border-width: 1px 1px 1px 0;
  border-radius: var(--border-radius-small);
  padding: var(--padding-messages);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 5px 0px; }

.messages + .messages {
  margin-top: 1.538em; }

.messages__list {
  list-style: none;
  padding: 0;
  margin: 0; }

.messages__item + .messages__item {
  margin-top: 0.769em; }

/* Alert Palettes - Success, Warning (Orange Variant), Error */
.messages--status {
  color: var(--color-success-dark);
  background-color: var(--color-success-light);
  border-color: #34D399 #34D399 #34D399 transparent;
  box-shadow: -8px 0 0 var(--color-success);
}

.messages--warning {
  color: var(--color-warning-text);
  background-color: var(--color-warning-light);
  border-color: #FDBA74 #FDBA74 #FDBA74 transparent;
  box-shadow: -8px 0 0 var(--color-warm-orange);
}

.messages--error {
  color: var(--color-error-dark);
  background-color: var(--color-error-light);
  border-color: var(--color-border-error) var(--color-border-error) var(--color-border-error) transparent;
  box-shadow: -8px 0 0 var(--color-error);
}

.messages--error p.error {
  color: var(--color-error-dark);
}

/* ==========================================================================
   5. BUTTONS & ACTIONS
   ========================================================================== */

/* Primary Button */
.btn,
.node-readmore a,
.flexslider .more-link,
input[type="submit"] {
  border: 0;
  cursor: pointer;
  color: #fff;
  padding: var(--padding-btn);
  line-height: 100%;
  margin-right: 2px;
  display: inline-block;
  background: var(--color-warm-orange);
  border-radius: 0px;
  transition: var(--transition-speed-medium);
}

/* Secondary Button */
.btn.btn-secondary,
input[type="button"] {
  background: var(--color-grey-light);
  color: #444;
}

.btn:hover,
.node-readmore a:hover,
.flexslider .more-link:hover,
input[type="submit"]:hover {
  background: var(--color-warm-orange-dark);
  color: #fff;
}

.btn.btn-secondary:hover,
input[type="button"]:hover {
  background: var(--color-trust-blue-dark);
  color: #fff;
}

/* ==========================================================================
   6. FORMS
   ========================================================================== */

input, button, select, textarea {
  padding: 10px;
  border: 1px solid var(--border-color-default);
  border-radius: var(--border-radius-large);
  margin: 2px;
}

.form-item,
.form-actions {
  margin-top: var(--spacing-base);
  margin-bottom: var(--spacing-base); }

.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 2px solid var(--color-error);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-warm-orange);
  outline: none;
  box-shadow: 0 0 5px rgba(255, 140, 66, 0.5);
}

/* Specific input fields with updated border and focus */
.form-email,
.form-text,
.form-textarea {
  border: 1px solid var(--color-grey-medium);
  background: var(--color-cream-white);
  border-radius: var(--border-radius-medium);
}
.form-email:focus,
.form-text:focus,
.form-textarea:focus {
  border-color: var(--color-warm-orange);
}

.form-composite > .fieldset-wrapper > .description,
.form-item .description {
  font-size: 0.70em;
  line-height: 150%;
  color: #999;
  font-style: italic;
}

/* ==========================================================================
   7. TABLES
   ========================================================================== */

table {
  width: 100%;
  margin: 0 0 10px; }

th {
  text-align: left;
  padding: var(--padding-table-cell); }

thead th {
  background: var(--color-trust-blue); /* Was var(--color-warm-orange), changed to blue for header */
  border: solid #bfbfba;
  border-width: 1px 0;
  color: #fff;
  text-transform: uppercase; }

tr {
  border-bottom: 1px solid var(--border-color-table);
  padding: 0.1em 0.6em; }

thead > tr {
  border-bottom: 1px solid var(--color-warm-orange);
}

tbody tr:hover,
tbody tr:focus {
  background: var(--color-gentle-lavender);
}

tbody tr.color-warning:hover,
tbody tr.color-warning:focus {
  background: var(--color-warning-light);
}

tbody tr.color-error:hover,
tbody tr.color-error:focus {
  background: var(--color-error-light);
}

td {
  padding: var(--padding-table-cell);
  text-align: left; }

th.is-active > a {
  color: var(--color-trust-white);
}

th.is-active > a:after {
  border-bottom-color: var(--color-trust-blue);
}

th > a:hover,
th > a:focus,
th.is-active > a:hover,
th.is-active > a:focus {
  color: var(--color-warm-orange);
  text-decoration: none; }

th > a:hover:after,
th > a:focus:after,
th.is-active > a:hover:after,
th.is-active > a:focus:after {
  border-bottom-color: var(--color-warm-orange);
}

/* ==========================================================================
   8. TABS & NAVIGATION
   ========================================================================== */

div.tabs {
  margin: var(--spacing-base) 0; }

ul.tabs {
  list-style: none;
  margin: 0 0 var(--spacing-small);
  padding: 0; }

.tabs a.is-active {
  background-color: var(--color-warm-orange);
  color: #fff; }

.tabs a:focus,
.tabs a:hover {
  background-color: var(--color-warm-orange);
  color: #fff; }

.main-header nav {
  background: var(--color-trust-blue);
  transition: var(--transition-speed-medium);
}

.main-header a, .main-header .block * {
  color: var(--color-cream-white);
}
.main-header a:hover {
  color: var(--color-warm-orange);
}

/* Sidebar Menu (menu-base-theme) */
.menu-base-theme li a:hover,
.menu-base-theme li a:focus,
.menu-base-theme li a:active,
.menu-base-theme li a.highlighted,
.menu-base-theme li.active a {
  background: var(--color-gentle-lavender);
  color: var(--color-trust-blue);
}
.menu-base-theme li ul a:hover,
.menu-base-theme li ul a:focus,
.menu-base-theme li ul a:active,
.menu-base-theme li ul a.highlighted {
  background: var(--color-gentle-lavender) !important;
  color: var(--color-trust-blue) !important;
}

.nemo-porting-tab.active {
    background: var(--color-trust-blue) !important;
    color: #fff;
    border-radius: var(--border-radius-large);
    padding: 18px;
}

/* ==========================================================================
   9. LAYOUT & CARDS
   ========================================================================== */

.main-container {
  background: var(--color-cream-white);
}
  .main-container .left-wrapper {
    background: var(--color-cream-white);
    transition: var(--transition-speed-medium);
  }
  .main-container .content-wrapper {
    transition: var(--transition-speed-medium);
    padding-bottom: 40px;
  }

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

/* Accent Card (Gentle Lavender/Trust Blue accent) */
.bd-example,
.card-accent {
  background: var(--color-gentle-lavender);
  border: 2px solid var(--color-trust-blue);
  padding: 18px;
}

/* Standard Card (Cream White/Gentle Lavender accent) */
.clients,
.bottom-widget,
.topwidget .topwidget-list .region .block,
.card-standard,
.services-list .block {
  background: var(--color-cream-white);
  border: 1px solid var(--color-gentle-lavender);
}

.kpi-value {
  color: var(--color-warm-orange);
  font-weight: 700;
}

.group-description {
    border: 1px solid var(--color-warm-orange);
    padding: 10px;
    margin: 10px;
    border-radius: var(--border-radius-large);
}

/* ==========================================================================
   10. MISC
   ========================================================================== */

.social-media a {
    background: var(--color-warm-orange);
    color: #fff;
}
.social-media a:hover {
    background: var(--color-warm-orange-dark);
}

.flexslider .flex-control-paging li a.flex-active {
  background: var(--color-warm-orange);
}

.navbar-toggle .fas {
  color: var(--color-warm-orange);
}

.user-pass {
  background: #fdfdfd;
}

.maintenance-page {
  color: var(--color-warm-orange);
}

.path-user .profile .label {
  color: var(--color-warm-orange);
}

/* Remaining styles with minimal variable adoption (primarily layout/specific resets) */

/* ... (rest of the non-refactored, layout-specific styles) ... */

/* Remaining original content that does not benefit from variables or contains unique values */

.messages + .messages {
  margin-top: 1.538em; }

.messages__item + .messages__item {
  margin-top: 0.769em; }

form .field-multiple-table {
  margin: 0; }

form .field-multiple-table .field-multiple-drag {
  width: 30px;
  padding-right: 0; }

form .field-multiple-table .field-multiple-drag .tabledrag-handle {
  padding-right: .5em; }

form .field-add-more-submit {
  margin: .5em 0 0; }

.tabs > li {
  display: inline-block;
  margin-right: 0.3em; }

.tabs a {
  display: block;
  padding: 6px 10px;
  text-decoration: none;
  background: #e6e6e6;
  line-height: 100%;
<<<<<<< HEAD
  color: #444; }
=======
  color: #444;
  margin-top:2px; }
>>>>>>> feature-nemo-refined-palette

caption {
  text-align: left; }

td,
th {
  vertical-align: middle; }

th > a {
  position: relative;
  display: block; color: var(--color-trust-white); }

th > a:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: -10px;
  left: 0;
  right: 0;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.1s;
  transition: all 0.1s; }

th.is-active img {
  position: absolute;
  right: 0;
  top: 50%; }

td .item-list ul {
  margin: 0; }

td.is-active {
  background: none; }

th.select-all {
  width: 1px; }

.caption {
  margin-bottom: 1.2em; }

@media screen and (max-width: 37.5em) {
  /* 600px */
  th.priority-low,
  td.priority-low,
  th.priority-medium,
  td.priority-medium {
    display: none; } }
@media screen and (max-width: 60em) {
  /* 920px */
  th.priority-low,
  td.priority-low {
    display: none; } }

.block {
  margin-bottom: 10px; }

.main-container .left-wrapper {
  width: 300px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 99;
  left: -300px; }
.main-container .content-wrapper {
  padding-left: 0;
  width: 100%;
}
.main-container .lhs-bottom-container {
  padding: 10px 20px;
  bottom: 0; }
.main-container .content-container {
  padding: 0 20px; }

.footerwidget {
  background: #108441;
  color: #86b59a;
  padding: 20px 0;
  border-top: 1px solid #f7f7f7; }
  .footerwidget h2.title {
    color: #fff; }
  .footerwidget .left {
    float: left;
    margin: 10px 10px 0 0; }

.copyright {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #f8f8f8;
  color: #666;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

.map-and-address h2.title {
  display: none; }

.footer-menu {
  margin: 0;
  border: 0;
  background: url('../images/social-media-bg.png');
  color: #fff;
  background-size: cover;
  padding: 80px 0; }

.contact-message-form label {
  display: block; }

.comment-wrap {
  overflow: hidden;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F5F5F5; }
  .comment-wrap .author-details {
    float: left;
    width: 20%; }
  .comment-wrap .author-comments {
    padding-left: 5px;
    float: left;
    width: 80%; }
    .comment-wrap .author-comments h3 {
      margin-top: 10px; }
    .comment-wrap .author-comments p {
      margin-bottom: 10px; }

.comment-submitted {
  padding: 5px 10px;
  border: 1px solid #eee;
  display: inline-block;
  line-height: 100%; }

ul.links.inline li {
  display: inline-block;
  padding-right: 10px; }

.sidebar .region h2.title {
    padding: 5px 0;
    margin: 0; }

.region-content {
  min-height: 300px; }

.path-frontpage .region-content {
  min-height: auto; }

tr.odd .form-item,
tr.even .form-item {
  margin-top: 0;
  margin-bottom: 0; }

label.option {
  display: inline;
  font-weight: normal; }

.form-composite > legend,
.label {
  display: inline;
  font-size: inherit;
  font-weight: bold;
  margin: 0;
  padding: 0; }

.form-checkboxes .form-item,
.form-radios .form-item {
  margin-top: 0.4em;
  margin-bottom: 0.4em; }

.marker {
  color: #e00; }

abbr.tabledrag-changed,
abbr.ajax-changed {
  border-bottom: none; }

.owl-theme .owl-dots .owl-dot span {
  background: #b5b5b5;
  height: 7px;
  width: 7px; }

.path-frontpage .feed-icon {
  display: none; }

.features {
  padding: 15px; }
  .features .region {
    padding: 18px; }
  .features .col-sm {
    background: #57a2d6; }
    .features .col-sm * {
      color: #fff; }
    .features .col-sm p {
      margin: 0; }
    .features .col-sm:nth-child(2) {
      background: #50617d; }
    .features .col-sm:nth-child(2) {
      background: #69c0af; }

.clients .region ul li {
  display: inline-block;
  text-align: center; }
  .clients .region ul li img {
    max-width: 200px; }

.services-list {
  text-align: center; }
  /* Removing box-shadow property */
  .services-list .block {
    padding-bottom: 20px; }

.testimonials-wrap {
  background: #fafafa;
  border-top: solid 1px #e3e3e3;
  border-bottom: solid 1px #e3e3e3;
  padding: 20px 0;
  text-align: center;
  font-size: 1em;
  line-height: 160%; }

.region-testimonials {
  max-width: 600px;
  margin: 0 auto; }

.testimonials-pic {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 10px; }

.testimonials-pic img {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%; }

.testimonials-author {
  padding: 0 5px;
  font-size: .75em;
  color: #555; }

.price-table .card-header,
.bottom-widget .card-header {
  border: 0;
  padding: 18px; }
.price-table ul li,
.bottom-widget ul li {
  list-style: none;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px; }

.team .team-list .region {
  background: #efefef;
  overflow: hidden;
  padding: 10px;
  border: 1px solid #eaeaea; }

.top-nav {
  position: relative;
  padding: 15px 10px;
  background: var(--color-trust-blue); color:#fff;}
  .top-nav .block, .top-nav p {
    margin: 0; }

.top-nav-right {
  float: right; }

/* Application header */
.main-header .region {
  position: relative;
  padding: 25px 0; }
.main-header .block {
  margin: 0; }
.main-header p, .main-header .block {
  margin: 0; }

.site-branding {
  margin: 0; }

.region-header {
  padding: 14px 15px;
}
  .region-header .brand {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5em; }
    .region-header .brand a {
      color: var(--color-cream-white);
      display: block;
      font-weight: 400; }
      .region-header .brand a img {
        vertical-align: middle; }
    .region-header .brand .site-branding__slogan {
      font-size: .5em;
      text-transform: uppercase;
      vertical-align: top;
      color: var(--color-cream-white);
    }

.search-block-form {
  margin: 0 auto; }

.region-search {
  width: 400px;
  display: inline-block;
  vertical-align: top; }

#search-block-form {
  display: table;
  width: 100%; }
  #search-block-form .form-item,
  #search-block-form .form-actions {
    display: table-cell;
    vertical-align: top; }
  #search-block-form .form-actions {
    width: 35px; }
  #search-block-form input.form-submit {
    background: url('../images/search.png?1554720536') no-repeat center var(--color-warm-orange);
    font-size: 0;
    width: 100%;
    height: 35px;
    padding: 0 20px;
    vertical-align: top;
    border-color: var(--color-warm-orange);
    border-radius: 0; }
    #search-block-form input.form-submit:hover {
      background-color: var(--color-warm-orange-dark);
      border-color: var(--color-warm-orange-dark);
    }
  #search-block-form input {
    width: 100%;
    height: 35px;
    padding: 15px;
    border-radius: 0; }

.advertisement {
  text-align: center;
  margin: 20px 0; }

.breadcrumb {
  font-size: .75em;
  padding: 2px 0;
  margin: 0;
  display: inline-block;
  border-radius: 0; }
  .breadcrumb .breadcrumb-divider {
    display: none; }
  .breadcrumb ul, .breadcrumb ol {
    padding: 0;
    margin: 0; }
    .breadcrumb ul li, .breadcrumb ol li {
      display: inline-block;
      padding: 0 8px; }
      .breadcrumb ul li:after, .breadcrumb ol li:after {
        content: " >";
        padding-left: 15px; }
      .breadcrumb ul li:last-child:after, .breadcrumb ol li:last-child:after {
        display: none; }

.flexslider {
  border: 0;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  box-shadow: none;
  border-radius: 0px; }
  .flexslider .slider-caption {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    z-index: 99;
    text-align: left;
    line-height: 150%;
    padding: 18px; }
  .flexslider .slider-title {
    font-size: 2em;
    font-weight: 600;
    background: #494949;
    padding: 10px;
    color: #fff; }
  .flexslider .slider-description {
    display: inline-block;
    clear: both; }
  .flexslider .slides li {
    position: relative; }
    .flexslider .slides li:after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      transition: all 2s; }
  .flexslider .flex-direction-nav {
    display: none;
    position: absolute;
    top: 50%;
    width: 100%; }
    .flexslider .flex-direction-nav li {
      list-style: none; }
    .flexslider .flex-direction-nav a {
      font-size: 0;
      padding: 10px; }
      .flexslider .flex-direction-nav a:before, .flexslider .flex-direction-nav a:after {
        color: #3c5a6d; }
  .flexslider .flex-control-paging li a {
    width: 15px;
    height: 15px;
    display: block;
    background: #fff;
    cursor: pointer;
    text-indent: -9999px;
    border-radius: 50%; }
  .flexslider .flex-control-nav {
    bottom: 0; }

.navbar-toggle {
  cursor: pointer;
  background: none;
  border: 0;
  padding: 5px 6px;
  z-index: 99;
  position: relative; }
  .navbar-toggle:focus {
    outline: none; }
  .navbar-toggle .fas {
    border: 0;
    box-shadow: none;
    font-size: 1.5em;
    color: #fff !important; /* Overriding previous setting for consistent header toggle color */
}

nav h2 {
  display: none; }

.menu-base-theme {
  background: none; }
  .menu-base-theme li {
    display: block;
    width: 100%;
    border: 0; }
    .menu-base-theme li a {
      text-transform: uppercase;
      font-family: var(--font-family-primary);
      color: #666;
      line-height: 100%;
      padding: 18px;
      background: none;
      border: 0;
      border-radius: var(--border-radius-large) }
      .menu-base-theme li a:hover, .menu-base-theme li a:focus, .menu-base-theme li a:active, .menu-base-theme li a.highlighted {
        line-height: 100%;
        padding: 18px; }
      .menu-base-theme li a span.sub-arrow {
        border: 0;
        width: 20px;
        height: 20px;
        display: inline-block;
        top: 18px;
        font-size: 2rem;
        padding: 3px 0;
        right: 20px;
        left: auto; }
      .menu-base-theme li a.highlighted span.sub-arrow {
        font-size: 0; }
        .menu-base-theme li a.highlighted span.sub-arrow:after {
          font-size: 2rem;
          position: absolute;
          top: 0;
          right: 0;
          left: auto;
          z-index: 99;
          content: "-";
          width: 20px;
          height: 20px;
          color: #666;
          line-height: 40%;
          padding: 2px 0; }
    .menu-base-theme li ul {
      position: static;
      background: none;
      border: 0;
      padding-left: 20px; }

.expand-menu {
  position: relative; }
  .expand-menu:after {
    content: "";
    position: fixed;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95); }
  .expand-menu .navbar-toggle .fas {
    color: #fff; }
  .expand-menu .left-wrapper {
    left: 0; }
  .expand-menu .content-wrapper {
    padding-left: 300px;
    width: 100%; }

.region-footer-menu ul {
  margin: 10px 0;
  padding: 0; }
.region-footer-menu nav li {
  display: inline-block; }
  .region-footer-menu nav li a {
    display: block;
    padding: 2px 15px 2px 0; }

.user-menu {
  display: inline-block;
  text-align: right; }
  .user-menu ul.menu {
    margin: 0;
    padding: 0; }
    .user-menu ul.menu li {
      display: inline-block;
      padding-right: 10px; }
      .user-menu ul.menu li a {
        padding: 10px 0;
        display: block;
        line-height: 100%; }

.highlight {
  padding: 18px;
  background-color: #ffffff; }
  .highlight pre {
    border: 0;
    background: none; }

.bd-example-type h1, .bd-example-type h2, .bd-example-type h3, .bd-example-type h4, .bd-example-type h5, .bd-example-type h6 {
  margin: 0; }
.bd-example-type .table td {
  padding: 15px 0;
  border-color: #eee; }
.bd-example-type .table tr:first-child td {
  border-top: 0; }

.topwidget .fa, .topwidget .fas {
  font-size: 3em; }
.topwidget img {
  border: 1px solid #eee; }
.topwidget ul {
  margin: 0;
  padding: 0; }
  .topwidget ul li {
    list-style: none;
    padding-bottom: 6px;
    margin-bottom: 6px;
    border-bottom: 1px solid #dddddd42; }

.contact-message-feedback-form {
  max-width: 650px;
  margin: 0 auto;
  background: var(--color-cream-white);
  border: 1px solid #e8e8e8;
  padding: 20px 30px; }

.contact-message-feedback-form .form-text,
.contact-message-feedback-form .form-email,
.contact-message-feedback-form .form-textarea {
  width: 100%; }

.user-login-form,
.user-form,
.user-pass {
  max-width: 500px;
  margin: 40px auto;
  border: 1px solid #e6e6e6;
  padding: 5px 20px;
  background: #fdfdfd; }
  .user-login-form .form-text,
  .user-login-form .form-email,
  .user-form .form-text,
  .user-form .form-email,
  .user-pass .form-text,
  .user-pass .form-email {
    width: 100%; }

.maintenance-page {
  background: url('../images/maintenance-bg.png?1554720536') #66CBFF center no-repeat;
  color: var(--color-warm-orange);
  text-align: center;
  padding-top: 220px;
  padding-bottom: 100px;
}
  .maintenance-page .brand,
  .maintenance-page .name-and-slogan {
    display: inline-block;
    vertical-align: middle; }
  .maintenance-page .site-name a {
    color: #404040; }
  .maintenance-page .site-slogan,
  .maintenance-page .name-and-slogan {
    display: none; }

.maintenance-msg {
  margin: 20px 0;
  padding: 20px 30px;
  display: inline-block;
  color: #404040;
  border: 1px solid #fff;
  background: #f2f4cf;
  background: rgba(242, 244, 207, 0.88);
  box-shadow: 5px 5px 0px #fff; }
  .maintenance-msg h1 {
    text-transform: uppercase;
    font-weight: bold; }

.path-user .profile > div {
  display: inline-block; }

 /*wasim*/
 ul#account-menu {
    display: flex;
    flex-direction: row;
    column-gap: 15px;
    margin: 5px 10px;
}
 ul#account-menu li:hover > ul, ul#account-menu li ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
}
ol li, ul li {
    list-style: none;
}
ul#account-menu li ul li {
    padding: 0px 10px;
    position: relative;
}
.lang-dropdown-select-element {
    text-transform: uppercase;
}
.form-item-lang-dropdown-select {
    display: inline;
}
nav#block-custom-theme-account-menu {
    display: inline-block;
}
div#block-custom-theme-languagedropdownswitcher {
    display: inline-block;
}
.toolbar-horizontal .brand.logo {
    margin-top: 10px;
}
.brand.site-name {
    display: none;
}

/*entitlement module*/
.path-entitlement-groups .dropbutton-widget {
    background: #fff;
}
ul.js-pager__items li {
    padding: 5px 10px;
    border: 1px solid #d5d5d5;
    list-style: none;
    display: inline-block;
}

.menu-base-theme ul a, .menu-base-theme ul a:hover, .menu-base-theme ul a:focus, .menu-base-theme ul a:active, .menu-base-theme ul a.highlighted {
    border: 0 !important;
    padding: 9px 23px;
    background: transparent;
    color: #666 !important;
    padding: 18px !important;
}

.nemo-porting-form {
    background: #3b82f612;
    border: 0px;
    border-radius: 8px;
    padding: 18px;
    max-width: 700px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.nemo-porting-tab {
    flex: 1;
    text-align: center;
    padding: 18px !important;
    background: #f8f8f8;
    font-weight: bold;
    border-right: 1px solid #ddd;
}
/* Only top-level links inside #account-menu */
#account-menu > li > a {
	text-transform: uppercase;
	font-family: var(--font-family-primary);
	color: #fff;
	line-height: 100%;
	padding: 18px;
	background: none;
	border: 0;
	border-radius: var(--border-radius-large)
}

/* Keep dropdown menu links normal */
#account-menu .dropdown-menu a {
  color: inherit;
}
/*
#account-menu .dropdown-menu li a:hover, li a:active, li a.highlighted {
    background: var(--color-gentle-lavender);
    color: var(--color-trust-blue);
    line-height: 100%;
    padding: 18px;
}
*/
#account-menu .dropdown-menu li {
    color: #666;
    line-height: 100%;
    padding: 18px;
}

/* BUTTONS & INPUT BUTTONS */
button,
.btn,
input[type="button"],
input[type="submit"] {
  border-radius: 5px; /* rounded corners */
}

div#block-custom-theme-cart {
    display: inline-block;
}
span.cart-block--summary__count {
    color: #fff;
}
