/*!************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./src/app/styles/globals.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************/
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #121212;
    color: aliceblue;
  }
  /* Hide scrollbar but retain scrolling functionality */
html {
    /* Hide scrollbar for Firefox */
    scrollbar-width: none;
    
    /* Hide scrollbar for WebKit (Chrome, Safari, Edge) */
    -webkit-overflow-scrolling: touch;
  }
  
  /* Hide scrollbar for WebKit (Chrome, Safari, Edge) */
  body::-webkit-scrollbar {
    display: none;
  }
  
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  * {
    box-sizing: border-box;
  }


  
  /* /mnt/d/DEV/containers/glass/root/cloud/src/app/styles/global.css */
/*   .container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 10px;
    padding: 20px;
    height: 100vh; 
  }
  
  .left-container, .right-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: lightgray;
    padding: 20px;
  }
  
  .left, .right, .center {
    border: 1px solid #000;
    padding: 10px;
    text-align: center;
  }
   */
.main {
/*   position: relative; */
}

.contentContainer {
/*   position: relative; */
  transition: transform 0.3s ease-out;
/*   margin-right: 275px;  *//* Initial margin to accommodate the menu panel */
/*   width: calc(100% - 275px) */; /* Calculate width minus menu panel */
}

.shifted {
  margin-right: 275px;
  transform: translateX(275px); /* Shift content right by the width of the menu panel */
}


/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./src/components/Header.module.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
/* Header.module.css */
.Header_header__MvnS2 {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top:1.19rem;
    padding-bottom:1.19rem;
    padding-left:1.09rem;
    padding-right:1.09rem;
    background-color: #191919;
    color: azure;
    z-index: 1000; /* Ensure it's above other content */
  }
  
  .Header_logo__j7oID {
    font-style:italic;
    font-weight:500;
    position: absolute;
    left: 50%;
    padding-top:8px;
    padding-bottom:.5px;
/*     top:-0.1px; */
    transform: translateX(-50%)scale(95%);
    font-size: 1.01rem;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
/*     font-style:italic; */
    /* Ensure this element does not shift due to margin or padding on parent containers */
  
  }
  .Header_order__A4Cvz{
    position:relative;
    top:-12px;
  }

  .Header_compression__N3g3q{
    position:relative;
    top: -0.5px;
    word-spacing:-1px;
    transform:scaleX(85%);
  }

  .Header_stamp__6JQty{
    position:relative;
    top:-2px;
    font-weight:400;
    font-size:.75rem;
    text-align:center;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-style:normal;
    transform:scaleX(115%);
    word-spacing:-2.5px;
  }


  .Header_logo__j7oID.Header_open__k_vL4{
/*     margin-left:275px; */
  }
  
  .Header_menuToggle__omEt5 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  
  
  .Header_line__kCP_c {
    width: 100%;
    height: 3px;
    background-color: azure;
    transition: transform 0.3s ease;
    z-index:1000;
  }

  .Header_centerline__POh3Y {
    width: 100%;
    height: 3px;
    background-color: azure;
    z-index:1;
  }
  
  
  .Header_line__kCP_c:nth-child(1) {
    transform-origin: center;
  }
  
  .Header_line__kCP_c:nth-child(3) {
    transform-origin: center;
  }
  
  .Header_menuToggle__omEt5.Header_open__k_vL4 .Header_line__kCP_c:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .Header_menuToggle__omEt5.Header_open__k_vL4 .Header_line__kCP_c:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }
 
  
.Header_core__LvOAx{
  position:relative;
/*   top:50px; */
  margin-top:75%;
  margin-bottom:100%;
  z-index:99;
}

.Header_nav__EE71E {
  position: fixed;
  top: 0;
  left: -385px; /* Start off-screen initially */
  width: 385px; /* Width of the menu panel */
  height: 100vh; /* Cover entire viewport height */
  background-color: #232323;
  transition: left 0.3s ease; /* Transition for smooth opening/closing */
 /* Ensure it's above other content */
 z-index:10;
 overflow-y:scroll;
 overflow-x:hidden;
}

