@charset "UTF-8";

/* ======================================================================================================
---------------------------------------------------------------------------------------------------------
------------------------------ Variables ----------------------------------------------------------------
---------------------------------------------------------------------------------------------------------
======================================================================================================= */


:root {
  /* Colors */
  --primary-color: #0f5132;
  --primary-hover-color: #073107;
  --primary-color-rgb: 213, 65, 45;
  --primary-color-b: #0f5132;
  --primary-color-b-rgb:237, 28, 36;
  --secondary-color: #ffffff;
  --accent-color: #2c3e50;
  --dot-color: #FFD700;
  --background-color: #828387;
  --text-color: #000000;
  --border-color: #0f5132;
  --primary-button-color: #0D3359;
  --secondary-button-color: #000;

  --primary: #0f5132;
  --primary-dark: #a83222;
  --primary-light: #e57d6f;
  --primary-extra-light: #f9e7e5;
  --warning: #FFD700;
  --dark: #333;
  --light: #f5f5f5;
  --gray: #777;
  --light-gray: #e0e0e0;
  --white: #fff;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;

  --audi-h6-text: 20px;
  --audi-primary-color: #0D3359;
  --audi-hover-color: #125A96;
  --audi-text-color: #333;

  /* Layout */
  --base-width: 1773px;
  --v-width: 1920px;
  --slider-height: 1000px;
  --sector-min-height: 1430px;
  --sidebar-overlay-width: 650px;
  --slider-aspect-ratio: calc(1000/650); /* h/w */
  --logo-aspect-ratio: calc(152/220); /* h/w */
  --seat-map-aspect-ratio: calc(1497/1517); /* h/w */
  --seat-map-width: 100%; /* w */
  --seat-map-height: 1497px; /* h */
  --user-dashboard-sidebar: 398px;

  /* Typography */
  --font-base: 16px;
  --font-family: 'Montserrat', sans-serif;
  --line-height: 1;
  --zoom-factor: 1;
  --body-font-size: 1.5rem;        /* 24px */
  --body-font-size-25px: 1.5625rem;   /* 25px */
  --body-font-size-m: 1.3rem;      /* 20.8px */
  --body-font-size-20px: 1.25rem;  /* 20px */
  --body-font-size-sm: 1rem;
  --h1-heading: 4.296875rem; /* 68.75px / 16px = 4.296875rem */;
  --h1-sub-heading: 3.645833rem; /* 58.33px / 16px = 3.645625rem */
  --h1-text: 3.255208rem; /* 52.08px / 16px = 3.255rem */
  --h2-heading:	3.2225rem; /* 51.56px */
  --h2-text: 2.416875rem; /* 38.67px */
  --h3-heading: 2.148438rem; /* 34.38px / 16px = 2.14875rem */
  --h3-text: 1.757813rem; /* 28.13px / 16px = 1.758125rem */
  --h4-heading: 1.953125rem; /* 31.25px / 16px = 1.953125rem */
  --h4-text: 1.8125rem;	/* 29.00px */
  --h5-heading: 3rem; /* 31.25px / 16px = 1.953125rem */
  --h5-text: 2.5rem;	/* 29.00px */
  --h6-heading: 2rem;	/* 29.00px */
  --h6-text: 1.757813rem; /* 28.13px / 16px = 1.758125rem */

  /* Text Sizing */
  --text-xs: 0.25rem;
  --text-sm: 0.5rem;
  --text-md: 1rem;
  --text-md-1: 1.25rem;
  --text-md-2: 1.5rem;
  --text-md-3: 1.75rem;
  --text-lg: 2rem;
  --text-lg-1: 2.25rem;
  --text-lg-2: 2.5rem;
  --text-lg-3: 2.75rem;
  --text-xl: 3rem;
  --text-xl-1: 3.25rem;
  --text-xl-2: 3.5rem;
  --text-xl-3: 3.75rem;
  --text-xxl: 4rem;
  --text-xxl-1: 4.25rem;
  --text-xxl-2: 4.5rem;
  --text-xxl-3: 4.75rem;



 /*  h1	68.75px	4.296875rem
  h2	51.56px	3.2225rem
  h3	38.67px	2.416875rem
  h4	29.00px	1.8125rem
  h5	21.75px	1.359375rem
  h6	16.31px	1.019375rem */

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  
  /* Breakpoints */
  --bp-mobile: 480px;
  --bp-tablet: 768px;
  --bp-laptop: 1024px;
  --bp-desktop: 1280px;
  --bp-large: 1440px;
  --bp-xlarge: 1920px;
}

/* Media  Query body font size  */
@media screen and (max-width: 992px){
  :root{
   --body-font-size: 2rem;
   --body-font-size-m: 1.75rem;
  }
 }

@media screen and (max-width: 768px){
 :root{
  --body-font-size: 3rem;
  --body-font-size-m: 2rem;
  --body-font-size-sm: 1rem;
  --h1-heading: 7rem;
  --h1-text: 5rem;
  --h2-heading: 6rem;
  --h2-text: 5.5rem;
  --h3-heading: 5rem;
  --h3-text: 4.5rem;
  --h4-heading: 4rem;
  --h4-text: 3.5rem;
  --h5-heading: 3rem;
  --h5-text: 2.5rem;
  --h6-heading: 2rem;
  --h6-text: 1.5rem;



 }
} 

@media screen and (max-width: 480px){
  :root{
   --body-font-size: 3rem;
   --body-font-size-m: 2rem;
  }
 } 



*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: var(--font-base);
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  color: #000000;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0;
  text-decoration: none;
  font-size: var(--body-font-size-25px);
  line-height: var(--line-height);
  color: var(--text-color);
  background-color: white;
  max-width: 100%;
}


  [lang="en"] body{
    font-family: 'Montserrat', sans-serif;
  }

  [lang="ar"] body{
    font-family: 'Cairo', sans-serif;
  }



