* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  border: 0px;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
}

button,
button:hover,
button:active {
  cursor: pointer;
}

:root {
  --background0: rgb(39, 88, 208);
  --background1: rgb(17, 21, 26);
  --background2: rgb(245, 245, 245);
  --background3: rgb(52, 63, 166);
  --background4: rgb(114, 137, 195);
  --background5: rgb(240, 240, 240);
  --background6: rgb(255, 255, 255);
  --background7: rgb(230, 230, 230);
  --background8: rgb(21, 27, 33);
  --background9: rgb(200, 200, 200);
  --background10: rgb(230, 230, 230);
  --background11: rgb(243, 243, 243);
  --background12: rgb(245, 245, 245);
  --background13: rgb(250, 250, 250);

  --text1: rgb(255, 255, 255);
  --text2: rgb(0, 0, 0);
  --text3: rgb(170, 170, 170);
  --text4: rgb(240, 240, 240);
  --text5: rgb(26, 29, 56);
  --text6: rgb(47, 69, 47);
  --text7: rgb(17, 21, 26);

  --button1: rgb(26, 29, 56);
  --button1_hover: rgb(24, 26, 52);
  --button1_active: rgb(18, 21, 40);
  --button2: rgb(250, 250, 250);
  --button2_hover: rgb(245, 245, 245);
  --button2_active: rgb(230, 230, 230);
  --button3: rgb(39, 88, 208);
  --button3_hover: rgb(35, 79, 192);
  --button3_active: rgb(35, 77, 184);
  --button4: rgb(122, 28, 28);
  --button4_hover: rgb(113, 24, 24);
  --button4_active: rgb(95, 19, 19);
  --button5: rgb(17, 21, 26);
  --button5_hover: rgb(15, 19, 23);
  --button5_active: rgb(15, 19, 23);
  --button6: rgb(60, 159, 51);
  --button6_hover: rgb(46, 134, 38);
  --button6_active: rgb(38, 115, 31);
  --button6_disabled: rgb(170, 170, 170);

  --panelgray: rgb(250, 250, 250);
  --bordergray: rgb(237, 237, 237);

  --qrcodewhite: rgb(255, 255, 255);
  --qrcodeblack: rgb(0, 0, 0);

  --textwhite: rgb(255, 255, 255);
  --textblack: rgb(0, 0, 0);
  --textdarkgray: rgb(170, 170, 170);
  --textgrey: rgb(240, 240, 240);
}

/*  --- BRANDING COLOURS BACKGROUND--- */

.background0 {
  background-color: var(--background0);
}

.background1 {
  background-color: var(--background1);
}

.background2 {
  background-color: var(--background2);
}

.background3 {
  background-color: var(--background3);
}

.background4 {
  background-color: var(--background4);
}

.background5 {
  background-color: var(--background5);
}

.background6 {
  background-color: var(--background6);
}

.background7 {
  background-color: var(--background7);
}

.background8 {
  background-color: var(--background8);
}

.background9 {
  background-color: var(--background9);
}

.background10 {
  background-color: var(--background10);
}

.background11 {
  background-color: var(--background11);
}

.background12 {
  background-color: var(--background12);
}

/*  --- BRANDING COLOURS TEXT--- */

.text1 {
  color: var(--text1);
}

.text2 {
  color: var(--text2);
}

.text3 {
  color: var(--text3);
}

.text4 {
  color: var(--text4);
}

.text5 {
  color: var(--text5);
}

.text6 {
  color: var(--text6);
}

.text7 {
  color: var(--text7);
}

.background_darkerblue {
  background-color: var(--darkblue_active);
}

.background_darkblue {
  background-color: var(--darkblue_hover);
}

.background_blue {
  background-color: var(--darkblue);
}

.background_darkgray {
  background-color: var(--backgroundbluegrey);
}

.background_gray {
  background-color: var(--backgroundgray);
}

.background_lightergray {
  background-color: var(--backgounddarkgrey);
}

.background_lightgray {
  background-color: var(--backgroundlightgrey);
}

.background_lightorange {
  background-color: var(--orange);
}

/*  --- BRANDING COLOURS TEXT--- */

.text_darkerblue {
  color: var(--darkblue_active);
}

.text_darkblue {
  color: var(--darkblue_hover);
}

.text_blue {
  color: var(--darkblue);
}

.text_gray {
  color: var(--gray_hover);
}

.text_lightgray {
  color: var(--grey);
}

.text_lightorange {
  color: var(--orange);
}

/* --- LISTS --- */

ul.a {
  list-style-type: disc;
  padding-left: 12px;
  color: rgb(0, 0, 0);
}

li {
  padding-bottom: 5px;
}

li::marker {
  color: rgb(39 88 208);
}

.weight_600 {
  font-weight: 500;
}

select {
  appearance: auto;
}

textarea {
  resize: none;
}

.full_width {
  width: 100%;
  display: block;
  height: 100%;
}

.video1 {
  background-color: rgb(155, 130, 130);
}

.white0 {
  background-color: rgb(255, 255, 255);
}

.gray0 {
  background-color: rgb(250, 250, 250);
}

.video_login {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.video_login iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* --- LOGO --- */

.logo_container {
  display: block;
  position: relative;
}

.logo {
  display: inline-block;
  position: relative;
  margin: 20px;
}

.logo img {
  width: 140px;
  object-fit: contain;
  margin: 10px;
}

/* --- LOGO LOGIN --- */

.logo_container_login {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo_login {
  display: inline-block;
  position: relative;
  margin: 10px;
}

.logo_login img {
  width: 140px;
  object-fit: contain;
  margin: 10px;
}

/* --- MENU --- */

.topbar .icon {
  display: none;
}

.menu {
  display: flex;
  align-items: center;
  height: 70px;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(229 229 229);
}

.menu-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 30px;
  padding-top: 0px;
  height: 100%;
  font-size: 13px;
}

.menu-items-right {
  display: flex;
  margin-left: auto;
  gap: 10px;
}

.menu-items-right button {
  background-color: rgba(255, 255, 255, 0);
}

.menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-left: 0px;
  margin-right: 0px;
  padding-top: 5px;
  color: rgb(0, 0, 0);
  font-weight: normal;
  text-decoration: none;
  height: 100%;
  width: auto;
  border-bottom: 3px solid rgba(255, 255, 255, 0);
}

.menu-item:hover {
  border-bottom: 3px solid var(--background0);
}

.menu_item_active {
  border-bottom: 3px solid var(--background0);
}

.menu-items button {
  background-color: rgba(255, 255, 255, 0);
}

.menu-item a {
  font-size: 13px;
  color: var(--darkblue);
  font-weight: bold;
  text-decoration: none;
}

.menu-item a:hover {
  color: var(--darkblue_hover);
}

.menu-item a:active {
  color: var(--darkblue_active);
}

.product_item_menu_icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.dropdown {
  position: relative;
  display: inline-block;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: var(--text1);
  text-decoration: none;
  height: 100%;
  width: auto;
}

/* Styles for the dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  width: calc(100% + 70px);
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  z-index: 20;
  margin-top: -7px;
  transform: translateX(-20px);
  border: 1px solid rgb(220, 220, 220);
}

/* Individual link styles */
.dropdown-content a {
  color: rgb(0, 0, 0);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 13px;
  font-weight: normal;
  text-align: center;
  border-bottom: 0px solid rgba(240, 240, 240, 1);
  z-index: 2;
}

.dropdown-content a:last-child {
  border-bottom: 0px solid rgba(240, 240, 240, 1);
}

/* Hover effects */
.dropdown-content a:hover {
  color: rgb(39, 88, 208);
}

.dropdown:hover .dropdown-content {
  display: block;
  z-index: 2;
}

.menu-item_rechts {
  color: rgb(170, 170, 170);
  font-weight: bold;
  text-decoration: none;
}

.menu-item_rechts:last-child {
  margin-right: 15px;
}

.menu-item_rechts a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  padding: 15px;
  width: auto;
  color: var(--textwhite);
  font-weight: 600;
  text-decoration: none;
  background-color: var(--button3);
  border-radius: 50px;
}

.menu-item_rechts a:hover {
  background-color: var(--button3_hover);
}

.menu-item_rechts a:active {
  background-color: var(--button3_active);
}

.menu-responsive {
  display: none;
}

.menu-openen img {
  display: block;
  position: absolute;
  right: 25px;
  width: 30px;
  height: 30px;
  top: 22px;
}

.selected {
  font-weight: 700;
}

.download-invoice-btn {
  display: none;
  background-color: var(--button6);
  padding: 10px 15px;
  border: none;
  color: rgb(255, 255, 255);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}

.download-invoice-btn:hover {
  background-color: var(--button6_hover);
  color: rgb(255, 255, 255);
}

.download-invoice-btn:active {
  background-color: var(--button6_active);
}

.download-invoice-btn:disabled,
.download-invoice-btn.disabled {
  background-color: var(--button6_disabled);
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* --- CONTAINERS --- */

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container_vertical {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
}

.container_horizontal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* --- SECTIONS --- */

.section-fullwidth {
  display: block;
  position: relative;
  width: 100vw;
}

.sections {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.sections::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.topbar {
  position: relative;
  display: block;
  width: 100%;
  height: 70px;
  z-index: 100;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(220, 220, 220);
}

.max-width_container {
  max-width: 1400px;
  margin: auto;
}

.assets {
  display: block;
  width: 100%;
  height: 100%;
}

.contact {
  display: inline-block;
  position: relative;
  width: 24%;
  height: 100%;
  padding-top: 60px;
}

.contact-container {
  display: flex;
  justify-content: center;
}

.contact-info-title {
  font-weight: 700;
  font-size: 16px;
  color: rgb(127 127 127);
  padding-bottom: 5px;
}

.contact-info-text {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.contact-info {
  display: block;
  font-weight: 300;
  color: var(--text3);
  font-weight: 500;
}

.contact-info a {
  text-decoration: none;
  padding-bottom: 15px;
  color: var(--text3);
  font-weight: 500;
}

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

.footer {
  display: block;
  width: 100%;
  height: 280px;
}

.footer-contact {
  display: block;
  position: relative;
  width: 100%;
  height: 70px;
}

.footer-contact-container {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--text3);
}

.footer-contact-logo img {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-left: 20px;
}

.footer-contact-info {
  display: inline-block;
  position: relative;
  font-size: 14px;
  margin-left: 20px;
  margin-right: 20px;
}

.footer-contact-legal {
  display: block;
  position: relative;
  font-size: 14px;
  float: right;
  margin-right: 20px;
  margin-left: 20px;
}

.footer-contact-legal a {
  text-decoration: none;
  color: var(--text3);
  font-weight: 500;
}

.footer-contact-legal a:hover {
  text-decoration: underline;
}

/* --- TEXT COLORS --- */

.blue1_text_color {
  display: inline;
  font-weight: 600;
  color: rgb(157, 183, 197);
}

/* --- LINKS ---*/

.text_link {
  font-size: 18px;
  font-weight: 600;
  color: rgb(74, 96, 202);
  text-decoration: none;
}

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

/* --- SECTIONS --- */

.cards_solutions_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 100px;
}

.cards_solutions_container2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.cards_services_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.cards_feature_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 100px;
}

.cards_partners_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.card_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.card_solutions {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 560px;
  border-radius: 15px;
  margin: 10px;
  border: 1px solid rgb(200, 200, 200);
  background-color: rgb(245, 245, 245);
  max-width: 350px;
}

.card_solutions_populair {
  border: 3px solid var(--background0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card_solution_populair_tag {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -1px;
  right: -1px;
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
  height: 30px;
  background-color: var(--background0);
  border-top-right-radius: 13px;
  border-bottom-left-radius: 5px;
  color: var(--text1);
  font-size: 0.7rem;
}

.card_services {
  display: inline-flex;
  position: relative;
  width: 280px;
  height: auto;
  flex-direction: column;
  border-radius: 15px;
  margin: 10px;
  border: 1px solid rgb(200, 200, 200);
  background-color: rgb(245, 245, 245);
  max-width: 350px;
}

.card_services_populair {
  border: 3px solid var(--background0);
}

.card_feature {
  display: inline-block;
  position: relative;
  width: 22%;
  height: 430px;
  border-radius: 15px;
  margin: 10px;
  background-color: rgb(245, 245, 245);
}

.card_partners {
  display: inline-block;
  position: relative;
  width: 22%;
  height: 400px;
  border-radius: 15px;
  margin: 10px;
  border: 0px solid rgb(18, 31, 99);
}

.card_title_container {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 100px;
  width: 100%;
  padding-left: 30px;
  padding-top: 10px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.card_title_container2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.card_tag {
  text-align: left;
  font-size: 0.8rem;
  padding-bottom: 5px;
  color: rgb(0, 0, 0);
}

.card_tag2 {
  text-align: center;
  font-size: 0.8rem;
  padding-bottom: 5px;
}

.card_tag3 {
  text-align: center;
  font-size: 1.6rem;
  padding-bottom: 5px;
  color: rgb(39 88 208);
}

.card_text_container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 0px;
  padding-right: 30px;
  padding-left: 30px;
  width: 100%;
}

.card_text {
  display: block;
  font-size: 1.2rem;
  padding-bottom: 20px;
}

.card_title {
  display: block;
  font-size: 1.6rem;
  padding-bottom: 0px;
  font-weight: 400;
}

.card_subtitle1 {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
}

.card_subtitle2 {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 400;
  text-align: left;
}

.card_subtitle3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  font-size: 1.1rem;
  padding: 20px 40px;
  font-weight: 500;
  text-align: center;
  color: rgb(170 170 170);
}

.card_text li {
  font-size: 1rem;
}

.card_text_tag {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
}

.card_text_tag2 {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: rgb(0, 0, 0);
  padding-bottom: 30px;
}

.card_video_container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 90%;
  height: 75%;
}

.card_video_text {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  padding-left: 10px;
  padding-top: 13px;
  color: rgb(0, 0, 0);
}

.card_video_text_tag {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  padding-left: 10px;
  padding-top: 5px;
}

.card_text_price {
  display: block;
  font-size: 3.5rem;
  font-weight: 600;
  text-align: center;
  color: rgb(0, 0, 0);
}

.card_button_container {
  display: flex;
  position: absolute;
  bottom: 0;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 100%;
}

.card_button {
  display: block;
  position: relative;
  width: 90%;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  line-height: 40px;
  color: rgba(255, 255, 255, 1);
  background-color: var(--button3);
}

.card_button:hover {
  background-color: var(--button3_hover);
}

.card_button:active {
  background-color: var(--button3_active);
}

.card_icon {
  position: absolute;
  right: 20px;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* --- PRODUCTS --- */

.products {
  display: flex;
  justify-content: center;
  align-items: last baseline;
  width: 100%;
  height: 550px;
}

.products_options {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.products_option_container {
  display: inline-block;
  position: relative;
  width: 20%;
  height: 430px;
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
  margin: 10px;
  border: 1px solid rgba(240, 240, 240, 1);
}

.products_option_container:hover {
  border: 1px solid rgba(230, 230, 230, 1);
}

.products_option_container_empty {
  display: inline-block;
  position: relative;
  width: 20%;
  height: 400px;
  background-color: rgba(250, 250, 250, 0, 0);
  border-radius: 15px;
  margin: 10px;
}

.products_information {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  align-items: left;
  width: 100%;
  height: 100%;
  text-align: left;
}

.products_information a {
  text-decoration: none;
}

.products_text {
  display: block;
  position: relative;
  height: 160px;
  width: 100%;
}

.products_title {
  display: block;
  position: relative;
  font-size: 50px;
  font-weight: 500;
  padding-top: 70px;
  color: rgba(0, 0, 0, 1);
  text-align: center;
}

.products_subtitle {
  display: block;
  position: relative;
  font-size: 30px;
  font-weight: 500;
  width: 100%;
  padding-top: 20px;
  color: rgba(170, 170, 170, 1);
  text-align: center;
}

.products_button {
  display: block;
  position: absolute;
  width: calc(100% - 40px);
  height: 40px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  border-radius: 10px;
  background-color: rgb(74, 96, 202);
  text-decoration: none; /* Remove underline from the link */
  text-align: center; /* Center-align the text */
  line-height: 40px; /* Vertically center the text within the button */
  bottom: 20px;
}

.products_button:hover {
  background-color: rgb(66, 88, 197);
}

.products_button:active {
  background-color: rgb(51, 75, 188);
}

.plans_button {
  display: block;
  position: absolute;
  width: calc(100% - 40px);
  height: 40px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  border-radius: 10px;
  background-color: rgb(74, 96, 202);
  text-decoration: none; /* Remove underline from the link */
  text-align: center; /* Center-align the text */
  line-height: 40px; /* Vertically center the text within the button */
  bottom: 20px;
  left: 20px;
}

.plans_button:hover {
  background-color: rgb(66, 88, 197);
}

.plans_button:active {
  background-color: rgb(51, 75, 188);
}

.spacer-row td {
  padding-top: 10px;
}

.user_table {
  width: 100%;
  height: 100%;
  text-align: left;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: flex-start;
}

.user_table th,
td {
  padding: 0px;
}

/* --- PLANS --- */

.plans {
  display: flex;
  justify-content: center;
  align-items: last baseline;
  width: 100%;
  height: 500px;
}

.plans_options {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.plans_option_container {
  display: inline-block;
  position: relative;
  width: 20%;
  height: 400px;
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
  margin: 10px;
  border: 1px solid rgba(240, 240, 240, 1);
}

.plans_option_container:hover {
  border: 1px solid rgba(230, 230, 230, 1);
}

.plans_option_container_empty {
  display: inline-block;
  position: relative;
  width: 20%;
  height: 400px;
  background-color: rgba(250, 250, 250, 0, 0);
  border-radius: 15px;
  margin: 10px;
}

.plans_information {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  align-items: left;
  width: 100%;
  height: 100%;
  text-align: left;
}

.plans_information a {
  text-decoration: none;
}

.plans_text {
  display: block;
  position: relative;
  height: 240px;
  width: 100%;
}

.plans_title {
  display: block;
  position: relative;
  font-size: 50px;
  font-weight: 500;
  padding-top: 70px;
  color: rgba(0, 0, 0, 1);
  text-align: center;
}

.plans_subtitle {
  display: block;
  position: relative;
  font-size: 30px;
  font-weight: 500;
  padding-top: 20px;
  color: rgba(170, 170, 170, 1);
  text-align: center;
}

/* --- WORKFLOW --- */

.workflow_text {
  display: block;
  position: relative;
  height: 200px;
  width: 100%;
}

.workflow_title {
  display: block;
  position: relative;
  font-size: 70px;
  font-weight: 900;
  padding-top: 70px;
  color: rgba(0, 0, 0, 1);
  text-align: center;
}

.workflow_subtitle {
  display: block;
  position: relative;
  font-size: 30px;
  font-weight: 500;
  padding-top: 20px;
  color: rgba(170, 170, 170, 1);
  text-align: center;
}

.workflow-section {
  padding: 80px 0 100px;
  color: rgb(14 23 42);
}

.workflow-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 30px 24px;
  max-width: 820px;
}

.workflow-heading {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.workflow-lead {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgb(14 23 42);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  padding: 0 30px;
}

.workflow-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: rgb(255, 255, 255);
  border-radius: 20px;
  border: 1px solid rgb(232, 235, 241);
  transition: transform 0.2s ease;
}

.workflow-card:hover {
  transform: translateY(-4px);
}

.workflow-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 18px 0 0;
}

.workflow-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.workflow-indicator.is-active {
  background: rgb(0, 0, 0);
  transform: scale(1.1);
}

/* --- SOLUTION CARDS (GRID LIST) --- */

.solution-card {
  display: block;
  position: relative;
  padding: 0;
  border: none;
  background-color: rgb(20, 24, 32);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), var(--solution-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.solutions-text {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px;
  color: var(--text7);
  background-color: rgb(14 23 42);
}

.solutions-text .subscription-title {
  font-size: 2.5rem;
  font-weight: 800;
}

.solutions-text .subscription-subtitle {
  color: rgb(255, 255, 255);
}

.solutions-text .grid-bottom-bar3 {
  position: static;
  padding: 0;
  width: 100%;
  height: auto;
  border-radius: 0;
  margin-top: auto;
  justify-content: flex-start;
}

.solution-card .grid-top-bar1-favorite {
  background: rgba(0, 0, 0, 0.2);
  color: rgb(255, 255, 255);
}

@media screen and (min-width: 901px) {
  .grid-list-solutions .solution-card {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}

.workflow-step {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

.workflow-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text7);
  margin-bottom: 4px;
}

.workflow-card-body {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.75);
}

.workflow-card-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgb(236, 239, 247);
  background: rgb(247, 250, 255);
  object-fit: contain;
}

