/**
 * Set up a decent box model on the root element
 */
 html {
  box-sizing: border-box;
  direction: rtl;
}

html, body {
  height: 100%;
  background: #f7f9fa;
}

:root {
  --primary: #000ABF;
}

/**
 * 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;
  font-weight: bold;
}

.txt-left-align {
  text-align: -webkit- left;
}

input {
  border: 1px solid #000ABF;
  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: #732EBC !important;
  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-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;
}
.margin-top {
  margin-top: 155px;
}
@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\00a0";
  font-family: 'saudi_riyal' !important;
  font-size: inherit;
  color: inherit;
}

/* When page or parent has dir="ltr" (e.g., English) */
:dir(ltr) .icon-saudi_riyal::before {
  content: none; /* remove the before icon */
}

:dir(ltr) .icon-saudi_riyal::after {
  content: "\00a0\e900"; /* space + icon after */
  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 body text */
body {
  font-family: "SuisseIntl-Regular" !important;
}

p {
  color: #384349;
}

.headline {
  color: #000ABF!important;
}

.sub-headline {
  color: #732EBC !important;;
}

.form-control {
  color: #384349 !important;
}
.headline-40{
  font-size: 40px;
    color: #000ABF !important;;

}
/**
 * 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#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^=our-values], nav[data-anchor^=what-do-we-do]
, nav[data-anchor^=about-tazweed], nav[data-anchor^=objectives], nav[data-anchor^=safty],
nav[data-anchor^=achievements] ,nav[data-anchor^=our-branches] ,nav[data-anchor^=our-partners]
, nav[data-anchor^=digital-transformation],nav[data-anchor^=tazweed-apart]
, nav[data-anchor^=terms-and-conditions], nav[data-anchor^=jazan-campaign-terms],
 nav[data-anchor^=how-can-we-help-you], nav[data-anchor^=Our-Mobile-Application] , nav[data-anchor^=refilling-price]{
  -webkit-backdrop-filter: blur(100px);
          backdrop-filter: blur(100px);
}

nav[data-anchor^=image-slider] img {
   filter: brightness(0) invert(1); 
}
  /* Apply styles to links and buttons within the nav with data-anchor starting with 'image-slider' */
  nav[data-anchor^="image-slider"] a,
  nav[data-anchor^="image-slider"] button {
      color: #f7f9fa !important; 
      opacity: 0.7; 
  }

  /* Apply styles to dropdown menu items within the nav with data-anchor starting with 'image-slider' */
  nav[data-anchor^="image-slider"]  .dropdown-menu a {
      text-align: justify;
      color: #384349  !important;
      background: #ffff !important;
  }
  nav[data-anchor^="image-slider"]  .dropdown-menu a:hover {
    text-align: justify;
    color: #384349  !important;
   font-weight: bold;

}

.navbar .dropdown-menu{
  text-align: justify;
  color: #384349 !important;
    -webkit-overflow-scrolling: touch;

}

footer {
  position: relative;
  height: 4rem;
  /* background: linear-gradient(180deg, #eaeaf8 95%, #f7f9fa 100%); */
  text-align: center;
}
footer.background {
  background: linear-gradient(180deg, #eaeaf8 95%, #f7f9fa 100%);
}
footer .brand-logo {
  position: absolute;
    bottom: -4rem;
    left: 2rem;
    width: 3rem;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
@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;
}

#image-slider {
  max-height: 100vh;
}
#image-slider .carousel-item {
  position: relative;
}
#image-slider .carousel-item img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 100vh;
  /* -o-object-position: 0 -5rem;
     object-position: 0 -5rem; */
  z-index: -1 !important;
}
#image-slider .carousel-item .detail-box {
  position: absolute;
  z-index: 1000000;
}
#coming-soon {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 0%, #eaeaf8 95%, #f7f9fa 100%);
  position: relative;
  overflow: hidden;
}
#coming-soon .background-overlay {
  position: absolute;
  bottom: -7rem;
  left: 0;
  right: 0;
  width: 100rem;
}
#coming-soon div.container {
  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 .container .row {
  margin-top: 6rem;
}
@media (max-width: 992px) {
  #coming-soon div.container .container .row {
    margin-top: 3rem;
  }
}
#coming-soon div.container .container p {
  max-width: 50%;
}
@media (max-width: 992px) {
  #coming-soon div.container .container p {
    max-width: 100%;
  }
  #coming-soon div.container {
   
    margin-top: 40%;
    
  
  }
}
#safty {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 0%, #eaeaf8 95%, #f7f9fa 100%);
  position: relative;
  overflow: hidden;
}
#safty .background-overlay {
  position: absolute;
  bottom: -7rem;
  left: 0;
  right: 0;
  width: 100rem;
}
#safty div.container {
  position: relative;
  z-index: 1;
}
#safty div.container.top {
  padding-top: 6rem;
}
#safty div.container .container .row {
  margin-top: 6rem;
}
@media (max-width: 992px) {
  #safty div.container .container .row {
    margin-top: 3rem;
  }
}
#about-tazweed {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 0%, #eaeaf8 95%, #f7f9fa 100%);
  position: relative;
  overflow: hidden;
}
#about-tazweed .background-overlay {
  position: absolute;
  bottom: -7rem;
  left: 0;
  right: 0;
  width: 100rem;
}
#about-tazweed div.container {
  position: relative;
  z-index: 1;
}
#about-tazweed div.container.top {
  padding-top: 6rem;
}
#about-tazweed div.container .container .row {
  margin-top: 6rem;
}
@media (max-width: 992px) {
  #about-tazweed div.container .container .row {
    margin-top: 3rem;
  }
}
#vision-and-mission div.container .container p {
  max-width: 50%;
}
@media (max-width: 992px) {
  #about-tazweed div.container .container p {
    max-width: 100%;
  }
}



