/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
  direction: rtl;
}

html,
body {
  height: 100%;
  background: #f7f9fa;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * Basic styles for links
 */
a {
  text-decoration: none;
  cursor: pointer;
}
a:hover,
a:active,
a:focus,
a:focus-within {
  color: #384349;
}

.txt-left-align {
  text-align: -webkit- left;
}

input {
  border: 1px solid #0077ff;
  border-radius: 15px;
  height: 50px !important;
}
input::-moz-placeholder {
  color: #384349;
  font-size: 12px;
}
input::placeholder {
  color: #384349;
  font-size: 12px;
}

label.form-label {
  color: #00d48d;
  font-size: 16px;
}

.fs-9 {
  font-size: 9px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-25 {
  font-size: 25px;
}

.fs-32 {
  font-size: 32px;
}

.fs-40 {
  font-size: 40px;
}

.fs-50 {
  font-size: 50px;
}

.fs-65 {
  font-size: 65px;
}

.ml-10 {
  margin-right: 10px;
}

.ml-40 {
  margin-right: 40px;
}

.mlr-10-per {
  margin-right: 15%;
  margin-left: 15%;
}

.px-25 {
  padding-right: 25px;
  padding-left: 25px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mr-20 {
  margin-left: 20px;
}

.mr-90 {
  margin-left: 90px;
}

.pl-10 {
  padding-right: 10px;
}

.pl-60 {
  padding-right: 60px;
}

.pl-80 {
  padding-right: 80px;
}

.pr-10 {
  padding-left: 10px;
}

.pt-50 {
  padding-top: 50px;
}

.px-per-6 {
  padding: 0 6%;
}

.px-per-10 {
  padding: 0 10%;
}

.px-per-15 {
  padding: 0 15%;
}

.br-40 {
  border-radius: 40px;
}

.border-none {
  border: 0;
}

.ml-10-per {
  margin-right: 15%;
}

.position-left-rel {
  position: relative;
  left: 0%;
  margin-right: 15%;
}
.m-6{
  margin: 6rem!important;
}
.m-20 {
  margin: 20px !important;
}

.w-65 {
  width: 65% !important;
}

/*disable box-shadow on input with form-control class*/
.form-control:focus {
  box-shadow: none !important;
}

.limit-text-line {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.limit-text-line.two-line {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.limit-text-line.three-line {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.limit-text-line.four-line {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

a {
  color: inherit;
}

@font-face {
  font-family: "SuisseIntl-Regular";
  src: url("../../../assets/fonts/SuisseIntl-Regular.ttf");
}
@font-face {
  font-family: "SuisseIntl-Medium";
  src: url("../../../assets/fonts/SuisseIntl-Medium.ttf");
}
@font-face {
  font-family: "SuisseIntl-SemiBold";
  src: url("../../../assets/fonts/SuisseIntl-SemiBold.ttf");
}
@font-face {
  font-family: "SuisseIntl-Bold";
  src: url("../../../assets/fonts/SuisseIntl-Bold.ttf");
}
@font-face {
  font-family: 'saudi_riyal';
  src: url('../../../assets/fonts/saudi_riyal.woff2') format('woff2'),
       url('../../../assets/fonts/saudi_riyal.woff') format('woff'),
       url('../../../assets/fonts/saudi_riyal.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/* Ensure the icon class correctly loads the Riyal symbol */
.icon-saudi_riyal::before {
  content: "\e900";
  font-family: 'saudi_riyal' !important;
  font-size: inherit;
  color: inherit;
}
/* Apply Suisse Medium to headlines */
h1,
.headline {
  font-family: "SuisseIntl-Bold" !important;
  font-size: 50px;
}

/* Apply Suisse Regular to sub-headlines */
h2,
h3,
h4,
h5,
h6,
.sub-headline {
  font-family: "SuisseIntl-SemiBold" !important;
}
/* Apply Suisse Regular to sub-headlines */
h2,
h3,
h4,
h5,
h6,
.sub-headlineColor {
  font-family: "SuisseIntl-SemiBold" !important;
  color: #0077ff;
}

/* Apply Suisse Regular to body text */
body {
  font-family: "SuisseIntl-Medium" !important;
}

p {
  color: #384349;
}

.headline {
  color: #0077ff;
}

.sub-headline {
  color: #00d48d;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
  max-width: 1640px; /* 1 */
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css?v=0.17#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* width */
::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #9f9f9f;
}

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-transition: 1s;
  transition: 1s;
  background: linear-gradient(180deg, #f7f9fa 50%, #f7f9fa 100%);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  -webkit-transition: 1s;
  transition: 1s;
  background: linear-gradient(180deg, #f7f9fa 50%, #f7f9fa 100%);
}

nav[data-anchor^="vision-and-mission"],
nav[data-anchor^="about-khazeen"],
nav[data-anchor^="loacation-of-khazeen"] nav[data-anchor^="what-do-we-do"],
nav[data-anchor^="what-is-gas"],
nav[data-anchor^="who-iam"],
nav[data-anchor^="anch-Articles"],
nav[data-anchor^="anch-Gas-Cylinders-Products"],
nav[data-anchor^="anch-Our-Distributors"],
nav[data-anchor^="anch-termsAndConditions"],
nav[data-anchor^="anch-PrivacyPolicy"],
nav[data-anchor^="gas-price"]
 {
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
}
.nav-link {
  white-space: nowrap;
}
/* .navbar-toggler{
   display: none !important; 
} */
.navbar .dropdown-menu {
  padding: 10px 15px 10px 15px;


  text-align: justify;
  color: #384349 !important;
}
#coming-soon {
  min-height: 100vh;
  background: #f7f9fa;
  position: relative;
  overflow: hidden;
}
#coming-soon .background-overlay {
  position: absolute;
  bottom: -50rem;
  left: -35rem;
  width: 80rem;
}
#coming-soon div.container {
  /* position: relative;
  z-index: 1; */
  text-align: center;
  /* top: 8%; */
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10%;
  font-size: 50px;
  font-weight: bold;
}
#coming-soon div.container.top {
  /* padding-top: 6rem; */
}
#coming-soon div.container .container .row {
  margin-top: 2rem;
}
@media (max-width: 992px) {
  #coming-soon div.container .container .row {
    margin-top: 1rem;
  }
  h1,
  .headline {
    font-size: 36px;
  }
  #coming-soon div.container {
    margin-top: 40%;
  }
}
html:lang(en) #coming-soon div.container .container ul li::marker {
  content: url("../../../assets/icons/Ellipse 3 en.png");
}
html:lang(ar) #coming-soon div.container .container ul li::marker {
  content: url("../../../assets/icons/Ellipse 3.png");
}
#coming-soon div.container .container ul li p {
  max-width: 50%;
  margin-top: 2rem;
}
@media (max-width: 992px) {
  #coming-soon div.container .container ul li p {
    max-width: 100%;
    margin-top: 0rem;
  }
}
#about-khazeen {
  min-height: 100vh;
  background: #f7f9fa;
  position: relative;
  overflow: hidden;
}
#about-khazeen .background-overlay {
  position: absolute;
  bottom: -50rem;
  left: -35rem;
  width: 80rem;
}
#about-khazeen .background-overlay-en {
  position: absolute;
  bottom: -50rem;
  right: -35rem;
  width: 80rem;
}
#about-khazeen div.container {
  position: relative;
  z-index: 1;
}
#about-khazeen div.container.top {
  padding-top: 6rem;
}
#about-khazeen div.container .container .row {
  margin-top: 2rem;
}
@media (max-width: 992px) {
  #about-khazeen div.container .container .row {
    margin-top: 1rem;
  }
}
html:lang(en) #about-khazeen div.container .container ul li::marker {
  content: url("../../../assets/icons/Ellipse 3 en.png");
}
html:lang(ar) #about-khazeen div.container .container ul li::marker {
  content: url("../../../assets/icons/Ellipse 3.png");
}
#about-khazeen div.container .container ul li p {
  max-width: 50%;
  margin-top: 2rem;
}
@media (max-width: 992px) {
  #about-khazeen div.container .container ul li p {
    max-width: 100%;
    margin-top: 0rem;
  }
}