@media screen and (max-width: 900px) {
  .workflow-section {
    padding: 60px 0 70px;
  }

  .workflow-header {
    padding: 0 20px 18px;
  }

  .workflow-heading {
    font-size: 2rem;
  }

  .workflow-grid {
    grid-template-columns: unset;
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding: 24px;
    gap: 20px;
    padding: 0 24px 8px;
    -ms-overflow-style: none; /* IE/old Edge */
    scrollbar-width: none; /* Firefox */
  }

  .workflow-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .workflow-card {
    padding: 18px;
    min-width: 78vw;
    scroll-snap-align: center;
  }

  .workflow-indicators {
    padding-top: 14px;
  }

  .solution-card {
    min-height: 520px;
    background-position: center;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--solution-bg, none);
  }

  .solutions-text {
    position: relative;
    width: 100%;
    height: 100%;
    border-right: none;
  }
}

.contact_button_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.contact_button {
  display: block;
  width: 100%;
  height: 40px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  border-radius: 10px;
  background-color: rgb(74, 96, 202);
  text-decoration: none; /* Remove underline from the link */
  text-align: center; /* Center-align the text */
  line-height: 0px;
  padding: 20px;
}

.contact_button:hover {
  background-color: rgb(66, 88, 197);
}

.contact_button:active {
  background-color: rgb(51, 75, 188);
}

.contact_button_solution {
  display: block;
  width: 140px;
  height: 40px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  border-radius: 10px;
  background-color: rgb(74, 96, 202);
  text-decoration: none; /* Remove underline from the link */
  text-align: center; /* Center-align the text */
  line-height: 0px;
  padding: 20px;
}

.contact_button_solution:hover {
  background-color: rgb(66, 88, 197);
}

.contact_button_solution:active {
  background-color: rgb(51, 75, 188);
}

/* --- ACTION --- */

.action_contain {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 20px;
}

.action_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100% - 30px);
  height: 400px;
  margin-left: 10px;
  text-align: center;
  border-radius: 15px;
}

.action_container2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100% - 30px);
  height: 250px;
  margin-left: 10px;
  text-align: center;
  border-radius: 15px;
}

.action_container_title {
  font-size: 2.3rem;
  font-weight: 600;
  margin: 10px 0;
  color: rgb(0, 0, 0);
}

.action_container_subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 5px;
  width: 100%;
  margin-bottom: 20px;
  color: rgb(170, 170, 170);
}

/* --- MAIN PAGE -- */

.main_container {
  position: relative;
  padding: 30px;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.main {
  display: flex;
  justify-content: left;
  align-items: center;
  height: auto;
  width: calc(100% + 100px);
  z-index: 1;
  padding: 50px;
  border: 1px solid rgb(220, 220, 220);
  transform: translateX(-100px);
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  margin: 50px;
  border-radius: 20px;
}

.main-text {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: 100%;
  height: 100%;
  padding-left: 0%;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
}

.main-tag_hero {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  color: rgb(74, 96, 202);
  padding-bottom: 10px;
}

.main-tag {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  color: rgb(74, 96, 202);
  padding-bottom: 10px;
}

.main-title {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 3rem;
  font-weight: 500;
  text-align: left;
  color: #000000;
}

.main-subtitle {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 10px;
  font-size: 1.5rem;
  text-align: left;
  color: rgb(0, 0, 0);
}

.demo_content_container {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}

.demo_content_grid {
  display: grid;
  width: 100%;
}

.grid_column_1 {
  grid-template-columns: repeat(1, 1fr);
  height: 500px;
}

.grid_column_2 {
  grid-template-columns: repeat(2, 1fr);
  height: 700px;
}

.grid_column_2_70_30 {
  grid-template-columns: 70% 35%;
  height: 80vh;
  padding-top: 50px;
  max-height: 800px;
}

.grid_column_2_30_70 {
  grid-template-columns: 40% 60%;
  height: 70vh;
  max-height: 600px;
}

.grid_item2 {
  height: auto;
  width: auto;
  position: relative;
}

.grid_item_content2 {
  display: block;
  width: 100%;
  height: 100%;
}

.no_border {
  border: none;
}

.grid_item_content2_title {
  display: flex;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 1);
}

.header_container_content {
  display: block;
  width: 100%;
  border: 1px solid rgb(80, 80, 80);
  border-radius: 15px;
  height: calc(100% - 50px);
}

.header_container_content_title {
  display: flex;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 1);
}

.grid_item_content_description {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.grid_item_content_description_title {
  display: block;
  width: 100%;
  font-size: 3rem;
  padding: 5px;
  font-weight: 600;
  color: rgb(255, 255, 255);
}

.grid_item_content_description_subtitle {
  display: block;
  width: 100%;
  font-size: 1.5rem;
  padding: 5px;
  font-weight: 600;
  color: rgb(255, 255, 255);
}

.grid_item_content_description_text {
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 5px;
  padding-top: 15px;
  font-weight: 400;
  color: rgb(255, 255, 255);
}

.grid_item iframe {
  border-radius: 15px;
  width: 100%;
  height: 100%;
}

.grid_item img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid_item_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.grid_item_container_title {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}
.grid_item_container_subtitle {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}

.demo_app_reference {
  padding-top: 15px;
  color: rgb(255, 255, 255);
  font-size: 1.1rem;
}

.demo_app_reference a {
  padding: 0px;
  font-size: 1.2rem;
  text-decoration: none;
  color: rgb(207, 71, 44);
  font-weight: 700;
}

.demo_app_reference a:hover {
  color: rgb(194, 64, 38);
  text-decoration: underline;
}
.demo_app_reference a:active {
  color: rgb(175, 57, 33);
}

/* --- VIDEO --- */

.videos {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: calc(100vh - 70px);
  overflow: hidden;
  margin-top: 70px;
  max-height: 1400px;
  background-color: var(--backgroundgray);
}

.video_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
}

.video_container img {
  width: 20px;
  height: auto;
}

.grid_item img {
  width: 15px;
  height: auto;
}

.mainBtn {
  display: block;
  position: relative;
  width: 250px;
  margin-top: 20px;
  padding: 10px;
  height: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  border-radius: 10px;
  background-color: var(--button6);
  color: rgba(255, 255, 255, 1);
  cursor: pointer;
}

.mainBtn:hover {
  background-color: var(--button6_hover);
}

.mainBtn:active {
  background-color: var(--button6_active);
}

.btnMoreInformation {
  display: flex;
  justify-content: center;
  position: relative;
  width: 140px;
  padding: 13px;
  font-size: 16px;
  text-align: left;
  border-radius: 10px;
  font-weight: 700;
  gap: 10px;
  color: var(--text1);
  background-color: var(--button6);
}

.btnMoreInformation:hover {
  background-color: var(--button6_hover);
}

.btnMoreInformation:active {
  background-color: var(--button6_active);
}

.btnReadMore {
  display: block;
  position: relative;
  width: auto;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  border-radius: 10px;
}

.btnReadMore:hover {
  color: rgb(211, 207, 164);
  text-decoration: underline;
}

.btnReadMore:active {
  color: rgb(211, 207, 164);
}

.button_arrow {
  margin-top: 3px;
  display: inline-block;
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.btnContact {
  display: block;
  position: relative;
  width: 220px;
  padding: 20px;
  font-size: 1.2rem;
  text-align: center;
  border-radius: 50px;
  background-color: var(--button6);
  color: var(--text1);
  font-weight: 600;
  cursor: pointer;
}

.btnContact:hover {
  background-color: var(--button6_hover);
}

.btnContact:active {
  background-color: var(--button6_active);
}

.btnLearn {
  display: block;
  position: relative;
  width: 115px;
  padding: 10px;
  font-size: 13px;
  text-align: left;
  border-radius: 10px;
  border: 1px solid rgb(255, 255, 255);
  background-color: rgb(74, 96, 202);
  color: rgba(255, 255, 255, 1);
}

.btnLearn:hover {
  background-color: #4258c5;
}

.btnLearn:active {
  background-color: #334bbc;
}

.main-text a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.section-main-container {
  flex: 7;
  position: relative;
  width: 70%;
  height: 700px;
  padding: 0px;
  margin-top: 70px;
}

.section-main-container-100 {
  width: 100%;
  height: 100%;
}

.ar {
  display: flex;
  justify-content: center;
  align-items: last baseline;
  width: 100%;
  height: 640px;
}

.ar_title {
  display: block;
  position: relative;
  font-size: 50px;
  font-weight: 500;
  padding-top: 70px;
  text-align: center;
}

.ar_subtitle {
  display: block;
  position: relative;
  font-size: 30px;
  font-weight: 500;
  padding-top: 20px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
}

.section-main-ar-video {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 100%;
  width: 100%;
}

.ar-video {
  width: 70%;
  height: 500px;
  margin-top: 0px;
  margin-bottom: 0px;
  border-radius: 15px;
  object-fit: cover;
}

.main_icon_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.main_icon img {
  width: 80px;
  height: auto;
}

.main_icon_title {
  padding-top: 20px;
  padding-bottom: 5px;
  font-size: 2.5rem;
  font-weight: 700;
}

.main_icon_title2 {
  padding-top: 20px;
  padding-bottom: 5px;
  font-size: 2rem;
  font-weight: 600;
}

.main_icon_subtitle {
  padding-top: 10px;
  font-size: 1.3rem;
  font-weight: 400;
}

.main_icon_text {
  padding-top: 10px;
  font-size: 18px;
  font-weight: 400;
  color: rgb(130, 130, 130);
}

.main_icon_text2 {
  padding-top: 10px;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgb(130, 130, 130);
}

.main_icon_price {
  padding-top: 20px;
  font-size: 25px;
  font-weight: 700;
}

.main_icon_tag {
  padding-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: rgb(130, 130, 130);
}

/* TABEL */

.table_container {
  border-radius: 20px;
  overflow: hidden;
  margin-left: 56px;
  margin-right: 56px;
  padding-bottom: 50px;
}

/* Wrapper enables horizontal scroll on mobile */
.table_wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Rest of the table scrolls horizontally */
.table_scroll {
  position: relative;
}

/* Keep first column sticky */
#customers td:first-child,
#customers th:first-child {
  position: sticky;
  left: 0;
  background-color: rgba(255, 255, 255, 1);
  z-index: 2;
  min-width: 180px;
  border-right: 1px solid rgb(230, 230, 230);
}

#customers td img {
  width: 20px;
  height: auto;
}

#customers {
  width: 100%;
  border-collapse: collapse; /* Ensures clean table rendering */
  color: rgb(14 23 42);
}

.col-description,
.col-free,
.col-starter,
.col-pro,
.col-enterprise {
  border-right: 1px solid rgb(230, 230, 230);
}

#customers {
  border-collapse: collapse;
  width: 100%;
}

#customers th,
#customers td {
  padding: 15px;
  text-align: left;
  white-space: nowrap; /* prevent wrapping */
}

#customers th {
  font-size: 1rem;
  color: rgb(14 23 42);
}

#customers th:first-child {
  width: 25%;
}

#customers th:nth-child(1),
#customers th:nth-child(2),
#customers th:nth-child(3),
#customers th:nth-child(4),
#customers th:nth-child(5),
#customers th:nth-child(6) {
  width: 15%;
  border-bottom: 1px solid rgb(230, 230, 230);
  align-content: flex-end;
}

#customer th {
  font-size: 3rem;
}

#customers tr:hover {
}

/* PRODUCT DASHBOARD */

.dashboard-container {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 600px;
  gap: 10px;
}

.model-item {
  display: flex; /* Use flex to keep button and text aligned */
  align-items: center; /* Aligns items vertically */
  width: 100%;
  height: auto;
  background-color: rgb(255, 255, 255);
}

.model-item-collection {
  display: flex; /* Use flex to keep button and text aligned */
  align-items: center; /* Aligns items vertically */
  width: 100%;
  height: auto;
  background-color: rgb(255, 255, 255);
}

.model-item:hover {
  border: 1px solid rgba(220, 220, 220, 1);
  transition: 0.2s ease;
  scale: 1.03;
}

.model-item-collection:hover {
  border: 1px solid rgba(220, 220, 220, 1);
  transition: 0.2s ease;
  scale: 1.03;
}

.model-item:active {
  border: 1px solid rgba(220, 220, 220, 1);
  scale: 1;
}

.model-item-collection:active {
  border: 1px solid rgba(220, 220, 220, 1);
  scale: 1;
}

.model-item:hover .model-info {
}

.model-item-collection:hover .model-info {
}

.model-grid > .model-item.upload-item:first-child {
  background-color: rgb(250, 250, 250);
  border: 1px solid var(--background5);
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  height: 330px;
}

.model-grid > .model-item-collection.upload-item:first-child {
  background-color: rgb(250, 250, 250);
  border: 1px solid var(--background5);
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  height: 330px;
}

.model-grid > .model-item.upload-item:first-child .model-thumbnail {
  height: 100%;
}

.model-grid > .model-item.upload-item:first-child .model-thumbnail img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.model-grid > .model-item-collection.upload-item:first-child:hover {
  background-color: rgb(240, 240, 240);
}

.model-grid > .model-item-collection.upload-item:first-child .model-thumbnail {
  height: 100%;
}

.model-grid > .model-item-collection.upload-item:first-child .model-thumbnail img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.model-info {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  color: rgb(0, 0, 0);
}

.text-content {
  display: flex;
  flex-direction: column; /* Ensures title and description are stacked */
  align-items: flex-start;
  flex-grow: 1;
  gap: 3px;
}

.text-content h3 {
  margin: 0; /* Remove default margin */
  font-size: 1.6rem; /* Adjust title size */
}

.text-content p {
  margin: 0;
  font-size: 0.9rem;
  color: rgb(150, 150, 150);
}

.download-btn-container {
  margin-left: 10px;
}

.download-btn {
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-right: 10px;
  border-radius: 50px;
  transition: background 0.2s ease;
}

/*
.download-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}
*/

.download-btn img {
  width: 24px;
  height: 24px;
}

.model-list-loading {
  display: flex;
  align-self: center;
  justify-content: center;
  flex-direction: column;
  color: var(--text3);
  font-size: 1.5rem;
  font-weight: 500;
}

.loading-icon {
  width: 40px;
  height: auto;
  object-fit: contain;
}

/* Grid Layout for Models */
.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  width: 100%;
}

@media screen and (max-width: 2400px) {
  .model-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media screen and (max-width: 2000px) {
  .model-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 1300px) {
  .model-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Individual Model Card */
.model-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  border-radius: 15px;
  text-align: left;
  border: 1px solid var(--background5);
}

.model-item-collection {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  border-radius: 15px;
  text-align: left;
  border: 1px solid var(--background5);
}

.model-item-admin {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  border-radius: 15px;
  text-align: left;
}

.model-thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 250px;
}

/* Thumbnail Image */
.model-thumbnail img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  object-fit: cover;
}

/* Model Info */
.model-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: rgb(0, 0, 0);
  width: 100%;
  background-color: rgba(250, 250, 250, 1);
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.text-content h3 {
  overflow: hidden;
  font-size: 1.2rem;
  font-weight: 400;
  white-space: nowrap;
  max-width: 220px;
  text-overflow: ellipsis;
}

.text-content p {
  margin: 0;
  color: rgb(150, 150, 150);
}

/* 3D View Button */
.view-3d-button {
  background-color: #141739;
  color: rgba(255, 255, 255, 1);
  padding: 10px 15px;
  min-width: 100px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.view-3d-button:hover {
  background-color: #1d1d60;
}

.toggle-settings {
  position: relative;
  left: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 1);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: none; /* Hidden by default */
  z-index: 100;
}

.notification_container {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.notification {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 400px;
  height: auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.notification_content {
  display: block;
  width: 100%;
  height: 100%;
}

.notification_title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  font-size: 1.4rem;
  font-weight: 500;
}

.notification_input_container {
  display: flex;
  margin: 15px 0;
  gap: 5px;
  flex-direction: column;
}

.notification_input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.notification_label_tag {
  font-size: 0.7rem;
  color: gray;
}

.notification_message {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
  margin: 10px 0 15px 0;
  color: #000000;
}

.notification_confirmation_container {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-template-columns: 50% 50%;
  height: 50px;
  gap: 20px;
}

.notification_confirmation_yes {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  font-size: 1rem;
  background-color: var(--button3);
  color: rgba(255, 255, 255, 1);
  cursor: pointer;
}
.notification_confirmation_yes:hover {
  background-color: var(--button3_hover);
}
.notification_confirmation_yes:active {
  background-color: var(--button3_active);
}

.notification_confirmation_no {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  font-size: 1rem;
  background-color: var(--button3);
  color: rgba(255, 255, 255, 1);
  cursor: pointer;
}
.notification_confirmation_no:hover {
  background-color: var(--button3_hover);
}
.notification_confirmation_no:active {
  background-color: var(--button3_active);
}

/* Force overlay above everything and cover viewport */
#delete_notification.notification_container {
  position: fixed !important;
  inset: 0 !important;
  display: none; /* JS sets to flex */
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2147483647 !important; /* massive z-index */
}

/* Panel */
#delete_notification .notification {
  background: #fff;
  border-radius: 15px;
  width: 400px;
  max-width: 90vw;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

/* Content */
#delete_notification .notification_content {
  width: 100%;
}

/* Title */
#delete_notification .notification_title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  font-size: 1.4rem;
  font-weight: 500;
}

/* Buttons row: make flex properly */
#delete_notification .notification_confirmation_container {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 50px;
}
#delete_notification .notification_confirmation_container > * {
  flex: 1 1 0;
}

/* Buttons */
#delete_notification .notification_confirmation_yes,
#delete_notification .notification_confirmation_no {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 10px;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
}
#delete_notification .notification_confirmation_yes {
  background: var(--button3);
}
#delete_notification .notification_confirmation_yes:hover {
  background: var(--button3_hover);
}
#delete_notification .notification_confirmation_yes:active {
  background: var(--button3_active);
}

/* Optional: make "No" neutral */
#delete_notification .notification_confirmation_no {
  background: #6b7280; /* Tailwind gray-500-ish */
}
#delete_notification .notification_confirmation_no:hover {
  background: #4b5563;
}
#delete_notification .notification_confirmation_no:active {
  background: #374151;
}

.subscription-features {
  color: #000; /* make sure it's visible */
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 15px;
  font-size: 14px;
}
.subscription-features ul {
  margin: 0;
  padding-left: 18px;
  padding-top: 10px;
}
.plan-name {
  font-size: 1rem;
  font-weight: 600;
}
.subscription-features li {
  margin-bottom: 4px;
}