#vision-and-mission {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 0%, #eaeaf8 95%, #f7f9fa 100%);
  position: relative;
  overflow: hidden;
}
#vision-and-mission .background-overlay {
  position: absolute;
  bottom: -7rem;
  left: 0;
  right: 0;
  width: 100rem;
}
#vision-and-mission div.container {
  position: relative;
  z-index: 1;
}
#vision-and-mission div.container.top {
  padding-top: 6rem;
}
#vision-and-mission div.container .container .row {
  margin-top: 6rem;
}
@media (max-width: 992px) {
  #vision-and-mission div.container .container .row {
    margin-top: 3rem;
  }
}
#vision-and-mission div.container .container p {
  max-width: 50%;
}
@media (max-width: 992px) {
  #vision-and-mission div.container .container p {
    max-width: 100%;
  }
}

#what-do-we-do {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 0%, #eaeaf8 95%, #f7f9fa 100%);
  position: relative;
  overflow: hidden;
}
#what-do-we-do .background-overlay {
  position: absolute;
  bottom: -10rem;
  left: -10rem;
  width: 42rem;
  height: 42rem;
  background-color: #f7f9fa;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url("../../../assets/icons/Tazweed (3).png");
  mask-image: url("../../../assets/icons/Tazweed (3).png");
}
#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: 6rem;
}
@media (max-width: 992px) {
  #what-do-we-do div.container .container .row {
    margin-top: 3rem;
  }
}
#what-do-we-do div.container .container .row:first-child {
  margin-top: 3rem;
}
#what-do-we-do div.container .container ul li::marker {
  color: #732EBC;
  font-size: 2rem;
}
#what-do-we-do div.container .container ul li p {
  max-width: 65%;
}
@media (max-width: 992px) {
  #what-do-we-do div.container .container ul li p {
    max-width: 100%;
  }
}
#what-do-we-do div.container .container .tanks {
  max-width: 30%;
}
@media (max-width: 992px) {
  #what-do-we-do div.container .container .tanks {
    max-width: 100%;
  }
}

