/* custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background-color: #050a30;
  border-radius: 10px;
  border: 2px solid #fff;
}
body::-webkit-scrollbar-track {
  border-radius: 1px;
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
}
/* custom scrollbar */
/* =========================================
   HOME HEADER - INITIAL
========================================= */
.home .main-header {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999 !important;
  background: transparent !important;
  height: 140px;
  transition:
    transform 0.45s ease,
    background 0.3s ease;
}

.home .main-header.header-show,
.home .main-header.header-hide {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
}
.home .main-header.scrolled {
  height: 100px !important;
  min-height: 100px !important;
}

.home .main-header > *,
.home .main-header .e-con,
.home .main-header .e-con-inner {
  background: transparent !important;
}
/* preloader */
#custom-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
}

.preloader-overlay {
  position: absolute;
  inset: 0;
  background: #fff;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;
}

.preloader-logo {
  width: 350px !important;
  opacity: 0;
  transform: translateY(140px);
}
.preloader-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.preloader-logo.show {
  animation: logoUp 0.8s ease forwards;
}

@keyframes logoUp {
  from {
    opacity: 0;
    transform: translateY(140px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#custom-preloader.hide .preloader-overlay {
  animation: overlayDown 0.9s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

@keyframes overlayDown {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(100%);
  }
}
/* preloader */

.li-bullets ul li::marker {
  font-size: 8px !important;
}
.li-bullets ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
span.acco-active {
  font-size: 14px !important;
  line-height: 20px;
  letter-spacing: -2%;
}

/* Images & Maps */
.mlt,
.fiji,
.aus,
.mlt-map,
.fiji-map,
.aus-map {
  display: none !important;
}

.mlt.active,
.fiji.active,
.aus.active,
.mlt-map.active,
.fiji-map.active,
.aus-map.active {
  display: block !important;
  /* animation: fadeIn .5s ease; */
}
.location-mng .e-n-accordion-item > * {
  transition-duration: 0ms !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Labels */
.wpcf7-form {
  font-family: "Montserrat" !important;
}
.wpcf7-form label {
  display: block;
  margin-bottom: 15px;
  color: #050a30;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
/* .hidden-submit {
  display: none;
} */
/* Inputs */
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 18px 15px;
  border: 1px solid #2eb2ff;
  border-radius: 5px;
  height: 40px;
  background: rgba(46, 178, 255, 0.05);
  color: #2eb2ff !important;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  outline: none;
  box-sizing: border-box;
  font-family: "Montserrat" !important;
}

/* Placeholder */

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #2eb2ff;
  opacity: 1;
}

/* Select placeholder */
.wpcf7-form select {
  color: #2eb2ff !important;
}
.check-box {
  color: #050a30 !important;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
/* Selected value */
.wpcf7-form select:valid {
  color: #2eb2ff !important;
  font-family: "Montserrat" !important;
}

.wpcf7-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232EB2FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 50px;
}
/* Focus */

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  border-color: #2eb2ff;
  box-shadow: none;
}

/* Textarea */

.wpcf7-form textarea {
  min-height: 150px;
  resize: none;
}
.wpcf7-form .move-arrow-btn {
  width: 170px !important;
}
.wpcf7-form .move-arrow-btn:hover .btn-icon {
  left: 125px !important;
}
.cf7-submit {
  display: flex !important;
}
.cf7-submit button {
  cursor: pointer !important;
}
.scroll-space {
  scroll-margin-top: 50px !important;
}

/* Two Column */

.cf7-row.two-col {
  display: flex;
  gap: 30px;
}

.cf7-col {
  flex: 1;
}

.cf7-col-full {
  width: 100%;
}

.cf7-row {
  margin-bottom: 50px;
}
/* Hide Original CF7 Select */
.hidden-select {
  display: none;
}

/* Dropdown */
.custom-dropdown {
  position: relative;
  background: rgba(46, 178, 255, 0.05);
  width: 100%;
}

.wpcf7-form .dropdown-selected {
  border: 1px solid #2eb2ff;
  border-radius: 5px;
  padding: 0px 15px;
  height: 40px;
  color: #2eb2ff;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  position: relative;
  align-content: center;
  transition: 0.3s;
}
.custom-dropdown.open .dropdown-selected {
  border-bottom: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
/* .custom-dropdown.open .dropdown-selected {
  height: 25px !important;
} */
.custom-dropdown:not(.open) .dropdown-options {
  border-bottom: 0 !important;
}

.dropdown-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: url("/wp-content/uploads/2026/08/arrow_forward.svg") no-repeat
    center;
  background-size: contain;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}

.custom-dropdown.open .dropdown-arrow {
  transform: translateY(-20%) rotate(-180deg);
}

.dropdown-options {
  max-height: 0;
  border-radius: 0px 0px 5px 5px;
  border-top: none;
  overflow: hidden;
  transition: max-height 0.35s ease;
  border-left: 1px solid #2eb2ff;
  border-right: 1px solid #2eb2ff;
  border-bottom: 1px solid #2eb2ff;
}

.custom-dropdown.open .dropdown-options {
  max-height: 300px;
  padding-bottom: 1px;
  /* margin-top: -6px; */
}
.custom-dropdown.open .dropdown-options .dropdown-item:last-child {
  padding-bottom: 8px;
}
.check-box input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
}
.wpcf7-form .dropdown-item {
  font-size: 14px !important;
  padding: 5px 15px;
  cursor: pointer;
  color: #2eb2ff;
  transition: 0.2s;
}
.check-box .wpcf7-list-item {
  margin-left: 0px !important;
}
.check-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  /* margin-bottom: 50px; */
}