#what-do-we-do {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 70%, #d1f7ea 100%);
  position: relative;
  overflow: hidden;
}
#what-do-we-do div.container {
  position: relative;
  z-index: 1;
}
#what-do-we-do div.container.top {
  padding-top: 6rem;
}
#what-do-we-do div.container .container .row {
  margin-top: 3rem;
}
@media (max-width: 992px) {
  #what-do-we-do div.container .container .row {
    margin-top: 3rem;
  }
}
#what-do-we-do div.container .container .row .doom {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../../../assets/icons/Ellipse 5.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 10rem;
  height: 100%;
}
html:lang(en) #what-do-we-do div.container .container ul li::marker {
  content: url("../../../assets/icons/Ellipse 3 en.png");
}
html:lang(ar) #what-do-we-do div.container .container ul li::marker {
  content: url("../../../assets/icons/Ellipse 3.png");
}
#what-do-we-do div.container .container p {
  max-width: 65%;
}

#vision-and-mission {
  min-height: 100vh;
  background: #f7f9fa;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 992px) {
  #vision-and-mission {
    padding-bottom: 5rem;
  }
}
#vision-and-mission .brand-logo {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
#vision-and-mission .brand-logo-en {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  transform: scaleX(-1);

  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
#vision-and-mission div.container.top {
  padding-top: 6rem;
}
#vision-and-mission div.container .container .row {
  margin-top: 3vh;
}
@media (max-width: 992px) {
  #vision-and-mission div.container .container .row {
    margin-top: 0rem;
  }
  #vision-and-mission div.container .container .row:first-child {
    margin-top: 3rem;
  }
}
html:lang(en) #vision-and-mission div.container .container ul li::marker {
  content: url("../../../assets/icons/Ellipse 3 en.png");
}
html:lang(ar) #vision-and-mission div.container .container ul li::marker {
  content: url("../../../assets/icons/Ellipse 3.png");
}
#vision-and-mission div.container .container ul li p {
  max-width: 50%;
  margin-top: 2rem;
}
@media (max-width: 992px) {
  #our-values div.container .container ul li p {
    max-width: 100%;
    margin-top: 0rem;
  }
}
#vision-and-mission div.container .container h4 {
  background: linear-gradient(90deg, transparent 5%, #fff 100%);
  color: #00d48d;
  padding: 1.5rem;
  border-radius: 0 10px 55px 0%;
  margin: 1rem 0;
  display: block;
} /*# sourceMappingURL=main.css.map */
#what-is-gas {
  min-height: 100vh;
  background: #f7f9fa;
  position: relative;
  overflow: hidden;
}
#what-is-gas .background-overlay {
  position: absolute;
  bottom: -50rem;
  left: -35rem;
  width: 80rem;
}
#what-is-gas .background-overlay-en {
  position: absolute;
  bottom: -50rem;
  right: -35rem;
  width: 80rem;
}
#what-is-gas div.container {
  position: relative;
  z-index: 1;
}
#what-is-gas div.container.top {
  padding-top: 6rem;
}
#what-is-gas div.container .container .row {
  margin-top: 2rem;
}
@media (max-width: 992px) {
  #what-is-gas div.container .container .row {
    margin-top: 3rem;
  }
}
html:lang(en) #what-is-gas div.container .container ul li::marker {
  content: url("../../../assets/icons/Ellipse 3 en.png");
}
html:lang(ar) #what-is-gas div.container .container ul li::marker {
  content: url("../../../assets/icons/Ellipse 3.png");
}
#what-is-gas div.container .container ul li p {
  max-width: 50%;
  margin-top: 2rem;
}
#what-is-gas div.container .container h4 {
  background: linear-gradient(90deg, transparent 5%, #fff 100%);
  color: #00d48d;
  padding: 1.5rem;
  border-radius: 0 10px 55px 0%;
  margin: 1rem 0;
  display: block;
}