.loading_animation {
  display: block;
  width: 50px;
  height: auto;
  object-fit: contain;
}

/* Custom Progress Bar */
#progress-bar-container,
.plateau_progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(255, 255, 255);
  text-align: center;
  z-index: 10;
  border: 1px solid rgb(220, 220, 220);
  padding: 10px;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
}

#progress-bar-background,
.plateau_progress_bar {
  width: 100%;
  height: 10px;
  background-color: rgb(220, 220, 220);
  border-radius: 5px;
  overflow: hidden;
}

#progress-bar,
.plateau_progress_bar span {
  display: block;
  width: 0%;
  height: 10px;
  background: #007bff;
  border-radius: 5px;
  transition: width 120ms ease;
}

#progress-text,
.plateau_progress_text {
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  width: 100%;
  color: rgb(0, 0, 0);
}

.plateau_progress_logo {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.view-3d-button {
  padding: 12px 20px;
  background-color: var(--button6);
  color: rgba(255, 255, 255, 1);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
}

.view-3d-button:hover {
  background-color: var(--button6_hover);
}
.view-3d-button:active {
  background-color: var(--button6_active);
}

.account_title_container {
  display: flex;
  justify-items: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100px;
  padding-top: 50px;
  padding-left: 50px;
}

.section-title-subtitle_hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  margin-top: 0px;
  background-color: var(--background12);
}

.analytics-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  table-layout: auto;
}

.analytics-table thead th {
  padding: 0 12px 8px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(17, 21, 26, 0.6);
}

.analytics-table thead th:nth-child(n + 2):nth-child(-n + 6) {
  text-align: right;
}

.analytics-table__expand-header {
  width: 52px;
  text-align: right;
}

.analytics-row {
  border: 1px solid rgb(200, 200, 200);
}

.analytics-row td {
  background: var(--background6);
  padding: 14px 16px;
  border: none;
  color: var(--text5);
}

.analytics-row:hover td {
  background: rgb(230, 230, 230);
}

.analytics-row td:first-child {
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  font-weight: 500;
}

.analytics-row td:last-child {
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}

.analytics-row.is-expanded td:first-child {
  border-bottom-left-radius: 0;
}

.analytics-row.is-expanded td:last-child {
  border-bottom-right-radius: 0;
}

.analytics-table .is-numeric {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.analytics-cell__model {
  font-weight: 700;
}

.analytics-cell__money {
  color: #1f3d8b;
}

.analytics-expand-cell {
  width: 52px;
  text-align: right;
}

.analytics-expand-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgb(200, 200, 200);
  display: grid;
  place-items: center;
  color: #000000;
  background-color: rgb(255, 255, 255);
}

.analytics-expand-btn:hover {
  background: rgb(245, 245, 245);
}

.analytics-expand-btn[aria-expanded="true"] .material-symbols-rounded {
  transform: rotate(180deg);
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  transition: transform 160ms ease;
  font-size: 22px;
}

.analytics-row-detail td {
  border: none;
  position: relative;
}

.analytics-detail-card {
  background: #ffffff;
  border-radius: 0 0 14px 14px;
  padding: 16px;
  margin-top: -12px;
  border-top: 1px solid rgb(240, 240, 240);
}

.analytics-detail-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.analytics-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e9edfb;
  color: #1f3d8b;
  border-radius: 12px;
  padding: 8px;
}

.analytics-detail-title {
  font-weight: 700;
  color: var(--text5);
}

.analytics-detail-subtitle {
  font-size: 12px;
  color: rgba(17, 21, 26, 0.6);
}

.analytics-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.analytics-detail-item {
  background: var(--background6);
  border: 1px solid #e3e8f4;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.analytics-detail-item:hover {
}

.analytics-detail-label {
  font-size: 12px;
  color: rgba(17, 21, 26, 0.6);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.analytics-detail-value {
  color: var(--text5);
}

.chart_overview {
  height: 50px;
}

.chart_popular {
  padding-right: 20px;
  margin-left: -15px;
}

.user_table th,
td,
tr {
  text-align: left;
  width: auto;
}

#customers td {
  color: rgb(0, 0, 0);
  font-weight: 500;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 1);
}

.thead tr,
th {
  padding: 10px;
}

.table_subject:first-child {
  position: sticky;
  top: 0;
  background-color: rgb(255 255 255);
}

.dropdown_wrapper {
  position: relative;
  display: inline-block;
}

.dropdown_analytics {
  font-size: 1.5rem;
  color: #2758d0;
  background-color: #fff;
  border: none;
  padding: 1px 10px 0px 10px;
  margin: 0px -5px 0 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  width: auto;
  min-width: 60px;
  max-width: 100%;
}

/* Custom arrow */
.dropdown_wrapper::after {
  content: "▾";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #2758d0;
}

/* --- PRODUCTS PAGE -- */

.section-container {
  margin-top: 50px;
  margin-left: 50px;
  margin-right: 50px;
  margin-bottom: 20px;
}

.section-container-subtitle {
  margin-top: 50px;
  margin-left: 50px;
  margin-right: 50px;
  margin-bottom: 20px;
}

.section-title-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 0px;
}

.subtitle_start {
  justify-content: flex-start;
}

.subtitle_center {
  justify-content: center;
}

.section_title_subtitle_video {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-direction: row;
  align-items: flex-end;
  width: 100%;
  height: 260px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
}

.section-product-room-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 70px;
  padding-bottom: 0px;
  margin-top: 70px;
}

.section-product-multi-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  padding: 30px;
}

.section-products-container {
  width: 100%;
  height: 700px;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 50px;
  padding-left: 30px;
}

.section-product-container-30-left {
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  width: 30%;
  height: calc(100% - 30px);
  padding: 35px;
  margin-top: 15px;
  margin-bottom: 20px;
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(230, 230, 230);
}

.section-product-container-70-right {
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
  width: 70%;
  height: 100%;
  padding: 15px;
}

.section-product-container-70-left {
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  width: 70%;
  height: 100%;
  padding: 15px;
}

.section-solutions-container-30-right {
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
  width: 30%;
  height: 100%;
  padding: 15px;
}

.section-product-container-30-right {
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
  width: 30%;
  height: 100%;
  padding: 15px;
}

.section-product-container-100 {
  width: 100%;
  height: 100%;
}

.section-product-container-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.section-products-container-contactBtn {
  display: block;
  position: relative;
  width: 100%;
  height: 400px;
  padding: 30px;
}

.load-more-btn {
  display: block;
  position: relative;
  width: 200px;
  padding: 20px;
  margin: 20px auto;
  font-size: 1.2rem;
  text-align: center;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--text1);
  font-weight: 600;
  cursor: pointer;
  margin-top: 50px;
}

.load-more-btn:hover {
  background-color: rgb(39 88 208 / 100%);
}

.load-more-btn:active {
  background-color: rgb(32, 75, 184);
}

.center_left {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.center_right {
  align-items: flex-end;
  flex-direction: column;
}

.center_top {
  align-items: flex-start;
  flex-direction: column;
}

.center_bottom {
  align-items: flex-end;
  flex-direction: row;
}

.center_left img {
  position: relative;
  float: left;
}

.center a {
  text-decoration: none;
}

.center-content {
  text-align: center;
}

.center_content_left {
  display: flex;
  align-content: center;
}

.left_content {
  text-align: left;
}

/* DRAG AND DROP OVERLAY */

.upload_view-3d {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px; /* 👈 ensure it has something to fill */
  overflow: hidden;
}

.drop-overlay {
  position: absolute;
  inset: 0;
  border: 2px dashed #96969686;
  border-radius: 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  pointer-events: all;
  z-index: 9999;
  margin: 100px;
}

.drop-overlay.visible {
  background: #9696961a;
  border-color: #fff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.drop-message {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.drop-overlay img {
  width: 50px;
  height: 50px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.drop-overlay p {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  color: #969696;
}

.drop-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.drop-overlay.hidden {
  display: block;
  opacity: 0;
}

.solutions_title {
  font-size: 5.5rem;
  font-weight: 600;
  margin: 10px 0;
  color: rgb(0, 0, 0);
}

.solutions_subtitle {
  font-size: 2rem;
  font-weight: 500;
  margin: 10px 0;
  color: rgb(170, 170, 170);
}

.solutions_subtitle2 {
  font-size: 2rem;
  font-weight: 500;
  margin: 10px 0;
  color: rgb(0, 0, 0);
}

.solutions_subtitle3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 10px 0;
  color: rgb(100, 100, 100);
}

.solutions_subtitle_text {
  display: block;
  position: relative;
  width: 50%;
  padding-top: 10px;
  padding-bottom: 50px;
  text-align: center;
  left: 25%;
}

.solutons_container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 50px;
  margin: 50px;
  border-radius: 15px;
  background-color: rgba(250, 250, 250, 1);
  height: auto;
  width: 100%;
  border: 1px solid rgba(240, 240, 240, 1);
}

.solutions_center_text {
  display: block;
  width: 100%;
  padding-top: 0px;
  text-align: center;
}

.solutions_title_iframe {
  font-size: 30px;
  font-weight: 600;
  margin: 20px 0;
}

.solutions_subtitle_iframe {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 10px 0;
}

.vat {
  font-size: 1rem;
  font-weight: 400;
  color: darkgray;
}

.solutions_title_container {
  font-size: 40px;
  font-weight: 600;
  margin: 10px 0;
  color: rgb(74, 96, 202);
}

.solutions_subtitle_container {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 10px 0;
  color: rgb(150, 150, 150);
}

.solutions_icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.icon_left {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.text-left {
  text-align: left;
}

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

.lightgrey1 {
  background-color: rgb(252, 252, 252);
}

.lightgrey2 {
  background-color: rgb(249, 249, 249);
}

.products-btnContact {
  display: block;
  width: 150px;
  height: 50px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  border-radius: 10px;
  background-color: rgb(74, 96, 202);
  text-decoration: none; /* Remove underline from the link */
  text-align: center; /* Center-align the text */
  line-height: 50px; /* Vertically center the text within the button */
  transform: translateY(20px);
  margin-left: auto;
  margin-right: auto;
}

.products-btnContact:hover {
  background-color: rgb(66, 88, 197);
}

.products-btnContact:focus {
  background-color: rgb(51, 75, 188);
}

/* SUBSCRIBE & REQUEST OFFER */

.subscribe_container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  height: 300px;
  margin-top: 0px;
  margin-right: 80px;
  margin-bottom: 0px;
  margin-left: 80px;
  padding: 30px;
}

.subscribe_title {
  font-size: 24px;
  text-align: center;
}

.request_offer_title {
  font-size: 24px;
  text-align: left;
}

.subscribe_form {
  margin-top: 20px;
}

.subscribe_email {
  display: inline-block;
  width: 75%;
  height: 40px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  color: rgb(100, 100, 100);
  border: 1px solid var(--background5);
  background-color: rgb(255, 255, 255);
}

.subscribe_button {
  display: inline;
  float: right;
  width: 25%;
  height: 42px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  transform: translateX(-5px);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: var(--button3);
}

.subscribe_button:hover {
  background-color: var(--button3_hover);
}

.subscribe_button:active {
  background-color: var(--button3_active);
}

.subscribe_message {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  margin-top: 10px;
  color: rgb(0, 0, 0);
}

.view_in_ar_btn {
  display: inline;
  position: relative;
  width: 40px;
  height: auto;
  top: 12px;
  padding: 5px;
  background-color: rgb(250, 250, 250);
  border-radius: 20px;
}

/* --- PLANS PAGE -- */

.section-plans-container {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 100%;
  height: 250px;
  padding: 50px;
}

.plans-container-left {
  display: inline;
  position: relative;
  width: 40%;
  height: 100%;
  padding-right: 20px;
}

.plans-container-right {
  display: inline;
  position: relative;
  width: 60%;
  height: 100%;
}

.plans-container-center {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.plans-title {
  text-align: center;
  font-size: 5vw;
  font-weight: 700;
  padding: 10px;
  color: rgb(157, 157, 157);
}

.plans-subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  padding: 10px;
  color: rgb(199, 199, 199);
}

.our-plans-container {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgb(230, 230, 230);
}

.customer-container {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 20px;
  color: rgba(255, 255, 255, 1);
}

.company-list {
  width: 100%;
  background: var(--background6);
  border-radius: 8px;
  color: rgb(150, 150, 150);
}

.model-list {
  width: 100%;
  background: var(--background6);
  border-radius: 8px;
  color: rgb(150, 150, 150);
}

.company-list ul {
  list-style: none;
  padding: 0;
}

.company-list li {
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  cursor: pointer;
}

.company-list li:hover {
  font-weight: 600;
}
.company-list li:active {
  font-weight: 500;
}

.company-list li:last-child {
  border-bottom: none;
}

.modelList li {
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  border-bottom: 0px solid var(--background8);
  list-style-type: none; /* Removes bullets */
  padding-left: 0; /* Removes default padding */
  margin-bottom: 5px;
  color: rgb(150, 150, 150);
}

.modelList li:hover {
  font-weight: 600;
}
.modelList li:active {
  font-weight: 500;
}

.modelList li:last-child {
  border-bottom: none;
}

.company-list_title {
  padding-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgb(39 88 208);
}

.company-details {
  width: 100%;
  height: auto;
  background: var(--background6);
  border-radius: 8px;
  color: rgba(255, 255, 255, 1);
}

.company-details h3 {
  margin-bottom: 0px;
}

.user-card {
  border-bottom: 0px solid var(--background1);
  width: 100%;
}

.user-card:last-child {
  border-bottom: none;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-row {
  display: flex;
  flex-direction: column; /* Stack items vertically */
}

.value {
  text-align: left;
}

.update-button {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-self: flex-end;
  right: 0;
  border: none;
  cursor: pointer;
  background-color: var(--button3);
  color: rgba(255, 255, 255, 1);
  border-radius: 10px;
  font-size: 1rem;
}

.update-button:hover {
  background-color: var(--button3_hover);
}

.update-button:active {
  background-color: var(--button3_active);
}

/* Centered spinner overlay for any chart/table container */
.loading-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.loading-overlay img.loading-icon {
  width: 48px;
  height: 48px;
  opacity: 0.85;
}

/* Make the chart containers positioning contexts */
.analytics-graph,
.graph_container {
  position: relative; /* so overlay can center correctly */
}

/* --- ACCOUNT --- */

.account {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.account_login {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.account_verification {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.account_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 50px;
}

.customers_container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 50px;
}

.shop_viewer_container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.shop_viewer {
  background-color: rgb(255, 255, 255);
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
}

.shop_viewer.loaded {
  display: flex;
}

.shop_viewer.hidden {
  display: none;
}

.close-button {
  position: absolute;
  right: 15px;
  top: 120px;
  width: 55px;
  height: 55px;
  border-radius: 30px;
  background-color: var(--background0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 90;
  border: none;
  cursor: pointer;
}

.close-button img {
  width: 25px;
  height: auto;
  object-fit: contain;
}

.products_container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 50px;
}

.account_modal {
  display: block;
  width: 400px;
  height: auto;
  background-color: rgb(250, 250, 250);
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  border: 1px solid rgba(230, 230, 230, 1);
}

.modalsGrid {
  display: inline-flex;
  justify-content: center;
  align-items: start;
  flex-direction: row;
  width: 100%;
  height: 100%;
  gap: 20px;
}

.account_products {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.account_modal_left {
  display: block;
  width: 40%;
  height: auto;
  background-color: var(--background9);
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
}

.account_modal_customer_left {
  display: block;
  width: 33%;
  height: auto;
  background-color: var(--background6);
  border-radius: 10px;
  padding: 20px;
}

.account_modal_customer_center {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.account_modal_right {
  display: block;
  width: 33%;
  height: auto;
  background-color: var(--background6);
  border-radius: 10px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin: 10px;
}

.account_modal_customers_right {
  display: block;
  width: 33%;
  height: auto;
  background-color: var(--background6);
  border-radius: 10px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}

.account_modal_customers_middle {
  display: block;
  width: 33%;
  height: auto;
  background-color: var(--background6);
  border-radius: 10px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
}

/* 4-column grid */
.modals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; /* adjust to taste */
  align-items: start;
  width: 100%;
}

/* Optional: consistent card look per column */
.account_modal_customers_1,
.account_modal_customers_2,
.account_modal_customers_3,
.account_modal_customers_4 {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px;
}

/* Titles */
.company-list_title {
  font-weight: 600;
  font-size: 18px;
}

/* Inputs look consistent full-width */
.account_modal_customers_2 input[type="text"] {
  width: 100%;
  box-sizing: border-box;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .modals {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .modals {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .modals {
    grid-template-columns: 1fr;
  }
}

.account_verification_title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  text-align: center;
  line-height: 1.3;

  font-size: 1.2rem;
  font-weight: 500;
  color: rgb(30, 30, 30);
  padding-bottom: 20px;
}

.account_verification_text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text3);
  padding-bottom: 20px;
}

.menu-items-right .dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: max-content;
}

/* Extend hover hit-area to bridge the gap before the menu */
.menu-items-right .dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}

.menu-items-right .dropdown-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgb(39, 88, 208);
  color: rgb(255, 255, 255);
  padding: 12px 18px;
  text-align: left;
  border: none;
  min-width: 150px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.menu-items-right .dropdown-button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(255, 255, 255, 0.9);
}

/* Remove bottom border radius when menu is visible */
.menu-items-right .dropdown:hover .dropdown-button {
  background-color: rgb(35, 81, 192);
}

.menu-items-right .dropdown-menu {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: rgb(255, 255, 255);
  border-radius: 14px;
  z-index: 5;
  min-width: 200px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgb(234, 237, 243);
}

.menu-items-right .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

/* On hover: fade in and slide down */
.menu-items-right .dropdown:hover .dropdown-menu {
  opacity: 1;

  pointer-events: auto;
}

/* Keep menu open when moving cursor within it */
.menu-items-right .dropdown-menu:hover {
  opacity: 1;

  pointer-events: auto;
}

/* Make sure the dropdown items also align */
.menu-items-right .dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: rgb(39, 88, 208);
  text-decoration: none;
  text-align: left;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  background-color: rgba(39, 88, 208, 0.04);
}

.menu-items-right .dropdown-menu a:hover {
  background-color: rgb(39, 88, 208);
  color: rgb(255, 255, 255);
}

.menu-items-right .dropdown-menu a:active {
  background-color: rgb(33, 77, 186);
  color: rgb(255, 255, 255);
}

.view_3d_share_modal_bar_button img {
  display: block;
  position: absolute;
  width: 25px;
  height: 25px;
  right: 21px;
  top: 31px;
}

.qr_label {
  display: block;
  width: 130px;
  height: auto;
}

/* --- QR CODE --- */

.qrcode_overlay {
  position: fixed; /* was: position: flex (invalid) */
  inset: 0; /* top/right/bottom/left: 0; full-viewport */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* above everything else */
  pointer-events: auto; /* was: none; allow clicks on close button */
}

.hidden {
  display: none;
}

.qrcode_background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
}

.qrcode_container_viewer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 210px;
  background-color: rgba(255, 255, 255, 1);
  border: 0px solid rgb(220, 220, 220);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 5px;
  z-index: 1;
}

.qrcode_container_viewer_image img {
  width: 145px;
  height: 145px;
}

.qrcode_container_viewer_text {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
  text-align: center;
  padding-top: 14px;
}