.check-box .wpcf7-form-control-wrap {
  flex-shrink: 0;
  margin-top: 1px;
}
.wpcf7-form .wpcf7-not-valid-tip {
  margin-top: 10px !important;
}
.wpcf7-response-output {
  color: #2eb2ff !important;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #2eb2ff !important;
}

.tnq-page .move-arrow-btn:hover .btn-icon {
  left: 186px !important;
}
.tnq-page .move-arrow-btn {
  background: #fff;
  border: 2px solid transparent !important;
}
.tnq-page .move-arrow-btn .text-before {
  color: #269cff !important;
}
.tnq-page .move-arrow-btn:before {
  background: #2eb2ff !important;
}
.tnq-page .move-arrow-btn .text-after {
  color: #fff !important;
}
.tnq-page .btn-icon {
  background: #2eb2ff !important;
}
.tnq-page .btn-icon svg path {
  fill: #fff !important;
}
.tnq-page .btn-icon svg rect {
  fill: #2eb2ff !important;
}

/* white color */
.white-btn .move-arrow-btn:hover .btn-icon {
  left: 95px !important;
}
.white-btn .move-arrow-btn {
  background: #fff;
  border: 2px solid transparent !important;
}
.white-btn .move-arrow-btn .text-before {
  color: #269cff !important;
}
.white-btn .move-arrow-btn:before {
  background: #2eb2ff !important;
}
.white-btn .move-arrow-btn .text-after {
  color: #fff !important;
}
.white-btn .btn-icon {
  background: #2eb2ff !important;
}
.white-btn .btn-icon svg path {
  fill: #fff !important;
}
.white-btn .btn-icon svg rect {
  fill: #2eb2ff !important;
}

/* header css */
.elementor-nav-menu .elementor-item {
  position: relative;
  display: inline-block;
  /* padding-bottom: 8px; */
}

.elementor-nav-menu .elementor-item .menu-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.main-header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: transform 0.7s ease;
  will-change: transform;
  /* background: transparent !important; */
}
.main-header.scrolled {
  background: #00000000 !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  /* border: 1px solid rgba(255, 255, 255, 0.15) !important; */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
}
.main-header.header-hide {
  transform: translateY(-100%);
}

.main-header.header-show {
  transform: translateY(0);
}
/* Default: Dark logo show */
.dark-logo {
  display: none;
}

.light-logo {
  display: block;
}
/* .e-n-accordion-item {
  overflow: hidden;
} */