html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section, time {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea:focus, input:focus {
  outline: 0;
}

input {
  border-width: 0;
}

em {
  font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
}

.group:before,
.group:after {
  content: " ";
  display: table;
}

.group:after {
  clear: both;
}

.group {
  zoom: 1; /* ie 6/7 */
}

embed,
img,
object,
video {
  max-width: 100%;
}
sup {
  font-size: 58.3%;
  vertical-align: text-top;
}
sub {
  font-size: 58.3%;
  vertical-align: text-bottom;
}
.no-space-between-inline-blocks {
  letter-spacing: normal; 
  letter-spacing: -0.31em; 
  word-spacing: -0.43em; 
}

.no-space-between-inline-blocks > * {
  letter-spacing: normal;
  word-spacing: normal;
}
.displace {
  left: -5000px;
  position: absolute;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.global_container_ {
  float: none;
  height: auto;
  margin: 0 auto;
  position: relative;
  width: 100%;
  background: var(--background-color);
  opacity: 0;
  animation: fadeIn 3s ease-in-out forwards;
  min-width: var(--base-width);
  max-width: 100%;
  zoom: var(--zoom-factor);
}
@keyframes fadeIn {
  from { opacity: 0; } 
  to { opacity: 1; } 
}






/* ==========================================================================
   Media Query for responsive width
   ========================================================================== */
@media (min-width: 1920px) {



}

@media screen and (max-width: 1920px) {
  :root {
    --base-width: 1920px;
    --zoom-factor: 1;
  }
}
@media screen and (max-width: 1850px) {
  :root {
    --zoom-factor: .938;
  }
}
@media screen and (max-width: 1800px) {
  :root {
    --zoom-factor: .924;
  }
}
@media screen and (max-width: 1773px) {
  :root {
    --zoom-factor: .9;
  }
}
@media screen and (max-width: 1730px) {
  :root {
    --zoom-factor: .875;
  }
}
@media screen and (max-width: 1680px) {
  :root {
    --zoom-factor: 0.860;
  }
}
@media screen and (max-width: 1650px) {
  :root {
    --zoom-factor: 0.834;
  }
}
@media screen and (max-width: 1600px) {
  :root {
    --zoom-factor: 0.808;
  }
}
@media screen and (max-width: 1550px) {
  :root {
    --zoom-factor: 0.781;
  }
}
@media screen and (max-width: 1500px) {
  :root {
    --zoom-factor: 0.750;
  }
}
@media screen and (max-width: 1440px) {
  :root {
    --zoom-factor: 0.729;
  }
}
@media screen and (max-width: 1400px) {
  :root {
    --zoom-factor: 0.712;
  }
}
@media screen and (max-width: 1366px) {
  :root {
    --zoom-factor: 0.684;
  }
}
@media screen and (max-width: 1330px) {
  :root {
    --zoom-factor: 0.658;
  }
}
@media screen and (max-width: 1280px) {
  :root {
    --zoom-factor: 0.632;
  }
}
@media screen and (max-width: 1230px) {
  :root {
    --zoom-factor: 0.616;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --base-width: 0.585;
  }
}
@media screen and (max-width: 1140px) {
  :root {
    --zoom-factor: 0.554;
  }
}
@media screen and (max-width: 1080px) {
  :root {
    --zoom-factor: 0.525;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --zoom-factor: 0.509;
  }
}
@media screen and (max-width: 992px) {
  :root {
    --zoom-factor: 0.486;
  }
}
@media screen and (max-width: 950px) {
  :root {
    --zoom-factor: 0.460;
  }
}
@media screen and (max-width: 900px) {
  :root {
    --zoom-factor: 0.434;
  }
}
@media screen and (max-width: 850px) {
  :root {
    --zoom-factor: 0.408;
  }
}
@media screen and (max-width: 800px) {
  :root {
    --zoom-factor: 0.392;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --zoom-factor: 0.356;
  }
}
@media screen and (max-width: 700px) {
  :root {
    --zoom-factor: 0.325;
  }
}
@media screen and (max-width: 640px) {
  :root {
    --zoom-factor: 0.3;
  }
}
@media screen and (max-width: 600px) {
  :root {
    --zoom-factor: 0.273;
  }
}
@media screen and (max-width: 540px) {
  :root {
    --zoom-factor: 0.230;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --zoom-factor: 0.211;
  }
}
@media screen and (max-width: 440px) {
  :root {
    --zoom-factor: 0.190;
  }
}
@media screen and (max-width: 400px) {
  :root {
    --zoom-factor: 0.173;
  }
}
@media screen and (max-width: 350px) {
  :root {
    --zoom-factor: 0.151;
  }
}
@media screen and (max-width: 320px) {
  :root {
    --zoom-factor: 0.13;
  }
}




/* ==========================================================================
 Margin CSS
 ========================================================================== */

/* Margin All */
.m-0 { margin: 0rem !important; }
.m-1 { margin: 1rem !important; }
.m-2 { margin: 2rem !important; }
.m-3 { margin: 3rem !important; }
.m-4 { margin: 4rem !important; }
.m-5 { margin: 5rem !important; }

/* Margin Top */
.mt-0 { margin-top: 0rem !important; }
.mt-1 { margin-top: 1rem !important; }
.mt-2 { margin-top: 2rem !important; }
.mt-3 { margin-top: 3rem !important; }
.mt-4 { margin-top: 4rem !important; }
.mt-5 { margin-top: 5rem !important; }

/* Margin Right */
.mr-0 { margin-right: 0rem !important; }
.mr-1 { margin-right: 1rem !important; }
.mr-2 { margin-right: 2rem !important; }
.mr-3 { margin-right: 3rem !important; }
.mr-4 { margin-right: 4rem !important; }
.mr-5 { margin-right: 5rem !important; }

/* Margin Bottom */
.mb-0 { margin-bottom: 0rem !important; }
.mb-1 { margin-bottom: 1rem !important; }
.mb-2 { margin-bottom: 2rem !important; }
.mb-3 { margin-bottom: 3rem !important; }
.mb-4 { margin-bottom: 4rem !important; }
.mb-5 { margin-bottom: 5rem !important; }

/* Margin Left */
.ml-0 { margin-left: 0rem !important; }
.ml-1 { margin-left: 1rem !important; }
.ml-2 { margin-left: 2rem !important; }
.ml-3 { margin-left: 3rem !important; }
.ml-4 { margin-left: 4rem !important; }
.ml-5 { margin-left: 5rem !important; }

/* Margin X-axis */
.mx-0 { margin-left: 0rem !important; margin-right: 0rem !important; }
.mx-1 { margin-left: 1rem !important; margin-right: 1rem !important; }
.mx-2 { margin-left: 2rem !important; margin-right: 2rem !important; }
.mx-3 { margin-left: 3rem !important; margin-right: 3rem !important; }
.mx-4 { margin-left: 4rem !important; margin-right: 4rem !important; }
.mx-5 { margin-left: 5rem !important; margin-right: 5rem !important; }

/* Margin Y-axis */
.my-0 { margin-top: 0rem !important; margin-bottom: 0rem !important; }
.my-1 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-2 { margin-top: 2rem !important; margin-bottom: 2rem !important; }
.my-3 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.my-4 { margin-top: 4rem !important; margin-bottom: 4rem !important; }
.my-5 { margin-top: 5rem !important; margin-bottom: 5rem !important; }





/* ==========================================================================
 Padding CSS
 ========================================================================== */
/* Padding All */
.p-0 { padding: 0rem !important; }
.p-1 { padding: 1rem !important; }
.p-2 { padding: 2rem !important; }
.p-3 { padding: 3rem !important; }
.p-4 { padding: 4rem !important; }
.p-5 { padding: 5rem !important; }

/* Padding Top */
.pt-0 { padding-top: 0rem !important; }
.pt-1 { padding-top: 1rem !important; }
.pt-2 { padding-top: 2rem !important; }
.pt-3 { padding-top: 3rem !important; }
.pt-4 { padding-top: 4rem !important; }
.pt-5 { padding-top: 5rem !important; }

/* Padding Right */
.pr-0 { padding-right: 0rem !important; }
.pr-1 { padding-right: 1rem !important; }
.pr-2 { padding-right: 2rem !important; }
.pr-3 { padding-right: 3rem !important; }
.pr-4 { padding-right: 4rem !important; }
.pr-5 { padding-right: 5rem !important; }

/* Padding Bottom */
.pb-0 { padding-bottom: 0rem !important; }
.pb-1 { padding-bottom: 1rem !important; }
.pb-2 { padding-bottom: 2rem !important; }
.pb-3 { padding-bottom: 3rem !important; }
.pb-4 { padding-bottom: 4rem !important; }
.pb-5 { padding-bottom: 5rem !important; }

/* Padding Left */
.pl-0 { padding-left: 0rem !important; }
.pl-1 { padding-left: 1rem !important; }
.pl-2 { padding-left: 2rem !important; }
.pl-3 { padding-left: 3rem !important; }
.pl-4 { padding-left: 4rem !important; }
.pl-5 { padding-left: 5rem !important; }

/* Padding X-axis */
.px-0 { padding-left: 0rem !important; padding-right: 0rem !important; }
.px-1 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-2 { padding-left: 2rem !important; padding-right: 2rem !important; }
.px-3 { padding-left: 3rem !important; padding-right: 3rem !important; }
.px-4 { padding-left: 4rem !important; padding-right: 4rem !important; }
.px-5 { padding-left: 5rem !important; padding-right: 5rem !important; }

/* Padding Y-axis */
.py-0 { padding-top: 0rem !important; padding-bottom: 0rem !important; }
.py-1 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-2 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.py-3 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-4 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-5 { padding-top: 5rem !important; padding-bottom: 5rem !important; }





/* ======================================================================================================
---------------------------------------------------------------------------------------------------------
-------------------------------------------- User Dashboard  ---------------------------------------------
---------------------------------------------------------------------------------------------------------
======================================================================================================= */



/* ==========================================================================
 Dahsboard Layout CSS
 ========================================================================== */

.group-b601 {
  min-height: 1080px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  background-color: white;
  background: url(./../../asset/images/user_account_images/vector_smart_object_1.png) no-repeat center 0;
  background-position: center top;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

}

.l-constrained-b601 {
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: row;
  max-width: var(--v-width);
  width: 100%; 
 
}

.user-dashboard-sidebar {
  position: relative;
  width: var(--user-dashboard-sidebar);
  min-height: 1080px;
  background-color: var(--primary-color);
  mix-blend-mode: multiply;
}


.dashboard-sidebar-header{
  position: relative;
  display: flex;
  justify-content: center; 
  align-items: center;  
}


.vector-smart-object-copy-b602 {
  margin: 30px auto 10px;
  aspect-ratio: 387 / 118;
  width: 200px;
  position: relative;
  
}

.dashboard-nav-menu {
  padding: 30px 0;
  width: 100%; /* sidebar width */
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.dashboard-nav-item {
  display: block;
  padding: 20px 15px;
  font-size: var(--body-font-size-25px);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(235, 235, 235, 0.5);
  transition: color 0.3s ease, font-weight 0.3s ease;
  position: relative;
}

.dashboard-nav-item:hover {
  color: #fff;
  font-weight: bold;
}

.dashboard-nav-item.active {
  color: #fff;
  font-weight: bold;
}

.dashboard-nav-item.active::before {
  content: '';
  position: absolute;
  inset-inline-end: 15px;
  top: 20%;
  height: 60%;
  width: 4px;
  background-color: #ffffff;
}


.text-b602 {
  position: absolute;
  top: 173px;
  color: #ffffff;
  line-height: 73.96875px;
  text-align: justify;
  z-index: 10;
 
}

.layer-b604 {
  inset-inline-start: 370px;
  position: absolute;
  top: 335px;

}

.text-b603 {
  inset-inline-start: 85px;
  position: absolute;
  font-size: var(--body-font-size-25px);
  letter-spacing: 0.035em;
  bottom: 50px;
  color: #ffffff;
  font-weight: 500;
  line-height: 25px;
  text-align: justify;
  
}

.vector-smart-object-b603 {
  inset-inline-start: 250px;
  position: absolute;
  bottom: 10px;

}



/* Main Content Styles */
.main-content-dashboard {
  flex: 1;
  position: relative;

}

.l-constrained-b602{
  width: 100%;
}

.vector-smart-object-copy-b602-2 {
  width: 136px;
  height: 94px;
  position: absolute;
  left: 0;
  display: none;
}


.text-b601 {
  margin-block: 60px 42px;
  margin-inline: 60px 0;
  color: #0f5132;
  font-size: var(--h3-text);
  line-height: 28px;
  text-align: justify;
  width: 50%;
  
}

.rectangle-1-copy-b606 {
  height: 2px;
  margin-left: calc(-1 * var(--user-dashboard-sidebar));
  position: relative;
  max-width: var(--v-width);
  width: calc( var(--user-dashboard-sidebar) + 100% );
  border-bottom: 1px solid rgba(82, 82, 82, 0.5); /*stroke*/
  border-top: 1px solid rgba(82, 82, 82, 0.5); /*stroke*/
  background: rgba(235, 235, 235, 0.5);
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box; 
}

.vector-smart-object-b602 {
  inset-inline-end: 45px;
  position: absolute;
  aspect-ratio: 1;
  width: 58px;
  top: 69px;
  
}

.l-constrained-b603 {
  margin-block: 0 100px;
  margin-inline: 0 50px;
  width: 100%; 
}

.l-constrained-b604 {
  margin-block: 0 100px;
  margin-inline: 0 50px;
  width: 90%; 
  border: 3px solid lightgray;
}


/*  booth numbers */
.booth-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 5px;
  max-width: calc(22 * (50px + 5px)); 
  margin: 0 auto;

}

.booth-number {
  padding: 10px ;
  color: white;
  border-radius: 3px;
  font-size: var(--body-font-size-25px);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.booth-red {
  background-color: var(--primary-color-b);
}

.booth-pink {
  background-color: rgb(231, 103, 169);
}

.booth-blueplus {
  background-color: rgb(69, 69, 180);
}

.booth-blue {
  background-color: rgb(69, 69, 180);
}

.booth-green {
  background-color: rgb(47, 154, 47);
}

.booth-highlight {
    position: relative;
    background-color: var(--primary-button-color);
    z-index: 10;
    transition: all 0.3s ease;
}

.booth-number:hover {
    background-color: var(--primary-button-color) !important;
}

.booth-number.active {
    background-color: var(--primary-button-color); /* #3498db; */
    color: white;
    font-weight: bold;
}

hr.hr-b601 {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 25px 0;
}



.booth-details h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 16px;
}

.booth-selector {
    margin-bottom: 15px;
    
}


.booth-selector select  {
  margin-block: 0;
  margin-inline: 3px 0;
  min-height: 44px;
  padding: 10px 70px;
  font-size: var(--h6-text);
  font-weight: 500;
  position: relative;
  border: 5px solid #bbb;
  width: 50%;
  appearance: none; 
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(./../../asset/images/about_images/layer_405.png) no-repeat right 10px center, white;
  background-size: 39px 20px; 
  padding-inline-end: 7px; 
}

[dir="rtl"] .booth-selector select {
  background: url(./../../asset/images/about_images/layer_405.png) no-repeat left 10px center, white;
}

.rectangle-b602 {
  float: inline-end;
  margin: 4px 0 0;
}
.booth-selector select option {
  margin-block: 0;
  margin-inline: 21px 0;
  font-size: var(--h6-text);
  
}

.booth-info{
  margin-block: 22px 35px;
  margin-inline: 30px 0;
}

.booth-info p {
  font-size: var(--text-md-3);
  font-weight: 500;
  line-height: 1.3;
}

.layer-b603 {
  width: 58px; 
  height: 58px;
}

.layer-b605 {
  display: block;
  inset-inline-start: 194px;
  margin: 0 auto;
  position: relative;
  
}

.text-b604 {
  margin-block: 35px;
  margin-inline: 60px auto;
  font-weight: 500;
  font-size: var(--h6-text);
  line-height: 1.3;
  text-align: justify;
  
}

.text-b604 {
  margin-block: 35px;
  margin-inline: 60px auto;
  font-weight: 500;
  font-size: var(--h6-text);
  line-height: 1.3;
  text-align: justify;
  
}

.vector-smart-object-b604 {
  margin-block: 0 45px;
  margin-inline: 60px auto;
  position: relative;
  width: 75%;
}

.rectangle-1-copy-10-holder-b601 {
  margin: 0 auto;
  width: 99%;
  height: 1px;
  border-bottom: 1px solid black; /*stroke*/
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box; 

}

.text-b605 {
  margin-block: 35px;
  margin-inline: 60px auto;
  font-weight: 500;
  font-size: var(--h6-text);
  line-height: 1.3;
  text-align: justify;
}

.rounded-rectangle-1-holder-b601 {
  margin-block: 0;
  margin-inline: 60px auto;
}


.layer-7-holder-b601 {
  margin: 0 auto;
  min-height: 43px;
  padding: 10px 28px 7px;
  position: relative;
  width: 730px;
  background: #ffffff;
  
}

.layer-b606 {
  float: inline-end;
  margin: 4px 0 0;
}

.text-b606 {
  margin-block: 15px;
  margin-inline: 60px auto;
  font-weight: 500;
  font-size: var(--body-font-size);
  line-height: 1.3;
  text-align: justify;
}

.vector-smart-object-b605 {
  margin-block: 22px;
  margin-inline: 95px auto;
  position: relative;
  
}

.rectangle-1-copy-10-holder-b601 {
  margin: 0 auto;
  width: 99%;
  height: 1px;
  border-bottom: 1px solid black; /*stroke*/
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box; 

}

.text-b607 {
  margin-block: 28px 0;
  margin-inline: 60px auto;
  font-weight: 500;
  font-size: var(--body-font-size-25px);
  line-height: 26px;
  text-align: justify;
}

.layer-b608 {
  margin-block: 28px 110px;
  margin-inline: 60px auto;
 
}

.rectangle-1-copy-b607 {
  height: 2px;
  margin-inline-start: calc(-1 * var(--user-dashboard-sidebar));
  position: absolute;
  bottom: 120px;
  max-width: var(--v-width);
  width: calc( var(--user-dashboard-sidebar) + 100% );
  border-bottom: 1px solid rgba(82, 82, 82, 0.5); /*stroke*/
  border-top: 1px solid rgba(82, 82, 82, 0.5); /*stroke*/
  background: black;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box; 
  
}

.fw600 {
  font-weight: 600;
}


@media (max-width: 768px) {
  
  /*  booth numbers */
  .booth-numbers {

    gap: 20px;
    max-width: calc(22 * (100px + 20px)); 
    margin: 0 auto;

  }

  .l-constrained-b603{
    padding-bottom: 250px;
  }


  .l-constrained-b604{
    padding-bottom: 250px;
  }


  .booth-number {
    padding: 30px ;
    border-radius: 7px;
    font-size: var(--body-font-size);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
  }


  hr.hr-b601 {
      margin: 25px 0;
  }

  .booth-details h3 {
      margin-bottom: 15px;
      font-size: 16px;
  }

  .booth-selector {
      margin-bottom: 15px;
  }

  .booth-selector select  {
    margin-block: 0;
    margin-inline: 3px 0;
    min-height: 44px;
    padding: 10px 70px;
    font-size: var(--body-font-size);
    font-weight: 500;
    background: url(./../../asset/images/about_images/layer_405.png) no-repeat right 10px center, white;
    background-size: 39px 20px; 
    padding-right: 7px; 

  }
  .rectangle-b602 {
    margin: 4px 0 0;
  }
  .booth-selector select option {
    margin-block: 0;
    margin-inline: 21px 0;
    font-size: var(--body-font-size);
    
  }

  .booth-info{
    margin-block: 22px 35px;
    margin-inline: 30px 0;
  }

  .booth-info p {
    font-size: var(--body-font-size);
    font-weight: 500;
    line-height: 2;
  }

  .layer-b603 {
    width: 58px; 
    height: 58px;
  }

  .layer-b605 {
    inset-inline-start: 194px;
    margin: 0 auto;
    
  }

  .text-b604 {
    margin-block: 35px;
    margin-inline: 60px auto;
    font-size: var(--h4-heading);
    
  }

  .vector-smart-object-b604 {
    margin-block: 0 45px;
    margin-inline: 60px auto;
    width: 75%;
  }

  .rectangle-1-copy-10-holder-b601 {
    margin: 50px auto;
    width: 99%;
    height: 1px;

  }

  .text-b605 {
    margin-block: 35px;
    margin-inline: 60px auto;
    font-size: var(--h4-heading);
  }

    .text-b606 {
    padding-block: 30px;
    margin-block: 45px;
    margin-inline: 60px auto;
    font-size: var(--body-font-size);
  }

  .rounded-rectangle-1-holder-b601 {
    margin-block: 0;
    margin-inline: 60px auto;
  }


  .layer-7-holder-b601 {
    margin: 0 auto;
    min-height: 43px;
    padding: 10px 28px 7px;
    width: 730px;
    
  }

  .layer-b606 {
    margin: 4px 0 0;
  }

  .text-b606 {
    margin-block: 0;
    margin-inline: 68px 0;
  }

  .vector-smart-object-b605 {
    margin-block: 22px;
    margin-inline: 95px auto;
    
  }

  .rectangle-1-copy-10-holder-b601 {
    margin: 0 auto;
    width: 99%;
    height: 1px;

  }

  .text-b607 {
    margin-block: 50px 0;
    margin-inline: 60px auto;
    font-size: var(--body-font-size);
  }

  .layer-b608 {
    margin-block: 28px 110px;
    margin-inline: 60px auto;
  
  }

  .rectangle-1-copy-b607 {
    margin-inline-start: calc(-1 * var(--user-dashboard-sidebar));
    bottom: 120px;
    max-width: var(--v-width);
    width: calc( var(--user-dashboard-sidebar) + 100% );
    
  }


  
}

/* //user dashboard CSS */

/* topbar profile dropdown */
.profile-dropdown-wrapper {
  position: absolute; 
  inset-inline-end: 128px;
  position: absolute;
  top: 45px;
  display: inline-block;
}

.profile-dropdown-trigger {
  display: block;
  padding: 4px;
  cursor: pointer;
}

.profile-dropdown-menu {
  position: absolute;
  inset-inline-end: 0;
  top: 100%;
  width: 300px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.profile-dropdown-wrapper:hover .profile-dropdown-menu {
  opacity: 1;
  visibility: visible;
  padding: 15px 0 0;
}

.profile-dropdown-item {
  display: flex;
  align-items: center;
  padding: 15px;
  color: var(--primary-color);
  text-decoration: none;
  font-size: var(--body-font-size-m);
  transition: font-weight 0.2s;
}

.profile-dropdown-item:hover {
  font-weight: bold;
}

.profile-dropdown-icon {
  font-size: var(--body-font-size-20px);
  margin-inline-end: 10px;
}

.profile-dropdown-divider {
  height: 1px;
  background: #eee;
  margin: 5px 0;
}




/* Media Query */
@media (max-width: 1920px) {
  .l-constrained-b601 {
    max-width: 100%;
  }

  .rectangle-1-copy-b606 {    
    max-width: 100%;
  }
}




/* //User Datatable */
.datatable-container {
  max-width: 92.5%;
  margin: 0 auto 150px;
  font-size: var(--body-font-size);

}
.dataTables_wrapper {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.text-b701 {
  margin-block: 40px;
  margin-inline: 0 auto;
  font-weight: 500;
  font-size: var(--h6-text);
  line-height: 1.3;
  text-align: start;
}

.text-b702 {
  margin-block: 40px;
  font-weight: 500;
  font-size: var(--h6-text);
  line-height: 1.3;
  text-align: end;
  color: var(--primary);
  cursor: pointer;
  transition: all .3s;
}

.text-b702:hover {
  color: var(--primary-hover-color);

}

.col-b701{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;


}

.datatable{
  margin: 10px auto;
  border: 1px solid rgba(0,0,0,0.3);
}

.dataTables_wrapper .dataTables_filter{
  margin-bottom: 10px;
}

.datatable td,
.datatable th{
  padding: 20px 10px !important;
  vertical-align: middle;
  min-width: 30px;
  text-align: start !important;
  border-right: 1px solid rgba(0,0,0,0.1);
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  font-size: var(--body-font-size-20px);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn:hover {
  box-shadow: 0 4px 12px rgba(78, 80, 83, 0.25);
}


.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-color-b);
  color: white;
}


.btn-info {
  background-color: #17a2b8;
  color: white;
}

.btn-warning {
  background-color: #ffc107;
  color: white;
}

.btn-danger {
  background-color: #dc3545;
  color: white;
}


/* //Breadcrumb CSS*/

.breadcrumb-container {
  margin: 15px 60px;
  padding: 15px;
  background: #f5f5f5;
}

.breadcrumb {
  display: flex;
  align-items: center;
  font-size: var(--body-font-size-20px);
  color: #6c757d;
  flex-wrap: wrap;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--primary-hover-color);
}

.breadcrumb .divider {
  margin: 0 8px;
  color: #6c757d;
  font-size: var(--body-font-size-25px);
}

.breadcrumb .current {
  color: #212529;
  font-weight: 500;
}


.rectangle-1-copy-10-holder-b701 {
  margin: 0 auto;
  width: 99%;
  height: 1px;
  border-bottom: 1px solid rgba(0,0,0,0.5); /*stroke*/
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box; 

}



/* ======================================================================================================
---------------------------------------------------------------------------------------------------------
-------------------------------------------- User Profile  ---------------------------------------------
---------------------------------------------------------------------------------------------------------
======================================================================================================= */


  .profile-container {
    margin: 30px auto;
    width: 92%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* Profile Card - Two Columns */
  .profile-card {
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-wrap: wrap;
  }

 /* Left Column */
  .profile-left {
    flex: 1;
    width: 30%;
    padding: 50px 30px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--white);
    background: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }

  .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .badge-verified {
    position: relative;
    margin: 10px auto 30px;
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .badge-verified i {
    font-size: 18px;
  }


  .badge-not-verified {
    position: relative;
    margin: 0px auto 30px;
    color: red;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .badge-not-verified i {
    font-size: 18px;
  }

  .badge-cancelled {
    position: relative;
    margin: 10px auto 30px;
    color: var(--dark);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .badge-cancelled i {
    font-size: 18px;
  }

  .profile-left h1 {
    color: var(--dark);
    font-size: 30px;
    margin: 20px auto 10px;
  }

  .profile-left h2 {
    color: var(--gray);
    font-size: 20px;
    font-weight: 500;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .profile-left p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 80%;
  }


  /* Right Column */
  .profile-right {
    flex: 1;
    min-width: 70%;
    padding: 50px 30px 30px;
  }

  .contact-info {
    padding: 20px;
    margin-bottom: 25px;
    text-align: start;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(213, 65, 45, 0.2);
  }

  .contact-item:last-child {
    border-bottom: none;
  }

  .contact-details {
    flex: 1;
  }

  .contact-label {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 5px;
  }

  .contact-value {
    font-weight: 500;
    font-size: 22px;
    color: var(--dark);
  }

  .action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 30px 30px;
    margin: 0 auto;

  }
  
.profile-header {
  margin-block: 10px 0;
  margin-inline: 0 100px;
  display: flex;
  justify-content: space-between;
}

.text-b801 {
  margin: 0;
  font-weight: 500;
  font-size: var(--h6-text);
  line-height: 1.3;
  text-align: justify;
}

.profile-card-edit {
  display: inline-block;
  width: 34px;
  height: 34px;
}

.profile-card-edit img {
  width: 100%;
  height: auto;
  display: block;
}


  .button-group {
    display: flex;
    gap: 20px; 
    flex-wrap: wrap; 
    margin: 10px 0;
  }

  .btn {
    padding: 15px 18px;
    border-radius: 12px;
    border: none;
    height: 50px;
    white-space: nowrap;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
  }

  .btn-primary {
    background: var(--primary);
    color: var(--white);
    flex: 1;
  }

  .btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(45, 213, 104, 0.3);
    transform: translateY(-3px);
  }

  .btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    flex: 1;
  }

  .btn-outline:hover {
    background: rgba(33, 186, 79, 0.1);
    transform: translateY(-3px);
  }

  
  /* Profile Responsive CSS */
  @media (max-width: 900px) {
    .profile-container {
      width: 95%;
    }

    .profile-img {
      width: 130px;
      height: 130px;
    }
  }

  @media (max-width: 768px) {
    .profile-container {
      width: 95%;
      padding-block: 0 100px;
      gap: 50px;
    }

    .profile-left,
    .profile-right {
      padding: 0px;
    }

    .action-buttons {
      flex-direction: column;
      gap: 12px;
    }

    


 /* Left Column */
  .profile-left {
    flex: 1;
    width: 100%;
    padding: 0 30px 70px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .profile-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid var(--white);
    background: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }

  .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .badge-verified {
    margin: 10px auto 30px;
    font-size: var(--text-lg-3);
    gap: 10px;
  }

  .badge-verified i {
    font-size: var(--body-font-size);
  }


  .badge-not-verified {
    margin: 10px auto 30px;
    font-size: var(--text-lg-3);
    gap: 10px;
  }

  .badge-not-verified i {
    font-size: var(--body-font-size);
  }

  .badge-cancelled {
    margin: 10px auto 30px;
    font-size: var(--text-lg-3);
    gap: 10px;
  }

  .badge-cancelled i {
    font-size: var(--body-font-size);
  }

  .profile-left h1 {
    font-size: var(--body-font-size);
    margin: 100px auto 10px;
  }

  .profile-left h2 {
    font-size: var(--body-font-size);
    margin: 100px auto 25px;
    gap: 15px;
  }



  /* Right Column */
  .profile-right {
    flex: 1;
    min-width: 70%;
    padding: 0px 30px 30px;
  }

  .contact-info {
    padding: 20px;
    margin-bottom: 25px;
    text-align: start;
  }

  .contact-item {
    padding: 30px 0;
  }

  .contact-label {
    font-size: var(--body-font-size);
    margin-bottom: 15px;
  }

  .contact-value {
    font-size: var(--body-font-size);
  }

  .action-buttons {
    padding: 0 30px 30px;
    margin: 0 auto;
  }
  
.profile-header {
  margin-block: 10px 0;
  margin-inline: 0 100px;
}

.text-b801 {
  margin: 0;
  font-size: var(--h5-heading);
}

.profile-card-edit {
  width: 34px;
  height: 34px;
}

.profile-card-edit img {
  width: 100%;
}


  .button-group {
    gap: 20px; 
    margin: 10px 0;
  }

  .btn {
    padding: 15px 18px;
    border-radius: 12px;
    border: none;
    height: 50px;
    white-space: nowrap;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
  }

  .btn-primary {
    background: var(--primary);
    color: var(--white);
    flex: 1;
  }

  .btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(45, 213, 45, 0.3);
    transform: translateY(-3px);
  }

  .btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    flex: 1;
  }

  .btn-outline:hover {
    background: rgba(45, 213, 51, 0.1);
    transform: translateY(-3px);
  }
  }

  @media (max-width: 650px) {
    .profile-card {
      flex-direction: column;
    }

    .profile-left,
    .profile-right {
      padding-top: 80px;
    }
  }