.Header_nav__EE71E.Header_open__k_vL4 {
  left: 0; /* Slide in from the left */
}

  
  .Header_nav__EE71E ul {
    list-style: none;
/*     padding: 0px; */
/*     margin: 10px; */
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
/*     text-align: center; */
    text-align:left;
    
  }
 /* Basic styles for nav items */
.Header_nav__EE71E li {
  position:relative;
  color: #fff;
  padding: 20px;
  margin-left:10px;
  transition: background-color 0.3s ease;
}

/* Background color of nav items on hover */
.Header_nav__EE71E li:hover {
  background-color: #FFD77D;
  color:#232323;
}

.Header_ata__7hE67{
  position:relative;
  font-size: 1.2rem;
  margin-left:-5px;
/*   padding: 20px; */
/*   margin-left:10px; */
}

/* Styles for nav links */
.Header_nav__EE71E a {
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

/* .nav li:hover > .submenu {
  background-color: transparent; 
} */

/* Prevent .nav li background color change when hovering over submenu */
/*  .nav li:hover:not(:hover) .submenu:hover {
  background-color: transparent; 
}
  */

/* Additional styles for submenu items */
/* .titlespan {
  display: block;
  width: auto;
  z-index: 9;
} */

.Header_nav__EE71E li .Header_submenu__Z6Jn7 {
  display: none;
}



  .Header_menuline__vEwqy{
    position:absolute;
    display:block;
    font-size:19px;
    color:azure;
    top:25px;
    left:55px;
/*     font-weight:300; */
/* 
    z-index: index 1000000000000000000; */
  }

/* General container styling */
.Header_ofthem__lsN0n {
  position:relative;
  display: flex;
  align-items: center;
  justify-content: flex-end; 
  box-sizing: border-box;
  padding: 0; 
  margin: 0; 
/*   left:80px; */
}
.Header_ofthem__lsN0n > div {
  margin-left: 10px; /* Adjust spacing as needed */
}

/* Account group styling */
.Header_account__urk5H {
  display: flex;
  align-items: center;
}

.Header_accountText__4YYzw {
  margin-left: 8px; /* Adjust to control spacing between icon and text */
}

/* Cart group styling */
.Header_cart__7hWlS {
  display: flex;
  align-items: center;
}

.Header_cartText__zvl0_ {
  margin-left: 8px; /* Adjust to control spacing between icon and text */
}

/* Adjust positioning individually */
.Header_account__urk5H {
  margin-right: 20px; /* Adjust this value to move the entire Account group */
}

.Header_cart__7hWlS {
  margin-left: 10px; /* Adjust this value to move the entire Cart group */
}

/* Media Query to hide text on smaller screens */
@media (max-width: 800px) {
  .Header_accountText__4YYzw, .Header_cartText__zvl0_, .Header_menuline__vEwqy, .Header_stamp__6JQty{
    display: none;
  }
}



/* .nav li.projects:hover .submenu,
.nav li .submenu:hover {
    opacity: 1;
    transform: scaleY(1);
} */
  

  .Header_reach__rZ669{
/*     text-align:left; */
position:fixed;
  }
  
  .Header_divider__t5_oZ{
    padding:18px;
  }

  .Header_spot__ikFy8{
    position:relative;
    top:-75px;
    opacity: 0.98;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

.Header_searchbox__zuUL6{
  display:flex;
  flex-direction:row;
  background-color:#323232;
  border: 1px solid aliceblue;
  margin:0px;
}
.Header_searchText__Gs1fQ{
  margin:0px;
  padding:0px;
}

.Header_submenuToggle__CSeCU {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.Header_submenuToggle__CSeCU .Header_icon__JOAy9 {
  margin-left: 10px; /* Add space between text and icon */
}


/* 
* {
  scrollbar-width: thin; 
  scrollbar-color: orange black; 
} */

/* Scoped scrollbar styling for WebKit browsers (Chrome, Safari, Edge) */
.Header_scrollbarCustom__Yp6Nh::-webkit-scrollbar {
  width: 2.5px; /* Width of the scrollbar */
  height: 10px; /* Height of the scrollbar */
}

.Header_scrollbarCustom__Yp6Nh::-webkit-scrollbar-thumb {
  background-color: aliceblue; /* Color of the draggable part of the scrollbar */
  border-radius: 1px; /* Rounded corners with 1px radius */
}

.Header_scrollbarCustom__Yp6Nh::-webkit-scrollbar-track {
  background-color: #191919; /* Background color of the scrollbar track */
  border-radius: 1px; /* Rounded corners with 1px radius */
}

/* Hide scrollbar buttons (arrows) */
.Header_scrollbarCustom__Yp6Nh::-webkit-scrollbar-button {
  display: none; /* Hide the buttons */
}

/* Scrollbar styling for Firefox */
/* .scrollbarCustom {
  scrollbar-width: thin;
  scrollbar-color: orange black; 
} */

/* Ensure scrollbar visibility for all elements inside the nav */
.Header_scrollbarCustom__Yp6Nh * {
  scrollbar-width: thin; /* Makes the scrollbar thinner */
  scrollbar-color: aliceblue black; /* First color is the thumb, second is the track */
}


/* Header.module.css */
/* 
.header {
  position: relative;
  z-index: 1000;
} */
/*!*********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./src/components/styles/Logo.module.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************/
.Logo_introSection__h5_Z_{
  position:relative;
  left:25.4px;
}
/*!***********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./src/components/styles/Logo_w.module.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************/
.Logo_w_introSection__v5594{
  position:relative;
  top:250px;
  left:120px;
}
/*!*****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./src/components/Submenu.module.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************/
.Submenu_submenu__mvu9d {
/*   list-style-type: none; */
  display: block;
  position: relative;
  left: -80px;
  width: 150%;
  opacity: 0;
  max-height: 0;
  overflow: hidden; 
  transition: opacity 0.5s ease, max-height 0.5s ease;
  z-index: 99999;
  list-style-type: none;
}

.Submenu_submenu__mvu9d.Submenu_open__13wCV {
  margin-top: 20px;
  margin-bottom: -20px;
  opacity: 1;
  max-height: 800px; /* Adjust this value based on the content's max height */
}

.Submenu_submenu__mvu9d li {
    margin-left:20px;
  padding-left: 40px;
  background-color: #232323;
  text-align: left;
  padding-top:20px;
  padding-bottom:20px;
/*   padding-left:10px; */
  padding-right:10px;
}

.Submenu_submenu__mvu9d li:hover {
  color: aliceblue;
  background-color: #232323;
  border: 1px solid #FFD77D;
}

.Submenu_submenu__mvu9d a {
  height: 100%;
  width: 100%;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 99999;
}

/*!***************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./src/components/styles/EmailPopup.module.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************/
/* styles/EmailPopup.module.css */
.EmailPopup_popupOverlay__8Edr4 {
    position: fixed; /* Change to fixed to cover the viewport */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Use a more reasonable z-index */
}

.EmailPopup_popupContent__QrBIT {
    display:flex;
    flex-direction:column;
    background: #121212;
    border-radius: 15px;
    padding: 20px;
    width: 75vw; /* Adjust the width as needed */
    max-width:520px;
    height:72vh;
    min-height:600px;
    display: flex;
    align-items: center;
    justify-content:center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: add a subtle shadow for depth */
}

.EmailPopup_logo__NKmoy {
    width: 50px; /* Adjust the logo size */
}

/* styles/EmailPopup.module.css */
.EmailPopup_closeButton__rQ4t_ {
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative; /* Ensure it is positioned above other elements */
}


.EmailPopup_emailForm__j2_Py {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width:300px;
}

.EmailPopup_emailInput__qjQQa {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width:300px;
}

.EmailPopup_submitButton__JD8OO {
    padding: 10px;
    background-color: #FFD77D; /* Adjust your theme color */
    color: #121212;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    max-width:300px;
    font-size:24px;
    margin-bottom:25vh;
}

.EmailPopup_section__acbSJ{
/*     display:flex;
    flex-direction:row; */
    height:100%;
    width:100%;
/*     gap:50vw;
 */
}

.EmailPopup_so__jUVq2{
    position:relative;
/*     top:25%; */
    top:6px;
    left:-6px;
}

.EmailPopup_solo__uvGDp{
    position:relative;
    text-align:right;
    top:-45px;
}

.EmailPopup_plan__08RoM{
    font-size:32px;
}
/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./src/components/Footer.module.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
 .Footer_center__SEQfr{
    text-align:center;
    align-items:center;
    justify-content:center;
    margin-right:49px;
} 

.Footer_print__SZ_d8{
    position:relative;
    bottom:0;

}
 
.Footer_offset__iYQ1e{
  padding:0px;
  margin:0px;
}

 .Footer_domain__oztdk{
    align-items: center;
    justify-content: space-between;
 }
 .Footer_logo__NsUJK {
    width:35vw;
    font-style:italic;
    font-weight:500;
    position: relative;
    left: 50%;

    padding-top:80px;
    padding-bottom:80px;

    transform: translateX(-50%)scale(95%);
    font-size: 1.01rem;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

  }


 .Footer_logo2__0VV9K {
    width:100vw;
    font-style:italic;
    font-weight:500;
    position: relative;
    left: 50%;
/*     top:25%; */
    padding-top:8px;
    padding-bottom:.5px;
/*     top:-0.1px; */
    transform: translateX(-50%)scale(95%);
    font-size: 1.01rem;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
/*     font-style:italic; */
    /* Ensure this element does not shift due to margin or padding on parent containers */
  }

  .Footer_fullWidthLine__DF7QP {
    width: 100%;
    height: 2px;
    background-color: #FFD77D;
    margin: 0px 0px 20px 0px; /* Add margin if needed */
  }
  .Footer_order__PrmI7{
    position:relative;
    top:-12px;
  }

  .Footer_track2__WwlBh{
    position:relative;
    top:-16px;
/*     padding:50px; */
/*     right:100px;  */
    height:300px;
    width:max-content;
    background-color:#121212;
/*     overflow:hidden; */
  }

  .Footer_track3__iAsqc{
    position:relative;
      top:-16px;  
      right:20px;
/*     padding:50px; */
/*     right:100px;  */
    height:50px;
    width:110%;
    background-color:#121212;
    overflow:hidden;
  }


  .Footer_track__CR00j{
    position:relative;
    height:300px;
    width:100%;
    background-color:#121212;
    overflow:hidden;
  }
  .Footer_compression__z_e96{
    color:azure;
    font-style:italic;
    position:relative;
    top: -0.5px;
    word-spacing:-1px;
    transform:scaleX(85%);
  }

  .Footer_stamp__83tmk{
    color:azure;
    position:relative;
    top:-2px;
    font-weight:400;
    font-size:.75rem;
    text-align:center;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-style:normal;
    transform:scaleX(115%);
    word-spacing:-2.5px;
  }

.Footer_cloud__YvY1r{
  background-color:#121212;
    position:relative;
    top:15px;
    margin-top:15px;
    margin-left:-16px;
/*     margin-left:500px; */
/*     margin-right:100%; */
    height:max-content;
    width:100vw;
    text-align:center;
    justify-content:center;
}

.Footer_divide__2m_D1{
    position:relative;
/*     margin-top:50%; */
/*     padding:1rem; */
}

.Footer_print__SZ_d8{
/* 
    margin-top:200px; */
 /*    width:100vw; */
/*     background-color:#232323; */
}

.Footer_fullWidthLine2__p5R5g {
    width: 100%;
    height: 2px;
    background-color: #FFD77D;
    margin: 35px 0px 10px 0px; /* Add margin if needed */
  }

  .Footer_status__1DfcJ{
    position:relative;
    top:14px;
/*     margin-top:20px; */
  }
/*!************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./src/components/TitlebarLayout.module.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************/
.TitlebarLayout_titlebar__K9W_O {
    color: aliceblue;
    background-color: #191919;
    padding-top: 23px;
    padding-left: 27px;
}

.TitlebarLayout_category__3ZQtb {
    font-size: 1rem;
}

.TitlebarLayout_title__rXdFq {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding-bottom: 20px;
}

.TitlebarLayout_subtitle__j1FoC {
    padding-top: 10px;
    margin-left: 6px;
    font-size: 1.85rem;
}

.TitlebarLayout_quantity__G11al {
    font-size: 0.85rem;
    margin-top: 25px;
}

/*!********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./src/components/LoadingBar.module.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************/
/* app/components/LoadingBar.module.css */


/* src/app/LoadingBar.module.css */
/* src/app/LoadingBar.module.css */
/* src/app/LoadingBar.module.css */
.LoadingBar_loadingBar__DNyKg {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #FFD77D;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 999999999999999999999999999;
}

.LoadingBar_show__JozxM {
  transform: translateX(0);
  opacity: 1;
}

/*!*********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./src/app/Layout.module.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************/
.Layout_borderReel__Pw8SG{
    position:relative;
    display:flex;
    flex-direction:row;
    gap:20px;
    align-items:center;
    justify-content: flex-end;
    color:aliceblue;
    font-size:12px;
    padding-top:10px;
    background-color: #191919;
}

.Layout_news__qjYSH{
    margin-right:20px;
}

.Layout_contact__GliSj{
    margin-right:20px;
}

.Layout_titlebar__cxwTo{
    color:aliceblue;
    background-color:#191919;
    padding-top:23px;
    padding-left:27px;
}

.Layout_category__5BqD3{
    font-size:1rem;
}
.Layout_title__vOAwd{
    display:flex;
    flex-direction:row;
    gap:10px;
    padding-bottom:20px;
}
.Layout_subtitle__DV9Lj{
    padding-top:10px;
    margin-left:6px;
    font-size:1.85rem;
}

.Layout_quantity__TNcUs{
    font-size:.85rem;
    margin-top:25px;
}

/* Media Query to hide text on smaller screens */
@media (max-width: 800px) {
    .Layout_borderReel__Pw8SG{
      display: none;
    }
  }
  /* 

  .scrollbarCustom::-webkit-scrollbar {
    width: 2.5px; 
    height: 10px; 
  }
  
  .scrollbarCustom::-webkit-scrollbar-thumb {
    background-color: aliceblue; 
    border-radius: 1px; 
  }
  
  .scrollbarCustom::-webkit-scrollbar-track {
    background-color: #191919; 
    border-radius: 1px; 
  }
  

  .scrollbarCustom::-webkit-scrollbar-button {
    display: none; 
  }
 */
/*    .scrollbarCustom {
    scrollbar-width: thin;
    scrollbar-color: orange black; 
  }  */
  /* 
  .scrollbarCustom * {
    scrollbar-width: thin; 
    scrollbar-color: aliceblue black; 
  }
 */
/*!**********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./src/components/ScaleWrapper.module.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************/
/* app/components/ScaleWrapper.module.css */
/* .scaleWrapper {
    transform: scale(1.5); 
    transform-origin: top left; 
    width: calc(100% / 1.5);
    height: calc(100% / 1.5);
    overflow-x: hidden; 
    

    min-height: 100vh;
  }
  
  @media (max-width: 768px) {
    .scaleWrapper {
      transform: none;
      width: 100%;
      height: auto;
    }
  }
   */