/* .e-n-accordion-item > * {
  will-change: height;
} */
.e-n-accordion .white-banner-p p {
  margin-top: 0px !important;
}

.our-value-acco .e-n-accordion .e-n-accordion-item:first-child > summary {
  border-top: none !important;
}

.dark-mode .main-header nav ul li a {
  color: #fff !important;
}
.main-header nav ul li a {
  color: #050a30 !important;
}
.slide-scroll {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  cursor: grab;

  scrollbar-width: none;
  -ms-overflow-style: none;

  scroll-behavior: auto;
}

.slide-scroll::-webkit-scrollbar {
  display: none;
}

.slide-scroll.dragging {
  cursor: grabbing;
}

.slide-scroll * {
  user-select: none;
}

.slide-scroll img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
.slide-scroll > .e-con {
  flex: 0 0 455px;
}

/* Jab body me dark-mode ho */
body.dark-mode .dark-logo {
  display: block;
}

body.dark-mode .light-logo {
  display: none;
}
.footer-btn .move-arrow-btn {
  width: 170px !important;
}
.footer-btn .move-arrow-btn .text-before {
  left: 60px !important;
}
.footer-btn .move-arrow-btn:hover .btn-icon {
  left: 125px !important;
}
.hero-title .elementor-heading-title {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 45%,
    rgba(255, 255, 255, 0.65) 75%,
    rgba(255, 255, 255, 0.25) 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.light-mode .privacy-texts h2 {
  color: #2d3a48 !important;
}
.light-mode .privacy-texts p,
.light-mode .privacy-texts p a,
.light-mode .privacy-texts ul li {
  color: #74787d !important;
}
.light-mode .contact-page .sec-2 div h2 {
  color: #2d3a48 !important;
}
.light-mode .contact-page .sec-2 div p,
.light-mode .location-mng .e-n-accordion .e-n-accordion-item-title,
.light-mode .contact-page .sec-2 div h2 {
  color: #2d3a48 !important;
}
.light-mode .location-mng .e-n-accordion .e-n-accordion-item-title {
  border-color: #2d3a48 !important;
}
.light-mode
  .contact-page
  .sec-2
  .elementor-widget-icon-list
  .elementor-icon-list-text {
  color: #2d3a48 !important;
}
.light-mode
  .contact-page
  .sec-2
  .elementor-widget-icon-list
  .elementor-icon-list-icon
  svg
  path {
  fill: #2d3a48 !important;
  stroke: #2d3a48 !important;
}
.team-post-id {
  display: none;
}
.close-btn .elementor-button-content-wrapper:focus-visible {
  outline: none !important;
}
.close-btn .elementor-button {
  outline: none !important;
}
.about-page .sec-4 .e-loop-item {
  cursor: pointer !important;
}
.light-mode .about-page .sec-5 div h2,
.light-mode .about-page .sec-5 div p {
  color: #2d3a48 !important;
}
.light-mode .about-page .sec-6 div h2,
.light-mode .about-page .sec-6 div p {
  color: #2d3a48 !important;
}
.about-page .sec-6 {
  border-radius: 30px !important;
}
.light-mode .about-page .sec-7 {
  background-color: #fff !important;
}
.light-mode .about-page .sec-7 div h2,
.light-mode .about-page .sec-7 div p {
  color: #2d3a48 !important;
}
.light-mode .elementor-nav-menu .elementor-item .menu-line {
  background: #2d3a48 !important;
}
.glass-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.location-page .sec-1 .white-btn .move-arrow-btn:hover .btn-icon {
  left: 130px !important;
}
.scroll-anim {
  overflow: hidden;
}

.scroll-anim .slide-scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow: visible;
  will-change: transform;
  transition: transform 0.08s linear;
}
.scroll-anim .slide-scroll > .e-con {
  flex: 0 0 400px;
}
.rubber-swiper-anim .offset-right {
  padding-right: 0px !important;
}
.light-mode .location-page .sec-1 div h2 {
  color: #2d3a48 !important;
}
.light-mode .location-page .sec-1 div p {
  color: #74787d !important;
}
.light-mode .location-page .sec-2-2 div h2 {
  color: #2d3a48 !important;
}
.light-mode .location-page .sec-2-2 div p {
  color: #2d3a48 !important;
}
.light-mode .location-page .sec-2 div h2 {
  color: #2d3a48 !important;
}
.light-mode .location-page .sec-2 div p,
.light-mode .location-mng .e-n-accordion .e-n-accordion-item-title,
.light-mode .location-page .sec-2 div h2 {
  color: #2d3a48 !important;
}
.light-mode .location-mng .e-n-accordion .e-n-accordion-item-title {
  border-color: #2d3a48 !important;
}
.light-mode
  .location-page
  .sec-2
  .elementor-widget-icon-list
  .elementor-icon-list-text {
  color: #2d3a48 !important;
}
.light-mode
  .location-page
  .sec-2
  .elementor-widget-icon-list
  .elementor-icon-list-icon
  svg
  path {
  fill: #2d3a48 !important;
  stroke: #2d3a48 !important;
}
.light-mode div .moon svg path {
  fill: #050a30 !important;
}
.light-mode div .sun svg path {
  fill: #dfa23b !important;
}
.dark-mode .theme-toggle {
  border-color: #707070 !important;
  width: 85px !important;
}
.dark-mode .main-header.scrolled .theme-toggle {
  border-color: #fff !important;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.dark-mode .main-header.scrolled div .sun svg path {
  fill: #fff !important;
}
.coming-page .sec-1 .white-btn .move-arrow-btn:hover .btn-icon {
  left: 130px !important;
}
.elementor-maintenance-mode header {
  display: none;
}
.elementor-maintenance-mode footer {
  display: none;
}
.page-id-742 header {
  display: none;
}
.page-id-742 footer {
  display: none;
}
.cs-page .wpcf7-form textarea {
  min-height: 40px !important;
  padding: 0px 15px !important;
  align-content: center;
}

