/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
}


.header{
z-index:2 
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 0rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

.header {
  z-index: 2;
  background-color: #fff !important;
  border-bottom: .5px solid !important;
  padding: 5px 12px !important;
}

.header .secondary-div {
  max-width: 1920px;
  margin: auto;
}

.hs-search-field__button,
.header__search .search-btn .close-btn,
.header__search .hs-search-field__label,
.header__search #hs_cos_wrapper_site_search {
  display: none;
}

.header__search .search-btn {
  width: 100%;
  cursor: pointer;
  padding-inline: 5px;
  display: flex;
  /* gap: 1rem; */
}

.header__search #hs_cos_wrapper_site_search input {
  border-radius: 40px;
  padding-left: 30px !important;
  height: 38px;
  font-size: 18px !important;
  font-weight: 400 !important;
}

.header__search #hs_cos_wrapper_site_search input::placeholder {
  color: gray !important;
}

.header__search .search-btn .close-btn {
  position: fixed;
  z-index: 99;
  right: 20px;
  top: 9px;
}

.header__column {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 14px;
  padding-right: 11px;
}

.menu__item .more-toggle img {
  width: 15px !important;
}

.menu__item .more-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.header__search #hs_cos_wrapper_site_search {
  position: absolute;
  width: calc(100% - 200px);
  right: 0;
  justify-content: end;
  background-color: #FFF;
  height: 100%;
  top: 0;
  z-index: 99;
}

.header__search #hs_cos_wrapper_site_search .hs-search-field {
  width: 18rem;
  margin-right: 40px !important;
}

.header-notification {
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__search .search-btn svg,
.header-notification svg {
  width: 19px;
}
.header-notification svg{
  cursor: pointer;
}

.avatar-image {
  max-width: 25px !important;
  max-height: 25px;
  background-color: #8fa4b3;
  border-radius: 100%;
}

.avatar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  /* justify-content: flex-end; */
  width: 100%;
}

.menu__child-toggle-icon.is-open {
  transform: rotate(180deg);
  /* example visual for open state */
  transition: transform 0.3s ease;
}

@media (max-width: 1311px) {
  .more-dropdown {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    top: 100%;
    left: 0;
    min-width: 180px;
    z-index: 999;
  }

  .more-dropdown.show {
    display: block;
  }

  .more-menu-item {
    position: relative;
  }

  .more-dropdown .menu__item {
    white-space: nowrap;
  }

  .more-dropdown .menu__link {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
  }

  .more-dropdown .menu__link:hover {
    background-color: #f0f0f0;
  }

}

@media (max-width: 1150px) and (min-width: 992px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 992px) {

  .menu__item button {
    position: absolute !important;
    right: 0 !important;
    top: -2 !important;
    width: 100% !important;
  }

  .menu__child-toggle-icon {
    position: absolute !important;
    right: 50px;
    top: 18px;
  }

  #hs_cos_wrapper_site_logo, .header__logo a img {
    height: 22px !important;
  }

  .header {
    padding-block: 6px;
    height: 48px !important;
  }

  .header__search #hs_cos_wrapper_site_search .hs-search-field {
    width: 100% !important;
  }

  .header__logo--main {
    position: absolute;
    right: 0;
    left: 0;
    top: -1px;
    width: 135px !important;
    max-height: 32px;
    height: 39px !important;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  /* margin-right: auto; */
  max-width: 200px;
  overflow: hidden;
}

#hs_cos_wrapper_site_logo,
.header__logo a img {
  height: 32px;
}

@media (max-width: 992px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }

  .dropdown-menu {
    width: 103.3% !important;
    right: -19px !important;
  }
}

@media (max-width: 870px) {
  .dropdown-menu {
    width: 103.5% !important;
  }
}

@media (max-width: 659px) {
  .dropdown-menu {
    width: 104.5% !important;
  }
}

@media (max-width: 540px) {
  .dropdown-menu {
    width: 105.5% !important;
  }
}

@media (max-width: 480px) {
  .dropdown-menu {
    width: 106% !important;
  }

  .menu__item button {
    right: 24px;
    top: 0px;
    width: fit-content;

  }

  .header__navigation {
    width: 111%;
  }
}

@media (max-width: 375px) {
  .dropdown-menu {
    width: 108% !important;
  }

  .header__navigation {
    width: 115% !important;
  }
}

@media (max-width: 400px) {
  .header__logo {
    left: 34px !important;
    right: auto !important;
  }
}

@media (max-width: 320px) {
  .dropdown-menu {
    width: 110.5% !important;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.avatar-container {
  position: relative;
}

.avatar-container img {
  width: 20px;
  height: 20px;
}

.avatar-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  display: flex;

}

.avatar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown-menu {
  position: absolute;
  top: 40px;
  right: -9px;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  overflow: hidden;
  display: none;
  z-index: 999;
  width: 175px;
  border-radius: 5px;
}

.dropdown-menu:before {
  border-radius: 0;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, .2);
  content: "";
  display: block;
  height: 25px;
  /* left: 0; */
  margin-left: 1rem;
  overflow: hidden;
  position: fixed;
  right: 34px;
  top: 42px;
  transform: rotate(45deg);
  transition: background-color .3s;
  width: 25px;
  z-index: -1;
  background: #fff;
}

.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  text-decoration: none;
  color: black;
  border-top: 1px solid #eee;
  font-size: 12px;
  background: #fff;
}

.dropdown-menu a:first-child {
  border-top: none;
}

.dropdown-menu a:hover {
  text-decoration: none;
  color: #006eaf;
}

.header__column.search-active .header__navigation,
.header__column.search-active .avatar-container,
.header__column.search-active .header__navigation--toggle {
  display: none;
}

.header__column.search-active .header__search {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.header__column.search-active .header__close--toggle {
  display: block;
}

/* Search bar */

  {
  % if (get_asset_version("@hubspot/search_input")=="1")
}

.hs-search-field__form {
  position: relative;
}

.header__search .hs-search-field__label {
  flex-basis: auto;
}

  {
  % endif %
}

.header__search .hs-search-field__input:focus {
  outline-color: #0176d3;
}


  {
  % if (get_asset_version("@hubspot/search_input")=="1") %
}

.header__search .hs-search-field__button {
  padding: 0;
  fill: #000;
  background-color: transparent;
  border: none;
  padding: 10px;
}

.header__search .hs-search-field__button svg {
  height: 15px;
}

  {
  % endif %
}

.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

.header__search form {
  position: relative;
}

.custom-search-icon {
  position: absolute;
  left: 10px;
}

.custom-search-icon svg {
  width: 15px;
  height: 15px;
  opacity: 0.5;

}

@media (min-width: 992px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;

  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}


/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}