.qrcode_container_viewer_description {
  display: flex;
  flex-direction: column;
  align-items: first baseline;
  justify-content: left;
  width: 300px;
  height: 210px;
  background-color: rgba(240, 240, 240, 1);
  border: px solid rgb(220, 220, 220);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 20px;
  z-index: 1;
}

.qrcode_container_viewer_description_title {
  display: block;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 600;
  padding-bottom: 10px;
}

.qrcode_container_viewer_description_title_description {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
}

#viewer-buttons-container {
  position: absolute;
  top: 10px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}

#closeViewerBtn,
#qr-toggle-button,
#fullscreen-toggle-button,
#play-pause-button,
#animation-toggle-button,
#ar-button {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 30px;
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
}

#closeViewerBtn img,
#qr-toggle-button img,
#fullscreen-toggle-button img,
#play-pause-button img,
#animation-toggle-button img,
#ar-button img {
  width: 24px;
  height: 24px;
}

/* --- QR TOGGLE BUTTON --- */
/*
#qr-toggle-button {
  position: absolute;
  right: 15px;
  top: 75px;
  width: 55px;
  height: 55px;
  border-radius: 30px;
  background-color: var(--background0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 90;
  border: none;
  cursor: pointer;
}

#qr-toggle-button img {
  width: 25px;
  height: auto;
  object-fit: contain;
}

/* --- QR TOGGLE BUTTON --- */
/*
#fullscreen-toggle-button {
  position: absolute;
  right: 15px;
  top: 140px;
  width: 55px;
  height: 55px;
  border-radius: 30px;
  background-color: var(--background0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 90;
  border: none;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}

#fullscreen-toggle-button img {
  width: 20px;
  height: auto;
  object-fit: contain;
}
*/
/* --- CLOSE VIEWER BUTTON --- */
/*
#closeViewerBtn.close-button {
  position: absolute;
  right: 15px;
  top: 10px;
  width: 55px;
  height: 55px;
  border-radius: 30px;
  background-color: var(--background0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 90;
  border: none;
  cursor: pointer;
}

#closeViewerBtn.close-button img {
  width: 20px;
  height: auto;
  object-fit: contain;
}
*/

/* --- QR CLOSE BUTTON --- */

.qr-close-button {
  position: absolute;
  right: 15px;
  top: 10px;
  width: 55px;
  height: 55px;
  background-color: transparent;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
}

.qr-close-button img {
  width: 38px;
  height: 38px;
  padding-top: 5px;
  object-fit: contain;
}

/*
#play-pause-button {
  position: absolute;
  right: 15px;
  top: 140px;
  width: 55px;
  height: 55px;
  border-radius: 30px;
  background-color: var(--background0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 90;
  border: none;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}

#play-pause-button img {
  width: 20px;
  height: auto;
  object-fit: contain;
}
*/

.product-usage {
  margin: 6px 5px;
}

.product-usage-label {
  margin-top: 10px;
  font-weight: 500;
  font-size: 0.8rem;
}

.product-progress-bar {
  background-color: #ddd;
  border-radius: 5px;
  height: 20px;
  width: 100%;
  overflow: hidden;
}

.product-progress-bar-fill {
  height: 100%;
  width: 0%;
  background-color: var(--background0);
  border-radius: 5px;
  transition: width 0.5s ease-in-out;
}

/* --- CONTACT --- */

.section-contact-container {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 100%;
  height: 800px;
  padding-top: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
  padding-left: 50px;
}

.section-settings-container {
  display: flex;
  align-items: flex-start; /* Align children to the top */
  gap: 30px; /* Optional spacing between left and right */
  width: 100%;
  height: auto;
  padding-top: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
  padding-left: 50px;
}

.section_all_customers_container {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding-top: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
  padding-left: 50px;
  margin-top: 70px;
}

.section_analytics_container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  height: auto;
  padding-top: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
  padding-left: 50px;
}

.graph_subtitle_container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  width: 100%;
  height: 40px;
}

.graph_subtitle_center {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  color: var(--button3);
  font-size: 0.8rem;
}

.contact-container-left {
  display: inline;
  position: relative;
  width: 70%;
  height: 100%;
  padding-top: 0px;
}

.contact_information {
  display: block;
  position: relative;
  width: 100%;
  height: calc(100% - 30px);
  background-color: var(--background6);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(240, 240, 240, 1);
}

.contact_information_title {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgb(0, 0, 0);
}

.account_information_title {
  padding-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 600;
  width: 100%;
  color: rgb(39, 88, 208);
}

.contact_information_subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  padding-bottom: 15px;
}

.contact_information_text_basedIn {
  font-size: 1.1rem;
  font-weight: 600;
  padding-bottom: 25px;
}

.contact_information_text_tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding-bottom: 3px;
  color: var(--text6);
}

.contact_information_text {
  font-size: 1.1rem;
  font-weight: 600;
  padding-bottom: 15px;
}

.contact_information_text a {
  color: var(--text3);
  text-decoration: none;
}

.contact_information_text a:hover {
  text-decoration: underline;
}

.video_contact_container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.contact-container-right {
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  width: 30%;
  height: 100%;
}

.contact-title {
  text-align: right;
  font-size: 70px;
  font-weight: 700;
  color: rgb(0, 0, 0);
}

.contact-subtitle {
  width: 100%;
  text-align: right;
  font-size: 50px;
  font-weight: 500;
  color: rgb(199, 199, 199);
}

.contact_text a {
  color: rgb(107, 107, 107);
  text-decoration: none;
}

.contact_text a:hover {
  color: rgb(66, 88, 197);
}

.contact_text a:focus {
  color: rgb(51, 75, 188);
}

.contact_form {
  margin-top: 20px;
}

.upload_bottom_container {
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  background-color: rgb(255, 255, 255);
  border-top: 1px solid rgb(240, 240, 240);
  border-bottom-right-radius: 15px;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  height: 40px;
  padding-left: 10px;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  margin-bottom: 10px;
  font-size: 16px;
  color: rgb(130, 130, 130);
  border: 1px solid rgb(240, 240, 240);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--background0);
  outline: none; /* remove default OS outline */
  color: rgb(150, 150, 150);
}

.newSubscriptionSelect {
  height: 50px;
  display: block;
  font-size: 16px;
  color: #000;
  background-color: var(--background5);
  border: 0;
  border-radius: 10px;
  padding: 10px 40px 10px 12px; /* extra right padding so text doesn't overlap arrow */
  appearance: none; /* remove default arrow (most browsers) */
  -webkit-appearance: none; /* Safari/Chrome */
  -moz-appearance: none; /* Firefox */
  background-image: url("https://plateau.ar/assets/icons/chevron.down%201.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px; /* size of arrow */
  cursor: pointer;
}

/* Optional: for Firefox, prevent weird dropdown arrow spacing */
.newSubscriptionSelect::-ms-expand {
  display: none;
}

textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  color: rgb(150, 150, 150);
  font-family: "Noto Sans", sans-serif;
}

.contact_input,
.contact_input_selection,
.contact_textarea,
.file_input_selection {
  display: inline;
  width: 100%;
  height: 40px;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  color: rgb(130, 130, 130);
  border: 1px solid rgba(240, 240, 240, 1);
}

.contact_textarea {
  height: 190px;
}

.description_textarea {
  display: inline;
  width: 100%;
  height: 40px;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  padding-left: 10px;
  font-size: 16px;
  color: rgb(130, 130, 130);
  height: 110px;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.contact_input_selection {
  display: inline-block;
  width: 100%;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 10px;
  padding: 10px; /* Adjust padding to match */
  margin-bottom: 10px;
  font-size: 16px;
  color: rgb(130, 130, 130);
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

.file_input_selection {
  display: inline-block;
  width: 100%;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 10px; /* Adjust padding to match */
  margin-bottom: 10px;
  font-size: 16px;
  color: rgb(130, 130, 130);
  appearance: none; /* Remove default arrow */
  -webkit-appearance: none; /* Remove default arrow */
  -moz-appearance: none; /* Remove default arrow */
}

.select-wrapper::after {
  content: "";
  position: absolute;
  top: 42%;
  right: 20px;
  transform: translateY(-50%);
  pointer-events: none;
  width: 16px;
  height: 16px;
  background: url("https://plateau.ar/assets/icons/chevron.down 1.svg") no-repeat center center;
  background-size: contain; /* Adjust size to fit the image */
}

option {
  font-size: 16px;
  color: rgb(130, 130, 130);
}

.contact_input[name="Omschrijving"] {
  height: 100px; /* Adjust the height as needed */
}

.contact_input_button {
  display: block;
  width: 100%;
  height: 40px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--text1);
  background-color: var(--button3);
}

.contact_input_button:hover {
  background-color: var(--button3_hover);
}

.contact_input_button:active {
  background-color: var(--button3_active);
}

.contact_input_message {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
  color: rgba(100, 100, 100, 1);
}

.aanvragen_container {
  border-radius: 20px;
  padding: 20px;
  padding-top: 30px;
  height: auto;
  background-color: rgb(255, 255, 255);
  border: 1px solid var(--background5);
}

.page_title {
  width: 100%;
  text-align: left;
  font-size: 1.3rem;
  padding-top: 20px;
  padding-bottom: 10px;
}

.popup_step_content {
  width: 100%;
  text-align: left;
  font-size: 0.8rem;
  padding: 10px 0px;
}

.page_title_extraHeight {
  padding-top: 40px;
}

.analytics-graph {
  padding-top: 10px;
}

.filter-row {
  margin: 10px 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}

.filter-dropdown {
  flex: 1 1 220px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 250px;
}

.filter-dropdown span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.filter-dropdown select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  border: 1px solid #f0f0f0;
  border-radius: 15px;
  padding: 10px 42px 10px 16px;
  text-align: left;
  font-size: 0.95rem;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%232758D0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  color: #111827;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.filter-dropdown select:focus {
  outline: none;
  border-color: #2758d0;
  box-shadow: 0 0 0 2px rgba(39, 88, 208, 0.2);
}

.filter-dropdown select:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.filter-dropdown select::-ms-expand {
  display: none;
}

@media (max-width: 640px) {
  .filter-dropdown {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

/* --- UPLOAD --- */

.contact_input,
.login_input_selection {
  display: inline;
  width: 100%;
  height: 40px;
  border: 1px solid rgba(240, 240, 240, 1);
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  color: rgb(150, 150, 150);
}

.file_input_selection {
  display: inline-block;
  width: 100%;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  color: rgb(130, 130, 130);
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding-left: 10px;
}

/* Hide the default file input */
input[type="file"] {
  display: none;
}

/* Style the label to look like a button */
.custom-file-upload {
  display: inline-block;
  padding: 10px 0px;
  cursor: pointer;
  width: 100%;
  background-color: var(--button3);
  color: var(--text1);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
  cursor: pointer;
}

.custom-file-upload:hover {
  background-color: var(--button3_hover);
}

.custom-file-upload:active {
  background-color: var(--button3_active);
}

#file-name {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30px;
  font-size: 0.9rem;
  color: rgb(130, 130, 130);
  padding-top: 20px;
  padding-bottom: 20px;
}

.thumbnail-capture-container {
  display: flex;
  position: absolute;
  width: 100%;
  bottom: 10px;
  justify-content: center;
  align-items: center;
  z-index: 90;
}

/* --- SETTINGS --- */

.settings {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
}

.settings_container {
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 20px;
  padding-top: 0px;
  width: 100%;
  border: 1px solid var(--background5);
}

.graph_container {
  background-color: rgb(250, 250, 250);
  border-radius: 20px;
  padding: 20px;
  padding-top: 20px;
  width: 100%;
  border: 1px solid var(--background5);
}

.accountsettings_container {
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  border: 1px solid var(--background5);
}

.payment_container {
  display: block;
  background-color: rgb(250, 250, 250);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  border: 1px solid var(--background5);
}

.models_container {
  display: block;
  background-color: var(--background6);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  border: 1px solid var(--background5);
}

.settings_btn {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 10px;
}

.settings_save_button {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-self: flex-end;
  right: 0;
  border: none;
  cursor: pointer;
  background-color: var(--button3);
  color: rgba(255, 255, 255, 1);
  border-radius: 10px;
  font-size: 1rem;
}

.settings_save_button:hover {
  background-color: var(--button3_hover);
}

.settings_save_button:focus {
  background-color: var(--button3_active);
}

.settings_delete_button {
  display: block;
  width: 100%;
  height: 40px;
  font-size: 16px;
  border-radius: 10px;
  background-color: var(--button3);
  color: rgba(255, 255, 255, 1);
}

.settings_delete_button:hover {
  background-color: var(--button3_hover);
}

.settings_delete_button:active {
  background-color: var(--button3_active);
}

.settings_items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  color: rgb(0, 0, 0);
}

.settings_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Welcome text */
.welcome_user {
  font-size: 1.8rem;
  color: rgb(0, 0, 0);
  font-weight: 500;
  padding-left: 5px;
}

/* PLAN + Basic next to each other */
.plan_info {
  display: flex;
  align-items: center;
  gap: 0px;
  font-size: 0.9rem;
}

.subscription_title {
  font-size: 1rem;
  color: rgb(0, 0, 0);
  font-weight: 500;
  padding: 5px;
}

.subscription_text {
  font-size: 1rem;
  color: var(--button3);
  font-weight: 600;
  padding-left: 5px;
}

/* Right side button */
.settings_right {
  display: flex;
  align-items: center;
}

.subscription_settings {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  gap: 10px;
}

.editor_settings_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.upload_button_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
  cursor: pointer;
}

.account_settings {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 10px;
  gap: 10px;
}

.upgrade_button {
  background-color: var(--button3);
  color: #ffffff;
  font-weight: bold;
  font-size: 0.9rem;
  border: none;
  padding: 13px 18px;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  /*pointer-events: none;*/
}

.upgrade_button:hover {
  background-color: var(--button3_hover);
}

.upgrade_button:active {
  background-color: var(--button3_active);
}

.invoice_container {
  display: flexbox;
  justify-content: left;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
}

.invoice_title {
  display: flex;
  justify-content: left;
  align-items: center;
  font-size: 1.5rem;
  color: rgb(0, 0, 0);
  font-weight: 500;
  height: 70px;
  padding: 5px;
  border-top: 1px solid var(--background5);
}

.settings_title {
  display: flex;
  justify-content: left;
  align-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: rgb(0, 0, 0);
  font-weight: 500;
  height: 100%;
  padding: 5px;
  padding-bottom: 15px;
}

.invoice_table_header {
  border-radius: 15px;
  height: 20px;
}

th {
  font-size: 0.8rem;
  height: 30px;
}

tr {
  font-size: 0.8rem;
  height: 50px;
}

thead {
  margin: 5px;
}

/* SCROLLEBLE GRID */

.scroll_grid {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: auto;
  gap: 30px;
  padding-left: 40px;
  padding-right: 40px;
  overflow-x: auto;
  padding-bottom: 50px;
  justify-content: center;
}

/* --- VIDEOS --- */

.video_grid {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: auto;
  gap: 30px;
  padding-left: 30px;
  padding-right: 30px;
  overflow-x: auto;
  padding-bottom: 50px;
}

.video_item {
  position: relative;
  width: 350px;
  height: 550px;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid var(--bordergray);
}

.video_item_cover {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  background-color: rgb(255, 255, 255);
  bottom: 0px;
  left: 0px;
  z-index: 10;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}

.grid_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  margin: 0px;
}

#video_main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  border: 1px solid rgb(220, 220, 220);
}

#video_contact {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

#video1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

#video2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

#video3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

#video4 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

#video5 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

#video6 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

#video7 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

#video8 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.play_button_large {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--button6);
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  z-index: 2;
}

.play_button_large img {
  width: 13px;
  height: auto;
}

.play_button_small {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: rgba(0, 0, 0, 1);
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  z-index: 20;
}

.play_button_small img {
  width: 14px;
  height: auto;
}

/* HOTSPOTS */

.hotspot-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hotspot-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.hotspot-item span {
  flex: 1;
  font-weight: 500;
  font-size: 1rem;
  color: rgb(100, 100, 100);
}

.hotspot-item button {
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #f5f5f5;
  cursor: pointer;
}
.hotspot-item button:hover {
  background: #e5e5e5;
}

/* --- FETCHED MODELS FROM MONGODB --- */

#models_loaded {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 70px;
}

.modelContainer {
  margin: 15px;
  text-align: center;
  background-color: rgb(255, 255, 255);
  border: 2px solid var(--background2);
  border-radius: 10px;
}

.modelContainer:hover {
  border: 2px solid var(--background1);
}

.modelContainer:active {
  border: 2px solid var(--background4);
}

.image {
  width: 100%;
  height: 100px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  object-fit: cover;
}

.name {
  display: block;
  position: relative;
  color: rgb(0, 0, 0);
  margin: 5px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  margin-left: 10px;
  margin-bottom: 7px;
}

.category {
  display: block;
  position: relative;
  color: rgba(170, 170, 170, 1);
  margin: 5px;
  font-size: 14px;
  text-align: left;
  margin-left: 10px;
  margin-bottom: 7px;
}

.video_playBtn:hover {
  width: 53px;
}

.video_playBtn:active {
  padding: 2px;
}

/* --- IFRAME --- */

.iframe-container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgb(230, 230, 230);
}

.iframe-products {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 0px solid var(--background11);
}

.comment {
  display: block;
  position: relative;
  color: rgb(150, 150, 150);
  margin: 10px;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
}

/* --- LINKS --- */

.link {
  margin-top: 15px;
}

.link a {
  text-decoration: none;
}

.link a:hover {
}

.link a:active {
}

.link_login {
  margin-top: 15px;
}

.link_login a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 5px;
  text-align: center;
  color: var(--text3);
}

.link_login a:hover {
  text-decoration: underline;
}

.link_login_platform {
  display: block;
  position: absolute;
  left: 10px;
  top: 10px;
  width: 200px;
  height: 50px;
  margin: 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(230, 230, 230, 1);
}

.link_login_platform:hover {
  background-color: rgb(250, 250, 250);
}

.link_login_platform_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.link_login_platform button {
  background-color: rgba(255, 255, 255, 0);
}

.link_login_platform a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: rgb(37, 43, 113);
}

.link_login_platform img {
  margin-right: 8px; /* Adjust the margin as needed */
  width: 20px; /* Adjust the size as needed */
  height: 20px; /* Adjust the size as needed */
}

.login_arrow {
  display: block;
  position: relative;
  width: 40px;
  height: auto;
}

.login_button {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 0px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 10px;
  background-color: var(--button3);
  color: rgba(255, 255, 255, 1);
}

.login_button:hover {
  background-color: var(--button3_hover);
}

.login_button:active {
  background-color: var(--button3_active);
}

.saveBtn {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 0px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  margin-bottom: 10px;
  background-color: var(--button3);
  color: rgba(255, 255, 255, 1);
}

.saveBtn:hover {
  background-color: var(--button3_hover);
}

.saveBtn:active {
  background-color: var(--button3_active);
}

.saveBtn:disabled {
  background-color: rgb(220, 220, 220);
}

.upload_button {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 0px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  margin-bottom: 10px;
  background-color: var(--button3);
  color: rgba(255, 255, 255, 1);
}

.upload_button:hover {
  background-color: var(--button3_hover);
}

.upload_button:active {
  background-color: var(--button3_active);
}

.upload_button:disabled {
  background-color: rgb(240, 240, 240);
}

/* PRODUCT DROPDOWN */

.model-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  border-top: 1px solid rgb(240, 240, 240);
  user-select: none;
  height: 80px;
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  margin-right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  font-size: 20px;
  cursor: pointer;
  background-color: transparent;
}