#our-values {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 0%, #eaeaf8 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  #our-values {
    padding-bottom: 5rem;
  }
}
#our-values div.container.top {
  padding-top: 6rem;
}
#our-values div.container .container .row {
  margin-top: 3vh;
}
@media (max-width: 992px) {
  #our-values div.container .container .row {
    margin-top: 0rem;
  }
  #our-values div.container .container .row:first-child {
    margin-top: 3rem;
  }
}
#our-values div.container .container h4 {
  background: linear-gradient(90deg, transparent 5%, #dbdcf6 100%);
  color: #732EBC;
  padding: 1.5rem;
  border-radius: 55px;
  margin: 1rem 0;
  display: block;
}
#objectives {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 0%, #eaeaf8 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  #objectives {
    padding-bottom: 5rem;
  }
}
#objectives div.container.top {
  padding-top: 6rem;
}
#objectives div.container .container .row {
  margin-top: 3vh;
}
@media (max-width: 992px) {
  #objectives div.container .container .row {
    margin-top: 0rem;
  }
  #objectives div.container .container .row:first-child {
    margin-top: 3rem;
  }
}
#objectives div.container .container div div  {
  background: linear-gradient(90deg, transparent 5%, #dbdcf6 100%);
  color: #732EBC;
  padding: 1.5rem;
  border-radius: 55px;
  margin: 1rem 0;
  display: block;
  text-align: center;
  border: none;
}
#objectives div.container .container div div p  {
  color: #732EBC;
  white-space: pre-line;
}
#tazweed-apart {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 0%, #eaeaf8 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  #tazweed-apart {
    padding-bottom: 5rem;
  }
}
#tazweed-apart div.container.top {
  padding-top: 6rem;
}
#tazweed-apart div.container .container .row {
  margin-top: 3vh;
}
@media (max-width: 992px) {
  #tazweed-apart div.container .container .row {
    margin-top: 0rem;
  }
  #tazweed-apart div.container .container .row:first-child {
    margin-top: 3rem;
  }
}
#tazweed-apart div.container .container div div  {
  background: #732EBC;
  color: #732EBC;
  padding: 1.5rem;
  border-radius: 55px;
  margin: 1rem 0 0 1rem;
  display: block;
  text-align: center;
  border: none;
}
#tazweed-apart div.container .container div div p  {
  color: #f7f9fa;
  white-space: pre-line;
}


#digital-transformation {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 0%, #eaeaf8 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  #digital-transformation {
    padding-bottom: 5rem;
  }
}
#digital-transformation div.container.top {
  padding-top: 6rem;
}
#digital-transformation div.container .container .row {
  margin-top: 3vh;
}
@media (max-width: 992px) {
  #digital-transformation div.container .container .row {
    margin-top: 0rem;
  }
  #digital-transformation div.container .container .row:first-child {
    margin-top: 3rem;
  }
}



#terms-and-conditions {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 0%, #eaeaf8 100%);
  position: relative;
  overflow: hidden;
}
#jazan-campaign-terms {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 0%, #eaeaf8 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  #terms-and-conditions {
    padding-bottom: 5rem;
  }
  #jazan-campaign-terms {
    padding-bottom: 5rem;
  }
}
#terms-and-conditions .brand-logo {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: 3rem;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
#terms-and-conditions div.container.top {
  padding-top: 6rem;
}
#jazan-campaign-terms div.container.top {
  padding-top: 6rem;
}
#terms-and-conditions div.container .container .row {
  margin-top: 3vh;
}
#jazan-campaign-terms div.container .container .row {
  margin-top: 3vh;
}
@media (max-width: 992px) {
  #terms-and-conditions div.container .container .row {
    margin-top: 0rem;
  }
  #terms-and-conditions div.container .container .row:first-child {
    margin-top: 3rem;
  }
  #jazan-campaign-terms div.container .container .row {
    margin-top: 0rem;
  }
  #jazan-campaign-terms div.container .container .row:first-child {
    margin-top: 3rem;
  }
}
#terms-and-conditions div.container .container.bottom {
  margin-bottom: 8vh;
}
#jazan-campaign-terms div.container .container.bottom {
  margin-bottom: 8vh;
}
@media (max-width: 992px) {
  #terms-and-conditions div.container .container.bottom {
    margin-bottom: 0vh;
  }
  #terms-and-conditions div.container .container h4 {
    
   font-size: 15px;

  }
  #jazan-campaign-terms div.container .container.bottom {
    margin-bottom: 0vh;
  }
  #jazan-campaign-terms div.container .container h4 {
    
   font-size: 15px;

  }
}
html:lang(ar)  #terms-and-conditions div.container .container h4 {
  background: linear-gradient(90deg, transparent 5%, #dbdcf6 100%);
  color: #732EBC !important;
  padding: 1.5rem;
  border-radius: 55px;
  margin: 1rem 0;
  display: block;
}
html:lang(en)  #terms-and-conditions div.container .container h4 {
  background: linear-gradient(270deg, transparent 5%, #dbdcf6 100%);
  color: #732EBC !important;
  padding: 1.5rem;
  border-radius: 55px;
  margin: 1rem 0;
  display: block;
}
#terms-and-conditions div.container .container .card-body {
  margin: 0 2rem;
}
#terms-and-conditions div.container .container .card-body .table tr,
#terms-and-conditions div.container .container .card-body .table th,
#terms-and-conditions div.container .container .card-body .table td {
  background: transparent;
}
#terms-and-conditions .list-title {
  font-weight: 900;
  font-size: 16px;
  color: #0000ff !important;
}
#how-can-we-help-you {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 0%, #eaeaf8 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  #how-can-we-help-you {
    padding-bottom: 5rem;
  }
}
#how-can-we-help-you .brand-logo {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: 3rem;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
#how-can-we-help-you div.container.top {
  padding-top: 6rem;
}
#how-can-we-help-you div.container .container .row {
  margin-top: 3vh;
}
@media (max-width: 992px) {
  #how-can-we-help-you div.container .container .row {
    margin-top: 0rem;
  }
  #how-can-we-help-you div.container .container .row:first-child {
    margin-top: 3rem;
  }
}
#how-can-we-help-you div.container .container.bottom {
  margin-bottom: 15vh;
}
@media (max-width: 992px) {
  #how-can-we-help-you div.container .container.bottom {
    margin-bottom: 0vh;
  }
}
#how-can-we-help-you div.container .container button {
  background: linear-gradient(90deg, #dbdcf6 0%, #e5e6f1 25%, #dbdcf6 50%, #e5e6f1 75%, #dbdcf6 100%);
  color: #732EBC;
  border-radius: var(--bs-border-radius);
}/*# sourceMappingURL=main.css.map */