@media (max-width: 992px) {
  #what-is-gas div.container .container ul li p {
    max-width: 100%;
    margin-top: 0rem;
  }
}

#loacation-of-khazeen {
  min-height: 100vh;
  background: #f7f9fa;
  position: relative;
  overflow: hidden;
}
#loacation-of-khazeen .background-overlay {
  position: absolute;
  bottom: -50rem;
  left: -35rem;
  width: 80rem;
}
#loacation-of-khazeen .background-overlay-en {
  position: absolute;
  bottom: -50rem;
  right: -35rem;
  width: 80rem;
}
#loacation-of-khazeen div.container {
  position: relative;
  z-index: 1;
}
#loacation-of-khazeen div.container.top {
  padding-top: 6rem;
}
#loacation-of-khazeen div.container .container .row {
  margin-top: 2rem;
}
@media (max-width: 992px) {
  #loacation-of-khazeen div.container .container .row {
    margin-top: 1rem;
  }
}
#loacation-of-khazeen div.container .container ul li::marker {
  content: url("../../../assets/icons/map-marker.svg");
}
#loacation-of-khazeen div.container .container ul {
  display: flex;
  justify-content: space-between;
}
#loacation-of-khazeen div.container .container ul li p {
  max-width: 100%;
  margin-top: 2rem;
}
@media (max-width: 992px) {
  #loacation-of-khazeen div.container .container ul li p {
    max-width: 100%;
    margin-top: 0rem;
  }
  #loacation-of-khazeen div.container .container ul {
    display: block;
  }
}
#Gas-Cylinders-Products {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 70%, #d1f7ea 100%);
  position: relative;
  overflow: hidden;
}
#Gas-Cylinders-Products div.container {
  position: relative;
  z-index: 1;
}

#Gas-Cylinders-Products div.container.top {
  padding-top: 6rem;
}
#Gas-Cylinders-Products div.container.top .breadcrumb-item + .breadcrumb-item {
  color: #0077ff;
}
html:lang(ar)
  #Gas-Cylinders-Products
  div.container.top
  .breadcrumb-item
  + .breadcrumb-item::before {
  float: right;
  padding-left: var(--bs-breadcrumb-item-padding-x);
  color: #0077ff;
  content: var(--bs-breadcrumb-divider, ">");
}
html:lang(en)
  #Gas-Cylinders-Products
  div.container.top
  .breadcrumb-item
  + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: #0077ff;
  content: var(--bs-breadcrumb-divider, ">");
}
#Gas-Cylinders-Products div.container.top .card {
  background-color: rgb(238 238 238);
  width: 18rem;
  height: 100%;
}
#Gas-Cylinders-Products div.container.top .card img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}
#Gas-Cylinders-Products div.container.top .card .card-body .card-title {
  background-color: #ffff;
  border-radius: 15px;
  padding: 5px;
  font-size: 1rem;
}
#Gas-Cylinders-Products div.container .container .row {
  margin-top: 3rem;
}
@media (max-width: 992px) {
  #Gas-Cylinders-Products div.container .container .row {
    margin-top: 3rem;
  }
}
#Gas-Articles .container .row .doom {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../../../assets/icons/Ellipse 5.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 10rem;
  height: 100%;
}

