@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: #ECEBEB;
  --text-color: #000000;
  --border-color: #0f5132;
  --primary-button-color: #0D3359;

  --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 */

  /* 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.5625rem; /* 25px / 16px = 1.5625rem */

  /* 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;

  /* //Login & cart pages */
  --md-header-height: 350px;
  --md-body-height: calc(70vh *5);
  --md-footer-height: auto;
}

/* 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: 1.5625rem; /* 25px */
  line-height: var(--line-height);
  color: var(--text-color);
  background-color: #ECEBEB;
  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; } 
}





/* ======================================================================================================
---------------------------------------------------------------------------------------------------------
-------------------------------------------- Cart Page ---------------------------------------------
---------------------------------------------------------------------------------------------------------
======================================================================================================= */



/* ==========================================================================
 Cart Content CSS
 ========================================================================== */

 .col-b01 {
  margin: 0;
  min-height: 125vh;
  padding: 60px 0 0px;
  position: relative;
  width: 100%;
  background: url(./../../asset/images/profile_images/vector_smart_object_5.png) no-repeat center 0;
  background-size: cover;
}
.l-constrained-b02 {
  margin: 0 auto;
  position: relative;
  width: 70%;
  max-width: var(--base-width);
  z-index: 0;
  min-height: 85vh;
  display: flex;
  gap: 65px;
}

 .col-b201 {
  margin: 0;
  min-height: 125vh;
  padding: 60px 0 0px;
  position: relative;
  width: 100%;
  background: url(./../../asset/images/profile_images/vector_smart_object_5.png) no-repeat center 0;
  background-size: cover;
}
.l-constrained-b202 {
  margin: 0 auto;
  padding-bottom: 100px;
  position: relative;
  width: 70%;
  max-width: var(--base-width);
  z-index: 0;
  min-height: 85vh;
  display: flex;
  gap: 65px;
}

.booking-form-container {
  width: 60%;
  padding-bottom: 100px;
  margin-bottom: 100px;
}

.booking-form-container-b201 {
  width: 60%;
  padding-bottom: 100px;
}
.seat-section {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 8px;
  position: relative;
}
.summary-card {
  margin-top: 100px;
  width: 40%;
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: fit-content;
}
.summary-title {
  font-size: var(--h3-heading);
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 500;
}
.summary-item {
  display: flex;
  font-size: var(--body-font-size);
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.summary-total {
  font-weight: 700;
  font-size: var(--body-font-size);
  margin-top: 20px;
}
.row-b03 {
  position: relative;
  width: 100%;
  z-index: 8;
}
.welcome-b01 {
  float: inline-start;
  margin: 2px 0 0;
  color: var(--primary-color);
  font-size: var(--h1-heading);
  font-weight: 500;
}
.text-b01 {
  float: inline-start;
  margin-block: 20px 0;
  margin-inline: 29px 0;
  color: var(--primary-color);
  font-size: 1.796224rem;
}

.layer-b03 {
  float: inline-end;
}
.text-b02 {
  margin: 50px 0 0;
  color: var(--primary-color);
  font-size: var(--h6-heading);
  font-weight: 500;
}
.data-field {
  margin: 15px 0 0px;
  font-size: var(--body-font-size);
  display: flex;
  align-items: center;
}
.data-value {
  flex: 1;
  padding: 0 15px;
}
.delete-seat-btn {
  position: absolute;
  top: 15px;
  inset-inline-end: 15px;
  color: var(--primary-color);
  background: none;
  border: none;
  font-size: var(--body-font-size);
  cursor: pointer;
}
.rectangle-1-copy-b05 {
  height: 2px;
  margin: 20px auto 0;
  border: 1px solid rgba(82, 82, 82, 0.5);
  background: rgba(235, 235, 235, 0.5);
}
.checkout-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  border-radius: 7.3px;
  background: var(--primary-color);
  color: white;
  font-size: var(--body-font-size);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  
}