.menu-btn:hover {
  background-color: rgb(230, 230, 230);
}

.menu-dropdown {
  display: none;
  position: absolute;
  right: 10px;
  width: 100px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid #ddd;
  z-index: 10;
  border-radius: 10px;
}

.menu-dropdown button {
  padding: 8px 12px;
  width: 100%;
  border: none;
  font-size: 1rem;
  background: none;
  text-align: left;
  cursor: pointer;
  color: rgb(170, 170, 170);
}

.menu-dropdown button:hover {
  color: rgb(0, 0, 0);
}

.setThumbnail_button {
  display: block;
  width: 200px;
  height: 40px;
  line-height: 0px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 10px;
  background-color: var(--button6);
  color: rgba(255, 255, 255, 1);
}

.setThumbnail_button:hover {
  background-color: var(--button6_hover);
}

.setThumbnail_button:active {
  background-color: var(--button6_active);
}

.share {
  position: fixed;
  width: 100%;
  height: 100%;
}

.shareBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  line-height: 0px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  margin-top: 10px;
  text-align: center;
  background-color: var(--button3);
  color: rgba(255, 255, 255, 1);
}

.shareBtn:hover {
  background-color: var(--button3_hover);
}

.shareBtn:active {
  background-color: var(--button3_active);
}

.shareContentContainer {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.6);
}

.shareContent {
  display: flex;
  flex-direction: column; /* vertical layout now */
  width: 70%;
  height: 70%;
  position: relative;
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  overflow: hidden; /* to keep rounded corners clean */
}

.shareContentTopbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  width: 100%;
  background-color: var(--background0);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  flex-shrink: 0; /* prevent from shrinking */
  z-index: 10;
}

.shareContentTitle {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  text-align: center;
  flex-grow: 1; /* Make the title take up the available space */
}

.shareContentBody {
  display: flex;
  flex-direction: row;
  width: auto;
  height: calc(100% - 70px); /* remaining height after topbar */
}

.rightContent {
  width: 500px;
  height: 100%;
}

.leftContent {
  height: 100%;
  width: 100%;
  border-right: 1px solid rgb(225, 225, 225);
}

.qrcodeContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 20px;
  padding-bottom: 50px;
}

.qrcode_label {
  display: block;
  text-align: center;
  width: 500px;
  font-size: 1.2rem;
  color: #000000;
}

.qrcode_shared_viewer {
  position: relative;
}

.shareCardContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.shareCard {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 300px;
  height: 450px;
  border-radius: 15px;
  border: 1px solid var(--bordergray);
  background-color: rgb(255, 255, 255);
}

.shareCardTop {
  display: block;
  position: relative;
  width: 100%;
  height: calc(100% - 120px);
}

.shareCardText {
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  font-size: 0.6rem;
  padding: 5px;
  text-align: center;
}

.shareCardBottom {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  border-top: 1px solid rgb(240, 240, 240);
  background-color: rgb(255, 255, 255);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.shareCardInfo {
  display: inline;
  float: left;
  height: 100%;
  padding: 15px;
  width: calc(100% - 110px);
}

.shareCardTitle {
  color: rgba(0, 0, 0, 1);
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 5px;
  white-space: nowrap; /* Prevents text from wrapping to next line */
  overflow: hidden; /* Hides overflow text */
  text-overflow: ellipsis;
}

.shareCardDescription {
  color: rgba(0, 0, 0, 1);
  font-size: 0.8rem;
  font-weight: 400;
  padding-bottom: 0px;
  display: -webkit-box; /* Enables flex-based layout */
  -webkit-line-clamp: 4; /* Limits to 4 lines */
  -webkit-box-orient: vertical; /* Required for line-clamp to work */
  overflow: hidden; /* Hides the overflow */
  text-overflow: ellipsis; /* Adds "..." at the end */
}

.shareCardPosterWrapper {
  width: 298px;
  height: calc(100% + 60px);
  overflow: hidden;
  position: relative;
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.shareCardPoster {
  transform: scale(0.4); /* scale back to visible size */
  transform-origin: top left;
  pointer-events: none;
  margin: 0 auto;
  position: relative;
  left: 50%;
  top: 10px;
  transform: translate(-50%, -50%);
}

#shareCardPosterImg {
  width: 100%;
  height: auto;
  display: block;
  top: 20px;
  position: absolute;
}

.shareCardQRcode {
  display: inline;
  float: right;
  width: 100px;
  height: 100%;
  color: rgba(0, 0, 0, 1);
  font-size: 0.7rem;
  font-weight: 400;
}

.qrcodeCardContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.shareBtnLink {
  display: none;
  width: 100%;
  height: auto;
  text-align: left;
  line-height: 0px;
  font-size: 0.9rem;
  border-radius: 10px;
  padding: 10px;
  font-weight: 500;
  margin-top: 10px;
  color: rgb(100, 100, 100);
  border: 1px solid rgb(220, 220, 220);
  background-color: rgb(250, 250, 250);
  word-wrap: break-word; /* Ensures long words break and wrap */
  overflow-wrap: break-word; /* Ensures breaking works in all cases */
  white-space: normal; /* Allows text to wrap instead of staying on one line */
}

.shareBtnLinkIframe {
  display: none;
  width: 100%;
  height: 90px;
  text-align: left;
  font-size: 0.9rem;
  border-radius: 10px;
  padding: 10px;
  font-weight: 500;
  margin-top: 10px;
  color: rgb(100, 100, 100);
  border: 1px solid rgb(220, 220, 220);
  background-color: rgb(250, 250, 250);
  word-wrap: break-word; /* Ensures long words break and wrap */
  overflow-wrap: break-word; /* Ensures breaking works in all cases */
  white-space: pre-wrap; /* Maintains new lines and ensures text wraps */
  resize: none; /* Prevents users from resizing */
}

.shareBtnLinkIframe:focus {
  border: 1px solid rgb(220, 220, 220);
}

.view-3d_container {
  display: inline-flex;
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 70px;
}

.contact-form input {
  /*border: 1px solid transparent;*/
}

.contact-form input:not([readonly]):focus {
  border: 1px solid var(--background9);
}
.contact-form input[readonly],
.contact-form input:disabled {
  user-select: none;
  pointer-events: none;
  background-color: rgb(240, 240, 240);
}

.login_title {
  width: 100%;
  text-align: left;
  padding-right: 10px;
  padding-bottom: 3px;
  color: rgb(150, 150, 150);
  font-size: 0.8rem;
}

.cancel_button {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 0px;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  background-color: var(--button3);
  color: var(--text1);
}

.cancel_button:hover {
  background-color: var(--button3_hover);
}

.cancel_button:active {
  background-color: var(--button3_active);
}

/* --- QR CODE --- */

.qrcode_container2 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: row;
}

.qrcode_container {
  display: block;
  position: relative;
  width: 180px;
  height: 210px;
  left: 0;
  bottom: 0;
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
  background-color: var(--qrcodewhite);
  border: 1px solid var(--bordergray);
  z-index: 1;
}

.qrcode_container_text {
  display: block;
  position: relative;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  color: var(--qrcodeblack);
  text-align: center;
  padding-top: 6px;
}

.qrcode_container_image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 5px;
}

.qrcode_logo {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  width: 52px;
  left: 50%;
  top: 50%;
  background-color: rgb(255 255 255);
  transform: translate(-50%, -50%);
}

.qrcode_left_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qrcode_logo_icon {
  width: 45px !important;
  height: 45px !important;
  object-fit: contain;
}

.qrcode_logo_icon2 {
  width: 35px !important;
  height: 35px !important;
  object-fit: contain;
}

.qrcode_logo_small {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 32px;
  left: 50%;
  top: 50%;
  background-color: rgb(255 255 255);
  transform: translate(-50%, -50%);
}

.qrcode_logo_small img {
  width: 30px !important;
  height: 30px !important;
  object-fit: contain;
}

.shareBtnContainer {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  bottom: 0;
  padding-left: 10px;
  gap: 10px;
}

.downloadBtn {
  display: block;
  padding: 12px;
  background-color: var(--button3);
  border-radius: 10px;
  color: rgb(255, 255, 255);
  font-size: 0.9rem;
  width: 150px;
}

.downloadBtn:hover {
  background-color: var(--button3_hover);
}

.downloadBtn:active {
  background-color: var(--button3_active);
}

#qrcode_right img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
}

/* --- VIEW 3D PAGE --- */

/* --- GRID LAYOUT --- */

.grid_column_1 {
  grid-template-columns: repeat(1, 1fr);
  height: 800px;
}

.grid_column_2 {
  grid-template-columns: repeat(2, 1fr);
  height: 800px;
}

.grid_column_2_70_30 {
  grid-template-columns: 70% 30%;
  height: 80vh;
}

.grid_column_2_30_70 {
  grid-template-columns: 30% 70%;
  height: 80vh;
}

.grid_column_3 {
  grid-template-columns: repeat(3, 1fr);
  height: 80vh;
}

.grid_column_4 {
  grid-template-columns: repeat(4, 1fr);
  height: auto;
}

.grid_item {
  height: 100%;
  width: 100%;
  position: relative;
  margin: 0px;
}

.grid_item2 {
  height: 100%;
  width: 100%;
  position: relative;
  padding: 10px;
}

.grid_item_content {
  display: block;
  width: 100%;
  border-radius: 20px;
  height: calc(100% - 50px);
  background-color: rgba(255, 255, 255, 1);
}

.no_border {
  border: none;
}

.grid_item_content img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.grid_item_content_title {
  display: flex;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 1);
}

.header_container_content {
  display: block;
  width: 100%;
  border-radius: 15px;
  height: calc(100% - 50px);
}

.header_container_content_title {
  display: flex;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 1);
}

.grid_item_content_description {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.grid_item_content_description_title {
  display: block;
  width: 100%;
  font-size: 3rem;
  padding: 5px;
  font-weight: 600;
  color: rgb(255, 255, 255);
}

.grid_item_content_description_subtitle {
  display: block;
  width: 100%;
  font-size: 1.5rem;
  padding: 5px;
  font-weight: 600;
  color: rgb(255, 255, 255);
}

.grid_item_content_description_text {
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 5px;
  padding-top: 15px;
  font-weight: 400;
  color: rgb(255, 255, 255);
}

.grid_item iframe {
  border-radius: 15px;
  width: 100%;
  height: 100%;
}

.grid_item img {
  position: relative;
  object-fit: cover;
}

.grid_item2 img {
  position: relative;
  object-fit: cover;
}

.grid_item_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.grid_item_container_title {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}
.grid_item_container_subtitle {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}

.view-3d {
  flex-grow: 1; /* takes up remaining space */
  position: relative;
  height: 100%;
  background-color: rgb(255, 255, 255);
}

.view-3d_settings {
  width: 350px;
  height: 100%;
  overflow-y: scroll;
  border-left: 1px solid var(--bordergray);
}

.upload_view-3d {
  flex-grow: 1; /* takes up remaining space */
  height: 100%;
  background-color: var(--background5);
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}

.shop_view-3d {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 80%;
  width: 80%;
  border-radius: 15px;
  background-color: var(--background5);
}

.view-3d_upload_container {
  display: inline-block;
  position: relative;
  width: 100%;
  height: auto;
  padding: 30px;
}

.view-3d_upload {
  display: inline-block;
  vertical-align: top;
  height: 100%;
  border-radius: 25px;
  width: 100%;
  background-color: rgb(237, 237, 237);
  overflow: auto;
}

.upload_view-3d_settings {
  width: 350px;
  height: 100%;
  overflow-y: scroll;
}

.upload_view-3d_settings {
  display: inline;
  float: right;
  position: relative;
  height: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
  width: 350px;
  border-left: 0px solid var(--bordergray);
}

.view-3d_settings_upload {
  display: inline;
  float: right;
  position: relative;
  height: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  width: 400px;
}

.viewer,
.view-3d {
  position: relative;
  z-index: 1;
}

model-viewer {
  width: 100%;
  height: 100%;
  position: relative !important;
  z-index: 1 !important;
  /*contain: layout !important;*/
}

/* Make sure model-viewer doesn't isolate its own stacking context */
model-viewer {
  position: relative !important;
  isolation: isolate !important;
  z-index: 0 !important;
}

.model-viewer-view-3d {
  min-width: 320px;
  min-height: 420px;
}

.update-model-status {
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid #e3e6ef;
  border-radius: 10px;
  background: #f7f8fc;
  font-size: 0.92rem;
  color: #111;
}

.update-model-status[data-state="error"] {
  border-color: #f6c7c7;
  background: #fff7f7;
  color: #9a1d1d;
}

.update-model-status[data-state="done"] {
  border-color: #c6e7d7;
  background: #f6fbf8;
  color: #10512f;
}

.update-model-progress {
  margin-top: 8px;
  height: 6px;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}

.update-model-progress div {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4a60ca, #6f8cff);
  transition: width 0.25s ease;
}

.update-model-status[data-state="error"] .update-model-progress div {
  background: #d14b4b;
}

/* Reset z-index for everything inside shadow parts */
model-viewer::part(default),
model-viewer::part(scene),
model-viewer::part(canvas),
model-viewer::part(viewer) {
  z-index: 0 !important;
  position: relative !important;
  contain: none !important;
}

/* Now any fixed or absolute element outside will appear above */
.annotation-popup,
.annotation-overlay {
  position: fixed !important;
  z-index: 999999 !important;
  pointer-events: auto !important;
  contain: layout !important;
  will-change: transform;
  animation: fadeInPopup 0.2s ease-out;
}

#lazy-load-poster {
  position: absolute;
  display: block;
  width: 250px;
  height: 100px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../assets/icon/loading.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#button-load {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(237, 237, 237);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: rgb(143, 143, 143);
  cursor: pointer;
  border-radius: 40px;
  display: inline-block;
  font-weight: 500;
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 100;
}

#button-load:hover {
  color: #5a6dd0;
  border: 1px solid rgb(207, 207, 207);
}

.progress {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
  z-index: 10;
}

.progress-bar {
  display: block;
  width: min(320px, 70vw);
  height: 12px;
  position: relative;
  border-radius: 25px;
  box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.5), 0px 0px 5px 1px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
  background-color: rgba(0, 0, 0, 0.5);
}

.progress-bar.hide {
  visibility: hidden;
  transition: visibility 0.3s;
}

.progress-message {
  position: relative;
  color: #e5e7eb;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.update-bar {
  background-color: rgb(74, 96, 202);
  width: 0%;
  height: 100%;
  border-radius: 25px;
  float: left;
  transition: width 0.3s;
}

/*
#ar-button {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  padding: 0px;
  color: rgb(255, 255, 255);
  right: 15px;
  top: 75px;
  font-size: 16px;
  font-weight: 500;
  width: 55px;
  height: 55px;
  border-radius: 30px;
  background-color: rgb(74, 96, 202);
  z-index: 90;
}

#ar-button img {
  display: block;
  position: relative;
  left: 12px;
  width: 31px;
  height: 31px;
  object-fit: contain;
  z-index: 90;
}

#ar-button:hover {
  background-color: rgb(64, 84, 183);
}

#ar-button:active {
  background-color: rgb(64, 84, 183);
}

#ar-button:focus {
  background-color: rgb(64, 84, 183);
}

#ar-button:focus-visible {
  background-color: rgb(64, 84, 183);
}
*/

@keyframes circle {
  from {
    transform: translateX(-50%) rotate(0deg) translateX(50px) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg) translateX(50px) rotate(-360deg);
  }
}

@keyframes elongate {
  from {
    transform: translateX(100px);
  }
  to {
    transform: translateX(-100px);
  }
}

model-viewer > #ar-prompt {
  position: absolute;
  left: 50%;
  bottom: 100px;
  animation: elongate 2s infinite ease-in-out alternate;
  display: none;
}

model-viewer[ar-status="session-started"] > #ar-prompt {
  display: block;
}

model-viewer > #ar-prompt > img {
  animation: circle 4s linear infinite;
}

.container_model_title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.material_title {
  display: none;
  position: absolute;
  text-align: center;
  top: 20px;
  font-size: 20px;
  font-weight: 500;
  color: var(--material_text);
  z-index: 51;
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
  border-radius: 10px;
  border: 1px solid rgb(237, 237, 237);
}

.upload_quota_row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 30px;
  color: rgb(130, 130, 130);
  font-size: 0.9rem;
}
.upload-quota {
  margin: 10px;
  font-size: 1rem;
}
.upload-quota .ok {
  padding: 6px 10px;
  border-radius: 8px;
  background: #eef9f0;
  border: 1px solid #cfe8d4;
  display: inline-block;
}
.upload-quota .warn {
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff4f4;
  border: 1px solid #ffd6d6;
  display: inline-block;
}

/* Style for the thumbnail images */
.models {
  display: flexbox;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  padding-bottom: 10px;
  color: rgb(255, 255, 255);
  position: absolute;
  right: -25px;
  top: 0px;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 500;
  width: 50px;
  height: auto;
  border-radius: 100px;
  margin: 10px;
  border: 1px solid rgb(237, 237, 237);
}

.models img {
  display: block;
  position: relative;
  width: 25px;
  height: 25px;
  margin: 5px;
  border-radius: 50px;
  object-fit: contain;
  transform: translate(6px, 6px);
}

.models img:hover {
  background-color: rgba(245, 245, 245, 1);
}

/* MODAL */

.modal-header {
  display: flex;
  align-items: center;
  justify-content: center; /* Ensures the title remains centered */
  position: relative;
  padding: 0 10px;
  height: 80px;
  font-size: 1.2rem;
  color: var(--textblack);
  border-bottom: 1px solid var(--bordergray);
  background-color: rgb(255, 255, 255);
}

.modal-header_upload {
  display: none;
  align-items: center;
  justify-content: center; /* Ensures the title remains centered */
  position: relative;
  padding: 0 10px;
  height: 100px;
  font-size: 1.2rem;
  color: var(--textblack);
  user-select: none;
  border-bottom: 1px solid var(--bordergray);
  background-color: rgb(255, 255, 255);
}

.header_container:hover {
  background-color: rgb(200, 200, 200);
}

.product_title_container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 80px;
  background-color: #ffffff;
}

.project_title_container {
  white-space: nowrap; /* Prevents title from wrapping */
  font-weight: 500;
  font-size: 1.5rem;
  color: rgb(0, 0, 0);
}

.header_container {
  display: block;
  text-align: center;
  width: 100%;
  cursor: pointer;
}

.header_container:hover {
  background-color: rgb(20, 20, 20);
}

#toggle-settings {
  position: absolute;
  left: 10px; /* Keeps button aligned to the left */
}

#viewerBtn_close {
  position: absolute;
  right: 10px; /* Keeps close button aligned to the right */
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.icon_sharing {
  position: absolute;
  right: 0;
  top: 0;
  margin: 20px;
  width: 35px;
  height: 35px;
}

.drag_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transform: translateY(15px);
}

.modal-content {
  overflow: scroll;
  height: 100%;
  background-color: rgb(255, 255, 255);
  overscroll-behavior: none;
  padding: 10px;
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
}

.modal-content_viewer {
  display: block;
  height: auto;
  background-color: rgb(255, 255, 255);
  padding: 0px;
}

.scroll-container {
  overflow-y: auto;
}

.modal-container {
  overflow-y: auto;
}

.project_sharing {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  margin-left: 13px;
  margin-right: 13px;
  border-radius: 50%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0);
}

.toggle_viewer_information {
  display: none;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  margin-left: 13px;
  margin-right: 13px;
  border-radius: 50%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0);
}

.viewerOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.6);
}