#our-branches {
  min-height: 100vh;
  background: #f7f9fa;
  position: relative;
  overflow: hidden;
}

#our-branches div.container {
  position: relative;
  z-index: 1;
}
#our-branches div.container.top {
  padding-top: 6rem;
}
#our-branches div.container .container .row {
  margin-top: 2rem;
}
@media (max-width: 992px) {
  #our-branches div.container .container .row {
    margin-top: 1rem;
  }
}
#our-branches div.container .container ul li::marker {
  content: url("../../../assets/icons/map-marker.svg");
}
#our-branches div.container .container ul   {
/* display: flex; */
justify-content: space-between;
}
#our-branches div.container .container ul li p {
  max-width: 50%;
  margin-top: 2rem;
}
@media (max-width: 992px) {
  #our-branches div.container .container ul li p {
    max-width: 100%;
    margin-top: 0rem;
  }
  #our-branches div.container .container ul   {
    display: block;

    }
}


#our-partners {
  min-height: 100vh;
  background: #f7f9fa;
  position: relative;
  overflow: hidden;
}

#our-partners div.container {
  position: relative;
  z-index: 1;
}
#our-partners div.container.top {
  padding-top: 6rem;
}
#our-partners div.container .container .row {
  margin-top: 2rem;
}
@media (max-width: 992px) {
  #our-partners div.container .container .row {
    margin-top: 1rem;
  }
}
#our-partners div.container .container ul li::marker {
  content: url("../../../assets/icons/map-marker.svg");
}
#our-partners div.container .container ul   {
/* display: flex; */
justify-content: space-between;
}
#our-partners div.container .container ul li p {
  max-width: 50%;
  margin-top: 2rem;
}
@media (max-width: 992px) {
  #our-partners div.container .container ul li p {
    max-width: 100%;
    margin-top: 0rem;
  }
  #our-partners div.container .container ul   {
    display: block;

    }
}
#achievements {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 0%, #eaeaf8 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  #achievements {
    padding-bottom: 5rem;
  }
}
#achievements div.container.top {
  padding-top: 6rem;
}
#achievements div.container .container .row {
  margin-top: 3vh;
}
@media (max-width: 992px) {
  #achievements div.container .container .row {
    margin-top: 0rem;
  }
  #achievements div.container .container .row:first-child {
    margin-top: 3rem;
  }
}
#achievements div.container .container div div  {
  background: #732EBC;
  color: #732EBC;
  padding: 1.5rem;
  border-radius: 55px;
  margin: 1rem 0 0 1rem;
  display: block;
  text-align: center;
  border: none;
}
#achievements div.container .container div div h1  {
  direction: ltr;
  color: #ffff;
}
#achievements div.container .container div div .card  {
  background: #ffff;
  color: #732EBC;
  height: 80%;

}
#achievements div.container .container div div .card div {
  background: #ffff;
  color: #732EBC;

}
#achievements div.container .container div div .card p   {

  color: #732EBC;
}
.dropdown-item.active, .dropdown-item:active:hover {
  color: #384349 !important;
  text-decoration: none;
  background-color: #ffffff !important;
}