@media (max-width: 992px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover {
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }

    {
    %- if get_asset_version('@hubspot/language_switcher')==1 %
  }

  /* V1 lang switcher updates to keep "in line" w/ v0 mobile styles */
  .header__language-switcher .hs-language-switcher__menu {
    display: block;
    box-shadow: none !important;
    background: transparent;
  }

  .header__language-switcher .hs-language-switcher__menu a {
    font-size: 20px !important;
  }

  .header__language-switcher .hs-language-switcher__button {
    display: none;
  }

    {
    % endif -%
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 992px) {

  .header__navigation,
  .header__language-switcher {
    display: none;
    width: 107%;
  }

  .header__navigation.open,
  .header__language-switcher.open {
    background-color: #fff;
    display: block;
    /* left: 0; */
    left: -20px !important;
    /* min-height: calc(100vh - 115px); */
    /* min-height: calc(100vh - 163px); */
    position: absolute;
    right: 0;
    top: 42px;
    z-index: 2;
  }

  .header__row-1, .header__row-2 {
    justify-content: space-between;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;

  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 20px;
    width: 20px;
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .menu__wrapper {
    flex-direction: column;
    gap: 0 !important;
  }

  .menu__item {
    padding: 5px 20px 5px 20px;
    border-bottom: 1px solid rgb(0, 0, 0) !important;
  }

  .header__close--toggle.show+.header--toggle.header__navigation--toggle.hide.open {
    display: none !important;
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
    position: absolute;
    top: 8px !important;
    width: 20px;
  }

  .menu__item:last-child {
    border-bottom: 0 !important;
  }

  .menu__submenu {
    cursor: pointer !important;
    position: static !important;
    text-transform: none !important;
    width: 100% !important;

  }

  .menu__submenu--level-2 {
    transform: inherit !important;
    margin-left: 7px !important;
  }

  .menu__submenu--level-2>.menu__item:first-child:before {
    display: none !important;
  }

  .menu__item--has-submenu .menu__item {
    padding: 0 !important;
    border-bottom: none !important;
  }

  .header__search #hs_cos_wrapper_site_search {
    width: 100% !important;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
.left-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 13px;
}

.input-error {
    border-color: #dc3545;
    /* Red border for errors */
}

.no-data-image {
    margin: auto;
    margin-top: 2rem;
    width: fit-content;
}

.no-data-image p {
    text-align: center;
}

.input-normal {
    border-color: #d1d6dc;
    /* Normal grey border */
}

#leadForm {
    background-color: #fff;
    position: relative;
}

.title p {
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
}

.title span {
    font-size: 14px;
    font-weight: 400;
}

.title p::before {
    content: "";
    width: 100%;
    height: 1px;
    position: relative;
    background-color: #000;
    top: 30px;
    left: 0;
    visibility: hidden;
    display: block;
}

.title p:hover::before {
    visibility: visible;
}


.button_section {
    display: flex;
    border: 1px solid #000;
    border-radius: 4px;
}

.lead-title-section {
    max-width: 30px;
    max-height: 30px;
    background-color: #06A59A;
    border-radius: 2px;
}

.search-svg {
    position: absolute;
    right: 18px;
    top: 19px;
    opacity: 0.5;
}


.lead-title-section img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lead-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lead-section {
    padding: 25px;
    font-family: 'Lato';
}

th.resizable {
    position: relative;
}

.resizer {
    position: absolute;
    right: 0;
    top: 0;
    width: 5px;
    height: 100%;
    cursor: col-resize;
    user-select: none;
    z-index: 2;
}

.lead-table thead th {
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    color: #000;
    background-color: #fff;
}

/* Resize guide line */
#resize-line {
    position: absolute;
    top: 0;
    width: .5px;
    background-color: #006eaf;
    display: none;
    z-index: 9999;
}

.title p {
    margin: 0;
}

.title h3 {
    font-weight: 500;
    font-size: 24px;
}

.title {
    font-size: 16px;
    font-weight: bold;
}

.subtitle {
    font-size: 12px;
    color: #555;
    margin-top: 4px;
}

.dropdown-icon {
    font-size: 14px;
    cursor: pointer;
}

.setting-section {
    display: flex;
    gap: 10px;
}

.right-section {
    display: flex;
    align-items: end;
    gap: 15px;
    flex-direction: column;
    padding-bottom: 20px;
}

.lead-btn {
    padding: 6px 12px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    background-color: transparent;
    color: #006eaf;
}

.lead-btn:hover,
.lead-btn:focus {
    background-color: #006eaf0d !important;
    border: none !important;
    color: #006eaf !important;

}

.opportunity-section {
    margin-top: 20px;
}

.search-box {
    padding: 6px 21px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 250px;
}


.search-box:focus {
    border: 3px solid #0176d3;
}

.icon-buttons {
    display: flex;
    gap: 8px;
    align-items: baseline;

}