.viewerOverlay.hidden {
  display: none;
}

.viewerBtn_close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin-left: 13px;
  border-radius: 50%;
  z-index: 10;
  padding: 10px;
  background-color: transparent;
}

.viewerBtn_close:hover {
  background-color: rgb(240, 240, 240);
}

.viewerBtn_close:active {
  background-color: rgb(230, 230, 230);
}

.viewerBtn_close img {
  width: 20px;
  height: 20px;
}

.editorBtn_close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 36px;
  margin-left: 13px;
  border-radius: 25px;
  z-index: 10;
  padding: 10px;
  background-color: rgb(39, 88, 208);
}

.editorBtn_close a {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.editorBtn_close:hover {
  background-color: rgb(36, 82, 196);
}

.editorBtn_close:active {
  background-color: rgb(31, 73, 180);
}

.shareContentContainer_close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 25px;
  height: 25px;
  margin-left: 13px;
  margin-right: 20px;
  border-radius: 50%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0);
}

.shareContentContainer_close svg path {
  fill: rgb(255, 255, 255);
  stroke: rgb(255, 255, 255);
}

/* --- VARIANTS --- */

.containerMaterials {
  position: absolute;
  top: 50%;
  right: 0px;
  padding-right: 7px;
  transform: translateY(-50%); /* Centers the element vertically */
  height: auto;
  width: auto;
  z-index: 50;
}

.materials {
  display: grid !important;
  grid-template-columns: repeat(1, 1fr);
  gap: 7px;
  width: 100%; /* Adjust as needed for content width */
}

.materialBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 10px;
  border: 1px solid var(--background6);
}

.materialBtn:hover {
  background-color: var(--background6);
  border: 1px solid var(--background7);
}

.materialBtn:active {
  border: 1px solid var(--background5);
}

.materialName {
  display: block;
  text-align: center;
  font-size: 12px;
  margin-top: 8px;
  color: rgb(0, 0, 0);
}

.materialBtn img {
  height: 50px;
  width: 50px;
  border-radius: 25px;
  object-fit: cover;
}

.materials .materialBtn img:hover {
  height: 50px;
  width: 50px;
}

.materials .materialBtn img:active {
  height: 50px;
  width: 50px;
}

#variantThumbnailList {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 15px;
  padding: 5px;
  background-color: #f8f8f8;
}

.variant-thumbnail-empty {
  font-size: 1rem;
  color: rgb(130, 130, 130);
  padding: 5px;
}

.variant-thumbnail-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.variant-thumbnail-buttons {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.variant-thumbnail-buttons button {
  width: 100%;
  text-align: center;
  color: rgb(130, 130, 130);
  justify-content: center;
}
.variant-thumbnail-buttons button:hover {
  background-color: rgb(150, 150, 150);
  color: rgb(255, 255, 255);
}
.variant-thumbnail-buttons button:active {
  background-color: rgb(100, 100, 100);
}

.variant-thumbnail-preview {
  width: 50px;
  height: 50px;
  object-fit: cover;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(230, 230, 230);
  border-radius: 25px;
  display: inline-block;
}

.variant-thumbnail-name {
  flex: 1;
  font-weight: 500;
  font-size: 1rem;
  color: rgb(100, 100, 100);
}

.variant-thumbnail-select,
.variant-thumbnail-remove,
.variant-thumbnail-delete {
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 20px;
  border: none;
  align-content: center;
}

.variant-thumbnail-select {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
}

.variant-thumbnail-remove {
  color: rgb(255, 255, 255);
}

.material-library {
  width: 100%;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.material-library::-webkit-scrollbar {
  height: 6px;
}

.material-library::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
}

.material-card {
  width: 92px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid rgb(235, 235, 235);
  cursor: pointer;
}

.material-swatch {
  width: 68px;
  height: 48px;
  border-radius: 8px;
  background: var(--swatch-color, linear-gradient(135deg, #f0f0f0, #dcdcdc));
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.material-chip-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  color: rgb(26, 29, 56);
}

.btn-material-action {
  width: 100%;
  border: 1px solid rgb(39, 88, 208);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgb(39, 88, 208);
  background: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-material-action:hover {
  background: rgb(39, 88, 208);
  color: #fff;
}

.material-helper-text {
  margin-top: 10px;
  font-size: 0.78rem;
  color: rgb(120, 120, 120);
}

.material-card.selected {
  border-color: rgb(39, 88, 208);
  box-shadow: 0 6px 18px rgba(39, 88, 208, 0.15);
}

.material-info-panel {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgb(228, 228, 228);
  background: rgba(248, 248, 250, 0.7);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.material-info-panel .btn-material-action {
  align-self: flex-start;
  padding: 6px 14px;
  font-size: 0.78rem;
}

.material-info-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgb(26, 29, 56);
}

.material-info-props {
  font-size: 0.78rem;
  color: rgb(100, 100, 100);
}

.material-info-tags {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(140, 140, 140);
}

.material-library-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.material-toolbar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-end;
}

.material-tabs {
  display: inline-flex;
  padding: 4px;
  border: 1px solid rgb(228, 228, 228);
  border-radius: 999px;
  gap: 4px;
}

.material-tab {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgb(120, 120, 120);
  cursor: pointer;
}

.material-tab.active {
  background: rgb(39, 88, 208);
  color: #fff;
}

.material-library-select {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.75rem;
  color: rgb(120, 120, 120);
}

.material-library-select select {
  border-radius: 999px;
  border: 1px solid rgb(228, 228, 228);
  padding: 6px 12px;
  font-size: 0.85rem;
}

/* --- SOURCE --- */

.source img {
  display: block;
  position: fixed;
  width: 150px;
  height: auto;
  top: 15px;
  left: 15px;
  z-index: 99;
}

.source_shop img {
  display: block;
  position: relative;
  width: 150px;
  height: auto;
  top: 15px;
  left: 15px;
  z-index: 99;
}

.shareCardLogo img {
  display: block;
  position: absolute;
  width: 100px;
  height: auto;
  top: 15px;
  left: 15px;
  z-index: 99;
}

/* --- VIEW 3D SETTINGS --- */

.viewer {
  display: flex;
  height: 100%;
}

.view_3d_panel {
  display: inline;
  position: relative;
  float: right;
  height: 100%;
  width: 300px;
  border-left: 1px solid rgba(230, 230, 230, 1);
  overflow-y: hidden;
}

.view_3d_title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 70px;
  position: relative;
  font-size: 1.2rem;
  color: var(--textblack);
  border-bottom: 0px solid var(--bordergray);
}

.view_3d_scroll {
  display: block;
  position: relative;
  height: calc(100vh - 140px);
  overflow-y: scroll;
}

.view_3d_information {
  display: block;
  position: relative;
  height: auto;
  width: 100%;
  padding: 20px;
  border-top: 1px solid var(--bordergray);
}

.section_container {
  display: inline-flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: auto;
}

/* Collapsible Section */
.view_3d_information {
  position: relative;
  padding: 20px;
  overflow: visible;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Button & Title Container */
.view_3d_information .collapse-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
}

.view_3d_information .collapse-btn:hover {
  background-color: rgb(240, 240, 240);
}
.view_3d_information .collapse-btn:active {
  background-color: rgb(230, 230, 230);
}

.collapse-btn img {
  display: block;
  width: 15px;
  height: 15px;
  object-fit: contain;
}

/* Title */
.section-title {
  flex-grow: 1;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--button3);
}

/* Button & Title Wrapper */
.view_3d_information button,
.view_3d_information .section-title {
  display: inline-flex;
  align-items: center;
}

/* Initially hide content */
.view_3d_content {
  display: none;
}

/* Show when expanded */
.view_3d_information.active .view_3d_content {
  display: block;
}

/* Rotate arrow when active */
.view_3d_information.active .collapse-btn {
  transform: rotate(180deg);
}

.view_3d_information:first-child {
  border-top: none;
}

.view_3d_entry {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  padding-left: 0px;
  padding-bottom: 5px;
}

.view_3d_label {
  width: 90%;
  height: 25px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  padding-top: 10px;
  padding-bottom: 5px;
  color: var(--text3);
}

.view_3d_value {
  width: 95%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.2rem;
}

.color-picker-control {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}

.view_3d_value .color-picker-control {
  width: 100%;
}

.color-picker-trigger {
  width: 100%;
  min-height: 56px;
  border-radius: 12px;
  border: 1px solid var(--bordergray);
  background-color: var(--background6);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text7);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.color-picker-trigger:hover {
  border-color: var(--background0);
  background-color: var(--background5);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.04);
}

.color-picker-trigger:active {
  transform: translateY(1px);
}

.color-picker-trigger:focus-visible {
  outline: 2px solid var(--background0);
  outline-offset: 2px;
}

.color-picker-swatch {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background-color: #ffffff;
  transition: background-color 0.2s ease;
}

.color-picker-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex: 1;
}

.color-picker-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text3);
}

.color-picker-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text7);
}

.color-picker-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: var(--text3);
}

.color-picker-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  border: 0;
  padding: 0;
  margin: 0;
}

.color-picker-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background-color: var(--background6);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25), 0 10px 20px rgba(15, 23, 42, 0.12);
  padding: 16px;
  z-index: 25;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.color-picker-panel.open {
  display: flex;
}

.color-picker-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--text7);
}

.color-picker-close {
  border: none;
  background: transparent;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.color-picker-close:hover {
  background-color: rgba(15, 23, 42, 0.06);
  color: var(--text7);
}

.color-picker-gradient {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  cursor: crosshair;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%), linear-gradient(90deg, #fff 0%, hsl(var(--picker-hue, 210), 100%, 50%) 100%);
  overflow: hidden;
}

.color-picker-gradient-thumb {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.18);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.color-picker-hue {
  position: relative;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff0000, #ff00ff, #0000ff, #00ffff, #00ff00, #ffff00, #ff0000);
  border: 1px solid rgba(15, 23, 42, 0.1);
  cursor: pointer;
}

.color-picker-hue-thumb {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.18);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.color-picker-fields {
  display: flex;
  align-items: center;
  gap: 16px;
}

.color-picker-preview {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background-color: #ffffff;
}

.color-picker-hex {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
}

.color-picker-hex input {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--bordergray);
  padding: 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text7);
  background-color: var(--background6);
}

.color-picker-hex input:focus {
  border-color: var(--background0);
  outline: none;
}

.color-picker-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(36px, 1fr));
  gap: 8px;
}

.color-picker-swatch-option {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 2px solid rgb(220, 220, 220);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.color-picker-swatch-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.color-picker-swatch-option.is-active {
  border-color: var(--background0);
  box-shadow: 0 0 0 2px rgba(39, 88, 208, 0.2);
}

/* Default hidden */
.slider-group {
  display: none;
  margin-top: 8px;
}

/* Show when checkbox is checked */
input[type="checkbox"]:checked ~ .slider-group {
  display: block;
}

/* Group styling */
.control-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

/* Checkbox aligned left */
.checkbox-limit {
  margin-top: 6px;
  margin-left: 0;
  width: 22px;
  height: 22px;
}

/* Range wrapper */
.range-wrapper {
  position: relative;
  width: 100%;
  margin: 12px 0;
}

.range-wrapper input[type="range"] {
  width: 100%;
}

.range-wrapper .range-value {
  position: absolute;
  top: -22px;
  left: 0;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  pointer-events: none;
}

.view_3d_value_share {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.view_3d_share {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 100%;
  border-top: 1px solid rgba(230, 230, 230, 1);
  position: absolute;
  bottom: 0px;
  z-index: 100;
}

.modal_footer {
  position: relative;
  width: 100%;
  height: 60px;
  bottom: 0;
  z-index: 100;
}

.view_3d_button {
  width: calc(100% - 20px); /* Set width to 80% to leave 10% margin on each side */
  height: calc(100% - 20px); /* Set height to 80% to leave 10% margin on top and bottom */
  border-radius: 10px;
  color: rgba(255, 255, 255, 1);
  background-color: var(--button3);
  font-size: 1rem;
  font-weight: 500;
}

.view_3d_button:hover {
  background-color: var(--button3_hover);
}

.view_3d_button:active {
  background-color: var(--button3_active);
}

.action_contain {
  padding: 20px;
}

.view_3d_background {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 100;
}

.view_3d_share_modal {
  background-color: var(--backgroundwhite);
  z-index: 100;
  display: block;
  position: relative;
  width: 100%;
  left: 50%;
  top: auto;
  bottom: 0px;
  transform: translate(-50%, 0%);
  height: 90%;
  border-radius: 0px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border: none;
  overflow-y: scroll;
  padding-bottom: 10px;
}

.view_3d_share_modal_bar {
  display: block;
  position: relative;
  width: 100%;
  height: 83px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background-color: var(--background0);
}

.view_3d_share_modal_bar_title {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  width: 100%;
  height: 100%;
  color: var(--text1);
  font-weight: 500;
}

.view_3d_share_modal_sharing_container {
  display: none;
  position: relative;
  width: 100%;
  height: 44%;
  border: none;
  background-color: var(--panelgray);
}

.view_3d_share_modal_sharing {
  display: block;
  position: relative;
  left: 20px;
  width: calc(100% - 40px);
  height: 100%;
  padding-top: 20px;
}

.view_3d_share_modal_thumbnail {
  height: 500px;
  width: 100%;
  background-color: rgb(245, 245, 245);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  object-fit: contain;
}

.view_3d_share_modal_thumbnail img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.view_3d_share_modal_card_info {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  flex-direction: column;
  width: calc(100% - 120px);
  height: 100%;
  padding: 15px;
  gap: 5px;
}

.view_3d_share_modal_card_title {
  display: block;
  height: auto;
  position: relative;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
}

.view_3d_share_modal_card_subtitle {
  display: block;
  height: auto;
  position: relative;
  width: 100%;
  text-align: left;
  font-size: 0.8rem;
}

.share_buttons {
  display: flex;
  position: relative;
  bottom: 0;
  left: 0;
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%; /* Ensure container is full width */
  padding-top: 15px;
  background-color: rgb(250, 250, 250);
}

.share_buttons > * {
  flex: 1 1 calc(50% - 5px); /* Ensure each button takes up 50% minus half the gap */
  box-sizing: border-box; /* Make sure padding and borders don't affect width */
  text-align: center;
}

.view_3d_share_modal_sharing_title {
  display: block;
  position: relative;
  font-size: 2rem;
  font-weight: 700;
}

.view_3d_share_modal_sharing_subtitle {
  display: block;
  position: relative;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  padding-top: 15px;
}

.view_3d_share_modal_sharing_button_card {
  display: block;
  position: relative;
  width: auto;
  line-height: 26px;
  height: 40px;
  font-size: 1rem;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
  color: rgb(0, 0, 0);
  border-radius: 10px;
  background-color: var(--button5);
}

.view_3d_share_modal_sharing_button_card:hover {
  background-color: var(--button5_hover);
}

.view_3d_share_modal_sharing_button_card:active {
  background-color: var(--button5_active);
}

.view_3d_share_modal_sharing_button_card button {
  background-color: rgba(255, 255, 255, 0);
  color: rgba(255, 255, 255, 1);
  font-size: 0.8rem;
}

.view_3d_share_modal_card_container {
  display: block;
  position: relative;
  width: 100%;
  height: 660px;
  border: none;
  background-color: rgb(250, 250, 250);
}

.view_3d_share_modal_card {
  display: block;
  position: relative;
  left: 20px;
  top: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  padding: 50px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 15px;
  border: 1px solid rgb(240, 240, 240);
}

.view_3d_share_modal_card_top {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.view_3d_share_modal_card_top_logo img {
  display: block;
  position: absolute;
  top: 13px;
  left: 13px;
  width: 100px;
  height: auto;
  object-fit: contain;
  z-index: 100;
}

.view_3d_share_modal_card_description {
  display: block;
  position: absolute;
  bottom: 0px;
  width: 100%;
  padding-bottom: 5px;
  font-size: 10px;
  text-align: center;
}

.view_3d_share_modal_card_bottom {
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 120px;
  border-top: 1px solid rgb(240, 240, 240);
  background-color: rgb(255, 255, 255);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.view_3d_share_modal_card_bottom_qr-code {
  display: block;
  position: absolute;
  bottom: 0px;
  right: 0px;
  object-fit: contain;
  margin: 15px;
}

.view_3d_share_modal_card_bottom_qr_code_logo_container {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  left: 30px;
  top: 30px;
  width: 30px;
  height: 30px;
  border-radius: 0px;
  z-index: 100;
  background-color: rgba(255, 255, 255, 1);
}

.view_3d_share_modal_card_bottom_qr_code_logo_container img {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.popupContainer {
  display: block;
  position: relative;
  margin-top: 10px;
  background-color: var(--backgroundwhite);
  border-radius: 10px;
  border: 1px solid var(--bordergray);
}

.popupcontent {
  display: block;
  position: relative;
  padding: 10px;
  text-align: center;
  font-size: 0.9rem;
}

.copyLink {
  width: 100px;
  height: 30px;
  margin-top: 5px;
  text-align: center;
  font-weight: 500;
  color: rgb(206, 201, 54);
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
}

.copyLink:hover {
  background-color: rgb(233, 233, 233);
  color: rgb(206, 201, 54);
}

.copyLink:active {
  background-color: rgb(187, 187, 187);
  color: rgb(190, 185, 43);
}

.btn_embed_container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
  margin-right: 50px;
}

.variantsContainer {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  z-index: 10;
  pointer-events: none; /* wrapper ignores all clicks */
}

.variantsContainer .variants {
  pointer-events: auto; /* re-enable clicks only on actual content */
}

.variantsScroller {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  scrollbar-width: none; /* Firefox */
}
.variantsScroller::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.variants {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  min-width: max-content;
}

.variantWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border-radius: 10px;
}

.variantBtn {
  height: 50px;
  width: 50px;
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(150, 150, 150, 0.7);
}
.variantBtn:hover {
  scale: 1.05;
  border: 1px solid rgba(150, 150, 150, 0.6);
}
.variantBtn:active {
  scale: 1;
  border: 1px solid rgba(150, 150, 150, 0.5);
}

.variantName {
  padding-top: 5px;
  font-size: 12px;
  color: #333;
  background: rgba(255, 255, 255, 1);
  padding: 5px 10px;
  border-radius: 15px;
  border: 1px solid rgb(220, 220, 220);
}

#uploadModal {
  padding: 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#uploadModal.active {
  display: flex; /* show as modal center */
}

.upload-modal-content {
  display: block;
  width: 100%;
  height: 100%;
}

/* --- EDITOR --- */

.hotspot-list {
  list-style-type: none;
  padding-left: 0;
  width: 100%;
}

.hotspot-list li {
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  padding: 5px;
  background-color: #f8f8f8;
}

/* Title on the left */
.hotspot-list span {
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: rgb(100, 100, 100);
  padding-left: 5px;
}

/* Button group on the right */
.hotspot-list .button-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Buttons themselves */
.hotspot-list button {
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  border: none;
  width: 100%;
  background-color: rgb(230, 230, 230);
  text-align: center;
  color: rgb(130, 130, 130);
}
.hotspot-list button:hover {
  background-color: rgb(150, 150, 150);
  color: rgb(255, 255, 255);
}
.hotspot-list button:active {
  background-color: rgb(100, 100, 100);
}

.btn-add-hotspot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  line-height: 0px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  margin-top: 10px;
  text-align: center;
  background-color: var(--button3);
  color: rgba(255, 255, 255, 1);
}

.variantsEditorList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.variantsEditorList button {
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #aaa;
  background: #f5f5f5;
  font-size: 13px;
  cursor: pointer;
}
.variantsEditorList button.active {
  background: #333;
  color: #fff;
}
.Hotspot {
  background-color: transparent;
}

.HotspotAnnotation {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 7px;
  background-color: rgb(0, 0, 0);
  border-radius: 20px;
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
}
.HotspotAnnotation:hover {
  transform: scale(1.1);
}
.HotspotAnnotation:active {
  transform: scale(1);
}

.annotation-popup {
  z-index: 9999;
  background: rgba(0, 0, 0);
  border-radius: 8px;
  max-width: 260px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.4;
  z-index: 999999 !important;
  position: fixed;
  pointer-events: auto;
}

.annotation-popup::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 12px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent white transparent transparent;
}