#Gas-Articles {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 70%, #d1f7ea 100%);
  position: relative;
  overflow: hidden;
}
#Gas-Articles div.container {
  position: relative;
  z-index: 1;
}

#Gas-Articles div.container.top {
  padding-top: 6rem;
}
#Gas-Articles div.container.top .breadcrumb-item + .breadcrumb-item {
  color: #0077ff;
}
html:lang(ar)
  #Gas-Articles
  div.container.top
  .breadcrumb-item
  + .breadcrumb-item::before {
  float: right;
  padding-left: var(--bs-breadcrumb-item-padding-x);
  color: #0077ff;
  content: var(--bs-breadcrumb-divider, ">");
}
html:lang(en)
  #Gas-Articles
  div.container.top
  .breadcrumb-item
  + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: #0077ff;
  content: var(--bs-breadcrumb-divider, ">");
}

#Gas-Articles div.container .container .row ul li {
  background: linear-gradient(90deg, transparent 5%, #fff 100%);
  color: #00d48d;
  padding: 1.5rem;
  border-radius: 0 10px 55px 0%;
}

#Gas-Articles div.container .container .row ul li::marker {
  content: none;
}
#Gas-Articles div.container .container .row ul img {
  padding: 0px 10px 0px 10px;
  width: 35px;
}

#Gas-Articles div.container .container .row ul li a {
  text-decoration: underline;
  color: #00d48d;
}

#Gas-Articless div.container .container .row {
  margin-top: 3rem;
}
@media (max-width: 992px) {
  #Gas-Articles div.container .container .row {
    margin-top: 3rem;
  }
}
#Gas-Articles .container .row .doom {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../../../assets/icons/Ellipse 5.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 10rem;
  height: 100%;
}