/* ==========================================================================
 Edit Profile CSS
 ========================================================================== */

  .edit-profile-form {
    width: 92.5%;
    margin: 30px auto;
    padding: 15px 40px 100px;
}

h2.form-title {
    color: var(--primary-color);
    margin: 0 0 30px;
    font-size: var(--h6-text);
    font-weight: 500;
    line-height: 1.3;
    text-align: justify;
}

.edit-profile-section {
    margin-bottom: 40px;
}

.edit-profile-section h3 {
    margin-bottom: 20px;
    color: #555;
    font-size: var(--h6-text);
    font-weight: 600;
    padding-bottom: 8px;
}

.edit-profile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}


.form-image-group {
    display: flex;
    width: 100%;
    gap: 20px;
}

.form-input-group {
    flex: 1 1 45%;
    display: flex;
    max-width: 50%;
    flex-direction: column;
}

.form-input-group label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: var(--body-font-size-m);
}

.form-input-group input,
.form-input-group textarea, select, option {
    padding: 10px;
    font-size: var(--body-font-size-m);
    border-radius: 6px;
    border: 1px solid #ccc;
}

.form-input-group textarea {
    resize: vertical;
}

.edit-profile-file input {
    padding: 6px;
}

.form-input-group select {
  width: 100%;
  border: 2px solid #ced4da;   /* subtle border */
  border-radius: 8px;           /* rounded corners */
  padding-block: 15px; 
  padding-inline: 15px 40px;
  margin-block: 5px 0px;
  font-size: 20px;
  color: #495057;
  outline: none;
  cursor: pointer;

}

