* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  height: 100vh;
  margin: 0;
}

[class^='shadow'] {
    width: calc(98% - 1em);
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* rgba(white, .2) menjadi rgba(255, 255, 255, 0.2) */
    border-radius: inherit;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

[class^='shadow']:before,
[class^='shadow']:after {
    content: '';
    background: inherit;
    height: inherit;
    border-radius: inherit;
    position: absolute;		
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
}

[class^='shadow']:before {
    width: inherit;
}

[class^='shadow']:after {
    width: calc(96% - 2em);
}

[class^='shadow'][class$='-bottom'] {
    top: 0.5em;
}

[class^='shadow'][class$='-bottom']:before {
    top: 0.5em;
}

[class^='shadow'][class$='-bottom']:after {
    top: 1em;
}

[class^='shadow'][class$='-top'] {
    top: -0.5em;
}

[class^='shadow'][class$='-top']:before {
    top: -0.5em;
}

[class^='shadow'][class$='-top']:after {
    top: -1em;
}

body {
  font-family: "DM Sans", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  overflow-x: hidden;
  background-image: linear-gradient(-45deg , #6991c790, #23a6d590, #a3bded, #6991c7 100%);
  background-position: center;
  background-size: cover;
  padding: 20px;
  animation: gradient 15s ease infinite;
  height: 100vh;
  background-size: 400% 400%;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

:root {
  --dark-font: #0f0f10;
  --light-font: #79798c;
  --default-font: #4169e1;
  --background-light: #e0e9fd;
  --background-dark: #1e1e2f;
  --duration: 1.5s;
  --container-size: 150px;
  --box-size: 23px;
  --box-border-radius: 15%;
  
  --dark-blue: #00255f;
  --deep-shadow: 0 0 40px 0 rgba(0,0,0,.15);
  --shallow-shadow: 0 0 10px rgba(0,0,0,.15);
  --text-shadow: 0 0 1px rgba(0,0,0,.15);
  --purple-gradient: linear-gradient(to right, #bf9eff, #8092fc);
  --blue-gradient: linear-gradient(to right, #79b9e9, #31bfad);
  --pink-gradient: linear-gradient(to right, #f0819f, #f47d76);
  --border-radius: 8px;
}

.smoke {
  --font-size: 18px;
  font-weight: 500;
  line-height: var(--font-size);
  color: #292C3D;
  display: block;
  letter-spacing: 0.0075em;
  --move: 24px;
  --move-y: -16px;
  --blur: 6px;
}
.smoke div {
  display: flex;
}
.smoke div span {
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.smoke div span:nth-child(1) {
  --d: 0.05s;
}
.smoke div span:nth-child(2) {
  --d: 0.1s;
}
.smoke div span:nth-child(3) {
  --d: 0.15s;
}
.smoke div span:nth-child(4) {
  --d: 0.2s;
}
.smoke div span:nth-child(5) {
  --d: 0.25s;
}
.smoke div span:nth-child(6) {
  --d: 0.3s;
}
.smoke div span:nth-child(7) {
  --d: 0.35s;
}
.smoke div span:nth-child(8) {
  --d: 0.4s;
}
.smoke div span:nth-child(9) {
  --d: 0.45s;
}
.smoke div span:nth-child(10) {
  --d: 0.5s;
}
.smoke div span:nth-child(11) {
  --d: 0.55s;
}
.smoke.active span {
  --duration: 1.25s;
  -webkit-animation: smoke var(--duration) linear var(--d);
          animation: smoke var(--duration) linear var(--d);
}

@-webkit-keyframes smoke {
  45%, 55% {
    filter: blur(var(--blur));
  }
  50%, 50.1% {
    opacity: 0;
  }
  25%, 75% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(var(--move)) translateY(var(--move-y));
  }
  50.1% {
    transform: translateX(calc(var(--move) * -1));
  }
}

@keyframes smoke {
  45%, 55% {
    filter: blur(var(--blur));
  }
  50%, 50.1% {
    opacity: 0;
  }
  25%, 75% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(var(--move)) translateY(var(--move-y));
  }
  50.1% {
    transform: translateX(calc(var(--move) * -1));
  }
}

html.dark {
  --dark-font: #ffffff;
  --light-font: #cccccc;
  --default-font: #23a6d5;
  background-color: #1e1e2f;
}

html.light {
  --dark-font: #0f0f10;
  --light-font: #79798c;
  --default-font: #6991c7;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

a {
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.nav {
	/* --hover-bg: #5b37b720; */
	--hover-bg: rgba(91, 55, 183, 0.2);
	--hover-c: #5b37b7;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.nav a {
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 8px;
	position: relative;
	&:hover {
		background-color: #e0e9fd80;
		outline: 0;
		span { 
			transform: scale(1);
			opacity: 1;
			z-index:9;
		}
	}	
	span {
		position: absolute;
		background-color: #e0e9fd;
		white-space: nowrap;
		padding: .5rem 1rem;
		border-radius: 6px;
		left: calc(100% + 1.5rem);
		transform-origin: center left;
		transform: scale(0);
		opacity: 0;
		transition: .15s ease;
		color: var(--default-font);
		&:before {
			content: "";
			display: block;
			width: 12px;
			height: 12px;
			position: absolute;
			background-color: #e0e9fd;
			left: -5px;
			top: 50%;
			transform: translatey(-50%) rotate(45deg);
			border-radius: 3px;
			color: var(--default-font);
		}
	}
}

a svg {
  width: 28px;
  height: 28px;
  pointer-events: none;
  transition: margin 0.2s ease-out;
}

.nav a:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transform: translate(0%, -50%) scale(0);
  visibility: visible;
  opacity: 1;
  overflow:hidden;
}

.nav a.active {
  color: var(--default-font);
  background-color: #e0e9fd80;
}

.nav a.active:before {
  background: #a3bded;
  opacity: 0;
  visibility: hidden;
  transform: translate(0%, -50%) scale(2);
  transition: all 0.4s ease-out;
}
.nav a.active svg {
  margin-right: 0;
  /* width:40px; */
  /* height:40px; */
  /* transform: translate(0%, -50%) scale(2); */
  transition: all 0.4s ease-out;
  background-color:transparan;
  /* box-shadow: 0 5px 20px rgba(35, 210, 253, 0.3); */
}

.app-container {
  position: relative;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  max-height: 900px;
  background: linear-gradient(180deg, #e0e9fd 0%, #e9ecf1 90%);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4);
  display: flex;
  overflow: hidden;
}

.left-area {
  padding: 32px;
  flex-basis: 1 0 132px;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 300ms cubic-bezier(0.19, 1, 0.56, 1);
  position: relative;
  overflow: visible;
}
.left-area.show {
  transform: translateX(0);
  opacity: 1;
}

.app-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: var(--dark-font);
  margin-bottom: 32px;
}

.item-link {
  color: var(--light-font);
  margin-bottom: 32px;
  transition: 0.2s;
}
.item-link.active {
  /* color: var(--dark-font); */
}

.btn-logout {
  border: none;
  background-color: transparent;
  color: var(--light-font);
  margin-top: auto;
  cursor: pointer;
  transition: 0.2s;
}
.btn-logout:hover {
  color: var(--dark-font);
}

.main-area {
  flex: 1;
  height: 100%;
  overflow-y: auto;
  background: linear-gradient(97deg, #f2f7fd 0%, #f0f4fd 90%);
  border-radius: 0 10px 10px 0;
  padding-bottom: 24px;
  position: relative;
}

.main-area-header {
	padding: 20px 40px;
	background: linear-gradient(97deg, #f2f7fd 0%, #f0f4fd 90%);
}

.search-wrapper {
  border-radius: 4px;
  /* background-color: #fff; */
  padding-right: 12px;
  height: 55px;
  display: flex;
  /* justify-content: space-between; */
  justify-content: flex-end;
  align-items: center;
  color: var(--dark-font);
  /* box-shadow: 0 2px 6px 0 rgba(136, 148, 171, 0.2), 0 24px 20px -24px rgba(71, 82, 107, 0.1); */
  overflow: hidden;
}

.search-input {
  border: none;
  flex: 1;
  outline: none;
  height: 100%;
  padding: 0 12px;
  font-size: 12px;
}

.right-area {
  flex-basis: 300px;
  flex-grow: 0;
  background: linear-gradient(180deg, #e0e9fd 0%, #e9ecf1 90%);
  transition: all 300ms cubic-bezier(0.19, 1, 0.56, 1);
}
.right-area.show {
  transform: translateX(0);
  width: 100%;
  opacity: 1;
}

.content-section {
  display: block;
  margin-top: 5px;
  overflow-x: hidden;
  padding: 0 40px;
}

.section-header {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}
.section-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-header-link {
  display: block;
  font-size: 12px;
  line-height: 16px;
  color: #8683d6;
}

.access-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.access-icon {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.access-icon svg {
  width: 36px;
  height: 36px;
}

.access-link-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 8px;
}
.access-link-wrapper:nth-child(1) .access-icon {
  background-color: #6166fe;
}
.access-link-wrapper:nth-child(2) .access-icon {
  background-color: #6166fe;
}
.access-link-wrapper:nth-child(3) .access-icon {
  background-color: #3275f7;
}
.access-link-wrapper:nth-child(4) .access-icon {
  background-color: #3275f7;
}
.access-link-wrapper:nth-child(5) .access-icon {
  background-color: #22244a;
}
.access-link-wrapper:nth-child(6) .access-icon {
  background-color: #22244a;
}

.access-text {
  color: var(--light-font);
  font-size: 12px;
  line-height: 24px;
}

.content-section-line,
.content-part-line {
  display: flex;
  justify-content: space-between;
}

.content-part-line {
  height: 100%;
}

.content-section-line {
  margin: 0 -8px;
}

.section-part {
  flex-basis: 49%;
}

.image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: auto;
  position: relative;
  flex-basis: 48%;
  display: flex;
}
.image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s ease-in;
}
.image-wrapper:hover img {
  transform: scale(1.125);
}

.image-overlay {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 16, 34, 0.8) 0%, rgba(240, 244, 253, 0.2) 90%);
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.video-info-text {
  width: calc(100% - 40px);
}
.video-info-text p {
  margin: 0;
}

.video-name, .video-subtext {
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.video-name.medium, .video-subtext.medium {
  font-size: 14px;
  line-height: 24px;
}
.video-name.tiny, .video-subtext.tiny {
  font-size: 12px;
  line-height: 16px;
}

.video-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.video-subtext {
  opacity: 0.8;
}

.files-table {
  background-color: #fff;
  box-shadow: 0 2px 6px 0 rgba(136, 148, 171, 0.2), 0 24px 20px -24px rgba(71, 82, 107, 0.1);
  border-radius: 12px;
  padding: 12px;
  display: table;
  table-layout: auto;
  width: 100%;
}
.files-table-header {
  display: table-header-group;
}
.files-table-row {
  display: table-row-group;
}

.table-cell {
  display: table-cell;
  font-size: 12px;
  line-height: 16px;
  color: #000;
  padding: 8px;
    align-items: center;
    justify-content: center;
}

.column-header {
  font-size: 12px;
  line-height: 16px;
  color: #888da9;
}

.name-cell {
  width: 40%;
  word-break: break-all;
}
.name-cell.pdf:before {
  content: "PDF";
  background-color: #e2e9f8;
  color: #5a8ff7;
}
.name-cell.jpg:before {
  content: "JPG";
  background-color: #e4e2f1;
  color: #302d7d;
}
.name-cell:before {
  border-radius: 4px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

.size-cell {
  width: 20%;
}
.content-right {
	overflow-x: hidden;
}

.more-action {
  border: none;
  background-color: transparent;
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23888da9' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' class='feather feather-more-horizontal' viewBox='0 0 24 24'%3E%3Cdefs/%3E%3Ccircle cx='12' cy='12' r='1'/%3E%3Ccircle cx='19' cy='12' r='1'/%3E%3Ccircle cx='5' cy='12' r='1'/%3E%3C/svg%3E"); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 24px;
  height: 16px;
  outline: none;
  cursor: pointer;
}

.close-action svg{
  border: none;
  background-color: transparent;
  width: 20px;
  height: 20px;
  outline: none;
  cursor: pointer;
  fill:#ff6d88;
  margin: -2px -8px -8px -8px;
}

.fixed.main-area-header {
  position: sticky;
  z-index: 2;
  top: 0;
  width: 100%;
  padding: 0px 40px;
  transition: 0.2s;
  -webkit-animation: sticky 0.5s forwards;
          animation: sticky 0.5s forwards;
	backdrop-filter: blur(5px);
	background: rgba(255, 255, 255, 0.5);
	box-shadow: 0 .20rem .5rem -0.20rem rgba(16, 17, 33, .1);
}

@-webkit-keyframes sticky {
  0% {
    transform: translatey(-88px);
  }
  100% {
    transform: translatey(0px);
  }
}

@keyframes sticky {
  0% {
    transform: translatey(-88px);
  }
  100% {
    transform: translatey(0px);
  }
}
.video-time {
  position: absolute;
  z-index: 1;
  border-radius: 10px;
  padding: 4px 12px;
  background-color: rgba(139, 156, 163, 0.5);
  font-size: 10px;
  right: 12px;
  top: 12px;
  color: #fff;
}

.btn-play {
  border-radius: 50%;
  background-color: #fff;
  border: none;
  box-shadow: 0 2px 6px 0 rgba(136, 148, 171, 0.2), 0 24px 20px -24px rgba(71, 82, 107, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%2322244a' stroke='%2322244a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-play'%3E%3Cpolygon points='5 3 19 12 5 21 5 3'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.right-area {
  padding: 24px;
  overflow: auto;
}

.right-area-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.right-area-header-wrapper .more-action {
  width: 24px;
  height: 24px;
}

.download-item-line {
  padding: 12px 0;
}

.line-header {
  font-size: 12px;
  line-height: 16px;
  color: #888da9;
}

.device-area-add {
    /* background-color: #eceffb; */
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px dotted var(--light-font);
	overflow: hidden;
}

.icon-add {
    display: flex;
    flex-direction: column;
    align-items: center; /* Memusatkan ikon dan teks */
}

.add-icon {
    width: 20px; /* Ukuran ikon */
    fill: #eceffb; /* Warna ikon */
    /* margin: 5px; /* Jarak antara ikon dan teks */ 
}

.text-add {
    font-size: 12px;
    color: var(--light-font);
    text-align: center;
}

@keyframes dotted-border {
    0% {
        border-color: transparent;
        border-width: 2px;
        border-style: dotted;
    }
    50% {
        border-color: #4bc3a7;
    }
    100% {
        border-color: transparent;
        border-width: 2px;
        border-style: dotted;
    }
}

.device-area-add:hover {
    background-color: #eceffb;
}

.device-area {
    background-color: #eceffb;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    margin-top: 12px;
    cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.device-area.connect:hover {
    /* transform: scale(1.03); */
	box-shadow: 0 4px 8px 0 rgba(41, 244, 153, 0.08), 0 2px 4px 0 rgba(41, 244, 153, 0.05), 0 -2px 4px 2px rgba(41, 244, 153, 0.1) inset;
	background: linear-gradient(180deg, #eceffb 0%, #e9ecf1 90%);
    /* border-radius: 24px; */
    border: 1px solid hsl(0 0% 75% / 0.5);
}

.device-area.disconnect:hover {
    /* transform: scale(1.03); */
	box-shadow: 0 4px 8px rgba(255, 153, 139, 0.08), 0 2px 4px rgba(255, 153, 139, 0.05), 0 -2px 4px 2px rgba(255, 153, 139, 0.1) inset;
	background: linear-gradient(180deg, #eceffb 0%, #e9ecf1 90%);
    /* border-radius: 24px; */
    border: 1px solid hsl(0 0% 75% / 0.5);

    /* box-shadow: 0 40px 30px -18px hsl(30 80% 50% / 0.35), */
      /* 0 20px 20px -12px hsl(30 80% 50% / 0.35), */
      /* 0 -2px 4px 2px hsl(30 80% 90% / 0.75) inset; */
}

.device-icon {
    width: 24px;
    fill: #4bc3a7;
	position: relative;
    transition: transform 0.3s ease;
}

.icons {
    width: 24px;
    fill: #4bc3a7;
	position: relative;
    transition: transform 0.3s ease;
}
.iconz {
    width: 24px;
    fill: #ff6d88;
	position: relative;
    transition: transform 0.3s ease;
}

.action-icons {
    display: flex;
    gap: 10px; 
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
}

.action-icons:hover .icons{
    transform: scale(1.2);
}

.delete-icons {
    display: flex;
    gap: 10px; 
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
}

.delete-icons:hover .iconz{
    transform: scale(1.2);
}

.device-area:hover .device-icon {
    display: none;
}

.device-area:hover .action-icons {
    transform: translateX(0);
	margin-left: -10px;
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s ease, opacity 0.1s ease;
}

.device-area:hover .disconnect-icon {
    display: none;
}

.device-area:hover .delete-icons {
    transform: translateX(0);
	margin-left: -10px;
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s ease, opacity 0.1s ease;
}

.download-item-texts {
  padding: 0 12px;
}
.download-item-texts p {
  line-height: 16px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 150px;
}

.download-text-header {
  font-size: 12px;
}

.download-text-info {
  color: #888da9;
  font-size: 10px;
}
.download-text-info span {
  margin-left: 8px;
}

.download-item-icon {
  width: 32px;
}

.download-icon {
  width: 24px;
  fill: #4bc3a7;
}
.connect-icon {
    width: 24px;
    fill: #4bc3a7;
    position: relative;
}
.disconnect-icon {
    width: 24px;
    fill: #ff6d88;
    position: relative;
}
.device-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: rgba(75, 195, 167, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 1.5s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}
.progress-bar {
  height: 4px;
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
  background-color: #dadff3;
  margin: 6px 0;
}

.progress {
  height: 100%;
  width: 40%;
  background-color: #4bc0dd;
  display: block;
}

.received-item-line {
  height: 150px;
  width: 100%;
  padding-top: 12px;
  display: flex;
  padding-left: 4px;
}

.progress-line {
  height: 100%;
  width: 2px;
  background-color: #22244a;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
}
.progress-line:before, .progress-line:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #22244a;
  transform: translateX(-50%);
  left: 50%;
}
.progress-line:after {
  bottom: 0;
}

.time {
  margin-left: 12px;
  font-size: 10px;
  color: #888da9;
}

.received-items-content {
  padding: 24px 10px;
}

.received-files {
  display: flex;
  height: 70%;
}
.received-files .image-wrapper {
  margin-left: 6px;
  display: flex;
}

.received-files-info {
  font-size: 12px;
  line-height: 16px;
  margin-left: 12px;
  margin-top: 12px;
}
.received-files-info span {
  color: #7a8dc5;
}

.btn-show-left-area,
.btn-show-right-area {
  position: absolute;
  top: 24px;
  width: 32px;
  height: 40px;
  border-radius: 4px;
  background-color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  cursor: pointer;
  display: none;
}

.btn-show-left-area {
  left: 0;
  border-radius: 0 4px 4px 0;
}

.btn-show-right-area {
  right: 0;
  border-radius: 4px 0 0 4px;
}

.btn-close-left,
.btn-close-right {
  border: none;
  background-color: transparent;
  position: absolute;
  top: 4px;
  right: 4px;
  color: var(--light-font);
  outline: none;
  cursor: pointer;
  display: none;
}

.show .btn-close-left,
.show .btn-close-right {
  display: block;
}

@media screen and (min-width: 850px) and (max-width: 1042px) {
  .access-icon {
    padding: 16px;
  }

  .access-icon svg {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 900px) {
  .right-area {
    transform: translateX(100%);
    position: absolute;
    opacity: 0;
    z-index: 2;
    height: 100%;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4);
  }

  .btn-show-right-area {
    display: flex;
  }

  .access-icon svg {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 768px) {
  .left-area {
    transform: translateX(-100%);
    opacity: 0;
    position: absolute;
    z-index: 2;
    height: 100%;
    background-color: #fff;
    background-image: none;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4);
  }

  .btn-show-left-area {
    display: flex;
  }

  .content-section-line,
.content-part-line {
    flex-direction: column;
  }

  .image-wrapper {
    margin: 10px 0;
  }

  .video-name.tiny, .video-subtext.tiny {
    font-size: 16px;
    line-height: 24px;
  }

  .access-link-wrapper {
    width: 33.3%;
  }
}
@media screen and (max-width: 520px) {
  body {
    padding: 0;
  }

  .app-container {
    border-radius: 0;
  }

  .content-section {
    padding: 0 20px;
  }

  .content-section-line {
    margin: 0;
  }
}

.card-purple-blue {
  background: linear-gradient(45deg, #6d80fe 0%, #23d2fd 100%);
  box-shadow: 0 5px 20px rgba(35, 210, 253, 0.3);
}

.card-salmon-pink {
  background: linear-gradient(45deg, #ff998b 0%, #ff6d88 100%);
  box-shadow: 0 5px 20px rgba(255, 153, 139, 0.3);
}

.card-blue-green {
  background: linear-gradient(45deg, #09afe8 0%, #29f499 100%);
  box-shadow: 0 5px 20px rgba(41, 244, 153, 0.3);
}

.card-purple-pink {
  background: linear-gradient(45deg, #707cff 0%, #fa81e8 100%);
  box-shadow: 0 5px 20px rgba(250, 129, 232, 0.3);
}





.card {
  max-width: 340px;
  margin: auto;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  overflow-y: hidden;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  transition: 0.3s;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
}

.card[data-state="#about"] {
  height: 450px;
  .card-main {
    padding-top: 0;
  }
}

.card[data-state="#contact"] {
  height: 430px;
}

.card[data-state="#experience"] {
  height: 550px;
}

.card.is-active {
  .card-header {
    height: 80px;
  }

  .card-cover {
    height: 100px;
    top: -50px;
  }

  .card-avatar {
    transform: none;
    left: 20px;
    width: 50px;
    height: 50px;
    bottom: 10px;
  }

  .card-fullname,
  .card-jobtitle {
    left: 86px;
    transform: none;
  }

  .card-fullname {
    bottom: 18px;
    font-size: 15px;
  }

  .card-jobtitle {
    bottom: 16px;
    letter-spacing: 1px;
    font-size: 10px;
  }
}

.card-header {
  position: relative;
  display: flex;
  height: 200px;
  flex-shrink: 0;
  width: 100%;
  transition: 0.3s;

  * {
    transition: 0.3s;
  }
}

.card-cover {
  width: 100%;
  height: 100%;
  position: absolute;
  height: 160px;
  top: -20%;
  left: 0;
  will-change: top;
  background-size: cover;
  background-position: center;
  filter: blur(30px);
  transform: scale(1.2);
  transition: 0.5s;
}

.card-avatar {
  width: 100px;
  height: 100px;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  object-position: center;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-64px);
}

.card-fullname {
  position: absolute;
  bottom: 0;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transform: translateY(-10px) translateX(-50%);
  left: 50%;
}

.card-jobtitle {
  position: absolute;
  bottom: 0;
  font-size: 10px;
  white-space: nowrap;
  font-weight: 500;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-7px);
}

.card-main {
  position: relative;
  flex: 1;
  display: flex;
  padding-top: 10px;
  flex-direction: column;
}

.card-subtitle {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}

.card-content {
  padding: 20px;
}

.card-desc {
  line-height: 1.6;
  color: #636b6f;
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}

.card-social {
  display: flex;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 30px;
  svg {
    fill: rgb(165, 181, 206);
    width: 16px;
    display: block;
    transition: 0.3s;
  }
  a {
    color: #8797a1;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    background-color: rgba(93, 133, 193, 0.05);
    border-radius: 50%;
    margin-right: 10px;

    &:hover {
      svg {
        fill: darken(rgb(165, 181, 206), 20%);
      }
    }

    &:last-child {
      margin-right: 0;
    }
  }
}

.card-buttons {
  display: flex;
  background-color: #fff;
  margin-top: auto;
  position: sticky;
  bottom: 0;
  left: 0;

  button {
    flex: 1 1 auto;
    user-select: none;
    background: 0;
    font-size: 12px;
    border: 0;
    padding: 15px 5px;
    cursor: pointer;
    color: #5c5c6d;
    transition: 0.3s;
    font-family: Roboto;
    font-weight: 500;
    outline: 0;
    border-bottom: 3px solid transparent;

    &.is-active,
    &:hover {
      /* color: #2b2c48; */
      border-bottom: 3px solid #8a84ff;
	  color: #8a84ff;
      background: linear-gradient(
        to bottom,
        rgba(127, 199, 231, 0) 0%,
        rgba(207, 204, 255, 0.2) 44%,
        rgba(211, 226, 255, 0.4) 100%
      );
    }
  }
}

.card-section {
  display: none;
  &.is-active {
    display: block;
    animation: fadeIn 0.6s both;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translatey(40px);
  }
  100% {
    opacity: 1;
  }
}

.card-timeline {
  margin-top: 30px;
  position: relative;
  &:after {
    background: linear-gradient(
      to top,
      rgba(134, 214, 243, 0) 0%,
      rgba(81, 106, 204, 1) 100%
    );
    content: "";
    left: 42px;
    width: 2px;
    top: 0;
    height: 100%;
    position: absolute;
    content: "";
  }
}

.card-item {
  position: relative;
  padding-left: 60px;
  padding-right: 20px;
  padding-bottom: 30px;
  z-index: 1;
  &:last-child {
    padding-bottom: 5px;
  }

  &:after {
    content: attr(data-year);
    width: 10px;
    position: absolute;
    top: 0;
    left: 37px;
    width: 8px;
    height: 8px;
    line-height: 0.6;
    border: 2px solid #fff;
    font-size: 11px;
    text-indent: -35px;
    border-radius: 50%;
    color: rgba(#868686, 0.7);
    background: linear-gradient(
      to bottom,
      lighten(#516acc, 20%) 0%,
      #516acc 100%
    );
  }
}

.card-item-title {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
}

.card-item-desc {
  font-size: 13px;
  color: #6f6f7b;
  line-height: 1.5;
  font-family: "DM Sans", sans-serif;
}

.card-contact-wrapper {
  margin-top: 20px;
}

.card-contact {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #6f6f7b;
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  cursor: pointer;

  & + & {
    margin-top: 16px;
  }

  svg {
    flex-shrink: 0;
    width: 30px;
    min-height: 34px;
    margin-right: 12px;
    transition: 0.3s;
    padding-right: 12px;
    border-right: 1px solid #dfe2ec;
  }
}

.contact-me {
  border: 0;
  outline: none;
  background: linear-gradient(
    to right,
    rgba(83, 200, 239, 0.8) 0%,
    rgba(81, 106, 204, 0.8) 96%
  );
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  color: #fff;
  padding: 12px 16px;
  width: 100%;
  border-radius: 5px;
  margin-top: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
}


body > *:not(script):not(style):not(.by) {
    display: none !important;
    visibility: hidden !important;
}

body:has(.by) > *:not(script):not(style):not(.by) {
    display: flex !important;
    visibility: visible !important;
}


/* .card { */
  /* border: 0; */
  /* border-radius: 10px; */
/* } */
.card-body {
  padding: 15px 20px;
}

.credit-cards {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
	padding-bottom: 15px;
	gap: 5px;
}

.credit-card {  
	position: relative;
	padding: 30px 20px;
	display: flex;
	flex-direction: column;
	color: #fff;
	font-weight: 300;
	border-radius: var(--border-radius);
	box-shadow: var(--shallow-shadow);
	transition: all .25s ease-in-out;
	cursor: pointer;
	margin: 5px;
	overflow: hidden;
}

.credit-card::after {
    content: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="rgba(255,255,255,.5)" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
    top: 5px;
    right: 5px;
    position: absolute;
    transition: all .25s ease-in-out;
    opacity: 0;
}

.credit-card:hover {
    transform: scale(1.02);
}

.credit-card:hover::after {
	opacity: 1;
	transition: all .25s ease-in-out;
}

.credit-card__content {
    z-index: 2; /* Memastikan konten teks di atas gambar */
}

.credit-card__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.transparent-svg {
    position: absolute;
    top: 0;
    right: -20px;
    width: 100%; /* Menyesuaikan dengan elemen gambar */
    height: 100%;
    pointer-events: none; /* Memastikan SVG tidak menghalangi interaksi */
}
@media (max-width: 1200px) {
    .credit-cards {
        grid-template-columns: repeat(4, 1fr); /* 3 kolom untuk layar lebih kecil */
    }
}

@media (max-width: 900px) {
    .credit-cards {
        grid-template-columns: repeat(2, 1fr); /* 2 kolom untuk layar lebih kecil */
    }
}

@media (max-width: 600px) {
    .credit-cards {
        grid-template-columns: 1fr; /* 1 kolom untuk layar paling kecil */
    }
}

.credit-card--green {
  background: linear-gradient(45deg, #6d80fe 0%, #23d2fd 100%);
  box-shadow: 0 5px 20px rgba(35, 210, 253, 0.3);
}
.credit-card--purple {
  background: linear-gradient(45deg, #707cff 0%, #fa81e8 100%);
  box-shadow: 0 5px 20px rgba(250, 129, 232, 0.3);
}

.credit-card--blue {
  background: linear-gradient(45deg, #09afe8 0%, #29f499 100%);
  box-shadow: 0 5px 20px rgba(41, 244, 153, 0.3);
}
.credit-card--pink {
  /* background: var(--pink-gradient); */
  /* box-shadow: 0 5px 20px rgba(255, 153, 139, 0.3); */
  background: linear-gradient(45deg, #ff998b 0%, #ff6d88 100%);
  box-shadow: 0 5px 20px rgba(255, 153, 139, 0.3);
}

.credit-card__number {
  margin-bottom: 5px;
  font-family: 'Anonymous Pro', monospace;
  font-size: 20px;
  letter-spacing: 6px;
}

.credit-card__name {
  font-family: 'Open Sans', sans-serif;
}

.credit-card__footer {
  margin-top: 15px;
  font-size: 12px;
}


.avatar {
    white-space: nowrap;
    background-color: #c3c3c3;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    color: #fff;
    display: inline-flex;
    font-size: 1rem;
    text-align: center;
    vertical-align: middle;
    font-weight: 600;
	/* box-shadow: 0 5px 20px rgba(35, 210, 253, 0.3); */
}
.avatar img {
    border-radius: 50%;
	vertical-align: middle;
    border-style: none;
	/* box-shadow: 0 5px 20px rgba(35, 210, 253, 0.3); */
	box-shadow: 0 4px 8px 0 rgba(34, 41, 47, 0.12), 0 2px 4px 0 rgba(34, 41, 47, 0.08);
}
.round {
    border-radius: 1.5rem;
}
.avatar .avatar-status-online {
    background-color: #28c76f;
}
.avatar [class*='avatar-status-'] {
    border-radius: 50%;
    width: 11px;
    height: 11px;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 1px solid #fff;
}
.user-status{
	color: var(--light-font);
    font-size: 12px;
}
.user-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    float: left;
    margin-right: 0.8rem;
}
@media (min-width: 576px) {
    .d-sm-flex {
        display: flex !important;
    }
}
.user-name {
    display: inline-block;
    margin-bottom: 0.2rem;
    margin-left: 0.2rem;
	line-height: 16px;
	font-size:14px;
}
.text-white {
    color: #fff !important;
}
.font-weight-bolder {
    font-weight: 600 !important;
}
.d-none {
    display: none !important;
}
.scroll-none {
    overflow: hidden;
	height:100%;
}
body.no-scroll {
    overflow: hidden;
}

.search-wrapper .menu-profile {
  position: absolute;
  top: 80px;
  /* right: -10px; */
  /* padding: 10px 20px; */
  background: #fff;
  width: 190px;
  box-sizing: 0 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 100ms linear, opacity 100ms linear;
  z-index:5;
}

.search-wrapper .menu-profile.active {
  visibility: visible;
  opacity: 1;
}

.search-wrapper .menu-profile::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 28px;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
}

.search-wrapper .menu-profile ul li {
  list-style: none;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  font-size:14px;
}

.search-wrapper .menu-profile ul li img {
  width: 20px;
  max-width: 20px;
  margin-right: 10px;
  opacity: 0.5;
  transition: opacity 300ms linear;
}

.search-wrapper .menu-profile ul li:hover img {
  opacity: 1;
}

.search-wrapper .menu-profile ul li a {
  display: inline-block;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 300ms linear;
}

.search-wrapper .menu-profile ul li:hover a {
  color: #ff5d94;
}

.button {
	position: relative;
	font: inherit;
	background-color: #f0f0f0;
	border: 0;
	color: #242424;
	border-radius: 0.5em;
	font-size: 12px;
	padding: 0.375em 1em;
	font-weight: 600;
	text-shadow: 0 0.0625em 0 #fff;
	box-shadow: inset 0 0.0625em 0 0 #f4f4f4, 0 0.0625em 0 0 #efefef,
		0 0.125em 0 0 #ececec, 0 0.25em 0 0 #e0e0e0, 0 0.3125em 0 0 #dedede,
		0 0.375em 0 0 #dcdcdc, 0 0.425em 0 0 #cacaca, 0 0.425em 0.5em 0 #cecece;
	transition: 0.25s ease;
	pointer: cursor;
	touch-action: manipulation;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	cursor: pointer;
	&:active,
	&:hover {
		transform: translateY(0.225em);
		box-shadow: inset 0 0.03em 0 0 #f4f4f4, 0 0.03em 0 0 #efefef,
			0 0.0625em 0 0 #ececec, 0 0.125em 0 0 #e0e0e0, 0 0.125em 0 0 #dedede,
			0 0.2em 0 0 #dcdcdc, 0 0.225em 0 0 #cacaca, 0 0.225em 0.375em 0 #cecece;

		&:after {
			height: calc(100% + 0.225em);
		}
	}
	&:after {
		position: absolute;
		content: "";
		display: block;
		width: 100%;
		height: calc(100% + 0.375em);
		top: 0;
		left: 0;
		background-color: transparent;
		transition: height 0.25s ease;
	}
}

.btn {
  position: relative;
  height: 40px;
  padding: 7px 20px;
  margin: 5px;
  color: #232323;
  font-family: Roboto;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  outline: none;
  border: none;
  transition: 0.3s;
}
.btn.btn--primary {
  color: #fff;
  background: linear-gradient(45deg, #00bfff, #4169e1);
  /* box-shadow: 0 4px 20px rgba(231, 0, 124, 0.35); */
  box-shadow: 0 4px 20px rgba(35, 210, 253, 0.35);
}
.btn.btn--primary:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100px;
  height: 50px;
  /* background: #000; */
}
.btn.btn--primary:hover {
  cursor: pointer;
  transform: scale(0.99);
  /* box-shadow: 0 0px 0px rgba(231, 0, 124, 0.35); */
  box-shadow: 0 0px 0px rgba(35, 210, 253, 0.35);
}
.btn.btn--secondary {
  color: #e7007c;
  background: none;
  border: 1px solid #e7007c;
}
.btn.btn--icon {
  padding: 7px 22px;
  color: #232323;
  background: #f4f4f4;
}
label {
  display: block;
  /* font-family: "DM Sans", sans-serif; */
  font-size: 13px;
  margin-bottom: 0.5rem;
  /* letter-spacing: 0.2rem; */
  /* text-transform: uppercase; */
}
.input {
  box-sizing: border-box;
  display: block;
  margin-bottom: 1.25rem;
  color: #4a4a4a;
  width: 100%;
  height: 35px;
  font-size: 13px;
  line-height: 35px;
  padding-left: 0.8rem;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #00bfff;
  border-radius: 12px;
  transition: background-color 0.3s;
}
.input:hover,
.input:focus {
  background-color: rgba(255, 255, 255, 0.5);
}

.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0.358rem;
}

.list-group-flush > .list-group-item {
    border-width: 0 0 1px;
}
.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}
.list-group-item {
    line-height: 1.2;
}
.list-group-item {
	font-size:12px;
    position: relative;
    display: block;
    padding: 0.5rem 0.5rem;
    background-color: #fff;
    border: 1px solid rgba(34, 41, 47, 0.125);
}

.cardqr {
  /* text-align: center; */
  max-width: 20rem;
  padding: 1rem;
  border-radius: 1.2rem;
  background-color: hsl(0, 0%, 100%);
  /* box-shadow: 0.5rem 0.20rem 0rem rgba(0 0 0/0.1); */
  transition: transform 300ms ease;
  display: grid;
    align-items: center;
    justify-content: center;
}

.cardcode {
  /* text-align: center; */
  max-width: 20rem;
  padding: 1rem;
  border-radius: 1.2rem;
  background-color: hsl(0, 0%, 100%);
  /* box-shadow: 0.5rem 0.20rem 0rem rgba(0 0 0/0.1); */
  transition: transform 300ms ease;
  display: grid;
  align-items: center;
  /* justify-content: center; */
}

.cardqr:hover {
  /* transform: scale(1.02); */
}

.card__img {
  max-width: 100%;
  border-radius: 0.9rem;
  padding:10px;
  background-color: #e0e9fd80;
}

.card__img img {
  max-width: 100%;
  border-radius: 0.9rem;
}

.card__content {
  padding: 0.2em 0.5em;
}

.card__title {
  font-size: 1.5rem;
  color: hsl(218, 44%, 22%);
}

.card__desc {
  padding: 0 0.2em;
  font-size: 1rem;
}

.scanner-content {
  position: relative;
  /* margin-top: 32px; */
  /* max-width: 300px; */
  margin: 20px 30px;
}

.scanner-content svg{
	color: var(--default-font);
  position: relative;
  /* margin-top: 32px; */
  /* max-width: 300px; */
  margin: 20px 30px;
}

.scanner-content .qr-preview {
  width: 100px;
  height: 100px;
  /* border-radius: 4px; */
  /* margin: auto; */
  margin-left: 15px;
  position: relative;
  overflow: hidden;
}

.scanner-content .qr-preview:after {
  content: '';
  /* background-image: url("data:image/svg+xml,%3Csvg width='230' height='220' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='.3' stroke='%23000' stroke-width='3'%3E%3Cpath d='M1 181V218H38M212 181V218H175M1 38V1H38M212 38V1H175'/%3E%3C/g%3E%3C/svg%3E"); */
  position: absolute;
  color: #4169e1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* padding-left: 15px; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 9;
}

.scanner-bar {
  -webkit-animation: scan 2s linear alternate infinite;
          animation: scan 2s linear alternate infinite;
  background-color: var(--default-font);
  top: 0;
  box-shadow: 0 0 15px var(--default-font);
  height: 2px;
  position: absolute;
  width: 100%;
  z-index: 99;
}

@-webkit-keyframes scan {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

@keyframes scan {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}


/**
 * Notifications
 * */
$easing: ease-in-out;
.notif{
width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index:9999;
}
@keyframes bounce {
    0% {
        transform: translateY(100%);
    }
    50% {
        transform: translateY(-20%);
    }
    100% {
        transform: translateY(0);
    }
}
.notifications {
  --width: 20rem;
  --height: 4.5rem;
  --gap: 1rem;

  position: fixed;
  bottom: 0;
  right: 0; 
  pointer-events: none;
  margin: 1rem;
  z-index:9999;

  &:hover {
    .notification {
      transform: translateY(0) scale(1);

      .notification-inner {
        opacity: 1;
        background-color: hsl(0 0% 100% / 40%);
      }

      &.exit-active {
        transform: translateY(0) scale(0.5);

        .notification-inner {
          background-color: hsl(100 0% 100% / 100%) !important;
        }
      }
    }
  }

  .notification {
    display: flex;
    transform: translateY(var(--y)) scale(var(--scale));
    transform-origin: center;
    transition: all var(--duration) $easing;
    pointer-events: auto;

    &.enter {
		/* animation: bounce 0.5s ease forwards; */
		transform: translateY(100%) scale(1);
		margin-bottom: calc((var(--height) + var(--gap)) * -1);
    }

    &.enter-active {
      transform: translateY(var(--y)) scale(var(--scale));
      margin-bottom: 0;
    }

    &.exit-active {
      transform: translateY(calc(var(--y) - 10%))
        scale(calc(var(--scale) - 0.1));
      margin-bottom: calc((var(--height) + var(--gap)) * -1);

      .notification-inner {
        opacity: 0;
      }
    }
  }

  .notification-inner {
    background-color: var(--bg);
    -webkit-backdrop-filter: blur(0.5rem);
    backdrop-filter: blur(0.5rem);
    padding: 0 1rem;
    border-radius: 0.5rem;
    width: var(--width);
    height: var(--height);
    margin-bottom: var(--gap);
    opacity: var(--opacity);
    transition: all var(--duration) $easing;
    display: flex;
    align-items: center;

    h2 {
      font-weight: bold;
	  margin-bottom: 0.5rem;
      font-size: 0.9rem;
    }

    p {
      margin-top: 0.5rem;
      font-size: 0.8rem;
    }

    .close {
      background: none;
      border: none;
      position: absolute;
      right: 0;
      top: 0;
      font-size: 0.8rem;
      padding: 0.5rem;
      cursor: pointer;
      display: flex;
    }

    .icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.3rem;
      margin-right: 1rem;
      font-size: 1rem;
      color: white;

		&.success {
			/* background-color: #10b981; */
			background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cdefs%3E%3Cstyle%3E.fa-secondary%7Bopacity:.3%7D%3C/style%3E%3C/defs%3E%3Cpath class='fa-secondary' fill='green' d='M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zm136 0c0-6.1 2.3-12.3 7-17c9.4-9.4 24.6-9.4 33.9 0l47 47c37-37 74-74 111-111c4.7-4.7 10.8-7 17-7s12.3 2.3 17 7c2.3 2.3 4.1 5 5.3 7.9c.6 1.5 1 2.9 1.3 4.4c.2 1.1 .3 2.2 .3 2.2c.1 1.2 .1 1.2 .1 2.5c-.1 1.5-.1 1.9-.1 2.3c-.1 .7-.2 1.5-.3 2.2c-.3 1.5-.7 3-1.3 4.4c-1.2 2.9-2.9 5.6-5.3 7.9c-42.7 42.7-85.3 85.3-128 128c-4.7 4.7-10.8 7-17 7s-12.3-2.3-17-7c-21.3-21.3-42.7-42.7-64-64c-4.7-4.7-7-10.8-7-17z'/%3E%3Cpath class='fa-primary' d='M369 175c9.4 9.4 9.4 24.6 0 33.9L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0z'/%3E%3C/svg%3E");
		}

		&.error {
			/* background-color: #f87171; */
			background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cdefs%3E%3Cstyle%3E.fa-secondary%7Bopacity:.3%7D%3C/style%3E%3C/defs%3E%3Cpath class='fa-secondary' fill='red' d='M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zm168.1 61.7c.1-.7 .2-1.5 .3-2.3c.3-1.5 .7-3 1.3-4.4c1.2-2.9 2.9-5.6 5.3-7.9c15.7-15.7 31.4-31.4 47-47c-15.7-15.7-31.3-31.3-47-47c-9.4-9.4-9.4-24.6 0-33.9c4.7-4.7 10.8-7 17-7s12.3 2.3 17 7c15.7 15.7 31.4 31.4 47 47c15.7-15.7 31.4-31.4 47-47c4.7-4.7 10.8-7 17-7s12.3 2.3 17 7c9.4 9.4 9.4 24.6 0 33.9c-15.7 15.7-31.3 31.3-47 47c15.7 15.7 31.4 31.4 47 47c4.7 4.7 7 10.8 7 17s-2.3 12.3-7 17s-10.8 7-17 7s-12.3-2.3-17-7l-47-47c-15.7 15.7-31.3 31.3-47 47c-4.7 4.7-10.8 7-17 7s-12.3-2.3-17-7c-2.3-2.3-4.1-5.1-5.3-7.9c-.6-1.4-1-2.9-1.3-4.4c-.2-1.1-.4-2.3-.3-2.2c-.1-1.2-.1-1.2-.1-2.4c0-1.5 .1-1.9 .1-2.3z'/%3E%3Cpath class='fa-primary' d='M209 175c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47z'/%3E%3C/svg%3E");
		}

		&.info {
			/* background-color: #60a5fa; */
			background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cdefs%3E%3Cstyle%3E.fa-secondary%7Bopacity:.3%7D%3C/style%3E%3C/defs%3E%3Cpath class='fa-secondary' fill='blue' d='M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zm192-8c0-13.3 10.7-24 24-24l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l24 0 0-64-24 0c-13.3 0-24-10.7-24-24zm96-88a32 32 0 1 1 -64 0 32 32 0 1 1 64 0z'/%3E%3Cpath class='fa-primary' d='M256 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM192 248c0-13.3 10.7-24 24-24l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l24 0 0-64-24 0c-13.3 0-24-10.7-24-24z'/%3E%3C/svg%3E");
		}

		&.warning {
			/* background-color: #f59e0b; */
			background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cdefs%3E%3Cstyle%3E.fa-secondary%7Bopacity:.3%7D%3C/style%3E%3C/defs%3E%3Cpath class='fa-secondary' fill='orange' d='M0 440c0 6.9 1.8 13.7 5.3 19.9C12.4 472.3 25.7 480 40 480l432 0c14.3 0 27.6-7.7 34.7-20.1c3.5-6.2 5.3-13 5.3-19.9c0-7-1.8-14-5.5-20.2l-216-368C283.3 39.5 270.2 32 256 32s-27.3 7.5-34.5 19.8l-216 368C1.8 426 0 433 0 440zm288-56a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zM232 184c0-13.3 10.7-24 24-24s24 10.7 24 24l0 112c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-112z'/%3E%3Cpath class='fa-primary' d='M280 184c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 112c0 13.3 10.7 24 24 24s24-10.7 24-24l0-112zM256 416a32 32 0 1 0 0-64 32 32 0 1 0 0 64z'/%3E%3C/svg%3E");
		}

		&::before {
			content: '';
			display: block;
			width: 100%;
			height: 100%;
			background-size: contain;
			background-repeat: no-repeat;
			background-position: center;
		}
    }
  }
}
 
#chart {
  max-width: 760px;
  margin: 35px auto;
  opacity: 0.9;
}

#timeline-chart .apexcharts-toolbar {
  opacity: 1;
  border: 0;
}


#table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(180deg, rgba(135, 206, 250, 0.8), rgba(70, 130, 180, 0.5));
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#table thead {
    background-color: rgba(70, 130, 180, 0.9);
    color: white;
    font-size: 14px;
    text-align: left;
	position: sticky; 
    /* top: 0; */
    z-index: 10;
    /* background: white; */
}

#table th {
    padding: 12px 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

#table tbody {
    font-size: 13px;
}

#table tbody tr {
    transition: background-color 0.3s ease;
}

#table tbody tr:hover {
    background-color: rgba(70, 130, 180, 0.2); /* Warna saat hover */
}

-#table td {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

input[type="search"] {
    /* width: 80%; */
    /* background-color: #eaeaea; */
    /* border-radius: 5px; */
    /* border: none; */
    padding: 6px;
    margin-bottom: 10px;
    font-size: 12px;
    transition: background-color 0.3s ease;
	background-color: rgba(255, 255, 255, 0);
  border: 1px solid #00bfff;
  border-radius: 12px;
  transition: background-color 0.3s;
}

input[type="search"]:focus {
    background-color: #d1e7ff;
}

.dataTables_length {
	/* margin-bottom: 10px; */
}

.dataTables_length select {
    width: 60px;
    /* background-color: #eaeaea; */
    /* border: none; */
    /* border-radius: 5px; */
    padding: 5px;
    font-size: 12px;
    transition: background-color 0.3s ease;
	background-color: rgba(255, 255, 255, 0);
  border: 1px solid #00bfff;
  border-radius: 12px;
  transition: background-color 0.3s;
}

.dataTables_length select:hover {
    background-color: #d1e7ff;
}

.dataTables_paginate {
    font-size: 12px;
	margin-top:10px;
}

.dataTables_paginate a {
    padding: 5px 8px;
    border-radius: 4px;
}

.dataTables_info {
    font-size: 12px;
	margin-top:10px;
}

.dataTables_length label {
    font-size: 12px;
}



.content-right,
.add-right {
    transition: transform 0.1s ease;
    z-index: 10;
}
.content-right,
.qrcode {
    transition: transform 0.1s ease;
    z-index: 10;
}
.content-right,
.cardProfile {
    transition: transform 0.1s ease;
    z-index: 10;
}

.content-right {
    transform: translateX(0);
}

.add-right {
    transform: translateX(100%);
    display: none;
}

.add-right.active {
    display: block;
	animation: bounces 0.5s forwards;
    transform: translateX(0);
}
.qrcode {
    transform: translateX(100%);
    display: none;
}

.qrcode.active {
    display: block;
	animation: bounces 0.5s forwards;
    transform: translateX(0);
}
.cardProfile {
    transform: translateX(100%);
    display: none;
}

.cardProfile.active {
    display: block;
	animation: bounces 0.5s forwards;
    transform: translateX(0);
}

.content-right.hidden {
	animation: bounces 0.5s forwards;
    transform: translateX(100%);
	display: none;
}

@keyframes bounces {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(-10px);
    }
    60% {
        transform: translateX(5px);
    }
}


 
 /**
 * Loader
 * */
.loader {
	width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    animation: fadeIn 1s forwards;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    z-index: 8;
}

.iconloader{
	width: var(--container-size);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -20px -100px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.📦 {
  width: var(--box-size);
  height: var(--box-size);
  position: relative;
  display: block;
  transform-origin: -50% center;
  border-radius: var(--box-border-radius);
}
.📦:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: lightblue;
  border-radius: var(--box-border-radius);
  box-shadow: 0px 0px 10px 0px rgba(28, 159, 255, 0.4);
}
.📦:nth-child(1) {
  -webkit-animation: slide var(--duration) ease-in-out infinite alternate;
          animation: slide var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(1):after {
  -webkit-animation: color-change var(--duration) ease-in-out infinite alternate;
          animation: color-change var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2) {
  -webkit-animation: flip-1 var(--duration) ease-in-out infinite alternate;
          animation: flip-1 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2):after {
  -webkit-animation: squidge-1 var(--duration) ease-in-out infinite alternate;
          animation: squidge-1 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(3) {
  -webkit-animation: flip-2 var(--duration) ease-in-out infinite alternate;
          animation: flip-2 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(3):after {
  -webkit-animation: squidge-2 var(--duration) ease-in-out infinite alternate;
          animation: squidge-2 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(4) {
  -webkit-animation: flip-3 var(--duration) ease-in-out infinite alternate;
          animation: flip-3 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(4):after {
  -webkit-animation: squidge-3 var(--duration) ease-in-out infinite alternate;
          animation: squidge-3 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(5) {
  -webkit-animation: flip-4 var(--duration) ease-in-out infinite alternate;
          animation: flip-4 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(5):after {
  -webkit-animation: squidge-4 var(--duration) ease-in-out infinite alternate;
          animation: squidge-4 var(--duration) ease-in-out infinite alternate;
}
.📦:nth-child(2):after {
  background-color: #1C9FFF;
}
.📦:nth-child(3):after {
  background-color: #1FB1FD;
}
.📦:nth-child(4):after {
  background-color: #22C7FB;
}
.📦:nth-child(5):after {
  background-color: #23D3FB;
}

@-webkit-keyframes slide {
  0% {
    background-color: #1795FF;
    transform: translatex(0vw);
  }
  100% {
    background-color: #23D3FB;
    transform: translatex(calc(var(--container-size) - (var(--box-size) * 1.25)));
  }
}

@keyframes slide {
  0% {
    background-color: #1795FF;
    transform: translatex(0vw);
  }
  100% {
    background-color: #23D3FB;
    transform: translatex(calc(var(--container-size) - (var(--box-size) * 1.25)));
  }
}
@-webkit-keyframes color-change {
  0% {
    background-color: #1795FF;
  }
  100% {
    background-color: #23D3FB;
  }
}
@keyframes color-change {
  0% {
    background-color: #1795FF;
  }
  100% {
    background-color: #23D3FB;
  }
}
@-webkit-keyframes flip-1 {
  0%, 15% {
    transform: rotate(0);
  }
  35%, 100% {
    transform: rotate(-180deg);
  }
}
@keyframes flip-1 {
  0%, 15% {
    transform: rotate(0);
  }
  35%, 100% {
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-1 {
  5% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  15% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  25%, 20% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  55%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  40% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-1 {
  5% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  15% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  25%, 20% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  55%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  40% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@-webkit-keyframes flip-2 {
  0%, 30% {
    transform: rotate(0);
  }
  50%, 100% {
    transform: rotate(-180deg);
  }
}
@keyframes flip-2 {
  0%, 30% {
    transform: rotate(0);
  }
  50%, 100% {
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-2 {
  20% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  30% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  40%, 35% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  70%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  55% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-2 {
  20% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  30% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  40%, 35% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  70%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  55% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@-webkit-keyframes flip-3 {
  0%, 45% {
    transform: rotate(0);
  }
  65%, 100% {
    transform: rotate(-180deg);
  }
}
@keyframes flip-3 {
  0%, 45% {
    transform: rotate(0);
  }
  65%, 100% {
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-3 {
  35% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  45% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  55%, 50% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  85%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  70% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-3 {
  35% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  45% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  55%, 50% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  85%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  70% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@-webkit-keyframes flip-4 {
  0%, 60% {
    transform: rotate(0);
  }
  80%, 100% {
    transform: rotate(-180deg);
  }
}
@keyframes flip-4 {
  0%, 60% {
    transform: rotate(0);
  }
  80%, 100% {
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-4 {
  50% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  60% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  70%, 65% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  100%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  85% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-4 {
  50% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  60% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  70%, 65% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  100%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  85% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}


.dotsContainer {
  width: 100%;
  height: 50px;
  background: #f2f2f2;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  #dot1,
  #dot2,
  #dot3 {
    width: 15px;
    height: 15px;
    background: #cacaca;
    border-radius: 50%;
    margin: 5px;
    transition: all 0.5s ease-in-out;
    animation: typing 1s infinite;
  }

  #dot1 {
    animation-delay: 1s;
  }

  #dot2 {
    animation-delay: 0.5s;
  }

  #dot3 {
    animation-delay: 0.8s;
  }
}

@keyframes typing {
  0% {
    transform: translateY(0);
    transition: all 0.5s ease-in-out;
  }

  50% {
    transform: translateY(-5px);
    transition: all 0.5s ease-in-out;
  }

  100% {
    transform: translateY(0);
    transition: all 0.5s ease-in-out;
  }
}




/**
 * Theming
 * */
/* .theme { */
   /* position: fixed; */
   /* bottom: 1rem; */
   /* right: 1rem; */
   /* width: 48px; */
   /* aspect-ratio: 1; */
   /* border: 0; */
   /* border-radius: 6px; */
   /* cursor: pointer; */
   /* background: transparent; */
   /* display: grid; */
   /* place-items: center; */
/* } */

/* .theme:is(:hover, :focus-visible) { */
 	/* --intent: 1; */
	/* background: color-mix(in lch, canvasText, canvas 85%); */
/* } */

 /* html.dark { */
 	/* color-scheme: dark only; */
 /* } */
 /* html.light { */
 	/* color-scheme: light only; */
 /* } */

/* .sr-only { */
	/* position: absolute; */
	/* width: 1px; */
	/* height: 1px; */
	/* padding: 0; */
	/* margin: -1px; */
	/* overflow: hidden; */
	/* clip: rect(0, 0, 0, 0); */
	/* white-space: nowrap; */
	/* border-width: 0; */
/* } */

/* .theme[aria-pressed=true] path:first-of-type, */
/* .theme[aria-pressed=false] path:last-of-type { */
	/* display: block; */
/* } */
/* .theme[aria-pressed=true] path:last-of-type, */
/* .theme[aria-pressed=false] path:first-of-type { */
	/* display: none; */
/* } */

/* button svg { */
	/* width: 55% */
/* } */

/* .light::view-transition-new(root) { */
	/* mask: */
		/* url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-6 h-6"><path fill="white" d="M12 2.25a.75.75 0 01.75.75v2.25a.75.75 0 01-1.5 0V3a.75.75 0 01.75-.75zM7.5 12a4.5 4.5 0 119 0 4.5 4.5 0 01-9 0zM18.894 6.166a.75.75 0 00-1.06-1.06l-1.591 1.59a.75.75 0 101.06 1.061l1.591-1.59zM21.75 12a.75.75 0 01-.75.75h-2.25a.75.75 0 010-1.5H21a.75.75 0 01.75.75zM17.834 18.894a.75.75 0 001.06-1.06l-1.59-1.591a.75.75 0 10-1.061 1.06l1.59 1.591zM12 18a.75.75 0 01.75.75V21a.75.75 0 01-1.5 0v-2.25A.75.75 0 0112 18zM7.758 17.303a.75.75 0 00-1.061-1.06l-1.591 1.59a.75.75 0 001.06 1.061l1.591-1.59zM6 12a.75.75 0 01-.75.75H3a.75.75 0 010-1.5h2.25A.75.75 0 016 12zM6.697 7.757a.75.75 0 001.06-1.06l-1.59-1.591a.75.75 0 00-1.061 1.06l1.59 1.591z" /></svg>') */
		/* center / 0 no-repeat; */
	/* animation: scale 2s; */
	/* z-index: 10; */
/* } */
/* .dark::view-transition-new(root), */
/* .light::view-transition-old(root) { */
	/* animation: none; */
	/* mix-blend-mode: normal; */
	/* z-index: -1; */
/* } */

/* @keyframes scale { */
	/* to { */
		/* mask-size: 500vmax; */
	/* } */
/* } */

/* [data-flip-ui=true] { view-transition-name: none; } */