footer {
  position: relative;
  height: 3rem;
  background: linear-gradient(0deg, transparent 5%, #d2f7ea 100%);
  color: #00d48d;
  text-align: center;
}
footer .brand-logo {
  width: 3rem;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
footer .fab .fa-linkedin {
  width: 3rem;
}
@media (max-width: 992px) {
  h1,
  .headline {
    font-family: "SuisseIntl-Bold" !important;
    font-size: 36px;
  }
  footer .brand-logo {
    bottom: 4rem;
  }
}
footer a {
  text-decoration: none;
  color: #384349;
}
footer a svg {
  max-width: 1.25rem;
  margin: 0 0.5rem;
}

.svg-inline--fa {
  vertical-align: -0.2em;
}

.rounded-social-buttons {
  text-align: center;
}

.rounded-social-buttons .social-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 3.125rem;
  height: 3.125rem;
  border: 0.125rem solid transparent;
  padding: 0;
  text-decoration: none;
  text-align: center;
  color: #fefefe;
  font-size: 1.5625rem;
  font-weight: normal;
  line-height: 2em;
  border-radius: 1.6875rem;
  transition: all 0.5s ease;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
}

.rounded-social-buttons .social-button:hover,
.rounded-social-buttons .social-button:focus {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.rounded-social-buttons .fa-twitter,
.fa-facebook-f,
.fa-linkedin,
.fa-tiktok,
.fa-youtube,
.fa-instagram {
  font-size: 25px;
}

.rounded-social-buttons .social-button.facebook {
  background: #fefefe;
}

.rounded-social-buttons .social-button.facebook:hover,
.rounded-social-buttons .social-button.facebook:focus {
  color: #3b5998;
  background: #fefefe;
  border-color: #fefefe;
}

.rounded-social-buttons .social-button.twitter {
  background: #fefefe;
}

.rounded-social-buttons .social-button.twitter:hover,
.rounded-social-buttons .social-button.twitter:focus {
  color: #55acee;
  background: #fefefe;
  border-color: #fefefe;
}

.rounded-social-buttons .social-button.linkedin {
  background: #007bb5;
}

.rounded-social-buttons .social-button.linkedin:hover,
.rounded-social-buttons .social-button.linkedin:focus {
  color: #007bb5;
  background: #fefefe;
  border-color: #007bb5;
}

.rounded-social-buttons .social-button.tiktok {
  background: #000000;
}

.rounded-social-buttons .social-button.tiktok:hover,
.rounded-social-buttons .social-button.tiktok:focus {
  color: #000000;
  background: #fefefe;
  border-color: #000000;
}

.rounded-social-buttons .social-button.youtube {
  background: #bb0000;
}

.rounded-social-buttons .social-button.youtube:hover,
.rounded-social-buttons .social-button.youtube:focus {
  color: #bb0000;
  background: #fefefe;
  border-color: #bb0000;
}

.rounded-social-buttons .social-button.instagram {
  background: #125688;
}

.rounded-social-buttons .social-button.instagram:hover,
.rounded-social-buttons .social-button.instagram:focus {
  color: #125688;
  background: #fefefe;
  border-color: #125688;
}

.w-md-65 {
  width: 65% !important;
}
@media (max-width: 992px) {
  .w-md-65 {
    width: 100% !important;
  }
}
.map__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.map-info__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: relative;
}

[dir="ltr"] .map-info__container i,
[dir="rtl"] .map-info__container i {
  color: white;
  font-size: 25px;
  line-height: 0;
  position: absolute;
  z-index: 10;
}

[dir="rtl"] .map-info__container i {
  left: -43px;
}

[dir="ltr"] .map-info__container i {
  right: -43px;
}

[dir="ltr"] .map-info__container .icon-effect,
[dir="rtl"] .map-info__container .icon-effect {
  box-sizing: border-box;
  border-style: solid;
  border-color: #00d48d;
  border-radius: 50%;
  animation: clickEffect;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  position: absolute;
  top: 7px;
  z-index: 5;
}

[dir="rtl"] .map-info__container .icon-effect {
  left: -30px;
}

[dir="ltr"] .map-info__container .icon-effect {
  right: -30px;
}

.map-info__title {
  color: #00d48d;
  font-size: 2rem;
  font-weight: 500;
}
.map-info__title {
  color: #00d48d;
  font-size: 2rem;
  font-weight: 500;
}

.map-info__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-light-sq {
  border: 3px solid rgba(255, 255, 255, 0.1);
  background: #7070a3;
}

.btn-light-sq:hover,
.btn-light-sq:focus,
.btn-light-sq:active {
  border: 3px solid rgba(255, 255, 255, 0.1) !important;
  background: #7070a3 !important;
}

@keyframes clickEffect {
  0% {
    opacity: 1;
    width: 0.5em;
    height: 0.5em;
    margin: -0.25em;
    border-width: 0.5em;
  }

  100% {
    opacity: 0.2;
    width: 7em;
    height: 7em;
    margin: -3.5em;
    border-width: 0.02em;
  }
}
.custom-map-control-button {
  border: 0px;
  background: rgb(255, 255, 255);
  cursor: pointer;
  border-radius: 2px;
  height: 40px;
  width: 40px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
  color: #666666;
  margin: 10px;
}

html:lang(en) .marker:before {
  content: url("../../../assets/icons/Ellipse 3 en.png");
}
html:lang(ar) .marker:before {
  content: url("../../../assets/icons/Ellipse 3.png");
}

.space-nowrap {
  white-space: nowrap;
}

html:lang(en) .dropdown-toggle::after {
  margin-left: .6em !important;
  margin-right: 0em !important;
}

html:lang(ar) .dropdown-toggle::after {
  margin-right: .6em !important;
}
#termsAndConditions {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 70%, #d1f7ea 100%);
  position: relative;
  overflow: hidden;
}
#termsAndConditions div.container {
  position: relative;
  z-index: 1;
}

#termsAndConditions div.container.top {
  padding-top: 6rem;
}
#termsAndConditions div.container.top .breadcrumb-item+.breadcrumb-item {
 
  color: #0077FF;
}
html:lang(ar) #termsAndConditions div.container.top .breadcrumb-item+.breadcrumb-item::before {
  float: right;
  padding-left: var(--bs-breadcrumb-item-padding-x);
  color: #0077FF;
  content: var(--bs-breadcrumb-divider, ">");
}
html:lang(en) #termsAndConditions div.container.top .breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: #0077FF;
  content: var(--bs-breadcrumb-divider, ">");
}

.title-paragraph  {
  background: linear-gradient(90deg, transparent 5%, #00d48d21 100%);
    color: #00D48D;
  padding: 1.5rem;
  border-radius: 0 10px 55px 0%;
}

.title-paragraph:dir(ltr) {
  background: linear-gradient(270deg, transparent 5%, #00d48d21 100%);
  border-radius: 10px 0 0 55px ;

}
@media (max-width: 992px) {
  .title-paragraph {
  font-size: 15px;
  }
}
#termsAndConditions  div.container .container .row ul li::marker {
  content: none;
}
 #termsAndConditions div.container .container .row ul img {
padding: 0px 10px 0px 10px;
width: 35px;

}