.form-input-group img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}



.radio-inline-group {
    display: flex;
    gap: 16px;

}

.custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-inline-end: 30px;
}

.custom-radio input {
    display: none;
}

.custom-radio .dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ccc;
    margin-inline-end: 8px;
    position: relative;
    transition: 0.2s;
    display: flex;    
    align-items: center;  
    justify-content: center;   
    position: relative;
}

.custom-radio input:checked + .dot {
    border-color: #555;
    background-color: #555;
}

.custom-radio input:checked + .dot::after {
    content: "";
    inset-inline-start: 5px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.text-609 {
  margin-block: 0px ;
  margin-inline: 15px 0;
  font-size: 25px;
  line-height: 1.3;
  color: #000000;
  font-weight: 500;
  width: 70%;
  background: transparent;
  text-align: start;
  border-bottom: 1px solid gray;
}

.edit-profile-submit {
    padding: 14px 30px;
    font-size: var(--body-font-size);
    color: #fff;
    background: #0f5132;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    text-align: start;
}

.edit-profile-back-button{
    padding: 14px 30px;
    font-size: var(--body-font-size);
    color: #fff;
    background: var(--dark);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    text-align: start;
}

.edit-profile-submit:hover {
    background: var(--primary-hover-color);
}


.edit-profile-submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}


