/* Citydent global header and navigation */
body.citydent-navigation-open {
  overflow: hidden;
}

.citydent-site-header {
  background: var(--pageBg, #fff);
  color: var(--contentColor, #00000f);
  padding: 0 !important;
  position: relative;
  width: 100%;
  z-index: 999;
}

.citydent-site-header--overlay {
  background: transparent;
  color: #fff;
  left: 0;
  position: absolute;
  top: 0;
}

.citydent-site-header--overlay.citydent-site-header--about-overlay {
  color: var(--contentColor, #00000f);
}

.citydent-site-header--overlay.citydent-site-header--about-overlay .citydent-site-header__contacts {
  color: var(--contentOpacityColor, rgba(0, 0, 15, .62));
}

.citydent-site-header--overlay.citydent-site-header--about-overlay .citydent-site-header__logo :is(img, svg) {
  filter: none;
}

.citydent-site-header--overlay.citydent-site-header--about-overlay .citydent-site-header__nav-item.is-open .citydent-site-header__nav-button,
.citydent-site-header--overlay.citydent-site-header--about-overlay .citydent-site-header__nav-item:hover .citydent-site-header__nav-button {
  color: var(--contentOpacityColor, rgba(0, 0, 15, .62));
}

@media (hover: hover) and (pointer: fine) {

  .citydent-site-header--overlay.citydent-site-header--about-overlay .citydent-site-header__desktop-nav>a:hover,
  .citydent-site-header--overlay.citydent-site-header--about-overlay .citydent-site-header__desktop-nav>a:focus-visible {
    color: var(--contentOpacityColor, rgba(0, 0, 15, .62)) !important;
  }
}

.citydent-site-header a,
.citydent-site-header button {
  color: inherit;
}

.citydent-site-header a::after {
  content: none;
}

.citydent-site-header__inner {
  display: flex;
  flex-direction: column;
  gap: var(--gapX4);
  margin-inline: auto;
  padding: 12px 0 0;
}

header.citydent-site-header>.citydent-site-header__inner {
  align-items: stretch;
  box-sizing: border-box;
  flex-flow: column nowrap;
  max-width: var(--containerWidth);
  width: var(--containerWidth);
}

.citydent-site-header__contacts,
.citydent-site-header__body {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.citydent-site-header__contacts {
  color: var(--contentOpacityColor, rgba(0, 0, 15, 0.62));
}

.citydent-site-header--overlay .citydent-site-header__contacts {
  color: rgba(255, 255, 255, 0.78);
}

.citydent-site-header__contact-list,
.citydent-site-header__socials,
.citydent-site-header__desktop-nav,
.citydent-site-header__actions {
  align-items: center;
  display: flex;
}

.citydent-site-header__contact-list {
  gap: var(--gapX5);
}

.citydent-site-header__socials {
  gap: var(--gapX4);
}

.citydent-site-header__socials a,
.citydent-site-header__mobile-phone,
.citydent-site-header__menu-toggle {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.citydent-site-header__socials a {
  color: var(--contentOpacityColor, rgba(0, 0, 15, 0.5));
  font-size: 24px;
  height: 24px;
  width: 24px;
}

.citydent-site-header--overlay .citydent-site-header__socials a {
  color: var(--whiteOpacity800, rgba(255, 255, 255, 0.78));
}

.citydent-site-header--overlay.citydent-site-header--about-overlay .citydent-site-header__socials a {
  color: var(--contentOpacityColor, rgba(0, 0, 15, 0.5));
}

.citydent-site-header__social-icon,
.citydent-site-header__social-icon svg {
  display: block;
  height: 24px;
  width: 24px;
}

.citydent-site-header__logo {
  align-items: center;
  display: flex;
  flex: 0 0 189px;
  gap: 10px;
  height: 38px;
  width: 189px;
}

.citydent-site-header__logo-mark {
  display: block;
  flex: 0 0 auto;
  height: 38px;
  width: 36px;
}

.citydent-site-header__logo-word {
  display: block;
  flex: 0 0 auto;
  height: auto;
  width: 141px;
}

.citydent-site-header__logo-mark>svg {
  display: block;
  height: 100%;
  width: 100%;
}

.citydent-site-header__logo-word>svg {
  display: block;
  height: auto;
  width: 100%;
}

.citydent-site-header__logo-custom {
  display: block;
  height: 38px;
  width: 189px;
}

.citydent-site-header__logo-custom> :is(svg, img) {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

.citydent-site-header--overlay .citydent-site-header__logo :is(img, svg) {
  filter: brightness(0) invert(1);
}

.citydent-site-header__desktop-nav {
  gap: var(--gapX2);
}

.citydent-site-header__desktop-nav>a,
.citydent-site-header__nav-button {
  align-items: center;
  background: transparent;
  border: 0;
  display: inline-flex;
  gap: var(--gapX1);
  line-height: var(--textMheightT);
  margin: 0 !important;
  padding: 4px var(--gapX1) 5px;
  white-space: nowrap;
}

.citydent-site-header__nav-button {
  cursor: pointer;
  font: inherit;
  line-height: var(--textMheightT);
}

.citydent-site-header__nav-button .ph,
.citydent-site-header__nav-button .ph-fill {
  --xleb-icon-size: 12px;
  font-size: 12px;
  transition: transform 0.2s ease;
}

.citydent-site-header__nav-item {
  position: relative;
}

.citydent-site-header__nav-button:hover .ph-fill {
  transform: rotate(180deg);
}

.citydent-site-header__nav-item.is-open .citydent-site-header__nav-button,
.citydent-site-header__nav-item:hover .citydent-site-header__nav-button {
  color: var(--contentOpacityColor, rgba(0, 0, 15, 0.62));
}

.citydent-site-header--overlay .citydent-site-header__nav-item.is-open .citydent-site-header__nav-button,
.citydent-site-header--overlay .citydent-site-header__nav-item:hover .citydent-site-header__nav-button {
  color: rgba(255, 255, 255, 0.5);
}

.citydent-site-header__nav-item.is-open .citydent-site-header__nav-button .ph,
.citydent-site-header__nav-item.is-open .citydent-site-header__nav-button .ph-fill {
  transform: rotate(180deg);
}

.citydent-site-header__dropdown {
  background: #fff;
  border-radius: var(--roundedS, 8px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: var(--contentColor, #00000f);
  display: flex;
  flex-direction: column;
  gap: var(--gapX3);
  left: 0;
  min-width: 268px;
  opacity: 0;
  padding: var(--gapX5) var(--gapX10) var(--gapX7) var(--gapX5);
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.citydent-site-header__dropdown::before {
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
  top: -8px;
}

.citydent-site-header__dropdown a {
  align-items: flex-start;
  color: var(--contentColor, #00000f) !important;
  display: flex;
  line-height: var(--textMheightT);
  padding: 4px 0 5px;
  white-space: nowrap;
}

.citydent-site-header__nav-item.is-open .citydent-site-header__dropdown,
.citydent-site-header__nav-item:focus-within .citydent-site-header__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .citydent-site-header__nav-item:hover .citydent-site-header__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.citydent-site-header__actions {
  flex: 0 0 189px;
  justify-content: flex-end;
}

.citydent-site-header__booking {
  min-height: 36px;
}

.citydent-site-header__mobile-phone,
.citydent-site-header__menu-toggle,
.citydent-mobile-menu {
  display: none;
}

@media (min-width: 992px) {
  body header.citydent-site-header {
    position: sticky;
    top: 0;
    transition: background-color .28s ease, color .28s ease;
  }

  body.home header.citydent-site-header.citydent-site-header--overlay,
  body header.citydent-site-header.citydent-site-header--overlay {
    position: fixed;
  }

  body.admin-bar header.citydent-site-header {
    top: 32px;
  }

  .citydent-site-header__inner {
    transition: gap .28s cubic-bezier(.22, 1, .36, 1), padding .28s cubic-bezier(.22, 1, .36, 1);
  }

  .citydent-site-header__contacts {
    max-height: 32px;
    opacity: 1;
    overflow: hidden;
    transform: translateY(0);
    transition: max-height .28s cubic-bezier(.22, 1, .36, 1), opacity .18s ease, transform .28s cubic-bezier(.22, 1, .36, 1);
  }

  body header.citydent-site-header.is-compact {
    background: var(--pageBg, #fff);
    color: var(--contentColor, #00000f);
    z-index: 999;
  }

  body header.citydent-site-header.is-compact>.citydent-site-header__inner {
    gap: 0;
    padding-bottom: var(--gapX4);
    padding-top: var(--gapX4);
  }

  .citydent-site-header.is-compact .citydent-site-header__contacts {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .citydent-site-header.is-compact .citydent-site-header__logo :is(img, svg) {
    filter: none;
  }

  .citydent-site-header.is-compact .citydent-site-header__desktop-nav>a,
  .citydent-site-header.is-compact .citydent-site-header__nav-button {
    color: var(--contentColor, #00000f) !important;
  }

  .citydent-site-header.is-compact .citydent-site-header__nav-item.is-open .citydent-site-header__nav-button,
  .citydent-site-header.is-compact .citydent-site-header__nav-item:hover .citydent-site-header__nav-button {
    color: var(--contentOpacityColor, rgba(0, 0, 15, .62)) !important;
  }

  header.citydent-site-header .citydent-site-header__nav-shell {
    display: block !important;
    min-height: 0;
    padding: 0;
    position: static;
    width: auto;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 992px) {
  .citydent-site-header.is-compact .citydent-site-header__desktop-nav>a:hover,
  .citydent-site-header.is-compact .citydent-site-header__desktop-nav>a:focus-visible {
    color: var(--contentOpacityColor, rgba(0, 0, 15, .62)) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .citydent-site-header,
  .citydent-site-header__inner,
  .citydent-site-header__contacts {
    transition: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .citydent-site-header__actions {
    flex-basis: auto;
  }
}

.citydent-contact-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  visibility: hidden;
  z-index: 2200;
}

.citydent-contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
  visibility: visible;
}

.citydent-contact-modal__backdrop {
  background: rgba(0, 0, 15, 0.38);
  border: 0;
  inset: 0;
  position: absolute;
}

.citydent-contact-modal__body {
  background: #fff;
  border-radius: var(--roundedS, 8px);
  color: var(--contentColor, #00000f);
  display: flex;
  flex-direction: column;
  gap: var(--gapX5);
  max-width: calc(100vw - 32px);
  padding: var(--gapX5) var(--gapX4) var(--gapX8);
  position: relative;
  width: 393px;
}

.citydent-contact-modal__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.citydent-contact-modal__header button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--contentOpacityColor, rgba(0, 0, 15, 0.62));
  display: inline-flex;
  font-size: 24px;
  height: 24px;
  justify-content: center;
  padding: 0;
  width: 24px;
}

.citydent-contact-modal__header button:is(:hover, :focus-visible) {
  color: var(--contentColor);
}

.citydent-contact-modal__links {
  display: flex;
  flex-direction: column;
  gap: var(--gapX5);
}

.citydent-contact-modal__links.textM.tight>a {
  align-items: center;
  color: inherit;
  display: flex;
  gap: var(--gapX2);
  margin: 0;
  text-decoration: none;
}

.citydent-contact-modal__links a::after {
  content: none;
}

.citydent-contact-modal__icon {
  display: inline-flex;
}

.citydent-contact-modal__links .citydent-contact-modal__icon {
  align-items: center;
  flex: 0 0 22px;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.citydent-contact-modal__header .citydent-contact-modal__icon {
  flex-basis: 24px;
  height: 24px;
  width: 24px;
}

.citydent-contact-modal__icon svg {
  display: block;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

.citydent-floating-actions {
  display: none;
}

@media (min-width: 992px) {
  .citydent-contact-modal,
  .citydent-contact-modal.is-open {
    align-items: initial;
    justify-content: initial;
    pointer-events: none;
  }

  .citydent-contact-modal__backdrop {
    display: none;
  }

  .citydent-contact-modal__header {
    display: none;
  }

  .citydent-contact-modal__body {
    bottom: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 15, 0.12);
    padding: 20px 24px 20px 16px;
    pointer-events: none;
    position: fixed;
    right: 88px;
    width: 317px;
  }

  .citydent-contact-modal.is-open .citydent-contact-modal__body {
    pointer-events: auto;
  }

  body.logged-in .citydent-contact-modal__body {
    right: 168px;
  }

  .citydent-contact-modal__links {
    gap: 20px;
    font-size: 19px;
    letter-spacing: -0.19px;
    line-height: 24px;
  }

  .citydent-floating-actions {
    bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    right: 32px;
    z-index: 1050;
  }

  .citydent-floating-actions__button {
    align-items: center;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 48px;
    justify-content: center;
    padding: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    width: 48px;
  }

  .citydent-floating-actions__button span,
  .citydent-floating-actions__button svg {
    display: block;
  }

  .citydent-floating-actions__top {
    background: transparent;
    border: 1.333px solid var(--primaryColor, #0059b7);
    color: var(--primaryColor, #0059b7);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    visibility: hidden;
  }

  .citydent-floating-actions__top .ph {
    font-size: 22px;
    line-height: 1;
  }

  .citydent-floating-actions__top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .citydent-floating-actions__phone {
    background: var(--primaryColor, #0059b7);
    border: 1.333px solid var(--primaryColor, #0059b7);
  }

  .citydent-floating-actions__phone span,
  .citydent-floating-actions__phone svg {
    height: 26.667px;
    width: 26.667px;
  }

  .citydent-floating-actions__button:is(:hover, :focus-visible) {
    transform: translateY(-2px);
  }
}

.citydent-mobile-anchor-nav {
  display: none;
}

@media (max-width: 991px) {
  body.home {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  body header.citydent-site-header {
    background: #fff !important;
    color: var(--contentColor, #00000f);
    position: relative !important;
    margin: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    width: 100% !important;
  }

  body.home header.citydent-site-header.citydent-site-header--overlay {
    background: transparent !important;
    color: #fff;
    left: 0;
    position: absolute !important;
    top: 0;
  }

  body.page-id-380 header.citydent-site-header--about-overlay {
    background: transparent !important;
    color: var(--contentColor, #00000f);
    left: 0;
    position: absolute !important;
    top: 0;
  }

  body header.citydent-site-header.is-mobile-menu-open,
  body header.citydent-site-header.citydent-site-header--overlay.is-mobile-menu-open {
    background: #fff !important;
    color: var(--contentColor, #00000f);
  }

  body header.citydent-site-header.is-mobile-menu-open .citydent-site-header__logo :is(img, svg) {
    filter: none !important;
  }

  body header.citydent-site-header.is-mobile-menu-open :is(.citydent-site-header__mobile-phone, .citydent-site-header__menu-toggle),
  body header.citydent-site-header.citydent-site-header--overlay.is-mobile-menu-open :is(.citydent-site-header__mobile-phone, .citydent-site-header__menu-toggle) {
    color: var(--contentColor, #00000f) !important;
  }

  .citydent-site-header__inner {
    min-height: 56px;
    padding: 12px 0;
  }

  body .citydent-site-header__contacts,
  body .citydent-site-header__desktop-nav,
  body .citydent-site-header__booking {
    display: none !important;
  }

  .citydent-site-header__logo {
    flex-basis: 159px;
    gap: 8px;
    height: 32px;
    width: 159px;
  }

  .citydent-site-header__logo-mark {
    height: 32px;
    width: 30px;
  }

  .citydent-site-header__logo-word {
    width: 119px;
  }

  .citydent-site-header__logo-custom {
    height: 32px;
    width: 159px;
  }

  .citydent-site-header--overlay .citydent-site-header__logo :is(img, svg) {
    filter: none;
  }

  body.home .citydent-site-header--overlay .citydent-site-header__logo :is(img, svg) {
    filter: brightness(0) invert(1);
  }

  .citydent-site-header__actions {
    flex-basis: auto;
    gap: var(--gapX6);
  }

  .citydent-site-header__mobile-phone,
  .citydent-site-header__menu-toggle {
    display: inline-flex;
    font-size: 32px;
    height: 32px;
    width: 32px;
  }

  header.citydent-site-header .citydent-site-header__mobile-phone {
    color: var(--contentColor, #00000f) !important;
  }

  body.home header.citydent-site-header--overlay .citydent-site-header__mobile-phone,
  body.home header.citydent-site-header--overlay .citydent-site-header__menu-toggle {
    color: #fff !important;
  }

  .citydent-site-header__menu-toggle {
    background: transparent;
    border: 0;
    padding: 0;
  }

  header.citydent-site-header .citydent-site-header__nav-shell:not(.open) {
    display: none !important;
  }

  header.citydent-site-header .citydent-site-header__nav-shell.open {
    background: #fff;
    color: var(--contentColor, #00000f);
    display: flex !important;
    flex-flow: column;
    min-height: calc(var(--vh, 1vh) * 100 - 56px);
    padding: 0;
    position: absolute;
    right: calc(-1 * var(--outsideGap));
    top: 100%;
    width: 100vw;
  }

  .citydent-mobile-menu {
    display: flex;
    flex-direction: column;
    min-height: inherit;
    width: 100%;
  }

  .citydent-mobile-menu__panel {
    display: none;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
    padding: var(--gapX5) var(--outsideGap) calc(var(--gapX12) + env(safe-area-inset-bottom));
  }

  .citydent-mobile-menu__panel.is-active {
    display: flex;
  }

  .citydent-mobile-menu__list {
    display: flex;
    flex-direction: column;
    margin: 0;
  }

  .citydent-mobile-menu__list>a,
  .citydent-mobile-menu__row {
    align-items: center;
    background: transparent;
    border: 0;
    box-shadow: inset 0 -1px 0 var(--dividerDefault);
    color: inherit;
    display: flex;
    justify-content: space-between;
    margin: 0;
    min-height: 52px;
    padding: var(--gapX4) 0;
    text-align: left;
    text-decoration: none;
    width: 100%;
  }

  .citydent-mobile-menu__list.textM.tight>a,
  .citydent-mobile-menu__row {
    font-size: var(--textMsize);
    letter-spacing: var(--bigTextSpacing);
    line-height: var(--textMheightT);
    margin: 0;
  }

  header.citydent-site-header .citydent-mobile-menu__list>a:not(.btn) {
    color: var(--contentColor, #00000f) !important;
  }

  .citydent-mobile-menu__row {
    font-family: inherit;
  }

  .citydent-mobile-menu__list>a::after {
    content: none;
  }

  .citydent-mobile-menu__booking {
    align-items: center;
    display: flex;
    flex: 0 0 44px;
    justify-content: center;
    margin-top: auto;
    min-height: 44px;
    width: 100%;
  }

  .citydent-mobile-menu__back {
    align-items: center;
    align-self: flex-start;
    background: transparent;
    border: 0;
    color: var(--contentOpacityColor, rgba(0, 0, 15, 0.62));
    display: flex;
    gap: var(--gapX1);
    margin: 0 0 var(--gapX6);
    padding: 0;
  }

  header.citydent-site-header .citydent-mobile-menu__back {
    color: var(--contentOpacityColor);
  }

  .citydent-mobile-menu__back:focus-visible,
  .citydent-site-header__menu-toggle:focus-visible,
  .citydent-mobile-menu__row:focus-visible,
  .citydent-footer__mobile-nav summary:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }

  .citydent-mobile-menu__back.textM {
    font-size: var(--textMsize);
    letter-spacing: var(--bigTextSpacing);
    line-height: var(--textMheightT);
  }

  .citydent-mobile-menu__back+.citydent-mobile-menu__title {
    border-bottom: 1px solid var(--borderColor, rgba(0, 0, 15, 0.12));
    margin: 0;
    padding-bottom: var(--gapX5);
  }

  .citydent-mobile-menu__title+.citydent-mobile-menu__list {
    margin: 0;
  }

  .citydent-mobile-anchor-nav {
    align-items: stretch;
    background: #fff;
    border-top: 1px solid var(--borderColor, rgba(0, 0, 15, 0.12));
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    left: 0;
    padding: var(--gapX2) var(--gapX2) calc(var(--gapX2));
    position: fixed;
    right: 0;
    z-index: 1050;
  }

  html.noScroll .citydent-mobile-anchor-nav {
    display: none;
  }

  .citydent-mobile-anchor-nav a {
    align-items: center;
    color: var(--contentOpacityColor, rgba(0, 0, 15, 0.62));
    display: flex;
    flex-direction: column;
    gap: var(--gapX1);
    justify-content: space-evenly;
    min-height: 48px;
    font-size: var(--textXSsize);
    letter-spacing: var(--smallTextSpacing);
    line-height: var(--textXSheightS);
    text-decoration: none;
  }

  .citydent-mobile-anchor-nav a::after {
    content: none;
  }

  .citydent-mobile-anchor-nav .ph {
    font-size: 24px;
  }

  .citydent-contact-modal {
    align-items: flex-end;
  }

  .citydent-contact-modal__body {
    border-radius: 0;
    max-width: none;
    padding-bottom: calc(var(--gapX8) + env(safe-area-inset-bottom));
    transform: translateY(24px);
    transition: transform 0.2s ease;
    width: 100%;
  }

  .citydent-contact-modal.is-open .citydent-contact-modal__body {
    transform: translateY(0);
  }

  header.citydent-site-header .citydent-site-header__menu-toggle.menu-button {
    display: inline-flex !important;
    padding: 0;
  }

  header.citydent-site-header .citydent-site-header__menu-toggle .menu-icon {
    height: 24px;
    width: 24px;
  }

  header.citydent-site-header .citydent-site-header__menu-toggle .menu-icon .line {
    background: currentColor !important;
    height: 2px;
  }

  header.citydent-site-header .citydent-site-header__menu-toggle .menu-icon .line-1 {
    top: 5px;
  }

  header.citydent-site-header .citydent-site-header__menu-toggle .menu-icon .line-2 {
    top: 11px;
  }

  header.citydent-site-header .citydent-site-header__menu-toggle .menu-icon .line-3 {
    top: 17px;
  }

  header.citydent-site-header .citydent-site-header__menu-toggle.opened .line-1 {
    transform: translateY(11px) rotate(45deg);
  }

  header.citydent-site-header .citydent-site-header__menu-toggle.opened .line-3 {
    transform: translateY(-10px) rotate(-45deg);
  }

  .swiper.citydent-service-approach__slider .slider-controls {
    display: none !important;
  }
}