.icon-buttons button {
    padding: 6px 10px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* .lead-drop_down_section {
    display: flex;
    gap: 10px;
    position: relative;
} */

.icon-buttons svg {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

/* .lead-drop_down_section svg {

    width: 15px;
    height: 15px;
}

.lead-drop_down_section .icon-buttons button {
    padding: 6px;
} */

.icon-buttons svg:hover {
    opacity: 1;
    fill: #005486;

}


.dropdown-content {
    background: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 12px 0;
    max-height: 400px;
    overflow: auto;
    border-top-right-radius: 1px;
    border-top-left-radius: none;
    margin: 0 8px;
}

.content-item {
    font-size: 14px !important;
    padding: 8px;
    margin: 0 4px !important;
    border: 2px solid transparent !important;
}

.content-item:hover {
    background-color: #006eaf0d;
    border: 2px solid #006eaf !important;

}

.content-item:hover:before {
    display: none !important;
}

.dropdown-section {
    position: absolute;
    top: 37px;
    width: 100%;
    display: none;
    z-index: 2;

}

.dropdown-section input {
    width: 100%;
    padding: 8px;
    border-radius: 10px;
    border: 3px solid #032d60;
}

.dropdown-open .dropdown-section {
    display: block;
    width: 600px;
}

.lead-dropdown-wrapper {
    position: relative;
    border: 1px solid;
    padding: 7px;
    border-radius: 3px;
    background: #fff;
}

.setting-section {
    position: relative;
}

.setting-search-icon {
    left: 6px;
    opacity: .5;
    position: absolute;
    top: 0px;
}

/* .lead-drop_down_section .icon-buttons button svg {
    width: 12px;
    height: 12px;
} */

.setting-search-icon svg {
    width: 12px;
    height: 12px;
}

/* table styling */

.table-wrapper {
    width: 100%;
    overflow: auto;
}

.lead-table-container {
    width: max-content;
    min-width: 100%;
    border: 1px solid #ccc !important;
    border-radius: 5px;
}


tr.lead-tr:hover td:nth-child(odd) {
    background-color: #006eaf0d;
    /* even lighter red */
}

::-webkit-scrollbar {
    display: none;
}

.lead-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1200px;
    font-family: 'Lato';
    font-size: 14px;
    color: #333;
    margin: 0;
}



.lead-table tbody td {
    padding: 8px 16px;
    /* border-bottom: 1px solid #eee; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 174px;
}

.lead-table a {
    color: #0073e6;
    text-decoration: none;
    font-weight: 500;
}

.lead-table input[type="checkbox"] {
    transform: scale(1.2);
    cursor: pointer;
}

select {
    border: none;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
}

.arrow {
    font-size: 12px;
    color: #999;
    margin-left: 4px;
}

.lead-th {
    resize: horizontal;
    overflow: auto;
    min-width: 100px;
    max-width: 400px;
}

.lead-dropdown-cell {
    position: relative;
}

.dropdown-toggle {
    background: white;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    border: 1px solid #c9c9c9;

}

.dropdown-toggle:hover {
    background-color: transparent;


}

.dropdown-toggle:hover svg {
    opacity: 1;
}


.dropdown-toggle:focus {
    border: 2px solid #0055a5;
    background-color: transparent;


}

.dropdown-toggle svg {
    width: 15px;
    height: 15px;
    opacity: 0.5;
}


.lead-dropdown-menu {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    display: none;
    list-style: none;
    width: 90px;
    padding: 6px 0;
    position: absolute;
    right: 15px;
    top: 37px;
    z-index: 10;
    margin: 0;
}

.sort-arrow {
    display: inline-block;
    max-height: 12px;
    max-width: 12px;
    margin: 0;
}

.sort-arrow {
    visibility: hidden;
    margin-left: 5px;
}

.lead-table th {
    border-top: 1px solid #000 !important;
    border-bottom: 1px solid #000 !important;
    border-left: 1px solid #aeaeae !important;
    border-right: 1px solid #aeaeae !important;

}

.lead-table th:first-child,
.lead-table th:nth-child(2) {
    border: none !important;
    border-left: none !important;
}

table.lead-table, table, td, th {
    border: none !important;
}

.lead-table tr {
    border: 1px solid #000;
    border-left: none !important;
    border-right: none !important;
}

.lead-table tbody tr {
    border: 1px solid #000;

}

.lead-table tbody tr:hover td {
    box-shadow: rgb(0, 0, 0) 0 -1px 0 inset, rgb(0, 0, 0) 0 1px 0 inset;

}


.resizable {
    cursor: pointer;
}

.resizable:hover .sort-arrow {
    visibility: visible;
}

.resizable.active .sort-arrow {
    visibility: visible;
}

.resizable {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sort-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lead-dropdown-menu li {
    padding: 0 10px;
    cursor: pointer;
    font-size: 14px;
    border: 2px solid transparent;
    margin: 0 3px;
}


.lead-dropdown-menu li:hover {
    background-color: #006eaf0d;
    border-color: #005486;
}

.subtitle {
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.subtitle-default,
.subtitle-selected {
    display: flex;
    align-items: center;
    gap: 10px;
}

.subtitle span,
.subtitle strong {
    font-weight: 400;
    color: #333;
}

.subtitle strong {
    font-weight: 600;
}

.subtitle-selected {
    font-size: 15px;
    font-weight: 500;
    color: #0a66c2;
}

.lead-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.lead-modal h3 {
    border-bottom: 2px solid #000;
    margin: 0;
    text-align: center;
    padding: 10px 0;
    font-size: 22px;
    font-weight: 400;
    font-family: Helvetica;

}

.leadForm-filed label {
    font-size: 13px;
    margin: 5px 0 0;
    font-family: 'Lato';
}

.gdpr-label {
    display: flex;
    align-items: center;
    gap: 7px;
    text-align: center;
}

.leadForm-filed input,
.leadForm-filed select,
.leadForm-filed textarea {
    border: 1px solid #000 !important;
    outline: none !important;
    margin: 0 !important;
    font-size: 16px !important;
    padding: 8px !important;
}

.leadForm-filed_wrapper {
    display: flex;
    gap: 2%;
    margin-bottom: 8px;
    align-items: center;
    flex-direction: column;
}

.date-time-container {
    display: flex;
    gap: 15px;
}



.leadForm-filed_wrapper div {
    width: 100%;
    margin-bottom: 12px;
}

.lead-from_warpper {
    padding: 20px;

}

.lead-form-checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lead-form-checkbox-container input {
    width: fit-content;
}

.leadForm-filed_wrapper p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.leadForm-filed_wrapper span {
    color: #e01818;
}

.lead-from_warpper h4 {
    font-size: 18px;
    margin: 0 0 10px;

}

.modal-content {
    background-color: #f4f4f4;
    margin: auto;
    width: 60%;
    max-height: 70%;
    overflow-y: scroll;
    border-radius: 5px;
    font-family: Helvetica;

}

.close {
    max-width: 30px;
    max-height: 30px;
    position: absolute;
    right: 20%;
    z-index: 000;
    top: 10%;
    background: #fff;
    cursor: pointer;
}

.close svg {
    width: 100%;
    height: 100%;
}

#leadForm input, #leadForm select, #leadForm textarea {
    width: 100%;
    padding: 8px;
    margin: 6px 0;
    box-sizing: border-box;
    outline: 0;
    font-size: 14px !important;
}

#leadForm input::placeholder, #leadForm select::placeholder, #leadForm textarea::placeholder {
    color: #ccc;
}

#leadForm label input {
    width: auto;
}

h3 {
    margin: 0;
}

#leadForm input:active, #leadForm select:active, #leadForm textarea:active,
#leadForm input:focus, #leadForm select:focus, #leadForm textarea:focus {
    box-shadow: 0 0 3px #0176d3;
    border: 1px solid #004e7c !important;
}

.primary-lead-btn {
    background-color: #006eaf !important;
    border: 1px solid #006eaf !important;
    color: #fff !important;
}

.primary-lead-btn:hover {
    background-color: #0056b3 !important;
}

#leadForm textarea {
    resize: vertical;
    outline: 0;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.sticky-footer-button {
    background-color: #f2f2f2;
    border-top: 2px solid #000;
    bottom: 0;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 10px 16px;
    position: sticky;
    z-index: 100;
}

.sticky-footer-button button {
    padding: 6px 12px;
    border: 1px solid #000;
    background-color: white;
    color: #006eaf;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
}


.setting-dropdown-container.active .setting-dropdown-menu {
    display: block;
}

.setting-dropdown-container {
    position: relative;
    display: inline-block;
}

.setting-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 341px;
    border-radius: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
    max-height: 500px;
    overflow: auto;
}

.setting-dropdown-menu ul {
    padding: 0;
    width: 301px;
    padding: 0;
    margin: 0;
}

.setting-dropdown-menu input {
    width: 100%;
    font-size: 17px;
    padding: 5px 7px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

.setting-dropdown-menu li,
.setting-dropdown-menu button {
    border-radius: 0;
    background: none;
    background-color: transparent;
    border: 2px solid transparent;
    color: #000;
    cursor: pointer;
    font-size: 14px;
    text-align: left;
    width: 93%;
    margin: 0 4px;
}

.setting-dropdown-menu ul li ul li {
    padding: 10px;
}


.setting-dropdown-menu li:hover,
.setting-dropdown-menu button:hover,
.icon-buttons button:hover,
.sticky-footer-button button:not(:last-child):active,
.sticky-footer-button button:not(:last-child):focus,
.sticky-footer-button button:not(:last-child):hover {
    background-color: #006eaf0d !important;
    border-color: #005486;
}

.opportunity-section #leadStatusList>li:hover {
    background-color: transparent !important;
    border-color: transparent;
}


.selected {
    background-color: #006eaf0d !important;
    border: 2px solid #005486 !important;
}

.setting-dropdown-container.active .setting-dropdown-menu {
    display: block;
}

.setting-dropdown-menu li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 8px 16px;
    max-width: 100%;
    cursor: pointer;
}

.setting-dropdown {
    position: relative;
    width: 200px;
    font-family: sans-serif;
    user-select: none;
}

.setting-selected {
    padding: 10px;
    background: #f0f0f0;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.setting-options {
    list-style: none;
    padding: 0;
    margin: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    z-index: 10;
    display: none;
}

.setting-options li {
    padding: 10px;
    cursor: pointer;
}

.setting-options li:hover {
    background-color: #eee;
}

.tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.tooltip-wrapper:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -40px;
    background-color: #002d62;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    z-index: 10;
    opacity: 1;
    left: -30%;
}

.tooltip-wrapper:hover::before {
    content: '';
    position: absolute;
    top: -11px;
    left: 2px;
    /* transform: translateX(-50%); */
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #002d62 transparent;
    z-index: 11;
    rotate: 179deg;

}

.lead-avatar-section {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 4px;

}

.lead-avatar {
    width: 36px !important;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    background: #ccc;
}

.lead-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lead-avatar-section p {
    font-size: 13px;
    font-weight: 400;
}

#leadStatusSelectedText {
    margin: 0;
    font-size: 13px;
    color: #373636;
}