.edit-profile-alert-card {
    position: relative;
    background: #fff4e5;
    border: 1px solid #ffc107;
    color: #664d03;
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: var(--body-font-size-m);
}

.edit-profile-alert-close {
    position: absolute;
    top: 8px;
    inset-inline-end: 15px;
    font-size: var(--h6-heading);
    font-weight: bold;
    color: #664d03;
    cursor: pointer;
}

.edit-profile-alert-close:hover{
  color: black;

}

.no-border{
  border: none !important;
}

.text-center{
  text-align: center !important;
}

@media (max-width: 768px) {
    .form-input-group {
        flex: 1 1 100%;
    }

    
  .edit-profile-form {

    margin: 30px auto;
    padding: 15px 40px 100px;
}

h2.form-title {
    margin: 0 0 30px;
    font-size: var(--h5-heading);
}

.edit-profile-section {
    margin-bottom: 40px;
}

.edit-profile-section h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: var(--h5-heading);
    border-bottom: 1px solid #ddd;
}

.edit-profile-grid {
    gap: 20px;
}


.form-image-group {
    width: 100%;
    gap: 20px;
}

.form-input-group {
    max-width: 50%;
    margin-block: 15px;
}

.form-input-group label {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: var(--body-font-size);
}

.form-input-group input,
.form-input-group textarea {
    padding: 18px;
    font-size: var(--text-lg-3);
    border-radius: 6px;
}