@media (max-width: 1537px) and (min-width: 1200px) {
  .slide-scroll > .e-con {
    flex: 0 0 360px;
  }
  .scroll-anim .slide-scroll > .e-con {
    flex: 0 0 360px;
  }
}
@media (max-width: 1201px) and (min-width: 766px) {
  .slide-scroll > .e-con {
    flex: 0 0 280px;
  }
  .scroll-anim .slide-scroll > .e-con {
    flex: 0 0 280px;
  }
}
@media (max-width: 1024px) {
  .white-btn .move-arrow-btn:hover .btn-icon {
    left: 112px !important;
  }
  .main-header {
    background-color: #050a30 !important;
  }
  .main-header.scrolled {
    background-color: #050a30 !important;
    backdrop-filter: none !important;
    border: none !important;
  }
}
/* Mobile Popup Menu */
@media (max-width: 1024px) {
  .custom-mobile-popup-menu {
    font-family: "Montserrat" !important;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
  }

  .custom-mobile-popup-menu .menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 20px 0;
    margin: 0;
  }

  .custom-mobile-popup-menu .menu-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

  .custom-mobile-popup-menu .menu-item a {
    display: block;
    text-decoration: none;
  }

  .custom-mobile-popup-menu .menu-title {
    display: block;
    font-size: 17px;
    line-height: 21px;
    font-weight: 600;
    color: #2eb2ff;
    margin-bottom: 10px;
  }

  .custom-mobile-popup-menu .menu-description {
    display: block;
    font-size: 13px;
    line-height: 13px;
    color: #fff;
    opacity: 0.9;
  }
}
@media (max-width: 880px) {
  .cc-sticky-inner {
    position: relative;
  }
}
@media (max-width: 767px) {
  .li-bullets ul {
    gap: 18px;
    padding-inline-start: 15px;
  }
  .about-page .sec-4 .slide-scroll .elementor-loop-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px;
    width: max-content;
  }
  .about-page {
    padding-inline: 20px;
  }
  .location-page div > .sec-2,
  .location-page div > .scroll-anim {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
  }
  .about-page div > .sec-4 {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
  }
  .about-page .sec-4 .slide-scroll .e-loop-item {
    flex: 0 0 333px !important;
    width: 333px !important;
    max-width: 333px !important;
  }

  .about-page .sec-4 .slide-scroll {
    overflow-x: auto !important;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .slide-scroll::-webkit-scrollbar {
    display: none;
  }
  .scroll-anim {
    overflow: hidden;
  }
  .scroll-anim .slide-scroll {
    display: flex;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
  }

  .slide-scroll::-webkit-scrollbar {
    display: none;
  }

  .slide-scroll > * {
    flex: 0 0 auto;
  }
  .slide-scroll {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    justify-content: flex-start !important;
    align-items: stretch;
  }
  .bg-remove {
    background-image: none !important;
  }
  .slide-scroll > .e-con {
    flex: 0 0 280px !important;
    max-width: 280px !important;
    width: 280px !important;
  }
  /* .scroll-anim .slide-scroll > .e-con {
    flex: 0 0 280px !important;
    max-width: 280px !important;
    width: 280px !important;
  } */
  .cf7-submit {
    display: block !important;
  }
  .custom-mobile-popup-menu .menu-title {
    font-size: 13px;
    line-height: 21px;
  }

  .custom-mobile-popup-menu .menu-description {
    font-size: 10px;
    line-height: 13px;
  }
  .head-btn .white-btn .text-before {
    font-size: 10px !important;
    left: 36px !important;
  }
  .head-btn .white-btn .text-after {
    font-size: 10px !important;
  }
  .head-btn .white-btn .btn-icon {
    height: 10px !important;
    width: 13.33px !important;
    left: 8px !important;
  }
  .white-btn .move-arrow-btn:hover .btn-icon {
    left: 80px !important;
  }
  .head-btn .white-btn .move-arrow-btn:before {
    height: 25px !important;
    width: 25px !important;
    top: 1px !important;
    left: 2px !important;
  }
  .head-btn .white-btn .move-arrow-btn:hover::before {
    width: 98px !important;
  }
  .head-btn .white-btn .move-arrow-btn {
    width: 105px !important;
    height: 30px !important;
  }

  .cf7-row.two-col {
    flex-direction: column;
    gap: 20px;
  }
  .scroll-space {
    scroll-margin-top: 0px !important;
  }
  .mission-slider {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    scroll-behavior: smooth;
    padding-bottom: 10px;
  }

  .mission-slider::-webkit-scrollbar {
    display: none;
  }

  .mission-slider > .e-con {
    flex: 0 0 90% !important;
    max-width: 90% !important;
    width: 90% !important;
  }

  .mission-slider.dragging {
    cursor: grabbing;
  }

  .mission-slider * {
    user-select: none;
  }

  .mission-slider img {
    pointer-events: none;
    -webkit-user-drag: none;
  }

  .main-header.scrolled {
    position: relative !important;
  }
  .wpcf7-form .move-arrow-btn {
    margin: auto;
  }
  .wpcf7-spinner {
    position: absolute;
    bottom: 0;
    left: -22px;
  }
}
@media (max-width: 767px) {
  .cc-keytom-accordion .e-n-accordion-item {
    display: block !important;
  }

  .cc-keytom-accordion .e-n-accordion-item > .e-n-accordion-item-title {
    pointer-events: none;
    padding-top: 30px !important;
  }

  .cc-keytom-accordion .e-n-accordion-item > [role="region"] {
    display: block !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .cc-keytom-accordion .e-n-accordion-item {
    margin-bottom: 20px !important;
    /* margin-top: 15px !important; */
  }
}
@media (max-width: 767px) {
  /* Hide scrollbar but keep scrolling */
  .dialog-widget-content,
  .dialog-message,
  .elementor-location-popup,
  .scroll-space {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .dialog-widget-content::-webkit-scrollbar,
  .dialog-message::-webkit-scrollbar,
  .elementor-location-popup::-webkit-scrollbar,
  .scroll-space::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
}