.main-loader,
.notification-loader {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 100px auto;
}

.main-loader,
.notification-loader {
    position: relative;
    width: 40px;
    height: 40px;
}

.main-loader div,
.notification-loader div {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #0073c2;
    border-radius: 50%;
    animation: spinMain 1.2s linear infinite;
}

/* Position 8 dots around the circle */
.main-loader div:nth-child(1),
.notification-loader div:nth-child(1) {
    top: 0;
    left: 16px;
    animation-delay: 0s;
}

.main-loader div:nth-child(2) ,
.notification-loader div:nth-child(2) {
    top: 4px;
    left: 28px;
    animation-delay: 0.15s;
}

.main-loader div:nth-child(3),
.notification-loader div:nth-child(3) {
    top: 16px;
    left: 32px;
    animation-delay: 0.3s;
}

.main-loader div:nth-child(4),
.notification-loader div:nth-child(4) {
    top: 28px;
    left: 28px;
    animation-delay: 0.45s;
}

.main-loader div:nth-child(5),
.notification-loader div:nth-child(5) {
    top: 32px;
    left: 16px;
    animation-delay: 0.6s;
}

.main-loader div:nth-child(6),
.notification-loader div:nth-child(6) {
    top: 28px;
    left: 4px;
    animation-delay: 0.75s;
}

.main-loader div:nth-child(7),
.notification-loader div:nth-child(7) {
    top: 16px;
    left: 0;
    animation-delay: 0.9s;
}

.main-loader div:nth-child(8),
.notification-loader div:nth-child(8) {
    top: 4px;
    left: 4px;
    animation-delay: 1.05s;
}

@keyframes spinMain {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.5);
        opacity: 0.3;
    }
}



.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
}

.back-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #666;
    padding: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.back-btn:hover {
    background-color: #f8f9fa;
}

.contact-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.tabHeader {
    text-decoration: none;
    color: #006eaf;
    border-bottom: 2px solid #006eaf;
    padding: 4px 1rem;
}

.record-home-details {
    border-bottom: 1px solid #000;
}

.contact-info>div {
    font-size: 14px;
}

.contact-info strong {
    color: #666;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.tab-content {
    padding: 20px 0;
}


.accordion summary:hover {
    background-color: #f3f3f3;
}

.accordion summary {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary svg {
    width: 18px;
    height: 18px;
    margin-right: 9px;
    opacity: .6;
    transform: rotate(-90deg);
    transition: transform 0.3s ease;

}

.tabHeader:hover {
    text-decoration: none;
    color: #006eaf;
}

.accordion {
    margin-top: 18px;
}

.fields {
    padding: 0 10px;
}


.accordion[open] summary svg {
    transform: rotate(0deg);
}

.field-row {
    display: grid;
    padding: 12px 0 4px;
    border-bottom: 1px solid #000;
}

.field-row span:first-child {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
}

.field-row span:last-child {
    font-size: 14px;
    color: #1a1a1a;
    word-break: break-word;
}

.empty-value {
    color: #999;
}

.collaborate-section {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.collaborate-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.collaborate-section p {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 16px;
}


.header-top {
    display: flex;
    align-items: end;
    margin-bottom: 5px;
    gap: 10px;
}

.lead-icon {
    background: #06A59A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    max-width: 34px;
    max-height: 34px;

}

.lead-icon img {
    width: 100%;
    height: 100%;
}

.lead-label {
    font-size: 13px;
    display: inline-block;
    letter-spacing: 0.5px;
    color: #000;
    padding: 0;
}

.contact-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.2
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    padding-top: 5px;
}


.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.detail-value.empty {
    color: #adb5bd;
}

@media(max-width:650px) {
    .lead-container {
        flex-direction: column;
        align-items: baseline;
    }

    .right-section {
        align-items: flex-start;
        gap: 8px;
        flex-direction: column;
        padding-bottom: 20px;
        margin-top: 12px;
    }
}

@media(max-width:768px) {
    .modal-content {
        width: 90%;
    }

    .close {
        right: 6%;
    }

    .tooltip-wrapper:hover::after {
        left: 0;
    }
}

@media(max-width:425px) {
    .setting-section {
        flex-direction: column;
    }

    .right-section,
    .search-box,
    .setting-section {
        width: 100%;
    }


}


.error-popup {
    background: #fff;
    color: #000;
    border: 1px solid #dc3545;
    border-radius: 5px;
    /* padding: 0 15px; */
    width: 359px;
    position: absolute;
    left: 28%;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    top: -305px;
    height: 300px;
}

.error-header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #fff;
    margin-bottom: 8px;
    background: #ba0517;
    padding: 5px 0px;
}