#termsAndConditions  div.container .container .row ul li a{
text-decoration: underline;
color: #00D48D;

}
  
#termsAndConditions div.container .container .row {
  margin-top: 1rem;
}

@media (max-width: 992px) {
  #termsAndConditions div.container .container .row {
    margin-top: 3rem;
  }
}
#termsAndConditions .container .row .doom {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../../../assets/icons/Ellipse 5.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 10rem;
  height: 100%;
}

#termsAndConditions .list-title {
  font-weight: 900;
  font-size: 16px;
}


#PrivacyPolicy {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 70%, #d1f7ea 100%);
  position: relative;
  overflow: hidden;
}
#PrivacyPolicy div.container {
  position: relative;
  z-index: 1;
}

#PrivacyPolicy div.container.top {
  padding-top: 6rem;
}
#PrivacyPolicy div.container.top .breadcrumb-item+.breadcrumb-item {
 
  color: #0077FF;
}
html:lang(ar) #PrivacyPolicy div.container.top .breadcrumb-item+.breadcrumb-item::before {
  float: right;
  padding-left: var(--bs-breadcrumb-item-padding-x);
  color: #0077FF;
  content: var(--bs-breadcrumb-divider, ">");
}
html:lang(en) #PrivacyPolicy div.container.top .breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: #0077FF;
  content: var(--bs-breadcrumb-divider, ">");
}

#PrivacyPolicy  div.container .container .row ul li::marker {
  content: none;
}
 #PrivacyPolicy div.container .container .row ul img {
padding: 0px 10px 0px 10px;
width: 35px;

}

#PrivacyPolicy  div.container .container .row ul li a{
text-decoration: underline;
color: #00D48D;

}
  
#PrivacyPolicy div.container .container .row {
  margin-top: 1rem;
}

@media (max-width: 992px) {
  #PrivacyPolicy div.container .container .row {
    margin-top: 3rem;
  }
}
#PrivacyPolicy .container .row .doom {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../../../assets/icons/Ellipse 5.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 10rem;
  height: 100%;
}

#PrivacyPolicy .list-title {
  font-weight: 900;
  font-size: 16px;
}


.store-parent {
  position: relative;
  width: 100%;
  top: 20%;
}
.store-pop {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
html:lang(en) .store-pop-dev {
  position: absolute;
  left: 55%;
  width: 54%;
  height: 68%;
  top: 10%;
}
html:lang(ar) .store-pop-dev {
  position: absolute;
  left: -5%;
  width: 54%;
  height: 68%;
  top: 10%;
}

@media screen and (min-width: 1400px) {
  .x-btn {
    position: relative;
    left: 66%;
    top: 27px;
    z-index: 2;
    background: transparent;
    border-radius: 100%;
    width: 21px;
    display: flex;
    height: 21px;
    justify-content: center;
    align-items: center;
    color: white;
    border-color: white;
  }
  html:lang(ar)  .x-btn {
    position: relative;
    z-index: 2;
    background: transparent;
    border-radius: 100%;
    width: 21px;
    display: flex;
    height: 21px;
    justify-content: center;
    align-items: center;
    color: white;
    border-color: white;
    left: auto;
    right: 65%;
    top: 29px;
  }
}

@media screen and (min-width: 1800px) {
  html:lang(en) .x-btn {
    position: relative;
    top: 25px;
    left: 32%;
    z-index: 2;
    background: transparent;
    border-radius: 100%;
    width: 21px;
    display: flex;
    height: 21px;
    justify-content: center;
    align-items: center;
    color: white;
    border-color: white;
  }
  html:lang(ar) .x-btn {
    position: relative;
    z-index: 2;
    background: transparent;
    border-radius: 100%;
    width: 21px;
    display: flex;
    height: 21px;
    justify-content: center;
    align-items: center;
    color: white;
    border-color: white;
    left: auto;
    right: 65%;
    top: 29px;
  }
}

.mt-12 {
  margin-top: 105px;
}

@media (max-width: 687px) {
  .x-btn {
    position: relative;
    left: 10%;
    top: 27px;
    z-index: 2;
    background: transparent;
    border-radius: 100%;
    width: 21px;
    display: flex;
    height: 21px;
    justify-content: center;
    align-items: center;
    color: white;
    border-color: white;
  }

  html:lang(ar) .store-pop-dev .x-btn {
    left: auto;
    right: 86%;
    top: 39px;
  }

  .html:lang(en) store-pop-dev .x-btn {
    left: 4%;
    top: 30px;
  }
  .mt-12 {
    margin-top: 140px;
    padding: auto 12px;
  }
  html:lang(en) .store-pop-dev {
    position: absolute;
    width: 84%;
    height: 75%;
    left: 50%;
    transform: translate(-50%, 0);
    right: auto;
  }
  html:lang(ar) .store-pop-dev {
    position: absolute;
    width: 84%;
    height: 75%;
    left: 50%;
    transform: translate(-50%, 0);
    right: auto;
  }
}

#khazeen-store {
  overflow: hidden;
}
.x-btn {
  position: relative !important;
}