img.logo{
  height: 10rem;
}

.w-md-65 {
  width: 65% !important;
}
[type=email], [type=number], [type=tel], [type=url] {
   direction: inherit!important; 
}
#Our-Mobile-Application {
  min-height: 70vh;
  background: #732EBC;
  position: relative;
  overflow: hidden;

}
#Our-Mobile-Application .background-overlay {
  position: absolute;
  bottom: -10rem;
  left: -10rem;
  width: 42rem;
  height: 42rem;
  background-color: #f7f9fa;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url("../../../assets/icons/Logo-BG.png");
  mask-image: url("../../../assets/icons/Logo-BG.png");
}
@media (max-width: 992px) {
  #Our-Mobile-Application {
    padding-bottom: 5rem;
  }
}
#Our-Mobile-Application div.container.top {
  padding-top: 6rem;
}
#Our-Mobile-Application div.container .container .row {
  margin-top: 3vh;
}
@media (max-width: 992px) {
  #Our-Mobile-Application div.container .container .row {
    margin-top: 0rem;
  }
  #Our-Mobile-Application div.container .container div div .onMobile {
display: flex;
justify-content: center;  }
  
}
#Our-Mobile-Application div.container .container div div  {
  /* background: #732EBC;
  color: #732EBC; */
  /* padding: 1.5rem;
  margin: 1rem 0 0 1rem;
  display: block;
  /* //text-align: center; */
  border: none;
}
#Our-Mobile-Application div.container  h1  {
  padding: 1rem;
  color: #ffff!important;
}
#Our-Mobile-Application div.container  h3  {
  color: #ffff !important;
}
#Our-Mobile-Application div.container .container div div h1  {
  direction: ltr;
  color: #ffff!important;
}
#refilling-price {
  min-height: 125vh;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f9fa 0%, #eaeaf8 100%);

  position: relative;
}
#refilling-price .background-overlay {
  /* Responsive image canvas (image is square 1080x1080) */
  width: 100%;
  /* Prevent the banner from appearing larger than before on wide screens */
  max-width: min(100%, 100vh);
  margin: 0 auto;
  aspect-ratio: 1 / 1;

  position: relative;
  background-image: url("../../../assets/icons/refilingPrice-blank.png");
  background-repeat: no-repeat; /* Prevent the image from repeating */
  background-size: contain;     /* Scales with the canvas */
  background-position: center;  /* Center the image in the container */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* Make overlay positioning relative to the image canvas */
#refilling-price #dynamic-price-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Dynamic price overlay */
#refilling-price .dynamic-price-overlay { 
  position: absolute;
  padding: 0.3rem 2.5rem;
  font-size: 3rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -29%);
  display: flex;
  align-items: center;
  color: white;
  z-index: 10;
  border-radius: 9999px;
  pointer-events: none;
}

/* Title and Subtitle styles */
#refilling-price .dynamic-title {
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
  width: min(90%, 44rem);
  padding: 0.6rem 1rem;
  border-radius: 18px;
  text-align: center;
}

@media (max-width: 768px) {
  #refilling-price .dynamic-title {
    width: min(92%, 44rem);
  }
}

#refilling-price .dynamic-title h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.9rem);
  line-height: 1.2;
  text-align: center;
  color: white !important;
  white-space: normal;
}

#refilling-price .dynamic-title h4 {
  margin: 0.35rem 0 0;
  font-size: clamp(0.85rem, 1.6vw, 1.25rem);
  line-height: 1.25;
  text-align: center;
  color: white !important;
  white-space: normal;
}

@media (max-width: 650px) {
  #refilling-price .dynamic-price-overlay {
    padding: 0rem 2.5rem;
    font-size: 2rem;
  }
}

#refilling-price div.container.top {
  padding-top: 6rem;
}
#refilling-price div.container .container .row {
  margin-top: 3vh;
}
@media (max-width: 992px) {
  #refilling-price div.container .container .row {
    margin-top: 0rem;
  }
}


@media (max-width: 992px) {
  #image-slider .carousel-item img  {
    margin-top: 60px!important;
    object-position: 0 -2rem;

  }
  .w-md-65 {
    width: 100% !important;
  }
  /* Media query for mobile devices */