.error-icon {
    font-size: 20px;
}

.close-btn {
    font-size: 20px;
    cursor: pointer;
}

#errorList {
    padding-left: 20px;
}

#errorList li a {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
}

.error-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    vertical-align: middle;
    margin: 0;
}

.error-popup p {
    font-size: 18px;
    margin: 0 20px;
}

.errorList {
    margin-left: 31px;
}

.errorList li {
    font-size: 15px;
    color: #006eaf;
}

.error-icon-main svg {
    width: 20px;
    height: 20px;
    fill: #ba0517;
}

.error-icon-main {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.input-wrapper {
    position: relative;
}

div.error-icon-wrapper {
    width: 18px;
    margin: 0;
    height: 18px;
    position: absolute;
    top: 27px;
    left: 4px;
    display: none;

}

div.error-icon-wrapper svg {
    fill: #ba0517;
    width: 100%;
    height: 100%;
}

.error-msg {
    margin: 0 !important;
    position: absolute;
    top: 48px;
}

.text-area .error-msg {
    top: 65px;
    margin: 0 !important;
    position: absolute;
}

#gepDesignationLevel:disabled {
    background: #f3f3f3;
    cursor: not-allowed;
}

/* Dependencies Link */
.dependencies-link {
    color: #006eaf;
    text-decoration: none;
    font-size: 14px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

.dependencies-link:hover {
    text-decoration: underline;

}

.dependencies-link:active,
.dependencies-link:focus {
    outline: none;
    background-color: transparent;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 1000;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 4px;
    width: 500px;
    max-width: 90vw;
    z-index: 1001;
    border: 1px solid #d1d5db;
    /* animation: modalSlideIn 0.3s ease-out; */
}

.modal-header {
    padding: 16px 20px;
    border-bottom: 2px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-radius: 4px 4px 0 0;
}

.modal-title {
    font-size: 18px;
    color: #111827;
    margin: 0;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #000;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 0;
    font-family: inherit;
}

.modal-close-btn:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.modal-body {
    padding: 20px;
}

.modal-field {
    margin-bottom: 16px;
}

.modal-field:last-child {
    margin-bottom: 0;
}

.modal-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #000;
    font-size: 14px;
}

.modal-form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
    transition: border-color 0.2s, box-shadow 0.2s;

}

.modal-form-control:focus {
    outline: none;
    border-color: #006eaf;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modal-form-control:disabled {
    background-color: #f9fafb;
    color: #6b7280;
    cursor: not-allowed;
}

.modal-footer {
    padding: 16px 20px;
    border-top: 2px solid #000;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    background-color: white;
    border-radius: 0 0 4px 4px;
}

/* Modal Buttons */
.modal-btn {
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid;
    outline: none;
    font-family: inherit;
}

.modal-btn-primary {
    background-color: #006eaf;
    color: white;
    border-color: #006eaf;
}

.modal-btn-primary:hover {
    background-color: #006eaf;
    border-color: #006eaf;
}

.modal-btn-secondary {
    background-color: white;
    color: #374151;
    border-color: #d1d5db;
}

.modal-btn-secondary:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.department-section {
    margin: 0 !important;
}
/* ########### Edit file Detail ######### */

.resizer {
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  cursor: col-resize;
  z-index: 1;
}

.res-file-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.res-file-container {
  margin: 0 auto;
  padding: 20px;
  background: white;
  min-height: 100vh;
}

.res-file-secondary-container {
  max-width: 1420px;
  height: 100%;
  overflow: auto;
  margin-inline: auto;
}

/* Header Section */
.res-file-file-header-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block: 12px 20px;
  position: relative;
}

.res-file-file-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.res-file-file-header .back-icon {
  height: 25px;
  width: 25px;
  rotate: -90deg;
}

.res-file-file-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

.res-file-file-details {
  display: flex;
  flex-direction: column;
}

.res-file-file-type {
  font-size: 13px;
  color: #000;
}

.res-file-file-name {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

.res-file-action-buttons {
  display: flex;
}

.res-file-action-buttons button {
  color: rgb(0, 110, 175);
  border: 1px solid #000;
  padding-block: 6.5px !important;
  border-radius: 0 !important;
}

.res-file-action-buttons button:first-child {
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}

.res-file-action-buttons button:last-child {
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
  padding-inline: 7px !important;
  min-width: 0 !important;
}

.res-file-action-buttons button:hover {
  colgr: rgb(0, 78, 124);
  background-color: rgba(0, 110, 175, 0.05);
}

.btn:hover {
  border-color: #4a90e2;
}

.btn-primary {
  background: #4a90e2;
  color: white;
  border-color: #4a90e2;
}

.btn-primary:hover {
  background: #357abd;
  border-color: #357abd;
  color: white;
}

.btn-dropdown {
  padding: 8px 12px;
}

/* File Properties */
.res-file-file-properties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
  width: 40%;
}

.res-file-property {
  display: flex;
  flex-direction: column;
}

.res-file-property-label {
  font-size: 12px;
  color: #000;
}

.res-file-property-value {
  font-size: 13px;
  color: #000;
}

.res-file-property-value.link {
  color: #4a90e2;
  cursor: pointer;
}

.res-file-property-value.link:hover {
  text-decoration: underline;
}

/* Main Content Area */
.res-file-main-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  margin-top: 20px;
}

/* Left Content */
.res-file-left-content {
  display: flex;
  flex-direction: column;
}

/* Tabs */
.res-file-tabs {
  display: flex;
  border-bottom: 2px solid #e9ecef;
  margin-bottom: 20px;
}

.res-file-tab {
  border-bottom: 2px solid transparent;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  margin-right: 30px;
  padding: 25px 18px;
  transition: all 0.2s ease;
  padding-bottom: 8px;
}

.res-file-tab.active {
  color: #4a90e2;
  border-bottom-color: #4a90e2;
}

/* Preview Section */

.res-file-detail-section {
  display: none;
}

.res-file-preview-section {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  height: 500px;
}