.edit-profile-file input {
    padding: 6px;
}

.form-input-group img {
    width: 100%;
    max-width: 150px;
    margin-top: 10px;
    border-radius: 6px;
}

.form-image-hint{
  font-size: var(--text-lg-3);
}

.edit-profile-submit {
    padding: 30px 30px;
    font-size: var(--body-font-size);
}

.edit-profile-back-button{
    padding: 30px 30px;
    font-size: var(--body-font-size);
}


.edit-profile-alert-card {
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: var(--text-lg-3);
}

.edit-profile-alert-close {
    top: 8px;
    inset-inline-end: 15px;
    font-size: var(--h6-heading);
}


   
}




.rtl {
  direction: rtl;
  text-align: right;
}

.rtl-direction {
  direction: rtl;
}

.rtl-text {
  direction: rtl;
  text-align: right;
}


@media (max-width: 768px) {

  .l-constrained-b601 {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: var(--v-width);
  width: 100%; 
  min-width: 100%;
}
 
.user-dashboard-sidebar {
  position: relative;
  min-width: 100% !important;
  width: 100% !important;
  min-height: 200px;
  background-color: var(--primary-color);
  mix-blend-mode: multiply;
}

.main-content-dashboard {
  width: 100% !important;
  min-width: 100% !important;
  position: relative;

}

.dashboard-sidebar-header{
  padding-block: 100px 0;
  padding-inline: 100px;
  position: relative;
  display: flex;
  justify-content: center; 
  align-items: center;  
}

.vector-smart-object-copy-b602 {
  margin: 15px auto 10px;
  aspect-ratio: 387 / 118;
  width: 500px;
  position: relative;
  
}
.dashboard-nav-menu {
  padding-block: 0;
  padding-inline: 0px;
  width: 100%;
  margin-top: 20px;
}

.dashboard-nav-item {
  display: block;
  padding: 50px 100px;
  font-size: var(--body-font-size);
 
}

.dashboard-nav-item.active::before {
  inset-inline-start: 40px;
}


.text-b603 {
  inset-inline-start: 100px;
  position: absolute;
  margin:  20px 0;
  font-size: var(--body-font-size);
  letter-spacing: 0.035em;
  
}

.vector-smart-object-b603 {
  inset-inline-start: 400px;
  margin:  45px 0;
}

.text-b601 {
  margin-block: 100px;
  margin-inline: 60px 0;
}

.vector-smart-object-b602 {
  inset-inline-end: 35px;
  position: absolute;
  aspect-ratio: 1;
  width: 100px;
  top: 100px;
}

.profile-dropdown-wrapper {
  position: absolute; 
  inset-inline-end: 190px;
  top: 85px;
  display: inline-block;
}

.layer-b603 {
  width: 70px; 
  height: 70px;
}

.profile-dropdown-menu {
  width: 500px;
}

.profile-dropdown-item {
  display: flex;
  align-items: center;
  padding: 30px 50px;
  color: var(--primary-color);
  text-decoration: none;
  font-size: var(--text-lg-3);
  transition: font-weight 0.2s;
}

.profile-dropdown-item:hover {
  font-weight: bold;
}

.profile-dropdown-icon {
  font-size: var(--body-font-size);
  margin-inline-end: 20px;
}


/* //Breadcrumb CSS*/

.breadcrumb-container {
  margin: 15px 60px;
  padding: 15px;
  background: #f5f5f5;
}

.breadcrumb {
  font-size: var(--text-lg-3);
}


.breadcrumb .divider {
  margin: 0 25px;
  color: #333;
  font-size: var(--body-font-size);
}

/* //Datatable CSS*/

.datatable-container {
  max-width: 92.5%;
  margin: 0 auto 200px;
  font-size: var(--body-font-size);

}
.dataTables_wrapper {
  width: 100%;
  box-sizing: border-box;
}

.text-b701 {
  margin-block: 50px;
  font-size: var(--h5-heading);
  line-height: 1.5;
}

.text-b702 {
   margin-block: 50px;
  font-weight: 500;
  font-size: var(--h5-heading);
}

.datatable{
  margin: 30px auto;
  border: 1px solid rgba(0,0,0,0.3);
  font-size: var(--body-font-size);
}

.dataTables_wrapper .dataTables_filter{
  margin-bottom: 30px;
}

.datatable td,
.datatable th{
  padding: 50px 30px !important;
}

.btn {
  padding: 30px 30px;
  font-size: var(--body-font-size);
  line-height: 2;
  height: 130px;
  margin-top: 30px;

}

.dataTables_wrapper select{
  font-size: var(--body-font-size);
}


  
}