@media (max-width: 767px) {
  #image-slider .carousel-item img  {
    margin-top: 60px!important;
    object-position: 0 -2rem;

  }
  /* Adjustments for mobile view */
  /* Adjustments for mobile view */
  .m-TopMobilemode{
    margin-top: 5rem;
}
html[lang="en"]  .navbar-toggler {
    /* Apply specific styles for the toggle button in mobile mode */
    /* For example, you can use margin-left to move the toggle button to the left */
    margin-right: 2rem !important;
    background-color: #ffffff!important;

}
html[lang="ar"] .navbar-toggler {
  /* Apply specific styles for the toggle button in mobile mode */
  /* For example, you can use margin-left to move the toggle button to the left */
  background-color: #ffffff!important;;

  margin-left: 3rem !important;
}
 
  nav[data-anchor^=image-slider] a,
nav[data-anchor^=image-slider] button {
  color: #384349 !important;
   opacity: 0.7; 
}
nav[data-anchor^=image-slider] img {
  filter: brightness(0) invert(1); 
}
nav[data-anchor^=image-slider] .BetaVersion {
 background: none !important;
 filter: brightness(0) invert(1); 

}
nav[data-anchor^=vision-and-mission], nav[data-anchor^=our-values], nav[data-anchor^=what-do-we-do]
, nav[data-anchor^=about-tazweed], nav[data-anchor^=objectives], nav[data-anchor^=safty],
nav[data-anchor^=achievements] ,nav[data-anchor^=our-branches] ,nav[data-anchor^=our-partners]
, nav[data-anchor^=digital-transformation],nav[data-anchor^=tazweed-apart]
, nav[data-anchor^=terms-and-conditions], nav[data-anchor^=jazan-campaign-terms], nav[data-anchor^=how-can-we-help-you], nav[data-anchor^=Our-Mobile-Application],nav[data-anchor^=refilling-price]  {
  -webkit-backdrop-filter: blur(100px);
          backdrop-filter: blur(100px);
}
nav[data-anchor^=vision-and-mission] .BetaVersion , nav[data-anchor^=our-values] .BetaVersion , nav[data-anchor^=what-do-we-do] .BetaVersion 
, nav[data-anchor^=about-tazweed] .BetaVersion , nav[data-anchor^=objectives] .BetaVersion , nav[data-anchor^=safty] .BetaVersion ,
nav[data-anchor^=achievements] .BetaVersion  ,nav[data-anchor^=our-branches] .BetaVersion  ,nav[data-anchor^=our-partners] .BetaVersion 
, nav[data-anchor^=digital-transformation] .BetaVersion ,nav[data-anchor^=tazweed-apart] .BetaVersion 
, nav[data-anchor^=terms-and-conditions] .BetaVersion , nav[data-anchor^=jazan-campaign-terms] .BetaVersion , nav[data-anchor^=how-can-we-help-you] .BetaVersion ,
 nav[data-anchor^=Our-Mobile-Application] .BetaVersion , nav[data-anchor^=refilling-price]  .BetaVersion  {

 background: none !important;;
}
}

@media (max-width: 1024px)   {
  #image-slider .carousel-item img  {
    margin-top: 60px!important;
    object-position: 0 -2rem;

  }
  /* Adjustments for mobile view */
  .m-TopMobilemode{
      margin-top: 5rem;
  }
  #tazweed-apart div.container.top {
    padding-top: 0rem;
}
 
.navbar-toggler {
    /* Apply specific styles for the toggle button in mobile mode */
    /* For example, you can use margin-left to move the toggle button to the left */
    margin-right: 2rem !important;
}
.navbar-nav{
  background-color: #f7f9fa;
  
}