.res-file-banner-preview {
  width: 100%;
  max-width: 800px;
  height: 96%;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.res-file-detail-section {
  border: 1px solid #000;
  border-radius: 4px;
  padding: 5px 5px 0.5rem 1rem;
}

.res-file-detail-preview {
  width: 50%;
}

.res-file-detail-preview div {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 8px !important;
}

.res-file-detail-preview div svg {
  width: 14px;
  position: absolute;
  right: 8px;
  bottom: 4px;
  cursor: pointer;
}

.res-file-detail-preview div label {
  font-size: 12px;
  margin-block: 5px;
}

.res-file-detail-preview div textarea,
.res-file-detail-preview div input {
  font-size: 13px;
  border: none;
  border-bottom: 1px solid #000;
  padding-block: 5px 6px;
  outline: none;
  padding-right: 1.5rem;
}

.res-file-detail-preview-btns {
  border-top: none !important;
  width: 50%;
  padding: 30px 0 0 0 !important;
}

.res-file-detail-preview-btns button {
  border: 1px solid !important;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  width: 90%;
}

.gep-logo {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.gep-text {
  color: #64b5f6;
}

.event-title {
  font-size: 18px;
  margin: 15px 0;
  color: #fff;
}

.event-subtitle {
  font-size: 14px;
  color: #b0bec5;
  margin-bottom: 10px;
}

.event-date {
  background: rgba(156, 39, 176, 0.8);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 15px;
}

.register-btn {
  background: #4caf50;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.quantum-bg {
  position: absolute;
  right: 20px;
  top: 20px;
  bottom: 20px;
  width: 300px;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(100, 181, 246, 0.3) 50%,
      rgba(76, 175, 80, 0.3) 70%,
      transparent 90%);
  border-radius: 8px;
}

/* Right Sidebar */
.res-file-right-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.res-file-sidebar-section {
  background: white;
  border: 1px solid #000;
  border-radius: 4px;
  overflow: hidden;
}

.res-file-section-header {
  background: #f8f9fa;
  padding: 12px 16px;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.res-file-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  color: #000;
  font-size: 16px;
}

.res-file-section-icon {
  background: #666;
  border-radius: 2px;
}

.res-file-section-icon,
.res-file-section-icon img {
  width: 24px;
  height: 24px;
}

.res-file-section-count {
  color: #666;
  font-size: 14px;
}

.res-file-view-all {
  color: #4a90e2;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  position: absolute;
  right: 13px;
  bottom: 11px;
}

.res-file-view-all:hover {
  text-decoration: underline;
}

.res-file-shared-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 15px;
}

.res-file-shared-item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 12px;
  margin-bottom: 4px;
}

.res-file-shared-item:last-child {
  margin-bottom: 40px;
}

.res-file-shared-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
  background-color: rgb(27, 150, 255);
}

/* .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 600;
} */

.res-file-shared-icon img {
  width: 32px;
  height: 32px;
}

.res-file-shared-details {
  flex: 1;
  min-width: 0;
}

.res-file-shared-name {
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.res-file-shared-type {
  color: #666;
  font-size: 12px;
  margin-top: 2px;
}

/* Delete confirmation modal */

.res-file-delete-desc {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  padding-inline: 14px;
}

.res-file-delete-modal-content {
  background: white;
  border-radius: 8px;
  width: 590px;
  max-width: 1000px;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(-50px);
  transition: transform 0.3s ease;
}

.res-file-delete-modal-content h2 {
  font-size: 22px;
  padding-block: 17px;
  text-align: center;
  font-weight: 400;
  margin: 0;
}

.res-file-delete-modal-content p {
  font-size: 15px;
  color: #333;
  margin: 0px;
}

.res-file-modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-block: 15px;
  padding-right: 18px;
}

.res-file-cancel-btn,
.res-file-delete-btn {
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.res-file-cancel-btn {
  background: white;
  color: #0070d2;
  border: 1px solid #0070d2;
}

.res-file-delete-btn {
  background: #0070d2;
  color: white;
  border: none;
}

/* End ************************************ */

/* Edit file detail modal */

.res-file-view-detail-modal-div {
  background: white;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

.res-file-modal-header {
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  position: relative;
}

.res-file-view-detail-modal-form {
  width: 292px !important;
  background-color: transparent !important;
}

.res-file-modal-title {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  margin: 0 auto;
  padding-right: 1rem;
}

.res-file-form-label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
  font-size: 12px;
}

.res-file-close-button {
  background: none;
  border: none;
  border-radius: 4px;
  color: #000;
  cursor: pointer;
  font-size: 30px;
  padding: 4px;
  padding-top: 0;
  position: absolute;
  right: 15px;
  transition: all 0.2s ease;
  top: 5px;
}

/* Modal Body */
.res-file-modal-body {
  padding: 10px 9px 0 59px;
  max-height: 60vh;
  overflow-y: auto;
}

/* Required Info */
.res-file-required-info {
  text-align: right;
  color: #000;
  font-size: 12px;
}

.res-file-required-info::before {
  content: "* ";
  color: #dc3545;
}

/* Form Groups */
.res-file-form-group {
  margin-bottom: 20px;
  position: relative;
}

.res-file-form-label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
  font-size: 12px;
}

.res-file-view-detail {
  padding: 6px !important;
  font-size: 14px !important;
  border-radius: 4px !important;
  border: 1px solid #000 !important;
}

.res-file-required {
  color: #dc3545;
}

/* Form Controls */
.res-file-form-control {
  width: 100%;
  transition: all 0.2s ease;
  background: white;
}

.res-file-form-control:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* Textarea */
.res-file-form-textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
  padding: 8px !important;
  font-size: 14px;
}

/* Modal Footer */
.res-file-modal-footer {
  padding: 16px 24px;
  border-top: 2px solid #000;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-block: 15.5px !important;
}

.res-file-modal-footer button {
  padding-block: 6px;
}

.table-ellipse {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

#view-detail-file-div {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding-block: 7px;
}

.res-file-close-button:hover,
.res-file-close-button:focus,
.res-file-close-button:active,
.close-btn:hover,
.close-btn:focus,
.close-btn:active {
  background-color: transparent;
}

@media screen and (max-width: 1000px) {

  .preview-header {
    justify-content: space-between;
  }

  .asset-btn-header-container {
    width: 50% !important;
    align-items: center !important;
  }

  .mb-dropdown {
    display: flex !important;
    color: #fff !important;
    cursor: pointer;
    font-size: 14px !important;
    border: none;
    border-radius: 4px;
  }


  #res-file-action-buttons,
  #pre-mobile-res,
  .preview-btns {
    display: none;
  }

  .res-file-action-buttons,
  .mobile-res {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: #fff;
    padding: 10px 10px;
    border-radius: 4px;
    top: 56px;
  }

  .res-file-action-buttons {
    top: 38px !important;
    right: 0;
    background-color: #c4c2c2;
    gap: 9px;
  }

  .mobile-res button {
    width: 100%;
    background-color: none !important;
  }

  .preview-header button {
    background-color: #3e3d3d !important;
    justify-content: start !important;
  }

  .pre-view {
    color: #000 !important;
  }

  .res-file-main-content {
    grid-template-columns: auto !important;
  }

  .res-file-file-properties {
    width: 100% !important;
  }

  .res-file-preview-section {
    height: 300px !important;
  }

  .file-properties,
  .detail-preview,
  .res-file-detail-preview {
    width: 100% !important;
  }
}
.success-modal {
    align-items: center;
    background-color: #28a745;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    color: #fff;
    display: flex;
    left: 50%;
    max-width: 100%;
    min-width: 336px;
    padding: 11px;
    position: absolute;
    top: 0%;
    transform: translateX(-50%);
    z-index: 9999;
    justify-content: space-between;
    gap: 21px;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

#leadForm .dot-loader {
    top: 82%;
}