/* ======================================================================================================
---------------------------------------------------------------------------------------------------------
-------------------------------------------- Dashboard Page  ---------------------------------------------
---------------------------------------------------------------------------------------------------------
======================================================================================================= */


.dashboard-container {
    width: 90%;
    margin: 0 auto 100px;
    padding: 0 auto 100px;
}

/* Header Notificaton Styles */
.dashboard-notification {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--header-bg);
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.dashboard-logo {
    display: flex;
    align-items: center;
}

.dashboard-logo i {
    font-size: 32px;
    color: var(--primary-color);
    margin-inline-end: 12px;
}

.dashboard-logo h1 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-button-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.user-notification {
    display: block;
    align-items: flex-start;
    margin: 0 25px;
    font-size: 18px;
    color: var(--primary-color);
  
}



.user-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notification {
    position: relative;
    font-size: 22px;
    color: var(--text-secondary);
    cursor: pointer;
}

.notification .badge {
    position: absolute;
    top: -5px;
    inset-inline-end: -5px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-profile img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-button-color);
}

.user-details h3 {
    font-weight: 600;
    font-size: 16px;
}

.user-details p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.stats-section:last-child{
  padding-bottom: 200px;
}

.stat-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: rgba(42, 179, 63, 0.1);
    color: var(--primary-color);
}

.stat-content h3 {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
}