.popup-text {
  /*white-space: pre-wrap;*/
}

.popup-image {
  max-width: 240px;
  max-height: 200px;
  border-radius: 6px;
  display: block;
}

.annotation-icon {
  width: 22px;
  height: 22px;
  cursor: pointer;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.4));
  transition: transform 0.2s ease;
}

#annotation_image_upload_btn.notification_input {
  cursor: pointer;
  background: #f3f3f3;
  border: 1px solid #ccc;
  color: #000;
  text-align: left;
}
#annotation_image_upload_btn:hover {
  background: #eaeaea;
}

.annotation-list-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
}

/* SLIDER */

.range-slider {
  position: relative;
  width: 100%;
  height: 50px; /* enough space for bubbles */
}

.range-slider input[type="range"] {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #007bff;
  pointer-events: none;
  top: 30px; /* push down from top */
  -webkit-appearance: none;
  border: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #007bff;
  cursor: pointer;
  -webkit-appearance: none;
}
.range-slider input[type="range"]::-moz-range-thumb {
  pointer-events: all;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #007bff;
  cursor: pointer;
}

.range-slider .slider-track {
  position: absolute;
  top: 38px;
  height: 4px;
  background: #007bff;
  transform: translateY(-50%);
  z-index: -1;
  left: 0;
  width: 100%;
}

/* Bubble above knob */
.value-bubble {
  position: absolute;
  top: 0; /* bubble above track */
  font-size: 12px;
  background: #333;
  color: #fff;
  padding: 2px 6px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  transform: translateY(-50%); /* float right above */
}

.annotation-popup {
  background: rgb(255, 255, 255) !important;
  color: #111 !important;
  border: 1px solid rgb(200, 200, 200) !important;
  position: fixed !important;
  left: 50% !important;
  top: 10px !important;
  transform: translate(-50%, 0%) !important;
  z-index: 999999 !important;
  padding: 15px !important;
  display: block !important;
}

@media screen and (max-width: 900px) {
  .background2_mobile {
    background-color: var(--background4);
  }

  .logo {
    margin: 10px;
  }

  .topbar {
    display: block;
    position: relative;
    height: 70px;
    box-shadow: none;
  }

  .menu {
    display: block;
    align-items: center;
    height: 70px;
  }

  .menu-items,
  .menu-items-right {
    display: none;
    z-index: 50;
  }

  .topbar a.icon {
    float: right;
    display: block;
    margin-right: 60px;
    z-index: 50;
  }

  .topbar.responsive {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    z-index: 100;
    overflow: hidden;
  }

  .topbar.responsive a {
    display: block;
    z-index: 2;
  }

  .topbar.responsive a.icon {
    float: right;
    display: block;
    margin-right: 60px;
    z-index: 5;
  }

  .topbar.responsive .menu-responsive {
    display: block;
    z-index: 2;
    padding-top: 20px;
  }

  .topbar.responsive .menu-responsive a {
    display: block;
    position: relative;
    font-size: 1.5rem;
    text-decoration: none;
    top: 0px;
    left: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: var(--button3);
  }

  .topbar.responsive .menu-responsive a:hover {
    color: var(--button1_hover);
  }

  .topbar.responsive .menu-responsive a:active {
    color: var(--button1_active);
  }

  .topbar.responsive .button-toevoegen {
    display: none;
  }

  .sections {
    display: block;
    position: relative;
    width: 100vw;
  }

  .section-fullwidth {
    display: block;
    position: relative;
  }

  .section-container {
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px;
  }

  .section-title-subtitle {
    display: block;
    position: relative;
    margin-top: 0px;
    padding-top: 50px;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 10px;
    width: 100%;
    height: 100%;
  }

  .section_title_subtitle_video {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
    height: 200px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    padding-bottom: 10px;
    margin-top: 0px;
  }

  .qrcode_container_viewer {
    display: none;
  }

  /* --- MAIN PAGE -- */

  .section-title-subtitle_hero {
    padding: 0px;
    height: 100%;
    background-color: rgb(255, 255, 255);
    justify-content: flex-start;
    align-items: flex-start;
  }

  #video_main {
    border-radius: 0px;
    border: none;
  }

  .main-tag_hero {
    text-align: center;
    font-size: 1.5rem;
  }

  .main_container {
    padding: 0px;
  }

  .main {
    transform: translateY(-50px);
    box-shadow: none;
    border-radius: 0px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin: 0px;
    max-height: none;
    height: 100%;
    border-bottom: 0px;
    width: 100%;
    padding: 30px;
    padding-top: 100px;
  }

  .grid_column_2_70_30 {
    padding-top: 0px;
    max-height: none;
  }

  .comment {
    display: none;
  }

  .grid_item2 {
    height: 550px;
    padding: 0px;
  }

  .main-text {
    display: block;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    transform: none;
    z-index: 2;
    padding: 0px;
    transform: none;
  }

  .main-title {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
  }

  .main-subtitle {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    font-size: 2rem;
    text-align: center;
  }

  .section-main-container {
    display: block;
    position: relative;
    width: 100%;
    height: 600px;
    padding: 0px;
    left: 0px;
    margin-top: -100px;
  }

  .container {
    flex-direction: column;
    height: 800px;
  }

  .main-text {
    width: 100%;
    margin-right: 0;
  }

  .section-main-container {
    width: 100%;
    height: 600px; /* Set height to 600px on smaller screens */
  }

  .section-main-container-100 {
    width: 100%;
    height: 100%;
  }

  .section-main-products-text {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    background-color: rgb(230, 230, 230);
  }

  /* --- CONTAINERS --- */

  .container_vertical {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .center_content_left {
    text-align: left;
  }

  .account_modal_customer_left {
    width: 100%;
    margin: 0px;
    margin-bottom: 10px;
    border-radius: 0px;
  }

  .account_modal_customers_right {
    width: 100%;
    margin: 0px;
    border-radius: 0px;
  }

  .account_modal_customers_middle {
    width: 100%;
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .view-3d_container {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 0px;
  }

  /* --- LISTS --- */

  ul.a {
    font-size: 1.2rem;
  }

  .section_all_customers_container {
    margin-top: 0px;
  }

  .demo_content_grid {
    display: block;
    width: 100%;
    height: 100%;
  }

  .contact-container-right {
    width: 100%;
  }

  /* --- SECTIONS --- */

  /* --- PRODUCTS --- */

  .products {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15px;
  }

  .products_options {
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .products_option_container {
    display: block;
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    padding: 0px;
    margin: 0px;
    margin-bottom: 15px;
    padding-bottom: 50px;
  }

  .products_text {
    height: 240px;
  }

  .products_title {
    display: block;
    position: relative;
    font-size: 50px;
    font-weight: 700;
    padding-top: 70px;
    color: rgba(0, 0, 0, 1);
    text-align: center;
  }

  .products_subtitle {
    display: block;
    position: relative;
    font-size: 8vw;
    font-weight: 500;
    padding-top: 20px;
    color: rgba(170, 170, 170, 1);
    text-align: center;
    padding: 25px;
  }

  .products_option_container_empty {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 400px;
    background-color: rgba(250, 250, 250, 0, 0);
    border-radius: 15px;
    margin: 0px;
  }

  .text_link {
    font-size: 18px;
    font-weight: 600;
  }

  .subscribe_container {
    border-radius: 0px;
    margin: 0px;
  }

  .view-3d_upload_container {
    display: block;
    position: relative;
    height: 80%;
    padding: 0px;
  }

  .view-3d_upload {
    display: block;
    height: 75vh;
    border-radius: 0px;
    width: 100%;
    background-color: rgb(237, 237, 237);
  }

  .cards_solutions_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .cards_services_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .cards_feature_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .cards_partners_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .card_container {
    display: block;
    width: 100%;
    height: auto;
  }

  .card_solutions {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    margin: 20px;
    padding-bottom: 60px;
    min-width: 70vw;
  }

  .card_services {
    display: block;
    position: relative;
    width: 70vw;
    border-radius: 15px;
    margin: 0px;
  }

  .viewerOverlay {
    padding: 0px;
  }

  .shop_viewer {
    border-radius: 0px;
  }

  .card_feature {
    display: block;
    position: relative;
    width: calc(100% - 40px);
    height: 100%;
    border-radius: 15px;
    margin: 20px;
    padding-bottom: 20px;
    border: 0px solid rgb(18, 31, 99);
  }

  .card_partners {
    position: relative;
    width: calc(100% - 40px);
    height: 450px;
    border-radius: 15px;
    margin: 20px;
    border: 0px solid rgb(18, 31, 99);
  }

  .card_title_container {
    display: flex;
    justify-content: left;
    align-items: center;
    height: 100px;
    width: 100%;
    padding-left: 30px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }

  .card_title {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 0px;
  }

  .card_text_container {
    display: flex;
    justify-content: center;
    align-items: left;
    height: 100%;
    padding-top: 0px;
    padding-right: 30px;
    padding-left: 30px;
    width: 100%;
  }

  .card_tag {
    font-size: 1rem;
    font-weight: 500;
  }

  .card_text {
    display: block;
    font-size: 1.4rem;
  }

  .card_text li {
    font-size: 1.1rem;
  }

  .card_video_text {
    display: block;
    font-size: 2rem;
  }

  .welcome_user {
    font-size: 1.5rem;
  }

  .account_login {
    margin-top: 0px;
  }

  .play_button_large {
    top: -65px;
    right: 20px;
  }

  /* CONFIRMATION CONTAINER */

  .popup {
    width: 300px;
  }

  .notification_confirmation_yes {
    border-radius: 10px;
  }

  .notification_confirmation_no {
    border-radius: 10px;
  }

  .solutions_subtitle2 {
    font-size: 1.5rem;
  }

  .solutions_subtitle3 {
    font-size: 1.2rem;
  }

  /* --- PLANS --- */

  .plans {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15px;
  }

  .plans_options {
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .plans_option_container {
    display: block;
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    padding: 0px;
    margin: 0px;
    margin-bottom: 15px;
    padding-bottom: 30px;
  }

  .plans_text {
    display: block;
    position: relative;
    font-size: 50px;
    font-weight: 700;
    padding-top: 70px;
    color: rgba(0, 0, 0, 1);
    text-align: center;
  }

  .plans_title {
    display: block;
    position: relative;
    font-size: 50px;
    font-weight: 700;
    padding-top: 70px;
    color: rgba(0, 0, 0, 1);
    text-align: center;
  }

  .plans_subtitle {
    font-size: 8vw;
  }

  .plans_option_container_empty {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 330px;
    background-color: rgb(250, 250, 250);
    border-radius: 15px;
    margin: 0px;
  }

  /* --- VIDEO GRID --- */

  .video_grid {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: auto;
    gap: 20px;
    overflow-x: auto;
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .video_grid_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
  }

  .video_item {
    position: relative;
    width: 85vw;
    overflow: hidden;
  }

  /* --- ACCOUNT --- */

  .account {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: auto;
    padding: 0px;
  }

  .account_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 0px;
  }

  .products_container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
  }

  .text-content {
    padding-right: 10px;
  }

  .text-content h3 {
    font-size: 1.2rem;
  }

  .welcome_message {
    justify-content: center;
    align-items: center;
  }

  .account_container_left {
    display: none;
  }

  .account_container_right {
    display: inline;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 10px;
    background-color: rgb(255, 255, 255);
  }

  .account_modal {
    border-radius: 0px;
    margin: 0px;
    width: 100%;
  }

  .section_analytics_container {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0px;
  }

  .chart_overview {
    padding-right: 0px;
  }

  .analytics-graph {
    width: 100%;
    padding-right: 20px;
  }

  .chart_popular {
    padding-right: 20px;
  }

  .section-main-ar-text {
    display: block;
    position: relative;
    height: 600px;
    width: 100%;
    background-color: rgb(245, 245, 245);
  }

  .section-main-ar-title {
    display: block;
    width: 100%;
    position: absolute;
    font-size: 40px;
    font-weight: 900;
    bottom: 80px;
    color: rgb(255, 255, 255);
    text-align: center;
  }

  .section-main-ar-subtitle {
    display: block;
    width: 100%;
    position: absolute;
    font-size: 22px;
    font-weight: 500;
    bottom: 50px;
    color: rgb(0, 0, 0);
    text-align: center;
  }

  .section-main-ar-video {
    display: block;
    position: relative;
    height: 600px;
    width: 100%;
    padding-bottom: 0px;
    background-color: rgb(245, 245, 245);
  }

  .main_icon_title {
    padding-top: 20px;
    font-size: 2.2rem;
    font-weight: 600;
  }

  .main_icon_subtitle {
    font-size: 0.9rem;
    padding-bottom: 0px;
    font-weight: 500;
    color: rgb(130, 130, 130);
  }

  .main_icon_text {
    padding-top: 0px;
    font-size: 5vw;
    padding-bottom: 20px;
    font-weight: 400;
  }

  .main_icon_text2 {
    font-weight: 500;
  }

  .main_icon_price {
    padding-top: 20px;
    font-size: 40px;
    font-weight: 700;
  }

  .main_icon_tag {
    padding-top: 5px;
    font-size: 16px;
    font-weight: 400;
    color: rgb(130, 130, 130);
  }

  .view_in_ar_btn {
    display: inline;
    position: relative;
    width: 30px;
    height: auto;
    top: 8px;
  }

  .action_container2 {
    height: 400px;
  }

  #qr-toggle-button {
    display: none !important;
  }

  #fullscreen-toggle-button {
    display: none !important;
  }

  /* --- SOLUTIONS PAGE -- */

  .lightgrey1 {
    background-color: rgb(255, 255, 255);
  }

  .lightgrey2 {
    background-color: rgb(255, 255, 255);
  }

  .section-products-container {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
    padding-bottom: 50px;
  }

  .section-products-container-contactBtn {
    display: block;
    position: relative;
    width: 100%;
    height: 300px;
    padding: 30px;
  }

  .section-product-container-30-left {
    display: block;
    position: relative;
    float: none;
    width: 100%;
    height: 100%;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgb(230, 230, 230);
  }

  .section-product-container-70-right {
    display: block;
    position: relative;
    float: none;
    width: 100%;
    height: 600px;
    padding: 0px;
  }

  .section-product-container-70-left {
    display: block;
    position: relative;
    float: none;
    width: 100%;
    height: 600px;
    padding: 0px;
    border: 1px solid rgb(230, 230, 230);
  }

  .section-solutions-container-30-right {
    display: block;
    position: relative;
    float: none;
    width: 100%;
    height: 300px;
    padding: 30px;
    margin-top: 50px;
    margin-bottom: 100px;
    border: 1px solid rgb(230, 230, 230);
  }

  .section-product-container-30-right {
    display: block;
    position: relative;
    float: none;
    width: 100%;
    height: 300px;
    padding: 30px;
    margin-top: 200px;
    margin-bottom: 50px;
    border: 1px solid rgb(230, 230, 230);
  }

  .section-product-container-100 {
    width: 100%;
    height: 600px;
    padding: 0px;
    border: 1px solid rgb(230, 230, 230);
  }

  .deel-product-container {
    display: block;
    position: relative;
  }

  .section-product-multi-title {
    display: block;
    position: relative;
    margin-top: 100px;
    width: 100%;
    height: 300px;
    padding: 0px;
  }

  .section-product-room-title {
    display: block;
    position: relative;
    margin-top: 0px;
    width: 100%;
    height: 200px;
    padding: 0px;
  }

  .solutions_title {
    font-size: 2.4rem;
  }

  .solutions_subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    padding: 10px;
  }

  .solutions_title_iframe {
    font-size: 2rem;
    text-align: left;
  }

  .solutions_subtitle_iframe {
    font-size: 1.3rem;
    text-align: left;
    font-weight: 400;
  }

  .card_tag3 {
    font-size: 1.6rem;
  }

  .solutions_title_container {
    font-size: 5vw;
    text-align: center;
  }

  .solutions_subtitle_container {
    font-size: 5vw;
    text-align: center;
    font-weight: 400;
  }

  .solutions_subtitle_text {
    width: 80%;
    padding-top: 5px;
    padding-bottom: 50px;
    text-align: left;
    left: 10%;
  }

  .solutons_container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 25px;
    margin: 20px;
    border-radius: 15px;
    background-color: rgba(250, 250, 250, 1);
    height: 400px;
    width: 100%;
  }

  .solutions_center_text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .solutions_icon {
    display: block;
    position: relative;
  }

  .view-3d_sidebar {
    display: none;
  }

  .model-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .table_container {
    margin-left: 0px;
    margin-right: 0px;
    border-radius: 0px;
  }

  #customers td:first-child,
  #customers th:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
    background: rgba(255, 255, 255, 1);
  }

  .table_scroll {
    overflow-x: auto;
  }

  .product_title_container {
    border-top: 1px solid rgb(230, 230, 230);
    background-color: rgb(245, 245, 245);
  }

  /* --- LINKS --- */

  .text-right {
    text-align: center;
  }

  .view_3d_share_modal_bar_button img {
    width: 25px;
    height: 25px;
    right: 25px;
    top: 30px;
  }

  .toggle-settings {
    display: block;
  }

  .view-3d_settings {
    width: 100%;
    height: auto;
    overflow-y: visible; /* allow normal page scroll */
    border-left: none;
    padding: 0;
  }

  .view-3d_settings_upload {
    position: relative;
    border-left: none;
    width: 100%;
    height: auto;
    padding-bottom: 0px;
    display: block;
    padding-top: 0px;
  }

  /* --- CONTACT PAGE -- */

  .section-contact-container {
    display: block;
    position: relative;
    padding: 0px;
    height: 100%;
    margin-top: 0px;
  }

  .aanvragen_container {
    border-radius: 0px;
    border: none;
  }

  .section-settings-container {
    display: block;
    position: relative;
    padding: 0px;
    height: 100%;
    margin-top: 0px;
  }

  .settings_container {
    border-radius: 0px;
    width: 100%;
    border-top: none;
  }

  .account_modal_customers_1,
  .account_modal_customers_2,
  .account_modal_customers_3,
  .account_modal_customers_4,
  .account_modal_customers_5 {
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid rgb(240, 240, 240);
  }

  .customers_container {
    padding: 0px;
    border-radius: 0px;
    border-bottom: 1px solid;
  }

  .settings {
    gap: 0px;
  }

  .payment_container {
    border-radius: 0px;
    width: 100%;
    border-bottom: none;
    background-color: rgb(255, 255, 255);
  }

  .models_container {
    border-radius: 0px;
    width: 100%;
  }

  .account_modal_customer_center,
  .account_modal_customers_middle {
    border-radius: 0px;
  }

  .contact-container-left {
    display: block;
    position: relative;
    width: 100%;
    padding-right: 0px;
    padding-bottom: 0px;
  }

  .contact-title {
    text-align: left;
    font-size: 16vw;
    padding-left: 10px;
  }

  .contact-subtitle {
    padding-top: 10px;
    padding-left: 10px;
    text-align: left;
    font-size: 10vw;
    padding-bottom: 20px;
  }

  .submitBtn {
    width: 100%;
  }

  .contact_information_title {
    font-size: 2rem;
    text-align: left;
  }

  #uploadModal {
    padding: 3vh;
  }

  #delete_notification .notification {
    max-width: 80vw;
  }

  .modal-content {
    background-color: inherit;
    padding: 0px;
    border-radius: 15px;
  }

  .graph_container {
    border-radius: 0px;
  }

  .section_analytics_container {
    border-bottom: 1px solid rgb(240, 240, 240);
  }

  .upload_bottom_container {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }

  /* --- VIDEO --- */

  .videos {
    margin-top: 0px;
    height: calc(100vh - 70px);
  }

  .video_container {
    padding-top: 15px;
  }

  /* --- PLANS PAGE -- */

  .section-plans-container {
    display: block;
    position: relative;
    padding: 20px;
    height: 100%;
  }

  .plans-title {
    text-align: center;
    font-size: 16vw;
    font-weight: 700;
  }

  .plans-subtitle {
    text-align: center;
    font-size: 10vw;
    font-weight: 500;
  }

  .accountsettings_container {
    border-radius: 0px;
  }

  /* --- IFRAME -- */

  .iframe-container {
    width: 100%;
  }

  .iframe-products {
    border-radius: 20px;
  }

  .footer {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }

  .card_button_container {
    height: 80px;
  }

  /* --- VIEW 3D PAGE --- */

  .viewer {
    display: flex;
    flex-direction: column; /* stacked */
    height: auto;
  }

  .view-3d {
    display: block;
    width: 100%;
    height: calc(100dvh - 80px);
    background-color: rgba(255, 255, 255, 0);
  }

  .view_3d_panel {
    display: block;
    position: relative;
    float: none;
    width: 100%;
    height: auto;
    overflow-y: visible;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: rgb(250, 250, 250);
    border: none;
  }

  .view_3d_scroll {
    display: block;
    position: relative;
    height: auto;
    overflow-y: visible;
    background-color: var(--background6);
  }

  .view_3d_title {
    color: rgb(0, 0, 0);
    display: flex;
    justify-items: center;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .view_3d_drag {
    display: block;
    position: absolute;
    width: 30px;
    height: 5px;
    background-color: var(--background2);
    top: 10px;
    border-radius: 10px;
  }

  .view_3d_label {
    font-size: 0.7rem;
    font-weight: 300;
    color: rgb(100, 100, 100);
  }

  .view_3d_value {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgb(0, 0, 0);
  }

  .view_3d_information {
    border-top: 1px solid rgb(230, 230, 230);
  }

  .view_3d_information:first-child {
    border-top: 0px solid rgb(230, 230, 230);
  }

  #ar-button {
    display: block;
  }

  .models {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0);
    padding-bottom: 10px;
    color: rgb(255, 255, 255);
    position: absolute;
    right: -25px;
    top: 5px;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: 500;
    width: 50px;
    height: auto;
    border-radius: 100px;
    margin: 10px;
    padding: 5px;
    border: 1px solid rgba(237, 237, 237, 0);
  }

  .models img {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    margin: 5px;
    margin-top: 5px;
    margin-bottom: 20px;
    transform: translate(0px, 0px);
    border: 1px solid rgba(237, 237, 237, 1);
  }

  .models img:last-child {
    margin-bottom: 5px;
  }

  .containerMaterials {
    position: absolute;
    top: auto;
    bottom: 55px;
    transform: none;
    left: auto;
    right: 0px;
    padding-right: 0px;
    height: 100%;
    width: auto;
    padding-left: auto;
  }

  .materials {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: auto;
    left: auto;
    height: auto;
    right: 0px; /* Keep the right offset */
    bottom: 40px; /* Add the bottom offset */
    z-index: 5;
    background-color: #ffffff00;
    border-radius: 50px;
    border: 1px solid rgba(237, 237, 237, 0);
    transform: translateX(-5px);
    padding-top: 5px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 5px;
  }

  .materialBtn {
    display: inline-block;
    position: relative;
    top: auto;
    border: 1px solid var(--background5);
  }

  .materialBtn img {
    height: 55px;
    width: 55px;
    margin: 0px;
    border-radius: 50px;
    padding: 3px;
    border: 0px solid var(--bordergray);
  }

  .materials .materialBtn img:hover {
    height: 55px;
    width: 55px;
    border: 0px solid var(--bordergray);
    padding: 3px;
  }

  .materials .materialBtn img:active {
    height: 55px;
    width: 55px;
    border: 0px solid var(--bordergray);
    padding: 3px;
  }

  .container_model_title {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-left: 45px;
    width: 100%;
  }

  .material_title {
    display: inline-block;
    position: absolute;
    text-align: left;
    bottom: -1px;
    top: auto;
    white-space: nowrap;
    line-height: 30px;
    font-size: 16px;
    font-weight: 500;
    color: rgb(132, 159, 175);
    background-color: rgb(255, 255, 255);
    z-index: 51;
    padding-top: 8px;
    padding-bottom: 10px;
    padding-left: 33px;
    padding-right: 20px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    border: 1px solid rgba(237, 237, 237, 1);
    border-left: 0px;
  }

  .variant-name {
    margin-top: 5px; /* Adjust as needed for spacing */
    height: 30px; /* Adjust as needed */
    width: 100px;
    color: rgb(0, 0, 0);
    text-align: center;
  }

  .view_3d_share {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 100%;
    background-color: var(--background6);
  }

  .view_3d_button {
    background-color: var(--button3);
    font-size: 1.4rem;
    border: none;
  }

  .view_3d_button:hover {
    background-color: var(--button3_hover);
  }

  .view_3d_button:active {
    background-color: var(--button3_active);
  }

  .modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 10%; /* Start at 10% of the screen */
    max-height: 80%; /* Max height is 80% of the screen */
    background-color: transparent;
    transition: height 0s ease;
    z-index: 90;
    background-color: rgb(255, 255, 255);
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }

  .view-3d_settings.collapsed {
    height: auto;
  }

  .view-3d_settings {
    height: auto;
  }

  .scroll-container {
    overflow-y: auto;
    max-height: 100%;
    flex-grow: 1;
    padding: 0px;
    background-color: rgb(255, 255, 255);
  }

  .modal-container {
    overflow-y: auto;
    max-height: 100%;
    flex-grow: 1;
    padding: 10px;
    background-color: rgb(255, 255, 255);
    height: 700px;
  }

  .share_buttons {
  }

  .modals {
    display: block;
  }

  .modal-header {
    display: flex;
    height: 80px;
    min-height: 80px;
    background-color: rgb(255, 255, 255);
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }

  .modal-header_upload {
    display: none;
    height: 80px;
    min-height: 80px;
    background-color: rgb(255, 255, 255);
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }

  .toggle_viewer_information {
    display: flex;
  }

  .project_title_container {
    font-size: 1.5rem;
  }

  .view_3d_share_modal_sharing_button_card button {
    font-size: 0.9rem;
  }

  /* --- FETCHED MODELS FROM MONGODB --- */

  #models_loaded {
    grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
    margin-top: 0px;
  }

  /* --- QR CODE --- */

  .qrcode_container {
  }

  /* SCROLLEBLE GRID */

  .scroll_grid {
    justify-content: flex-start;
  }

  /* --- ACCOUNT --- */

  .link_login_platform {
    display: block;
    position: relative;
    left: calc(50% - 100px);
    width: 200px;
    height: 50px;
    margin-top: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(230, 230, 230, 1);
  }

  /* --- FOOTER -- */

  .contact {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px;
  }

  .contact-container {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }

  .contact-info-title {
    font-weight: 700;
    font-size: 16px;
    padding-bottom: 5px;
  }

  .contact-info-text {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .contact-info {
    display: block;
    position: relative;
    font-weight: 300;
  }

  .contact-info a {
    text-decoration: none;
    padding-bottom: 15px;
  }

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

  .footer-contact {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }

  .footer-contact-container {
    display: flex;
    justify-content: left;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .footer-contact-logo img {
    display: none;
  }

  .footer-contact-logo {
    display: none;
  }

  .footer-contact-info {
    display: inline-block;
    position: relative;
    font-size: 14px;
    text-align: center;
    width: 100%;
    padding-top: 15px;
    height: 50px;
    margin-left: 0px;
    margin-right: 0px;
  }

  .footer-contact-legal {
    display: inline-block;
    position: relative;
    font-size: 14px;
    text-align: center;
    width: 100%;
    padding-top: 15px;
    height: 50px;
    margin-left: 0px;
    margin-right: 0px;
  }
}

/* --- TEXT --- */

h1 {
  font-size: 4rem;
  font-weight: 900;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
  font-weight: 700;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 16px;
  font-weight: 500;
}
h6 {
  font-size: 12px;
  font-weight: 200;
}

html,
body {
  isolation: auto !important;
}

model-viewer::backdrop,
model-viewer::part(*) {
  z-index: 0 !important;
}

/* --- COLLECTIONS PAGE --- */

.collections_page {
  display: flex;
  flex-direction: column;
}

.collections_intro_text {
  color: rgba(0, 0, 0, 0.65);
  max-width: 720px;
  margin: 0 0 16px;
}

@media screen and (max-width: 2400px) {
  .collections_page .model-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media screen and (max-width: 2000px) {
  .collections_page .model-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 1300px) {
  .collections_page .model-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.collections_loading,
.collections_empty {
  width: 100%;
  min-height: 160px;
  border-radius: 24px;
  border: 1px dashed rgba(13, 25, 56, 0.15);
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
}

.collections_loading img {
  width: 48px;
  height: 48px;
}

.collections_empty img {
  width: 72px;
  height: 72px;
  opacity: 0.5;
}

.collection_create_card .model-info {
  background: transparent;
  border: none;
  justify-content: center;
}

.collection_create_card .text-content {
  align-items: center;
}

.collection_create_card .text-content h3 {
  font-size: 1.4rem;
}

.collection_create_card .text-content p {
  color: rgba(0, 0, 0, 0.55);
}

.collection_btn_primary,
.collection_btn_ghost {
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}

.collection_btn_primary {
  background-color: var(--button3);
  color: #ffffff;
}

.collection_btn_primary:hover {
  background-color: var(--button3_hover);
}

.collection_btn_primary:active {
  background-color: var(--button3_active);
}

.collection_btn_primary:disabled {
  background-color: rgba(10, 18, 34, 0.25);
  color: rgba(255, 255, 255, 0.7);
  cursor: default;
}

.collection_btn_ghost {
  background-color: rgba(10, 18, 34, 0.06);
  color: rgba(0, 0, 0, 0.75);
}

.collection_btn_ghost:hover {
  background-color: rgba(10, 18, 34, 0.12);
}

.collection_btn_ghost:active {
  background-color: rgba(10, 18, 34, 0.2);
}

.collection_modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
}

.collection_modal.open {
  display: flex;
}

.collection_modal_overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(6, 12, 27, 0.65);
}

.collection_modal_dialog {
  position: relative;
  width: calc(100% - 50px);
  height: calc(100% - 50px);
  background-color: #ffffff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.collection_form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.collection_modal_header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.collection_modal_header_grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.6fr);
  width: 100%;
  align-items: flex-start;
}

.collection_header_primary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  background-color: rgb(250, 250, 250);
  padding: 20px;
}