/* Landscape mode for iPad */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  html:lang(en) .x-btn {
    position: relative;
    left: 12% !important;
    top: 27px;
    z-index: 2;
    background: transparent;
    border-radius: 100%;
    width: 21px;
    display: flex;
    height: 21px;
    justify-content: center;
    align-items: center;
    color: white;
    border-color: white;
  }
  html:lang(ar) .x-btn {
    position: relative;
    z-index: 2;
    background: transparent;
    border-radius: 100%;
    width: 21px;
    display: flex;
    height: 21px;
    justify-content: center;
    align-items: center;
    color: white;
    border-color: white;
    left: auto;
    right: 65%;
    top: 29px;
  }
}


#khazeen-store {
  min-height: 100vh;
  background: #f7f9fa;
  position: relative;
  overflow: hidden;
}
#khazeen-store .background-overlay {
  position: absolute;
  bottom: -50rem;
  left: -35rem;
  width: 80rem;
}
#khazeen-store .background-overlay-en {
  position: absolute;
  bottom: -50rem;
  right:-35rem;
  width: 80rem;
}
#khazeen-store div.container {
  position: relative;
  z-index: 1;
}
#khazeen-store div.container.top {
  padding-top: 6rem;
}
#khazeen-store div.container .container .row {
  margin-top: 2rem;
}
@media (max-width: 992px) {
  #khazeen-store div.container .container .row {
    margin-top: 1rem;
  }
}
html:lang(en) #khazeen-store div.container .container ul li::marker {
  content: url("../../../assets/icons/Ellipse 3 en.png");
}
html:lang(ar) #khazeen-store div.container .container ul li::marker {
  content: url("../../../assets/icons/Ellipse 3.png");
}
#khazeen-store div.container .container ul li p {
  max-width: 50%;
  margin-top: 2rem;
}
@media (max-width: 992px) {
  #khazeen-store div.container .container ul li p {
    max-width: 100%;
    margin-top: 0rem;
  }
}
/* Default button style */
.btn {
  margin: 5px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  
}

.btn-default {
  background-color: rgba(204, 204, 204, 1) !important;
  border: none !important;
  border-radius: 52px !important;
  padding: 15px !important;

}
/* Active button style */
.btn.active {
  background-color: rgba(0, 212, 141, 1)!important;
  color: white!important;
  border-color: rgba(0, 212, 141, 1)!important;
}

/* Icon style (hidden by default) */
.icon {
  margin-right: 8px!important;
  display: none!important; /* Hidden by default */
  font-size: 18px!important; /* Icon size */
}

/* Show the icon when the button is active */
.btn.active .icon {
  display: inline-block!important; /* Show icon when active */
}

html:lang(en) #khazeen-store .store-parent-new{
  background-image: url('/wwwroot/assets/icons/khazeen overlay.png');
  background-repeat: no-repeat;
}

html:lang(en) #khazeen-store .store-parent-new .x-btn-new{
  position: absolute;
  right: 9px;
  top: 35px;
  z-index: 2;
  background: transparent;
  border-radius: 100%;
  width: 21px;
  display: flex;
  height: 21px;
  justify-content: center;
  align-items: center;
  color: white;
  border-color: white;
}

html:lang(ar) #khazeen-store .store-parent-new{
  background-image: url('/wwwroot/assets/icons/khazeen overlay.png');
  background-repeat: no-repeat;
  background-position: right;
}

html:lang(ar) #khazeen-store .store-parent-new .x-btn-new{
  position: absolute;
  left: 15px;
  top: 35px;
  z-index: 2;
  background: transparent;
  border-radius: 100%;
  width: 21px;
  display: flex;
  height: 21px;
  justify-content: center;
  align-items: center;
  color: white;
  border-color: white;
}

#khazeen-store .store-parent-new .x-btn-new span{    
  margin-bottom: 3px;
}
button {
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #0056b3;
}
/* Popup Style */
#cookiePopup {
  position: fixed;
  bottom: 15px;
  right: 5%;
    width: 90%;
  background-color: #f7f9fa;;
  padding: 15px;
  display: none; /* Hidden by default */
  z-index: 9999;
  box-sizing: border-box;
    border-width: 2px;
    border-style: solid;
    border-color: rgba(170, 170, 170, 1);
    border-radius: 8px;
  line-height: 24px;
    /* height: 25%; */
}

#cookiePopup button {
  color: white;
  border: none;
  padding: 7px 20px;
  margin: 5px;
  cursor: pointer;
  font-size: 12px;
    border-radius: 2px;
    background-color: #0073f6;
}
 /* Styles for the manage preferences modal */
 #preferencesModal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  overflow-y: scroll;

}

#preferencesContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1000px;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  /* overflow-y: scroll; */
}

/* Left side: Tabs */
.tabs {
  width: 200px;
  border-right: 2px solid #ddd;

}

.tab-button {
  padding: 10px;
  background-color: #f1f1f1;;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  color: #3C3C3C;

}
html:lang(en) .tab-button{
  text-align: left;
}
html:lang(ar) .tab-button{
  text-align: right;
}

.tab-button:hover {
  background-color: #ddd;
}

.tab-button.active {
  background-color: #ffff;
  color: #3C3C3C;
  border-right: 5px solid #007bff;
}

/* Right side: Tab Content */
.tab-content {
  padding-left: 20px;
  width: calc(100% - 220px);
}

.tab-content div {
  display: none;
}


.tab-content div.active {
  div{
    display: block;

  }
  display: block;
}


/* Close button */
.close-modal {

  background-color: #ffffff;
  color: #b2b0b0;
  border: none;
  cursor: pointer;
}
/* Buttons at the bottom of the modal */
.footer-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;

}

.footer-buttons button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;


}
/* Mobile Responsiveness */
@media (max-width: 768px) {
  #preferencesContent {
    width: 90%;
    max-width: 90%;
    flex-direction: column; /* Stack content vertically on mobile */
  }

  /* Stack the tabs and content */
  .tabs {
    width: 100%; /* Tabs take full width on mobile */
    border-right: none;
    border-bottom: 2px solid #ddd; /* Add bottom border for separation */
    margin-bottom: 10px; /* Add margin for separation between tabs and content */
  }

  .tab-button {
    text-align: center; /* Center-align text in tabs */
    font-size: 14px; /* Make the text size a little smaller */
    padding: 12px; /* Increase padding for better touch targets */
  }

  .tab-content {
    padding-left: 0;
    width: 100%; /* Take full width */
    height: 170px;
    overflow-y: scroll;
  }

  .footer-buttons {
    flex-direction: column; /* Stack footer buttons vertically */
    margin-top: 15px;
  }

  .footer-buttons button {
    width: 100%; /* Make buttons take full width on mobile */
    margin-bottom: 10px; /* Add some space between buttons */
  }
}

/* Smaller screens (mobile portrait) */
@media (max-width: 480px) {
  .tab-button {
    font-size: 12px; /* Smaller text size for smaller screens */
  }

  .footer-buttons button {
    font-size: 14px; /* Slightly smaller buttons on very small screens */
  }
}
.always-active {
color:#007bff;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
#gas-price {
  min-height: 135vh;
    background: #f7f9fa;
  position: relative;
  overflow: hidden;
}

html[lang="ar"] #gas-price .background-overlay {
  width: 100%;
    height: 70%;
    position: absolute;
    background-image: url("../../icons/price_gas.jpg");
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-size: contain;     /* Ensure the image scales to fit the container */
    background-position: center;  /* Center the image in the container */
    -webkit-mask-repeat: no-repeat; /* For older webkit browsers, if using mask */
    mask-repeat: no-repeat;       /* For other browsers if using mask */
    -webkit-mask-size: contain;   /* For older webkit browsers, if using mask */
    mask-size: contain;           /* For other browsers if using mask */
}
html[lang="en"] #gas-price .background-overlay {
  width: 100%;
    height: 70%;
    position: absolute;
    background-image: url("../../icons/refill-priceEn.jpg");
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-size: contain;     /* Ensure the image scales to fit the container */
    background-position: center;  /* Center the image in the container */
    -webkit-mask-repeat: no-repeat; /* For older webkit browsers, if using mask */
    mask-repeat: no-repeat;       /* For other browsers if using mask */
    -webkit-mask-size: contain;   /* For older webkit browsers, if using mask */
    mask-size: contain;           /* For other browsers if using mask */
}

#gas-price div.container {
  position: relative;
  z-index: 1;
}
#gas-price div.container.top {
  padding-top: 6rem;
}
#gas-price div.container .container .row {
  margin-top: 2rem;
}
@media (max-width: 992px) {
  #gas-price div.container .container .row {
    margin-top: 3rem;
  }
}
html:lang(en) #gas-price div.container .container ul li::marker {
  content: url("../../../assets/icons/Ellipse 3 en.png");
}
html:lang(ar) #gas-price div.container .container ul li::marker {
  content: url("../../../assets/icons/Ellipse 3.png");
}
#gas-price div.container .container ul li p {
  max-width: 50%;
  margin-top: 2rem;
}
#gas-price div.container .container h4 {
  background: linear-gradient(90deg, transparent 5%, #fff 100%);
  color: #00d48d;
  padding: 1.5rem;
  border-radius: 0 10px 55px 0%;
  margin: 1rem 0;
  display: block;
}

@media (max-width: 992px) {
  #gas-price div.container .container ul li p {
    max-width: 100%;
    margin-top: 0rem;
  }
}