.checkout-button:hover {
  background: var(--primary-hover-color);
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.checkout-button.disabled {
  cursor: not-allowed;
  opacity: 0.7;
}


.btn-loading {
  display: none;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.btn-loading i {
  font-size: var(--body-font-size);
  margin-inline-end: 20px;
  color: inherit;
}

.seat-title {
  font-weight: 600;
  color: var(--primary-color);
  font-size: var(--body-font-size);
  margin-bottom: 15px;
}


.rectangle-1-copy-b06 {
  height: 2px;
  margin: 0 auto 30px;
  position: relative;
  width: 100%;
  max-width: var(--base-width);
  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; /*Will not allow bg color to leak outside borders*/
}

.l-constrained-b03 {
  margin: 0px auto;
  padding: 25px 0;
  width: 100%;
  max-width: var(--base-width);
  font-size: var(--body-font-size-sm);
  text-align: center;
  bottom: 0px;
  position: absolute;
}

.no-cart-add-to-cart-more{
  margin: 20px auto;
  font-size: var(--body-font-size);
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  color: var(--primary-color);
  text-decoration: underline;
  
}
.clear-cart,
.add-to-cart-more{
  margin: 20px auto;
  font-size: var(--body-font-size);
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
  color: var(--primary-color);
  text-decoration: underline;
}

.clear-cart:hover,
.add-to-cart-more:hover{
  color: var(--primary-hover-color);
}


.checkout-address-name{
  font-weight: 500;
  font-size: var(--body-font-size-25px) ;
}

/* ==========================================================================
   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; }




/* ======================================================================================================
---------------------------------------------------------------------------------------------------------
-------------------------------------------- Login Page ---------------------------------------------
---------------------------------------------------------------------------------------------------------
======================================================================================================= */

/* ==========================================================================
 Header CSS
 ========================================================================== */

.row-b101 {
  overflow: hidden;
  padding: 30px 0;
  position: relative;
  background: var(--primary-color) center 0;
  background-position: center top;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  z-index: 10;
}
.l-constrained-b101 {
  margin: 0 auto;
  padding: 0 0 0 1px;
  position: relative;
  width: 57%;
  max-width: var(--base-width);
}
.vector-smart-object-copy-b102 {
  float: inline-start;
  aspect-ratio: 387 / 118;
  width: 200px;

}
.layer-225-copy-b101 {
  float: inline-end;
  margin: 15px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

/* Header Social Media CSS */
.social-media-bar-header-b {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: center;
  gap: 15px;      
}

.social-media-bar-header-b .social-icon {
  font-size: 25px;       
  color: #eae7e7 ;      
  text-decoration: none;  
  transition: color 0.3s; 
}

.social-media-bar-header-b .social-icon svg {
  width: 20px !important;    
  height: 20px !important;
  fill: #eae7e7;  
  text-decoration: none;  
  transition: fill 0.3s; 
}

.layer-225-copy-b101 .social-icon {      
  color: #eae7e7;      
  margin: 0 5px;
}

.social-media-bar-header-b .social-icon:hover {
  color: #aaa;         
}

.social-media-bar-header-b .social-icon svg:hover {
  fill: #aaa;         
}



/* topbar profile dropdown */
.profile-dropdown-wrapper {
  position: absolute; 
  right: 0px;
  position: absolute;
  top: 30px;
  display: inline-block;
  z-index: 10;
}

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

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

.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-right: 10px;
}

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



/* ==========================================================================
 Login page body CSS
 ========================================================================== */


 .col-b101 {
  margin: 0 0 0;
  padding: 134px 0 0px;
  position: relative;
  width: 100%; /* 1920px / 1920px = 100% */
  background: url(./../../asset/images/checkout_images/vector_smart_object_2_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;
}

.group-b101 {
  margin: 0 auto;
  min-height: 673px;
  padding: 34px 57px;
  position: relative;
  width: 33%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: #ffffff;
  -webkit-box-shadow: -0.707107px 0.707107px 10px 0 rgba(24, 24, 24, 0.33);
  -moz-box-shadow: -0.707107px 0.707107px 10px 0 rgba(24, 24, 24, 0.33);
  box-shadow: -0.707107px 0.707107px 10px 0 rgba(24, 24, 24, 0.33); 
}

.group-b102 {
  margin: 0 auto;
  min-height: 673px;
  padding: 34px 57px;
  position: relative;
  width: 35%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: #ffffff;
  -webkit-box-shadow: -0.707107px 0.707107px 10px 0 rgba(24, 24, 24, 0.33);
  -moz-box-shadow: -0.707107px 0.707107px 10px 0 rgba(24, 24, 24, 0.33);
  box-shadow: -0.707107px 0.707107px 10px 0 rgba(24, 24, 24, 0.33); 
}

.row-b104{
  margin: 0 auto;
  width: 90%;
}

.vector-smart-object-b101{
  display: block;
  inset-inline-end: 20px;
  top: 20px;
  padding: 3px 5px;
  position: absolute;
  border: 1px solid black;
}

.vector-smart-object-b101:hover{
  background-color: #f5f2f2;
}

.row-b102 {
  inset-inline-start: 4px;
  margin: 44px auto 0;
  position: relative;
  width: 100%;
}

.row-b105 {
  inset-inline-start: 4px;
  margin: 25px auto 0;
  position: relative;
  text-align: center;
  width: 100%;
}


.welcome-b101 {
  float: inline-start;
  margin-block: 0;
  margin-inline: 0 17px;
  width: 250px;
  color: var(--primary-color);
  font-size: 3.186849rem; /* 50.99px / 16px = 3.186875rem */
  font-weight: 500;
  text-align: justify;
}

.text-b101 {
  float: inline-start;
  margin: 19px 0 0;
  width: 238px;
  color: var(--primary-color);
  font-size: 1.796224rem; /* 28.74px / 16px = 1.79625rem */
}

.text-b102 {
  margin: 0px auto 0;
  position: relative;
  width: 470px;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}

.rectangle-1-copy-b105 {
  height: 2px;
  margin: 24px auto 0;
  width: 530px;
  border: 1px solid rgba(82, 82, 82, 0.5); 
  background: rgba(235, 235, 235, 0.5);
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box; 
}

.rectangle-1-copy-b107 {
  height: 2px;
  margin: 50px auto 0;
  width: 100%;
  border: 1px solid rgba(82, 82, 82, 0.5); 
  background: rgba(235, 235, 235, 0.5);
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box; 
}

.rounded-rectangle-2-holder-b101 {
  display: block;
  margin: 48px auto 0;
  min-height: 86px;
  padding: 0 79px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.796224rem; /* 28.74px / 16px = 1.79625rem */
  font-weight: 500;
  line-height: 86px;
  text-align: center;
  background-color: var(--primary-color);
  transition: background-color 0.3s ease;
  box-shadow:
  inset 0 4px 6px rgba(255, 255, 255, 0.2),  
  inset 0 -4px 6px rgba(0, 0, 0, 0.3),  
  0 4px 6px rgba(0, 0, 0, 0.3);  
}

[dir="rtl"] .rounded-rectangle-2-holder-b101 {
  white-space: nowrap;
  font-size: 1.6rem; 
}

.rounded-rectangle-2-holder-b101:hover {
  background-color: var(--primary-hover-color);
  cursor: pointer;
}

.rounded-rectangle-2-holder-b101:focus {
  outline-offset: 5px;
}

.or-b101 {
  margin: 30px 0 0;
  color: #9c9c9c;
  font-size: 1.796224rem; /* 28.74px / 16px = 1.79625rem */
  font-weight: 500;
  text-align: center;
}

.rounded-rectangle-2-copy-holder-b101 {
  margin: 30px auto 0;
  min-height: 86px;
  padding: 24px 42px;
  position: relative;
  width: 473px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: #d4d4d4;
  transition: background-color 0.3s ease;
  box-shadow:
  inset 0 4px 6px rgba(255, 255, 255, 0.2),  
  inset 0 -4px 6px rgba(0, 0, 0, 0.3),  
  0 4px 6px rgba(0, 0, 0, 0.3);  
}

.rounded-rectangle-2-copy-holder-b101:hover {
  background-color: #c7c3c2;
  cursor: pointer;
}

.rounded-rectangle-2-copy-holder-b101:focus {
  outline-offset: 5px;
}


/* //login */
.rounded-rectangle-2-holder-b102 {
  display: block;
  margin: 60px auto 0;
  min-height: 70px;
  padding: 0 50px;
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.796224rem; /* 28.74px / 16px = 1.79625rem */
  font-weight: 500;
  line-height: 86px;
  text-align: center;
  background-color: var(--primary-color);
  transition: background-color 0.3s ease;
  box-shadow:
  inset 0 4px 6px rgba(255, 255, 255, 0.2),  
  inset 0 -4px 6px rgba(0, 0, 0, 0.3),  
  0 4px 6px rgba(0, 0, 0, 0.3);  
}

.rounded-rectangle-2-holder-b102:hover {
  background-color: var(--primary-hover-color);
  cursor: pointer;
}

.rounded-rectangle-2-holder-b102:focus {
  outline-offset: 5px;
}

.rounded-rectangle-2-holder-b103 {
  display: block;
  margin: 30px auto 0;
  min-height: 70px;
  padding: 0 50px;
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.796224rem; /* 28.74px / 16px = 1.79625rem */
  font-weight: 500;
  line-height: 86px;
  text-align: center;
  background-color: var(--primary-color);
  transition: background-color 0.3s ease;
  box-shadow:
  inset 0 4px 6px rgba(255, 255, 255, 0.2),  
  inset 0 -4px 6px rgba(0, 0, 0, 0.3),  
  0 4px 6px rgba(0, 0, 0, 0.3);  
}

.rounded-rectangle-2-holder-b103:hover {
  background-color: var(--primary-hover-color);
  cursor: pointer;
}

.rounded-rectangle-2-holder-b103:focus {
  outline-offset: 5px;
}

.rounded-rectangle-2-holder-b103:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

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

.text-bold{
  font-weight: 500;
}

.text-b106{
  inset-inline-start: 4px;
  position: relative;
  width: 470px;
  line-height: 1.2;
  text-align: start;
  font-size: 20px;
  color: red;

}


.or-b102 {
  margin: 38px 0 0;
  color: #9c9c9c;
  font-size: 1.796224rem; /* 28.74px / 16px = 1.79625rem */
  font-weight: 500;
  text-align: center;
}

.rounded-rectangle-2-copy-holder-b102 {
  margin: 35px auto 0;
  min-height: 86px;
  padding: 24px 42px;
  position: relative;
  width: 473px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: #d4d4d4;
  transition: background-color 0.3s ease;
  box-shadow:
  inset 0 4px 6px rgba(255, 255, 255, 0.2),  
  inset 0 -4px 6px rgba(0, 0, 0, 0.3),  
  0 4px 6px rgba(0, 0, 0, 0.3);  
}

.rounded-rectangle-2-copy-holder-b102:hover {
  background-color: #c7c3c2;
  cursor: pointer;
}

.rounded-rectangle-2-copy-holder-b102:focus {
  outline-offset: 5px;
}



.layer-b102 {
  float: inline-start;
  margin-block: 0;
  margin-inline: 15px;
}

.text-b103 {
  margin: 4px 0 0;
  color: #000000;
  font-size: 1.796224rem; /* 28.74px / 16px = 1.79625rem */
  font-weight: 500;
}
.text-b104 {
  inset-inline-start: 4px;
  margin: 47px auto 0;
  position: relative;
  width: 470px;
  line-height: 1.2;
  text-align: center;
}
.rectangle-1-copy-b106 {
  height: 2px;
  margin: 77px auto 0;
  max-width: 1920px;
  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; /*Will not allow bg color to leak outside borders*/
}
.row-b103 {
  margin: 0 auto 0;
  padding: 0 3px;
  position: relative;
  width: 1126px;
}
.vector-smart-object-b102 {
  float: inline-start;
  margin-block: 0;
  margin-inline: 0 14px;
}

.text-b105 {
  margin: 19px 0 0;
  color: #424141;
  font-size: 1.497396rem; 
  text-align: start;
}

.text-underline{
  text-decoration: underline;
}

.text-red{
  color: red !important;
}

.text-green{
  color: green !important;
}

.form-error-text {
  margin-top: 10px;
  font-size: var(--body-font-size-sm);
  color: red !important;
}

.checkbox-401{
  font-size: var(--body-font-size);
  margin: 15px;
}

/* ==========================================================================
 Footer CSS
 ========================================================================== */

.col-b102 {
  margin: 0;
  padding: 15px 0;
  position: relative;
  width: 100%;
  background: #FFFFFF;
}

.l-constrained-b103 {
  margin: 0px auto;
  padding: 35px 0;
  width: 59%;
  font-size: var(--body-font-size-sm);
  text-align: center;
}


/* Footer Styles */
.footer-container {
  position: relative;
  padding: 0 10%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: var(--base-width);
  width: 100%;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 70%;
    margin: 0 auto;
}

.footer-cart-link {
    display: flex;
    align-items: center;
}

.footer-cart-link a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.text-b205 {
    margin-inline-start: 10px;
    font-size: var(--body-font-size);
    font-weight: 500;
}

.footer-terms {
    margin-inline: auto;
    position: relative;
    font-size: var(--body-font-size-sm);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vector-smart-object-b202 {
    transition: transform 0.3s ease;
}




/* ==========================================================================
 Checkout Form CSS
 ========================================================================== */

.in-numbers-copy-401 {
  padding: 98px 0 31px;
  position: relative;
  width: 100%; /* 1919px / 1919px = 100% */
  z-index: 0;
  background: url(./../../asset/images/WS_1_images/layer_4_copy_5.png) no-repeat center 0;
  background-position: center top;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.vector-smart-object-402 {
  display: block;
  margin: 0 auto;
  position: relative;
  inset-inline-end: 325px;
  z-index: 55;
}
.col-403 {
  margin: -12px 0 0;
  padding: 95px 0 111px;
  position: relative;
  width: 100%; /* 1919px / 1919px = 100% */
  z-index: 34;
  background: url(./../../asset/images/WS_1_images/vector_smart_object_2.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-403 {
  margin: 0 auto;
  padding: 0;
  position: relative;
  max-width: var(--base-width);
  width: 100%;
}

.col-1-3{
  margin: 0 20%;
  position: relative;
}

.text-405 {
  margin: 0 20%;
  width: 60%;
  font-size: var(--body-font-size-25px);
  font-weight: 600;
  line-height: 1.5;
  text-align: justify;
}

.text-406 {
  margin-block: 35px 0;
  margin-inline: 15px 0;
  font-size: 25px;
  line-height: 1.3;
  color: #000000;
  font-weight: 500;
  background: #FFFFFF;
  width: 90%;
  text-align: start;
}

.rectangle-1-copy-403 {
  display: block;
  height: 1px;
  margin: 5px auto 0;
  position: relative;
  width: 100%;
  border: 1px solid rgba(65, 65, 65, 0.5); /*stroke*/
 /*Will not allow bg color to leak outside borders*/
}

.text-407 {
  margin-block: 35px 0;
  margin-inline: 15px 0;
  font-size: 25px;
  line-height: 1.3;
  color: #000000;
  font-weight: 500;
  background: #FFFFFF;
  width: 90%;
  text-align: start;
}


.checkout-select{
  border: none;
  padding-inline-start: 10px;
  margin-inline: 0;
}


.checkout-select:focus {
    outline: none;
    border: none;
    box-shadow: none;
}



.radio-inline-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-block: 20px 0px;
    margin-inline:  15px;
    font-size: var(--body-font-size-m);
}

.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 #555;
    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: #fff;
}

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

.d-none{
  display: none;
}


.rectangle-1-copy-6-holder-401 {
  margin: 59px 0 0 0;
  min-height: 54px;
  padding: 0 181px;
  position: relative;
  width: 493px;
  border: 1px solid var(--primary-color);
  background: #e6e6e6;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box; /*Will not allow bg color to leak outside borders*/
  font-size: var(--h3-heading);
  font-weight: 500;
  line-height: 54px;
  text-align: center;
}
.text-410 {
  margin: 60px auto 0;
  width: 100%;
  font-size: var(--body-font-size-25px);
  font-weight: 600;
  line-height: 1.5;
  text-align: justify;
}
.text-411 {
  margin-block: 45px 0;
  margin-inline: 15px 0;
  font-size: 25px;
  line-height: 1.3;
  color: #000000;
  font-weight: 500;
  background: rgba(230, 230, 230, 0.5);
  width: 90%;
  text-align: start;
}

.rectangle-1-copy-409 {
  height: 3px;
  margin-block: 5px 0;
  margin-inline: 57px 0;
  position: relative;
  width: 493px;
  border: 1px solid rgba(65, 65, 65, 0.8); /*stroke*/
  background: rgba(230, 230, 230, 0.8);
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box; /*Will not allow bg color to leak outside borders*/
}
.rectangle-1-copy-7-holder-401 {
  margin: 73px 0 0 0;
  min-height: 54px;
  padding: 0 181px;
  position: relative;
  width: 493px;
  border: 1px solid var(--primary-color); /*stroke*/
  background: #e6e6e6;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box; /*Will not allow bg color to leak outside borders*/
  font-size: 2.148438rem; /* 34.38px / 16px = 2.14875rem */
  font-weight: 500;
  line-height: 54px;
  text-align: center;
}



/* Place Order Page Specific Styles */
.compact-address-card {
    padding: 20px;
    margin-bottom: 30px;
}

.address-card-header {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.address-card-header i {
    font-size: 24px;
    margin-inline-end: 10px;
}

.address-card-header h3 {
    margin: 0;
    font-size: var(--h4-heading);
}

.address-card-body p {
    margin: 8px 0;
    font-size: var(--body-font-size);
    font-weight: 400;
}



/* Responsive adjustments */
@media (max-width: 768px) {

    .booking-form-container,
    .summary-card {
        width: 100%;
    }
    
    .seat-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
}



/* ======================================================================================================
---------------------------------------------------------------------------------------------------------
-------------------------------------------- Order Confirmation Page ---------------------------------------------
---------------------------------------------------------------------------------------------------------
======================================================================================================= */

.l-constrained-b501{
  margin: 0 auto;
  padding-bottom: 100px;
  position: relative;
  width: 70%;
  max-width: var(--base-width);
  z-index: 0;
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 65px;
}



.container-b501 {
    max-width: 100%;
    margin: 40px auto 100px;
    padding: 30px 60px;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.header-b501 {
    text-align: center;
    margin-bottom: 50px;
}

.header-b501 img.logo {
    height: 90px;
    margin: 15px auto 50px;
}

.text-b501 {
    color: var(--primary-color);
    font-size: var(--h3-heading);
    margin-bottom: 10px;
}

.text-b502{
  color: #000000;
  font-size: 19px;
  line-height:1.3;
  margin: 15px auto;
  width: 88%;

}

.confirmation-icon {
    font-size: 60px;
    color: #4CAF50;
    margin: 20px 0;
}

.order-details-b501 {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    
}

.detail-row-b501 {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.detail-row-b501:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-label-b501 {
    font-weight: bold;
    width: 200px;
    color: #666;
}

.detail-value-b501 {
    flex: 1;
}

/* //order confirmation table */

    .order-table-title {
        color: #d43f29;
        font-size: 22px;

    }

    .order-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 18px;
    }

    .order-table th,
    .order-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: start;
    }

    .order-table th {
        background: #f5f5f5;
        font-weight: 600;
    }

    .total-box {
        text-align: end;
        padding: 15px;
    }

    .total-box .total-label {
        margin-top: 15px;
        font-size: 20px;
    }

    .total-box .total-price {
        margin-top: 15px;
        font-size: 20px;
        font-weight: bold;
    }


.order-summary-b501 {
    margin: 30px auto;
    font-size: var(--body-font-size-20px);
    line-height: 1.5;
}

.summary-title-b501 {
    font-size: var(--body-font-size);
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.order-summary-b501 p strong {
  font-weight: 600;
}

.summary-item-b501 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

th.text-start,
td.text-start {
  text-align: start !important;
}

th.text-center, 
td.text-center {
  text-align: center !important;
}

th.text-end,
td.text-end {
  text-align: end !important;
}

.total-b501 {
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 2px solid #eee;
}

.btn-b501 {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: var(--body-font-size-20px);
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s;
}

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

.footer-b501 {
    text-align: center;
    margin-top: 40px;
    color: #777;
    font-size: 14px;
}






/* // Alert Massage CSS */

.text-red {
  color:red;
}

.text-green {
  color: #249146;
}

.table-301 tr i {
  font-size: var(--h6-text);
}

.alert-badge {
  padding: 20px 30px;
  margin: 50px auto 0;
  border-radius: 4px;
  width: 100%;
  font-size: var(--body-font-size);
  position: relative;
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.alert-error {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

.close-btn {
    position: absolute;
    right: 8px;
    top: 3px;
    cursor: pointer;
    font-size: var(--h5-text);
    color: inherit;
    font-weight: normal;
    line-height: 1;
}

.alert-message {
    display: inline-block;
    margin-right: 24px;
    line-height: 1.7;
}



/* //password input */

    .password-group {
        position: relative;
    }

    .toggle-password {
        position: absolute;
        inset-inline-end: 15px;
        font-size: 20px;
        top: 70%;
        transform: translateY(-70%);
        cursor: pointer;
        color: rgba(0, 0, 0, .7);
        z-index: 10;
    }

    .eye-icon {
        transition: all 0.3s;
    }

    .input-group {
        position: relative;
    }





    /* ======================================================================================================
---------------------------------------------------------------------------------------------------------
-------------------------------------------- Workshop Confirmation Page ---------------------------------------------
---------------------------------------------------------------------------------------------------------
======================================================================================================= */

.confirmation-heading-b601 {
  margin: 30px auto;
  width: 90%;
  color: var(--primary-color);
  font-size: 3.186849rem; /* 50.99px / 16px = 3.186875rem */
  font-weight: 500;
  text-align: center;
}


.group-b601 {
  margin: 0 auto;
  padding: 34px 57px;
  position: relative;
  width: 33%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: #ffffff;
  -webkit-box-shadow: -0.707107px 0.707107px 10px 0 rgba(24, 24, 24, 0.33);
  -moz-box-shadow: -0.707107px 0.707107px 10px 0 rgba(24, 24, 24, 0.33);
  box-shadow: -0.707107px 0.707107px 10px 0 rgba(24, 24, 24, 0.33); 
}


.group-b103 {
  margin: 0 auto;
  padding: 34px 57px;
  position: relative;
  width: 90%;


}

.vector-smart-object-605{
  aspect-ratio: 473 / 144;
  width:373px;
  display: block;
  margin: 0 auto;
}



/* //Login pages */

@media (max-width: 768px) {
  
  /* Global Container */
  .global_container_ {
    min-height:calc(5* 100vh);
    display: flex;
    flex-direction: column;
    
  }
  
    /* Header */
  .row-b101 {
    height: var(--md-header-height);
    padding: 30px 0;
    flex-shrink: 0;
  }
  
  
  
.l-constrained-b101 {
  margin: 50px auto;
  position: relative;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vector-smart-object-copy-b102 {
  float: none;
  aspect-ratio: 387 / 118;
  width: 500px;
}
.layer-225-copy-b101 {
  float: inline-start;
  margin-block: 30px;
}

/* Header Social Media CSS */
.social-media-bar-header-b {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;      
}

.social-media-bar-header-b .social-icon {
  font-size: 64px;       
  text-decoration: none;  
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-media-bar-header-b .social-icon svg {
  width: 60px !important;    
  height: 60px !important;
}




  
  /* Main Content*/
  .col-b101 {
    height: calc(90vh*5);
    min-height: 2900px;
    width: 100%;
    margin: 0 0 0;
    padding: 134px 0 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 1;
    position: relative;
    background: url(./../../asset/images/checkout_images/vector_smart_object_2_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;
  }
  
  
  /* Form Card */
  .group-b101 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    width: 70%;
    padding: 30px 100px;
    min-height: 1500px;
    position: relative;
    box-sizing: border-box;
  }

  
.group-b102 {
  margin: 0 auto;
  padding: 34px 57px;
  width: 70%;
  height: calc(55vh * 5);
  min-height: 1600px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.row-b104{
  margin: 0 auto;
  width: 80%;
}

  .rectangle-1-copy-b107 {
  height: 2px;
  margin: 100px auto 0;
  width: 100%;
}

.text-406 {
  margin-block: 35px 0;
  margin-inline: 15px 0;
  font-size: var(--body-font-size);
  line-height: 1.5;
  width: 80%;
  text-align: start;
}

.text-407 {
  margin-block: 35px 0;
  margin-inline: 15px 0;
  font-size: var(--body-font-size);
  line-height: 1.5;
  width: 80%;
  text-align: start;
}
  
.vector-smart-object-b101 {
  inset-inline-end: 50px;
  top: 50px;
  padding: 15px 30px;
  font-size: var(--body-font-size);
}

.row-b102 {
  inset-inline-start: 4px;
  margin: 44px auto 0;
  position: relative;
  width: 100%;
}
  
  
.welcome-b101 {
  float: none;
  margin: 70px auto 50px;
  color: #0f5132;
  font-size: 6.186849rem; /* 50.99px / 16px = 3.186875rem */
  font-weight: 500;
  width: unset;
  text-align: center;
}

.text-b101 {
  float: none;
  margin: 19px auto 0;
  white-space: nowrap;
  font-size: 4.796224rem;
  text-align: center;
  width: unset;
}

.text-b101 a {
  text-decoration: underline !important;
  
}

.text-b102 {
  margin: 15px auto 0;
  position: relative;
  width: 80%;
  font-size: 45px;
  line-height: 1.5;
  text-align: center;
}

.text-b106{
  inset-inline-start: 4px;
  position: relative;
  width: 80%;
  line-height: 1.2;
  text-align: start;
  font-size: 30px;
  color: red;

}

.rectangle-1-copy-b105 {
  height: 2px;
  margin: 100px auto 50px;
  width: 100%;
  border: 1px solid rgba(82, 82, 82, 0.5); 
  background: rgba(235, 235, 235, 0.5);
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box; 
}

.rounded-rectangle-2-holder-b101 {
  width: 80%;
  margin: 70px auto 0;
  min-height: 200px;
  padding: 70px 100px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  font-size: 4.796224rem; /* 28.74px / 16px = 1.79625rem */
  
}


.rounded-rectangle-2-holder-b101:hover {
  background-color: var(--primary-hover-color);
  cursor: pointer;
}

.rounded-rectangle-2-holder-b101:focus {
  outline-offset: 5px;
}

.or-b101 {
  margin: 70px 0;
  font-size: 4.796224rem;
}

.rounded-rectangle-2-copy-holder-b101 {
  margin: 0 auto 15px;
  min-height: 200px;
  padding: 70px 42px;
  width: 80%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  
}

.rounded-rectangle-2-copy-holder-b101:hover {
  background-color: #c7c3c2;
  cursor: pointer;
}

.rounded-rectangle-2-copy-holder-b101:focus {
  outline-offset: 5px;
}

.rounded-rectangle-2-holder-b102 {
  margin: 100px auto 0;
  min-height: 70px;
  padding: 30px 50px;
  width: 100%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  font-size: 4.796224rem;
  line-height: 86px;
}

.layer-b102 {
  float: inline-start;
  margin: 0 50px;
  width: 100px;
  height: 100px;
}

.text-b103 {
  margin: 10px 0 0;
  font-size: 3.796224rem;
}
.text-b104 {
  left: 4px;
  margin: 70px auto 0;
  position: relative;
  width: 80%;
  font-size: var(--text-lg-2);
  line-height: 1.3;
  text-align: center;
}
.rectangle-1-copy-b106 {
  height: 2px;
  margin: 77px auto 0;
  max-width: 1920px;
  border-bottom: 1px solid rgba(82, 82, 82, 0.5); 
  border-top: 1px solid rgba(82, 82, 82, 0.5); 
  background: rgba(235, 235, 235, 0.5);
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box; 
}
  
  
  

  

  /*  Footer */
  .col-b102 {
    flex-shrink: 0;
    height: calc(15vh*5);
  }
  
  
  .row-b103 {
  margin: 30px auto 0;
  padding: 0 3px;
  width: 70%;
  display: flex;
  align-items: center;
  max-width: var(--base-width);
}
.vector-smart-object-b102 {
  float: left;
  align-items: center;
  width: 200px;
  height: 150px;
}
.text-b105 {
  margin: auto 0;
  color: #424141;
  font-size: 4.497396rem; /* 23.96px / 16px = 1.4975rem */
  text-align: start;
  display: flex;
  align-items: center;
}


.l-constrained-b103 {
  margin: 0px auto;
  padding: 35px 0;
  width: 90%;
  position: relative;
  font-size: var(--text-lg-2);
  text-align: center;

}

  
  
  
}





/* //Cart Pages */

@media (max-width: 768px) {
  
  
 .col-b01 {
  padding: 105px 0 41px;
  position: relative;
  height: calc(90vh*6);
  width: 100%;
  background: url(./../../asset/images/profile_images/vector_smart_object_5.png) no-repeat center 0;
  background-size: cover;
}

.l-constrained-b02 {
  margin: 50px auto 0;
  position: relative;
  
  width: 80%;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.col-b201 {
  padding: 105px 0 100px;
  position: relative;
  width: 100%;
  background: url(./../../asset/images/profile_images/vector_smart_object_5.png) no-repeat center 0;
  background-size: cover;
}

.l-constrained-b202 {
  margin: 50px auto 0;
  padding-bottom: 100px;
  position: relative;
  min-height: 2500px;
  width: 80%;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.l-constrained-b501 {
  margin: 100px auto;
  position: relative;
  min-height: 2500px;
  width: 90%;
  z-index: 0;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}


.booking-form-container {
  width: 100%;
}

.booking-form-container-b201 {
  width: 100%;
  padding-bottom: 0px;
}

.seat-section {
  margin-bottom: 30px;
  background: rgba(255,255,255,0.8);
  padding: 20px;
  border-radius: 8px;
  position: relative;
}
.summary-card {
  width: 80%;
  margin-bottom: 50px;
  background: white;
  border-radius: 10px;
  padding: 90px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: fit-content;
}
.summary-title {
  font-size: 3.5rem;
  color: #0f5132;
  margin-bottom: 20px;
  font-weight: 600;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 3rem;
  border-bottom: 1px solid #eee;
}
.summary-total {
  font-weight: 600;
  font-size: 3.2rem;
  margin-top: 20px;
}
.row-b03 {
  position: relative;
  width: 100%;
  z-index: 8;
}
.welcome-b01 {
  float: inline-start;
  margin: 2px 0 0;
  color: #0f5132;
  font-size: 5.186849rem;
  font-weight: 500;
}
.text-b01 {
  float: inline-start;
  margin: 20px 0 0 29px;
  color: #0f5132;
  font-size: 3.796224rem;
}
.layer-b03 {
  float: inline-end;
}
.text-b02 {
  margin: 37px 0 20px;
  color: #0f5132;
  font-size: 3.5rem;
  font-weight: 500;
}
.data-field {
  margin: 15px 0 0px;
  font-size: 3rem;
  display: flex;
  align-items: center;
}
.data-value {
  flex: 1;
  padding: 0 15px;
}
.delete-seat-btn {
  position: absolute;
  top: 15px;
  inset-inline-end: 15px;
  color: #0f5132;
  background: none;
  border: none;
  font-size: 3.2rem;
  cursor: pointer;
}
.rectangle-1-copy-b05 {
  height: 2px;
  margin: 20px auto 0;
  border: 1px solid rgba(82, 82, 82, 0.5);
  background: rgba(235, 235, 235, 0.5);
}
.checkout-button {
  width: 70%;
  padding: 30px;
  margin-top: 70px;
  border-radius: 15px;
  background: #0f5132;
  color: white;
  font-size: 4.2rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.checkout-button:hover {
  background: var(--primary-hover-color);
}
.seat-title {
  font-weight: 600;
  color: #0f5132;
  margin-bottom: 15px;
  font-size: 3rem;
}

.l-constrained-b03 {
  width: 100%;
  margin: 0px auto 30px;
  padding: 10px 200px 100px;
  font-size: 3rem;
  
  
  
}

.rectangle-1-copy-b06 {
  height: 1px;
  margin: 0px auto 70px;
  max-width: 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);

}


/* Responsive adjustments Cart Fotter*/


  .footer-container {
    position: relative;
    padding: 100px auto 0;
    max-width: var(--base-width);
    width: 100%;
    height: 300px;
    background-color: #FFFFFF;
  }

  .text-b205 {
      margin-inline-start: 10px;
      font-size: var(--body-font-size);
      font-weight: 500;
  }

  .footer-content {
      flex-direction: column;
      gap: 20px;
  }
  
  .footer-terms {
      position: static;
      transform: none;
      order: 2;
      font-size: var(--text-lg-1);
  }
  
  .footer-cart-link {
      order: 1;
      margin: 0 auto 50px;
  }

  .checkout-address-name{
    font-size: var(--body-font-size) ;
  }

  .header-b501 {
    text-align: center;
    margin-bottom: 50px;
  }

  .header-b501 img.logo {
      height: 130px;
      margin: 50px auto;
  }


  .text-b502{
    font-size: var(--text-lg-2);
    line-height:1.3;
    margin: 30px auto;

  }

  .container-b501 {
    margin: 20px;
    padding: 20px;
    width: 90%;
  }
  
  .detail-row-b501 {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  

  .order-details-b501 {
      background: #f5f5f5;
      padding: 50px;
      border-radius: 8px;
      margin: 25px auto;
      width: 90%;
      
  }

  .detail-row-b501 {
      display: flex;
      margin-bottom: 10px;
      padding-bottom: 10px;
      border-bottom: 1px solid #e0e0e0;
  }

  .detail-row-b501:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
  }

  .detail-label-b501 {
      font-weight: bold;
      width: 300px;
      color: #666;
      font-size: var(--text-md-3);
  }

  .detail-value-b501 {
    font-size: var(--text-md-3);
      flex: 1;
  }

  /* //order confirmation table */

  .order-table-title {
      color: #d43f29;
      font-size: 22px;

  }

  .order-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 35px;
  }

  .order-table th,
  .order-table td {
      border: 1px solid #ddd;
      padding: 12px;
      text-align: start;
  }

  .order-table th {
      background: #f5f5f5;
      font-weight: 600;
  }

  .total-box {
      text-align: end;
      padding: 15px;
  }

  .total-box .total-label {
      margin-top: 15px;
      font-size: 42px;
  }

  .total-box .total-price {
      margin-top: 15px;
      font-size: 42px;
      font-weight: bold;
  }


  .order-summary-b501 {
      margin: 50px auto 100px;
      font-size: var(--body-font-size);
      line-height: 1.5;
      width: 90%;
  }

  .summary-title-b501 {
      font-size: var(--body-font-size);
      color: var(--primary-color);
      margin-bottom: 15px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--primary-color);
  }

  .order-summary-b501 p strong {
    font-weight: 600;
  }

  .summary-item-b501 {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
  }

  th.text-start,
  td.text-start {
    text-align: start !important;
  }

  th.text-center, 
  td.text-center {
    text-align: center !important;
  }

  th.text-end,
  td.text-end {
    text-align: end !important;
  }

  .total-b501 {
      font-weight: bold;
      font-size: 18px;
      margin-top: 15px;
      padding-top: 10px;
      border-top: 2px solid #eee;
  }

  .btn-b501 {
      display: inline-block;
      padding: 30px;
      background: var(--primary-color);
      color: white;
      text-decoration: none;
      font-size: var(--body-font-size);
      border-radius: 10px;
      font-weight: bold;
      margin-top: 20px;

      transition: background 0.3s;
  }

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

  .footer-b501 {
      text-align: center;
      margin-top: 40px;
      color: #777;
      font-size: 14px;
  }


}



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

}


@media (max-width: 768px) {
  .language-select{
      position: absolute;
      margin: 30px;
      bottom: 50px;
      inset-inline-end: 100px;

    }
  
}