.collection_input_title {
  width: 100%;
  border: none;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  outline: none;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
}

.collection_input_description {
  width: 100%;
  border: none;
  resize: none;
  outline: none;
  padding-bottom: 12px;
  background-color: rgb(255, 255, 255);
}

.collection_icon_button {
  border: none;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.collection_modal_body {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  min-height: 400px;
}

.collection_editor_main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.6fr);
  min-height: 0;
  flex: 1;
  border-bottom: 1px solid rgb(220, 220, 220);
}

.collection_viewer_panel,
.collection_selected_panel,
.collection_picker_panel {
  background-color: rgb(250, 250, 250);
  border-radius: 0px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.collection_viewer_panel {
  min-height: 0;
}

.collection_selected_panel {
  min-width: 0;
}

.collection_selected_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.collection_viewer_stage {
  position: relative;
  flex: 1;
  margin: 16px 0;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

#collectionModelViewer {
  width: 100%;
  height: 100%;
  display: none;
}

#collectionModelViewer.active {
  display: block;
}

.collection_viewer_placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(0, 0, 0, 0.6);
}

.collection_viewer_placeholder img {
  width: 52px;
}

.collection_picker_header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

.collection_picker_panel_header {
  max-height: 420px;
  min-height: 0;
}

.collection_picker_panel_header .collection_model_list {
  max-height: 360px;
  overflow-y: auto;
}

.collection_selected_list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 4px;
}

.collection_selected_empty {
  padding: 20px;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
}

.collection_selected_card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color 120ms ease, transform 120ms ease;
}

.collection_selected_card.is-active {
  border-color: rgb(220, 220, 220);
}

.collection_selected_card:hover {
  border-color: rgb(200, 200, 200);
}

.collection_selected_thumb {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--background6);
  flex-shrink: 0;
}

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

.collection_selected_info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.collection_selected_info p {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.85rem;
}

.collection_selected_remove {
  border: none;
  background: rgba(0, 0, 0, 0.06);
  color: #000;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  cursor: pointer;
}

.collection_model_list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 4px;
}

.collection_model_card {
  background-color: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 120ms ease, transform 120ms ease;
}

.collection_model_card:hover {
  border: 1px solid rgb(200, 200, 200);
}

.collection_model_card:active {
  border: 1px solid rgb(180, 180, 180);
}

.collection_model_card.is-selected {
  border: 1px solid rgb(200, 200, 200);
  background-color: rgb(255, 255, 255);
}

.collection_model_card img {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  background-color: var(--background6);
}

.collection_model_info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.collection_model_info span {
  font-weight: 600;
}

.collection_model_info p {
  margin: 4px 0 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.85rem;
}

.collection_model_card button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.08);
  font-weight: 600;
}

.collection_model_card.is-selected button {
  background: var(--button3);
  color: #ffffff;
}

.collection_models_empty {
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  padding: 32px 12px;
}

.collection_modal_footer {
  padding: 16px 40px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.collection_form_error {
  color: rgb(181, 27, 44);
  min-height: 24px;
  font-weight: 600;
}

.collection_footer_actions {
  display: flex;
  gap: 12px;
}

.collection_footer_actions.header_actions {
  margin-top: 12px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.modal_label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  margin: 0 0 6px;
}

.toast_stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 150;
}

.toast {
  background: #101628;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  min-width: 220px;
  box-shadow: 0 20px 40px rgba(5, 7, 24, 0.3);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.hide {
  opacity: 0;
  transform: translateY(8px);
}

@media (max-width: 1100px) {
  .collection_modal_header_grid {
    grid-template-columns: 1fr;
  }

  .collection_editor_main {
    grid-template-columns: 1fr;
  }

  .collection_viewer_panel,
  .collection_selected_panel,
  .collection_picker_panel {
    max-height: none;
    height: auto;
  }

  .collection_model_list,
  .collection_selected_list {
    max-height: 360px;
  }
}

@media (max-width: 768px) {
  .collections_header {
    flex-direction: column;
  }

  .collection_modal_dialog {
    width: min(640px, 94vw);
  }

  .collection_modal_header,
  .collection_modal_body,
  .collection_modal_footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .collection_footer_actions {
    flex-direction: column;
    width: 100%;
  }

  .collection_footer_actions button {
    width: 100%;
  }
}

/* --- PUBLIC COLLECTION SHARE --- */

body.collection-share {
  background-color: var(--background6);
}

.collection_share_layout {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100vh;
}

.collection_share_logo {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 25;
  display: inline-flex;
}

.collection_share_logo img {
  display: block;
  width: 150px;
  height: auto;
}

.collection_share_main {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.8fr);
  flex: 1 1 auto;
  min-height: 0;
}

.collection_share_viewer,
.collection_share_list {
  background-color: rgb(255, 255, 255);
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: scroll;
}

.collection_share_list {
  border-left: 1px solid rgb(240, 240, 240);
}

.collection_share_viewer {
  padding: 0px;
}

.collection_share_viewer_meta {
  margin-top: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

#collectionShareModelTitle {
  font-size: 1.3rem;
  margin: 0;
}

.collection_share_viewer_description {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  min-height: 48px;
}

.collection_share_model_viewer {
  display: flex;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: 500px;
  background: var(--background6);
  position: relative;
}

.collection_share_meta_block {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-top: 16px;
  height: 150px;
}

.collection_share_meta_info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.collection_share_meta_qr {
  width: 140px;
  min-height: 140px;
  border-radius: 16px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.collection_share_meta_qr span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.5);
}

.collection_share_meta_qr canvas {
  width: 110px !important;
  height: auto !important;
}

.collection_share_meta_qr .collection_share_qr_canvas {
  width: 110px;
  height: 110px;
}

.collection_share_variant_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
}

.collection_share_variant_list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.collection_share_progress {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  z-index: 12;
  transition: opacity 200ms ease;
}

.collection_share_progress img {
  width: 60px;
}

.collection_share_progress_bar {
  width: 140px;
  height: 6px;
  border-radius: 999px;
  background: rgba(10, 18, 34, 0.12);
  overflow: hidden;
}

.collection_share_progress_bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--button3);
  transition: width 120ms ease;
}

.collection_share_progress_text {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
}

.collection_share_list {
  gap: 12px;
}

.collection_share_meta_info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.collection_share_meta_qr {
  width: 140px;
  min-height: 140px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.collection_share_meta_qr span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.5);
}

.collection_share_meta_qr canvas {
  width: 110px !important;
  height: auto !important;
}

.collection_share_meta_qr .collection_share_qr_canvas {
  width: 110px;
  height: 110px;
}

.collection_share_variant_panel {
  padding: 16px;
  border-top: 1px solid rgb(240, 240, 240);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.collection_share_variant_panel[hidden] {
  display: none !important;
}

.collection_share_variant_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
}

.collection_share_variant_list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.collection_share_variant_btn {
  background: white;
  cursor: pointer;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  font-weight: 600;
  transition: background 140ms ease, color 140ms ease;
}

.collection_share_variant_btn.active {
  color: #00ff00;
}

.collection_share_variant_btn img {
  width: 100%;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--background6);
  border: 1px solid rgb(200, 200, 200);
}

.collection_share_variant_btn span {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgb(0, 0, 0);
}
.collection_share_list_scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
  border-bottom: 1px solid rgb(240, 240, 240);
}

.collection_share_list_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
}

.collection_share_card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgb(240, 240, 240);
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  text-align: left;
  background-color: rgb(255, 255, 255);
  margin-bottom: 10px;
  cursor: pointer;
}

.collection_share_card:last-child {
  margin-bottom: 0;
}

.collection_share_card:hover {
  border: 1px solid rgb(210, 210, 210);
}

.collection_share_card.is-active {
  border: 1px solid rgb(220, 220, 220);
  background-color: rgb(255, 255, 255);
}

.collection_share_card img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--background6);
}

.collection_share_card_info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.collection_share_card_info span {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.85rem;
}

@media (max-width: 1100px) {
  .collection_share_main {
    grid-template-columns: 1fr;
  }

  .collection_share_list {
    max-height: none;
  }
}

@media (max-width: 640px) {
  .collection_share_viewer,
  .collection_share_list {
  }

  .collection_share_model_viewer {
    height: 600px;
  }

  .collection_share_meta_block {
    flex-direction: column;
  }

  .collection_share_meta_qr {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
}