nav[data-anchor^=image-slider] a,
nav[data-anchor^=image-slider] button {
color: #384349 !important;
 opacity: 0.7; 
}
nav[data-anchor^=image-slider] img {
filter: none 
}
nav[data-anchor^=image-slider] .BetaVersion {
background: none !important;
filter: none; 

}
.navbar {
  background-color: #ffffff;

}
nav[data-anchor^=vision-and-mission], nav[data-anchor^=our-values], nav[data-anchor^=what-do-we-do]
, nav[data-anchor^=about-tazweed], nav[data-anchor^=objectives], nav[data-anchor^=safty],
nav[data-anchor^=achievements] ,nav[data-anchor^=our-branches] ,nav[data-anchor^=our-partners]
, nav[data-anchor^=digital-transformation],nav[data-anchor^=tazweed-apart]
, nav[data-anchor^=terms-and-conditions], nav[data-anchor^=jazan-campaign-terms], nav[data-anchor^=how-can-we-help-you], nav[data-anchor^=Our-Mobile-Application]  {
-webkit-backdrop-filter: blur(100px);
        backdrop-filter: blur(100px);
        
}


}


}
 /* 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;
}

#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;
}

/* 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
}

/* 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;
  background-color: #007bff;
  color: white;
  border-radius: 2px;
  border: none;

}
/* 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%;
}
.tank-notes {
  background-color: #e5e6f9;
  border: 1px solid #c4d7ff;
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.tank-notes p {
  margin: 0 0 0.5rem 0;
    color: #020cbf !important;

}
  .hidden {
    display: none!important;
  }
  #labibaWebBotDiv,
#labibaWebBotDiv * {
  z-index: 100 !important;
}
.table-info {
  --bs-table-bg: #dbdcf6 !important;
  --bs-table-striped-bg: #dbdcf6!important;
}
.background-overlay-nationalDay {
    width: 609px !important;
    height: 642px;        /* For other browsers if using mask */
}
.table-info-sub{
    --bs-table-bg: #f0f1f9 !important;

}
.table > :not(caption) > * > * {
  padding: 1rem 0.5rem!important;
  
}
body.national-day-active nav[data-anchor^=image-slider],
body.national-day-active nav[data-anchor^=image-slider] * {
    color: #384349 !important;
    opacity: 1;
    background-color: #ffff!important;
}

body.national-day-active nav[data-anchor^=image-slider] img {
  filter: brightness(1) invert(0);
}


.carousel-indicators [data-bs-target] {
 
    background-color: #9b9b9b !important;
 
}
body.national-day-active .carousel {
  margin-top: 80px; /* نفس ارتفاع الهيدر */
}
@media (max-width: 992px) {
body.national-day-active .carousel .carousel-item img  {
    margin-top: 60px!important;
    object-position: 0 0rem!important;

  }
  .w-md-65 {
    width: 100% !important;
  }
}
  /* Media query for mobile devices */
@media (max-width: 767px) {
body.national-day-active .carousel.carousel-item img  {
    margin-top: 60px!important;
    object-position: 0 -1rem!important;

  }
}
#recruitment, #recruitment-success-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 0%, #eaeaf8 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  #recruitment ,#recruitment-success-page{
    padding-bottom: 5rem;
  }
}
#recruitment .brand-logo {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: 3rem;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
#recruitment div.container.top {
  padding-top: 6rem;
}
#recruitment div.container .container .row {
  margin-top: 3vh;
}
@media (max-width: 992px) {
  #recruitment div.container .container .row {
    margin-top: 0rem;
  }
  #recruitment div.container .container .row:first-child {
    margin-top: 3rem;
  }
}
#recruitment div.container .container.bottom {
  margin-bottom: 15vh;
}
@media (max-width: 992px) {
  #recruitment div.container .container.bottom {
    margin-bottom: 0vh;
  }
}
#recruitment div.container .container button {
  background: linear-gradient(90deg, #dbdcf6 0%, #e5e6f1 25%, #dbdcf6 50%, #e5e6f1 75%, #dbdcf6 100%);
  color: #732EBC;
  border-radius: var(--bs-border-radius);
}/*# sourceMappingURL=main.css.map */
#recruitment-success-page{
   min-height: 100vh;
  background: linear-gradient(180deg, #f7f9fa 0%, #eaeaf8 100%);
  position: relative;
  overflow: hidden;

}
#recruitment-success-page div.container.top {
  padding-top: 6rem;
}
#recruitment-success-page .check-icon {

  color: #0d6efd; /* أزرق */
  animation: scaleUp 0.5s ease-in-out;
}