.stat-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.stat-trend {
    font-size: 14px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.stat-trend i {
    margin-inline-end: 6px;
}

.positive {
    color: var(--success-color);
}

.negative {
    color: var(--primary-color);
}

/* Charts Section */
.charts-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

.chart-container {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.chart-header h2 {
    font-size: 20px;
    font-weight: 600;
}

.chart-actions {
    display: flex;
    gap: 12px;
}

.chart-placeholder {
    height: 320px;
    background: linear-gradient(135deg, #f8fafc, #eef2f6);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 16px;
    border: 1px dashed var(--border-color);
}

.chart-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--primary-button-color);
    opacity: 0.7;
}

/* Activity Section */
.activity-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.activity-container {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.activity-header h2 {
    font-size: 20px;
    font-weight: 600;
}

.activity-list {
    max-height: 400px;
    overflow-y: auto;
    padding-inline-end: 10px;
}

.activity-item {
    display: flex;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(13, 51, 89, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 15px;
    color: var(--primary-button-color);
    font-size: 18px;
}

.activity-info {
    flex: 1;
}

.activity-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.activity-info p {
    font-size: 15px;
    color: var(--text-secondary);
}

.activity-info a {
    color: var(--text-secondary);
}

.activity-info a:hover {
    text-decoration: underline;
}

.activity-time {
    font-size: 14px;
    color: var(--text-secondary);
    align-self: flex-start;
    font-weight: 500;
}

.activity-time a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: var(--primary-button-color);
    color: white;
}

.btn-primary:hover {
    background: #0a2540;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: #f5f7fa;
}

.link-text{
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
}

.language-select{
      position: absolute;
      float: inline-end;
      bottom: 30px;
      inset-inline-end: 60px;

    }

/* Responsive Design */
@media (max-width: 1200px) {
    .charts-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .activity-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-notification {
        flex-direction: column;
        gap: 20px;
    }
    
    .user-notification {
        width: 100%;
    }
    
    .user-info {
        width: 100%;
        justify-content: space-between;
    }


    
.dashboard-container {
    width: 90%;
    margin: 0 auto;
    padding: 0 auto 100px !important;
}

/* Header Notificaton Styles */
.dashboard-notification {
    display: flex;
    justify-content: start;
    align-items: center;
    background: var(--header-bg);
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-block: 50px ;
}

.dashboard-logo {
    display: flex;
    align-items: flex-start;
}

.dashboard-logo i {
    font-size: 50px;
    color: var(--primary-color);
    margin-inline-end: 30px;
    margin-block: 20px 0;
}

.dashboard-logo h1 {
    font-size: 60px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-button-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.user-notification {
    display: block;
    align-items: flex-start;
    margin: 0 25px;
    font-size: 45px;
    color: var(--primary-color);
  
}



.user-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notification {
    position: relative;
    font-size: 22px;
    color: var(--text-secondary);
    cursor: pointer;
}

.notification .badge {
    position: absolute;
    top: -5px;
    inset-inline-end: -5px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-profile img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-button-color);
}

.user-details h3 {
    font-weight: 600;
    font-size: 16px;
}

.user-details p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    font-size: 45px;

}

.stat-content h3 {
    font-size: var(--h5-heading);
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
}

.stat-content h2 {
    font-size: var(--h5-heading);
    margin-bottom: 16px;
    font-weight: 700;
}

.stat-trend {
    font-size: var(--text-lg-3);
    display: flex;
    align-items: center;
    font-weight: 500;
}

.stat-trend i {
    margin-inline-end: 30px;
}



/* Charts Section */
.charts-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.chart-container {
    border-radius: 20px;
    padding: 30px;
}

.chart-header {
    margin-bottom: 30px;
}

.chart-header h2 {
    font-size: 30px;
}

.chart-actions {
    display: flex;
    gap: 15px;
}

.chart-placeholder {
    height: 320px;
    border-radius: 15px;
    font-size: 24px;
}

.chart-placeholder i {
    font-size: 60px;
    margin-bottom: 30px;
}

/* Activity Section */
.activity-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.activity-container {
    border-radius: 20px;
    padding: 30px;
}

.activity-header {
    margin-bottom: 35px;
}

.activity-header h2 {
    font-size: 30px;
}

.activity-list {
    max-height: 400px;
    padding-inline-end: 30px;
}

.activity-item {
    padding: 30px 0;
}


.activity-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;

    margin-inline-end: 24px;
    font-size: 30px;
}


.activity-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.activity-info p {
    font-size: 21px;
}

.activity-time {
    font-size: 21px;
}

/* Buttons */
.btn {
    padding: 15px 20px;
    font-size: var(--body-font-size);

}

.btn i {
    margin-inline-end: 10px;
}







    
}

@media (max-width: 576px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .activity-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .language-select{
      position: absolute;
      margin: 30px;
      bottom: 50px;
      inset-inline-end: 100px;

    }
}



#audi-seat-select option[value="R1-A9"],
#audi-seat-select option[value="R1-A10"],
#audi-seat-select option[value="R2-A27"],
#audi-seat-select option[value="R2-A26"] {
    display: none !important;
}


.small{
  font-size: 18px;
}

@media (max-width: 768px) {
  .small{
    font-size: 35px;
  }
}


/* //datatable action options */

  .td-actions {
    display: flex;
    width: 170px;
    gap: 15px;
    padding: 15px;
    margin: 0;
  }

  .td-actions .btn {
    padding-block: 15px;
    padding-inline: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .action-buttons {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .action-dropdown {
    position: relative;
     padding: 0;
    margin: 0;
  }

  .action-dropdown .dropdown {
    position: relative;
    display: inline-block;
    margin-block: auto;
  }

  .dropdown-toggle {
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;

  }

  .dropdown-toggle:hover {
    font-weight: 900px;
    background-color: #e5e2e2;
    color: black;
  }

 .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    inset-inline-end: 0;
    background-color: white;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
  }


  .dropdown-menu.show {
    display: block;
  }

  .dropdown-menu a {
    display: block;
    padding: 10px 18px;
    font-size: 18px;
    text-decoration: none;
    color: #333;
  }

  .dropdown-menu a:hover {
    background-color: #f0f0f0;
  }


  @media (max-width: 768px) {

    .td-actions {
      width: unset;
      gap: 30px;
    }

    .td-actions .btn {
    padding-inline: 50px;
    width: unset;
    display: flex;
    align-items: center;
    justify-content: center;
  }

   .action-buttons {
    margin: 0;
    padding: 0;
    width: unset;
    display: flex;
    flex-direction: column;
  }


  .dropdown-toggle {
    font-size: 60px;
  }

  .dropdown-menu {
    min-width: 300px;
    inset-inline-start: 0;
  }

  .dropdown-menu a {
    padding: 30px 30px;
    font-size: 35px;
  }
      
  }


  .rectangle-601-copy-2-holder {
  margin: 25px 0 0;
  padding: 8px 30px;
  position: relative;
  width: 70%;
  font-size: var(--body-font-size);
  /*stroke*/
  appearance: none;
  /* Remove browser default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(./../../asset/images/about_images/layer_405.png) no-repeat right 10px center;
  background-size: 39px 20px;
  /* control width and height of your image */
  padding-inline-end: 7px;
  /* give enough space for your image */
}

[dir="rtl"] .rectangle-601-copy-2-holder {
  background: url(./../../asset/images/about_images/layer_405.png) no-repeat left 10px center;
}

 [lang="ar"] .rectangle-601-copy-2-holder,
 [lang="ar"] .rectangle-601-copy-2-holder option,
 [lang="ar"] .btn,
  [lang="ar"] button,
 [lang="ar"] .booth_select_option,
 [lang="ar"] .booth_select_option option,
 [lang="ar"] .profile-dropdown-item {
  font-family: 'Cairo', sans-serif;

}

[lang="en"] .rectangle-601-copy-2-holder,
[lang="en"] .rectangle-601-copy-2-holder option,
[lang="en"] .btn,
[lang="en"] button,
[lang="en"] .booth_select_option,
[lang="en"] .booth_select_option option,
[lang="en"] .profile-dropdown-item {
  font-family: 'Montserrat', sans-serif;

}



[lang="ar"] .mobile-number {
    text-align: right;
    direction: ltr;
    unicode-bidi: bidi-override;
}


.table-text-span{
    white-space: wrap; 
    overflow: hidden; 
    font-size: 18px;
}

.table-text-span-lg{
    width: 300px; 
    white-space: wrap; 
    overflow: hidden; 
    font-size: 18px;
}

.table-text-span-md{
    width: 200px; 
    white-space: wrap; 
    overflow: hidden; 
    font-size: 18px;
}

.table-text-span-sm{
    width: 100px; 
    white-space: wrap; 
    overflow: hidden; 
    font-size: 18px;
}