.success-icon span {
    font-size: 20px;
    background-color: white;
    color: #28a745;
    border-radius: 50%;
    padding: 4px;
    font-weight: bold;
}

.success-message {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.success-modal-close-btn {
    align-items: center;
    border: none;
    border-radius: 4px;
    color: #666;
    cursor: pointer;
    font-size: 24px;
    height: 32px;
    justify-content: center;
    padding: 0 !important;
    right: 20px;
    top: 15px;
    transition: all .2s ease;
    background-color: transparent;
    color: #fff;
}

.dot-loader {
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 11px;
    margin: 20px 0;
    left: 50%;
    position: absolute;
    top: 100%;
}

.dot-loader span {
    animation: bounce 1.4s ease-in-out infinite both;
    background-color: #546a86;
    border-radius: 50%;
    height: 18px;
    width: 18px;

}


.dot-loader span:nth-child(1) {
    animation-delay: -0.32s;
}

.dot-loader span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}
.dashboard-header {
      background: #f8f9fa;
      border-bottom: 2px solid #dee2e6;
      padding: 60px 20px 20px;
      position: relative;
  }

  .header-content {
      display: flex;
      align-items: center;
      gap: 15px;
  }

  .sidebar-toggle {
      background: #006eaf;
      color: white;
      border: none;
      padding: 10px 12px;
      border-radius: 4px;
      cursor: pointer;
      font-size: 16px;
      transition: background 0.2s ease;
  }

  .toggle-icon {
      display: block;
      line-height: 1;
  }

  .header-text h1 {
      font-size: 25px;
      color: #343a40;
      margin: 0;
  }

  .header-text p {
      font-size: 16px;
      color: #6c757d;
      margin: 0;
  }

  /* Main Container */
  .main-container {
      display: flex;
      min-height: calc(100vh - 120px);
  }

  .content-wrapper {
      flex: 1;
      transition: margin-left 0.3s ease;
  }

  .content-wrapper.expanded {
      margin-left: -280px;
  }

  /* Content Area */
  .content-area {
      background: #ffffff;
      min-height: 400px;
  }

  .content-panel {
      display: none;
      padding: 30px;
  }

  .content-panel.active {
      display: block;
  }


  /* Responsive */
  @media (max-width: 768px) {

      .content-wrapper {
          margin-left: 0 !important;
      }

      .dashboard-header {
          padding: 15px;
      }

      .header-text h1 {
          font-size: 1.5rem;
      }

      .content-panel {
          padding: 20px;
      }
  }

  /* Filter Sidebar Module Styles */
  .report-sidebar {
      position: fixed;
      top: 0;
      left: -370px;
      width: 350px;
      height: 100vh;
      background: #ffffff;
      box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      transition: left 0.3s ease;
      overflow-y: auto;
  }

  .report-sidebar.open {
      left: 0;
  }

  .sidebar-header {
      background: #006eaf;
      color: white;
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1001;
  }

  .sidebar-header h3 {
      margin: 0;
      font-size: 18px;
      font-weight: 600;
      color: #ffff;

  }

  .close-sidebar {
      background: none;
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
      padding: 0;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      transition: background-color 0.2s ease;
  }

  .close-sidebar:hover {
      background-color: rgba(255, 255, 255, 0.1);
      color: #ffff;
  }

  .sidebar-content {
      padding: 20px;
  }

  .filter-group {
      margin-bottom: 30px;
  }

  .filter-group label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #374151;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .sidebar-btn,
  .filter-btn {
      width: 100%;
      padding: 12px 16px;
      background: #f8f9fa;
      border: 1px solid #e9ecef;
      color: #495057;
      text-align: left;
      cursor: pointer;
      margin-bottom: 8px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .sidebar-btn.active,
  .filter-btn.active {
      background: #006eaf;
      border-color: #006eaf;
      color: white;
      box-shadow: 0 2px 4px rgba(0, 110, 175, 0.2);
  }

  .sidebar-btn:hover,
  .filter-btn:hover {
      background: #e9ecef;
      border-color: #ced4da;
  }

  .sidebar-btn.active:hover,
  .filter-btn.active:hover {
      background: #005a8b;
      border-color: #005a8b;
  }

  .filter-select {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #ced4da;
      border-radius: 6px;
      background: white;
      font-size: 14px;
      color: #495057;
      transition: all 0.2s ease;
  }

  .filter-select:focus {
      outline: none;
      border-color: #006eaf;
      box-shadow: 0 0 0 3px rgba(0, 110, 175, 0.1);
  }

  .filter-actions {
      border-top: 1px solid #e9ecef;
      padding-top: 20px;
      display: flex;
      gap: 10px;
  }

  .apply-btn,
  .reset-btn {
      flex: 1;
      padding: 12px 16px;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .apply-btn {
      background: #28a745;
      color: white;
  }

  .apply-btn:hover {
      background: #218838;
      transform: translateY(-1px);
      box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
  }

  .reset-btn {
      background: #6c757d;
      color: white;
  }

  .reset-btn:hover {
      background: #5a6268;
      transform: translateY(-1px);
      box-shadow: 0 4px 8px rgba(108, 117, 125, 0.3);
  }

  /* .toggle-sidebar-btn {
      position: fixed;
      top: 20px;
      left: 20px;
      z-index: 999;
      background: #006eaf;
      color: white;
      border: none;
      padding: 12px 16px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.2s ease;
  }

  .toggle-sidebar-btn:hover {
      background: #005a8b;
      transform: translateY(-1px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .toggle-sidebar-btn span {
      font-size: 16px;
  } */

  /* Filter Status Indicators */
  .filter-status {
      position: absolute;
      top: -5px;
      right: -5px;
      width: 12px;
      height: 12px;
      background: #dc3545;
      border-radius: 50%;
      border: 2px solid white;
  }

  .filter-group.has-active-filters .filter-status {
      display: block;
  }

  /* Smooth Transitions */
  .lead-filters,
  .deal-filters {
      transition: all 0.3s ease;
      overflow: hidden;
  }

  .lead-filters.hiding,
  .deal-filters.hiding {
      opacity: 0;
      transform: translateX(-10px);
  }

  /* Custom Scrollbar */
  .report-sidebar::-webkit-scrollbar {
      width: 6px;
  }

  .report-sidebar::-webkit-scrollbar-track {
      background: #f1f1f1;
  }

  .report-sidebar::-webkit-scrollbar-thumb {
      background: #c1c1c1;
      border-radius: 3px;
  }

  .report-sidebar::-webkit-scrollbar-thumb:hover {
      background: #a8a8a8;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .report-sidebar {
          width: 280px;
          left: -280px;
      }

      .sidebar-content {
          padding: 15px;
      }

      .filter-group {
          margin-bottom: 25px;
      }

      /* .toggle-sidebar-btn {
          top: 15px;
          left: 15px;
          padding: 10px 14px;
          font-size: 13px;
      }

      .toggle-sidebar-btn span {
          font-size: 14px;
      } */
  }

  @media (max-width: 480px) {
      .report-sidebar {
          width: 260px;
          left: -260px;
      }

      .sidebar-header {
          padding: 15px;
      }

      .sidebar-header h3 {
          font-size: 16px;
      }

      .sidebar-content {
          padding: 12px;
      }

      .sidebar-btn,
      .filter-btn {
          padding: 10px 14px;
          font-size: 13px;
      }

      .filter-select {
          padding: 10px 14px;
          font-size: 13px;
      }

      .apply-btn,
      .reset-btn {
          padding: 10px 14px;
          font-size: 13px;
      }
  }

  /* Animation for filter changes */
  @keyframes filterChanged {
      0% {
          background-color: #28a745;
      }

      50% {
          background-color: #20c997;
      }

      100% {
          background-color: #28a745;
      }
  }

  .apply-btn.applied {
      animation: filterChanged 0.6s ease;
  }

  /* Lead Report Module Styles */
  .gep-lead-report-module {
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      overflow: hidden;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto 20px auto;
  }

  /* Report Header */
  .report-header {
      background: #006eaf;
      color: white;
      padding: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
  }

  .report-info {
      flex: 1;
      min-width: 200px;
  }

  .report-title {
      font-size: 24px;
      font-weight: 700;
      margin: 0 0 8px 0;
      line-height: 1.2;
      color: #fff;
  }

  .report-period {
      font-size: 14px;
      opacity: 0.9;
      margin: 0;
      font-weight: 400;
  }

  .report-summary {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: flex-end;
      align-items: center;
  }

  .summary-item {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      text-align: right;
      min-width: 120px;
  }

  .summary-label {
      font-size: 12px;
      opacity: 0.8;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 4px;
      white-space: nowrap;
  }

  .summary-value {
      font-size: 20px;
      font-weight: 700;
      line-height: 1;
  }

  /* Chart Section */
  .chart-section {
      padding: 30px;
  }

  .chart-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
      flex-wrap: wrap;
      gap: 15px;
  }

  .chart-title {
      font-size: 18px;
      font-weight: 600;
      color: #1F2937;
      margin: 0;
      flex: 1;
      min-width: 150px;
  }

  .chart-controls {
      display: flex;
      gap: 8px;
      flex-shrink: 0;
  }

  .chart-view-btn {
      background: #f3f4f6;
      border: 1px solid #d1d5db;
      color: #6b7280;
      padding: 8px 16px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
  }

  .chart-view-btn.active {
      background: #006eaf;
      border-color: #006eaf;
      color: white;
  }

  .chart-view-btn:hover:not(.active) {
      background: #e5e7eb;
  }

  /* Loading Indicator */
  .loading-indicator {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 60px;
      gap: 15px;
  }

  .spinner {
      width: 40px;
      height: 40px;
      border: 4px solid #f3f4f6;
      border-top: 4px solid #006eaf;
      border-radius: 50%;
      animation: spin 1s linear infinite;
  }

  @keyframes spin {
      0% {
          transform: rotate(0deg);
      }

      100% {
          transform: rotate(360deg);
      }
  }

  .chart-container {
      position: relative;
      width: 100%;
      height: 400px;
      margin-bottom: 20px;
  }

  .table-container {
      background: #f9fafb;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 20px;
      overflow-x: auto;
  }

  .analytics-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      min-width: 300px;
  }

  .analytics-table th {
      text-align: left;
      padding: 12px 16px;
      border-bottom: 2px solid #e5e7eb;
      font-weight: 600;
      color: #374151;
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 0.5px;
      white-space: nowrap;
      background-color: #e5e7eb;
  }

  .analytics-table td {
      padding: 12px 16px;
      border-bottom: 1px solid #f3f4f6;
      color: #6b7280;
      white-space: nowrap;
  }

  .analytics-table tbody tr:hover {
      background: #f3f4f6;
  }

  .chart-legend {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-top: 15px;
  }

  .legend-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: #6B7280;
      font-weight: 500;
  }

  .legend-color {
      width: 16px;
      height: 16px;
      border-radius: 4px;
      flex-shrink: 0;
  }

  .legend-color.primary {
      background: #4ECDC4;
  }

  .legend-color.secondary {
      background: #FF6B6B;
  }

  .legend-color.tertiary {
      background: #FFE66D;
  }

  .legend-color.quaternary {
      background: #A8E6CF;
  }

  /* Analytics Tooltip */
  .analytics-tooltip {
      position: absolute;
      background: #1F2937;
      color: white;
      padding: 16px;
      border-radius: 8px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
      z-index: 1000;
      min-width: 220px;
      max-width: 280px;
      font-size: 13px;
      pointer-events: none;
  }

  .tooltip-header h4 {
      margin: 0 0 12px 0;
      font-size: 14px;
      font-weight: 600;
      color: #4ECDC4;
      padding-bottom: 8px;
      border-bottom: 1px solid #374151;
  }

  .tooltip-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
      align-items: center;
      gap: 10px;
  }

  .tooltip-row:last-child {
      margin-bottom: 0;
  }

  .tooltip-label {
      color: #9CA3AF;
      font-weight: 500;
      flex-shrink: 0;
  }

  .tooltip-value {
      font-weight: 600;
      color: white;
      text-align: right;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .report-header {
          padding: 20px;
          flex-direction: column;
          align-items: flex-start;
          gap: 15px;
      }

      .report-summary {
          width: 100%;
          justify-content: flex-start;
          gap: 15px;
      }

      .summary-item {
          align-items: flex-start;
          text-align: left;
          min-width: auto;
      }

      .chart-section {
          padding: 20px;
      }

      .chart-container {
          height: 300px;
      }

      .chart-header {
          flex-direction: column;
          align-items: flex-start;
          gap: 15px;
      }

      .chart-controls {
          width: 100%;
          justify-content: center;
      }

      .chart-view-btn {
          flex: 1;
          text-align: center;
          padding: 10px 12px;
      }

      .analytics-tooltip {
          min-width: 180px;
          max-width: 250px;
          font-size: 12px;
          left: 10px !important;
          right: 10px !important;
          max-width: calc(100vw - 40px) !important;
      }
  }




/* Utilities' %}


/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}