@keyframes scaleUp {
  from {
    transform: scale(0.5);
    opacity: 0.5;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.file-upload {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  background: #fff;
}

.file-label:hover {
  border-color: #6c63ff;
}

.upload-icon {
  font-size: 20px;
  color: #333333;
}

#cv {
  display: none; /* نخفي input الأصلي */
}
#file-text {
  color: #555;
}
.hint {
  font-size: 0.9rem;
  color: #555;
}
.spinner-overlay {
  position: fixed;        /* يغطي الشاشة كلها */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;          /* نستخدم flexbox */
  justify-content: center;/* بالنص أفقياً */
  align-items: center;    /* بالنص عمودياً */
  background: rgba(255, 255, 255, 0.7); /* شفاف خفيف */
  z-index: 9999;          /* فوق كل العناصر */
}
.invalid-feedback {
  color: red;
  font-size: 0.875em;
  display: none;
  margin-top: 5px;
}
.is-invalid ~ .invalid-feedback {
  display: block;
}
.accessibility-tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.accessibility-tools button {
  background-color: #333;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s;
}

.accessibility-tools button:hover {
  background-color: #555;
  transform: scale(1.1);
}

.accessibility-label {
  font-weight: bold;
  color: #333;
  font-size: 14px;
}

body.dark-mode {
  background-color: #222;
}
body.dark-mode, 
body.dark-mode #Our-Mobile-Application {
  background-color: #222 !important;
}

body.dark-mode #Our-Mobile-Application h1,h2,h3,h4,h5,h6{
  color: #f5f5f5 !important;

}
body.dark-mode  #tazweed-apart div.container .container div div {
  background-color: #222 !important;
}
body.dark-mode  #achievements div.container .container div div {
  background-color: #222 !important;
}

body.dark-mode  #achievements div.container .container div div .card {
    background: #ffff !important;
    color: #732EBC;
    height: 80%;
}
body.dark-mode  #achievements div.container .container div div h1{
color: #ffff !important;
}
body.dark-mode h1,h2,h3,h4,h5,h6 {
  color: #333333 !important;
}
body.dark-mode #cookiePopup button {
  color: white;
 background-color: #222 !important;

}
body.dark-mode #cookiePopup  a {
   color: #333333 !important;
   font-weight: bold;
}
body.dark-mode #how-can-we-help-you label.form-label {
  color: #333333 !important;
}
body.dark-mode #how-can-we-help-you .headline {
  color: #333333 !important;
}
body.dark-mode #how-can-we-help-you .sub-headline {
  color: #333333 !important;
}
body.dark-mode #how-can-we-help-you div.container .container button {
  color: white;
background: #222 !important;
}
body.dark-mode  #terms-and-conditions div.container .container h4 {
    color: #333333 !important;

}
body.dark-mode  #jazan-campaign-terms div.container .container h2,
body.dark-mode  #jazan-campaign-terms div.container .container h4 {
    color: #333333 !important;

}
body.dark-mode #terms-and-conditions  a {
   color: #333333 !important;
}
body.dark-mode #jazan-campaign-terms  a {
   color: #333333 !important;
}
body.dark-mode #terms-and-conditions .list-title {
   color: #333333 !important;

}
body.dark-mode #jazan-campaign-terms .list-title {
   color: #333333 !important;

}
body.dark-mode #what-do-we-do .sub-headline {
  color: #333333 !important;
}
body.dark-mode #what-do-we-do div.container .container ul li::marker {
  color: #333333 !important;
}
body.dark-mode #objectives div.container .container div div p{
  color: #333333 !important;

}
body.dark-mode #safty .sub-headline {
  color: #333333 !important;
}
body.dark-mode #about-tazweed .headline  {
  color: #333333 !important;
}
body.dark-mode #vision-and-mission .sub-headline {
  color: #333333 !important;
}

/* ✅ تخصيص وضع الموبايل فقط */
@media (max-width: 768px) {
  .navbar .dropdown-menu {
    position: relative !important; /* يمنعها من الخروج فوق */
    margin-bottom: 10px;
  }

  .navbar-collapse {
    max-height: 85vh;            /* إجمالي القائمة المنسدلة */
    overflow-y: auto;            /* يخلي كل الـ navbar قابلة للتمرير */
    -webkit-overflow-scrolling: touch;
  }
}
.toast-body {
    width: 99% !important;
  
}
/* Gas Price Loader */
.gas-price-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gas-price-loader.hidden {
  display: none;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top-color: #0066cc;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* المحتوى مخفي بالبداية */
.gas-price-content {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

/* لما يصير جاهز */
.gas-price-content.show {
    opacity: 1;
}

/* اللودر */
.gas-price-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* إخفاء اللودر */
.gas-price-loader.hide {
    display: none;
}