.clock-alert {
  position: absolute;
  z-index: 98;
  height: 100%;
  width: 100%;
  background-color: #0009;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.clock-alert .title {
  font-size: 34px;
  font-weight: 400;
  color: #fff;
}
.clock-alert .buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 4rem;
  width: 80%;
}
.clock-alert .button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 16px;
  color: #fff;
}
.clock-alert .button svg {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background-color: #000000bf;
  padding: 1.1rem;
  border-radius: 50%;
  font-size: 28px;
}
.clock-alert .button svg:hover {
  background-color: #0009;
}
[data-theme="light"]
  .context-buttons
  section
  .button:hover:not([data-disabled="true"]) {
  background-color: #00000034;
}
[data-theme="dark"]
  .context-buttons
  section
  .button:hover:not([data-disabled="true"]) {
  background-color: #ffffff34;
}
.context-container {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  border-radius: 40px;
  background-color: #00000080;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.context-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  width: 100%;
  overflow: hidden;
}
.context-wrapper .context-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  background-color: var(--app-secondary);
  padding: 0.5rem 1rem;
  border-radius: 16px;
  box-sizing: border-box;
  width: 95%;
  height: auto;
}
.context-wrapper .context-buttons section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-height: 25rem;
  overflow-y: auto;
  padding: 0.75rem 0.5rem;
  border-bottom: 2px solid var(--phone-color-border);
}
.context-wrapper .context-buttons section:last-child {
  border-bottom: none;
}
.context-wrapper .context-buttons section::-webkit-scrollbar {
  width: 0.5rem;
}
.context-wrapper .context-buttons section::-webkit-scrollbar-thumb {
  background-color: var(--app-highlight);
  border-radius: 0.25rem;
}
.context-wrapper .context-buttons section::-webkit-scrollbar-track {
  background-color: var(--app-bg);
}
.context-wrapper .context-buttons section .title {
  font-size: 14px;
  color: var(--phone-text-secondary);
  box-sizing: border-box;
  text-align: center;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--phone-color-border);
}
.context-wrapper .context-buttons section .button {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--phone-color-blue);
  background-color: var(--app-bg);
  border-radius: 12px;
  font-size: 19px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.context-wrapper .context-buttons section .button[data-color="red"] {
  color: var(--phone-color-red);
}
.context-wrapper .context-buttons section .button[data-disabled="true"] {
  filter: opacity(0.5);
  cursor: not-allowed;
}
.context-wrapper .context-buttons section .button.cancel {
  font-weight: 500;
  border-radius: 15px;
}
.emoji-container {
  position: absolute;
  z-index: 99;
  height: 100%;
  width: 100%;
}
.emoji-picker {
  position: absolute;
  bottom: 7rem;
  left: 1rem;
  z-index: 100;
}
.emoji-picker .epr-body::-webkit-scrollbar {
  display: none;
}
[data-theme="dark"] .EmojiPickerReact {
  background-color: #0a0a0a;
}
[data-theme="dark"] .epr-emoji-category-label {
  background-color: #141414e6;
}
.check {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid var(--phone-color-grey);
}
.check.checked {
  background-color: var(--phone-color-blue);
}
.check.checked svg {
  font-size: 16px;
  color: #fff;
}
.searchbox {
  width: 93%;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 1rem;
  border-radius: 7px;
}
.searchbox[data-theme="light"] {
  background-color: #7676801f;
}
.searchbox[data-theme="light"] input,
.searchbox[data-theme="light"] svg {
  color: #3c3c4399;
}
.searchbox[data-theme="light"] input::placeholder,
.searchbox[data-theme="light"] svg::placeholder {
  color: #3c3c4399;
}
.searchbox[data-theme="dark"] {
  background-color: #a8a8a81f;
}
.searchbox[data-theme="dark"] input,
.searchbox[data-theme="dark"] svg {
  color: #fafafa99;
  opacity: 0.7;
}
.searchbox[data-theme="dark"] input::placeholder,
.searchbox[data-theme="dark"] svg::placeholder {
  color: #fafafa99;
}
.searchbox svg {
  width: 20px;
  opacity: 0.7;
  margin-top: 0.1rem;
}
.searchbox input {
  width: 92%;
  border: none;
  font-family: Roboto;
  font-size: 17px;
  font-weight: 400;
  background-color: transparent;
}
.searchbox input:focus,
.searchbox input:active {
  outline: none;
}
.searchbox input::placeholder {
  font-size: 17px;
}
.gallery-container {
  position: absolute;
  bottom: 0;
  height: 94%;
  width: 100%;
  z-index: 90;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--phone-color-primary);
}
.gallery-container .gallery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 90%;
  padding: 1.5rem;
}
.gallery-container .gallery-header .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.gallery-container .gallery-header .content > div {
  flex: 1;
}
.gallery-container .gallery-header .content .cancel,
.gallery-container .gallery-header .content .select {
  color: var(--phone-color-blue);
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.5s;
}
.gallery-container .gallery-header .content .cancel.select,
.gallery-container .gallery-header .content .select.select {
  text-align: right;
}
.gallery-container .gallery-header .content .cancel.disabled,
.gallery-container .gallery-header .content .select.disabled {
  color: var(--phone-text-secondary);
  cursor: not-allowed;
}
.gallery-container .gallery-header .content .selector-container {
  flex: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-container .gallery-header .content .selector-container div {
  box-sizing: border-box;
}
.gallery-container .gallery-header .content .selector-container .selector {
  display: flex;
  flex-direction: row;
  gap: 0.1rem;
  background-color: var(--phone-color-highlight2);
  border-radius: 6px;
  padding: 0.15rem;
}
.gallery-container
  .gallery-header
  .content
  .selector-container
  .selector
  .option {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.3rem 1rem;
  color: var(--phone-text-primary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border-radius: 6px;
}
.gallery-container
  .gallery-header
  .content
  .selector-container
  .selector
  .option:hover {
  filter: brightness(0.5);
}
.gallery-container
  .gallery-header
  .content
  .selector-container
  .selector
  .option[data-active="true"] {
  background-color: var(--phone-highlight-opacity45);
}
.gallery-container .gallery-header .searchbox {
  width: 90%;
}
.gallery-container .gallery-body {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.gallery-container .gallery-body .library-header {
  position: absolute;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding: 6rem 1.25rem 1.25rem;
  pointer-events: none;
}
.gallery-container .gallery-body .library-header .top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.gallery-container .gallery-body .library-header .name {
  font-size: 20px;
  font-weight: 500;
  font-style: bold;
  color: #fff;
  margin-left: 1.25rem;
}
.gallery-container .gallery-body .library-header .info .date {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.gallery-container .gallery-body .library-header .info .back {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  pointer-events: all;
}
.gallery-container .gallery-body .library-header .info .back:hover {
  filter: brightness(0.8);
}
.gallery-container .gallery-body .library-header .info .back svg {
  font-size: 24px;
}
.gallery-container .gallery-body .gallery-content {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 12rem);
  max-height: 48.5rem;
  padding-bottom: 4.5rem;
  box-sizing: border-box;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
.gallery-container .gallery-body .gallery-content.reverse {
  flex-direction: column-reverse;
}
.gallery-container .gallery-body .gallery-content::-webkit-scrollbar {
  display: none;
}
.gallery-container .gallery-body .gallery-content .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 0.15rem;
  max-width: 100%;
  filter: brightness(0.9);
}
.gallery-container
  .gallery-body
  .gallery-content
  .gallery-grid[data-zoomlevel="2"] {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-container
  .gallery-body
  .gallery-content
  .gallery-grid[data-zoomlevel="3"] {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-container
  .gallery-body
  .gallery-content
  .gallery-grid[data-zoomlevel="4"] {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-container
  .gallery-body
  .gallery-content
  .gallery-grid[data-zoomlevel="5"] {
  grid-template-columns: repeat(5, 1fr);
}
.gallery-container .gallery-body .gallery-content .gallery-grid .grid-item {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}
.gallery-container
  .gallery-body
  .gallery-content
  .gallery-grid
  .grid-item:hover {
  filter: brightness(0.8);
}
.gallery-container .gallery-body .gallery-content .gallery-grid .grid-item .img,
.gallery-container
  .gallery-body
  .gallery-content
  .gallery-grid
  .grid-item
  video {
  width: 100%;
  aspect-ratio: 1/1;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  filter: brightness(0.9);
}
.gallery-container
  .gallery-body
  .gallery-content
  .gallery-grid
  .grid-item
  .video-duration {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0.5rem;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.gallery-container
  .gallery-body
  .gallery-content
  .gallery-grid
  .grid-item
  .checkbox {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0.5rem;
}
.gallery-container .gallery-body .gallery-content .info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: var(--phone-text-primary);
}
.gallery-container .gallery-body .gallery-content .no-photos {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(40%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.gallery-container .gallery-body .gallery-content .no-photos .title {
  color: var(--phone-text-primary);
  font-size: 20px;
  font-weight: 600;
}
.gallery-container .gallery-body .gallery-content .no-photos .description {
  color: var(--phone-text-secondary);
  font-size: 16px;
  text-align: center;
  width: 80%;
}
.gallery-container .gallery-body .albums-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.gallery-container .gallery-body .albums-content .subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--phone-text-primary);
  padding: 0 1.25rem;
}
.gallery-container .gallery-body .albums-content .albums-grid {
  display: grid;
  grid-template-rows: auto auto;
  grid-auto-flow: column;
  gap: 1rem 0.75rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 1.25rem 0;
}
.gallery-container
  .gallery-body
  .albums-content
  .albums-grid::-webkit-scrollbar {
  display: none;
}
.gallery-container
  .gallery-body
  .albums-content
  .albums-grid[data-edit="true"]
  .album[data-removable="false"],
.gallery-container
  .gallery-body
  .albums-content
  .albums-grid[data-edit="true"]
  .album[data-removable="false"]:hover {
  filter: opacity(0.5);
}
.gallery-container
  .gallery-body
  .albums-content
  .albums-grid[data-edit="true"]
  .album:hover {
  filter: inherit;
}
.gallery-container .gallery-body .albums-content .albums-grid .album {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.gallery-container .gallery-body .albums-content .albums-grid .album:hover {
  filter: brightness(0.7);
}
.gallery-container .gallery-body .albums-content .albums-grid .album .cover {
  position: relative;
  height: 10rem;
  width: 10rem;
}
.gallery-container .gallery-body .albums-content .albums-grid .album .cover img,
.gallery-container
  .gallery-body
  .albums-content
  .albums-grid
  .album
  .cover
  video {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0 0 10px #0000001a;
  object-fit: cover;
  object-position: center;
}
.gallery-container
  .gallery-body
  .albums-content
  .albums-grid
  .album
  .cover
  svg {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  font-size: 24px;
  color: #fff;
}
.gallery-container .gallery-body .albums-content .albums-grid .album .title {
  font-size: 17px;
  color: var(--phone-text-primary);
}
.gallery-container .gallery-body .albums-content .albums-grid .album .count {
  font-size: 16px;
  color: var(--phone-text-secondary);
}
.gallery-container .gallery-body .albums-content .albums-grid .album .remove {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  z-index: 1;
  font-size: 20px;
  color: #fff;
  background-color: var(--phone-color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.gallery-container
  .gallery-body
  .albums-content
  .albums-grid
  .album
  .remove:hover {
  filter: brightness(0.7);
}
.gif-selector {
  position: absolute;
  bottom: 0;
  z-index: 9;
  height: 94.5%;
  width: 100%;
  border-radius: 30px 30px 50px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  background-color: var(--components-bg);
}
.gif-selector .gif-selector-header {
  width: 90%;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-sizing: border-box;
}
.gif-selector .gif-selector-header .close {
  width: 4rem;
  height: 0.2rem;
  border-radius: 5px;
  background-color: var(--components-highlight);
  cursor: pointer;
}
.gif-selector .gif-selector-header .searchbox {
  background-color: var(--components-secondary);
  padding: 0.5rem 1rem;
}
.gif-selector .back {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  padding-left: 1.5rem;
  cursor: pointer;
  font-size: 16px;
  color: var(--phone-color-blue);
}
.gif-selector .back svg {
  font-size: 18px;
}
.gif-selector .gif-results {
  width: 96%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.3rem;
  overflow-y: auto;
}
.gif-selector .gif-results[data-categories="true"] {
  grid-template-columns: repeat(2, 1fr);
}
.gif-selector .gif-results[data-categories="true"] .category {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 6rem;
  border-radius: 4px;
  cursor: pointer;
  transition: filter 0.2s ease-in-out;
}
.gif-selector .gif-results[data-categories="true"] .category img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  box-sizing: border-box;
  object-fit: cover;
  filter: brightness(0.8);
}
.gif-selector .gif-results[data-categories="true"] .category .category-name {
  position: absolute;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  z-index: 1;
}
.gif-selector .gif-results[data-categories="true"] .category .category-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.gif-selector .gif-results[data-categories="true"] .category:hover {
  filter: brightness(0.5);
}
.gif-selector .gif-results::-webkit-scrollbar {
  display: none;
}
.gif-selector .gif-results .gif-result {
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: filter 0.2s ease-in-out;
  position: relative;
}
.gif-selector .gif-results .gif-result:hover {
  filter: brightness(0.5);
}
.gif-selector .gif-results .gif-result img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}
.gif-selector .gif-results .gif-result .favourite {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  color: var(--phone-color-orange);
  font-size: 26px;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}
.gif-selector .gif-results .gif-result .favourite.fill {
  color: var(--phone-color-orange);
}
.music-selector-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  z-index: 11;
  background-color: var(--phone-color-primary);
}
.music-selector-container .music-selector-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-sizing: border-box;
  padding: 3.5rem 1rem 0.5rem;
}
.music-selector-container .music-selector-header .cancel {
  font-size: 18px;
  color: var(--phone-color-blue);
  cursor: pointer;
}
.music-selector-container .music-selector-body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: auto;
  position: relative;
}
.music-selector-container .music-selector-body::-webkit-scrollbar {
  display: none;
}
.music-selector-container .music-selector-body .no-results {
  max-width: 70%;
  font-size: 16px;
  color: var(--phone-text-primary);
  text-align: center;
  margin-top: 17rem;
}
.music-selector-container .music-selector-body .item {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 5%;
  border-bottom: 1px solid var(--phone-color-border);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.music-selector-container .music-selector-body .item:hover {
  background-color: var(--phone-color-hover);
}
.music-selector-container .music-selector-body .item .item-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.music-selector-container .music-selector-body .item .item-info img {
  height: 4rem;
  width: 4rem;
  border-radius: 5px;
  object-fit: cover;
}
.music-selector-container
  .music-selector-body
  .item
  .item-info
  img[data-artist="true"] {
  border-radius: 50%;
}
.music-selector-container .music-selector-body .item .item-info .text {
  font-weight: 400;
}
.music-selector-container .music-selector-body .item .item-info .text .title {
  color: var(--phone-text-primary);
  font-size: 17px;
}
.music-selector-container
  .music-selector-body
  .item
  .item-info
  .text
  .subtitle {
  color: var(--phone-text-secondary);
  font-size: 15px;
}
.music-selector-container .music-selector-body .item svg {
  color: var(--phone-color-red);
  font-size: 25px;
  margin: 0.25rem;
}
[data-theme="light"] .popup {
  background-color: #fafafae6;
}
[data-theme="light"] .popup .separator {
  background-color: #00000040;
}
[data-theme="light"] .popup .buttons div:hover:not([data-disabled="true"]) {
  opacity: 0.7;
}
[data-theme="dark"] .popup {
  background-color: #191919e6;
}
[data-theme="dark"] .popup .separator {
  background-color: #fff3;
}
[data-theme="dark"] .popup .buttons div {
  opacity: 0.7;
}
.popup-container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 999;
  border-radius: 40px;
  background-color: #0009;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup {
  width: 20rem;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-bottom: 0;
  box-shadow: 0 0 15px #2828284d;
}
.popup .title {
  padding: 1.5rem 0.75rem 0;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  word-wrap: break-word;
  color: var(--phone-text-primary);
}
.popup .description {
  width: 100%;
  padding: 0 1.5rem;
  margin-bottom: 0.75rem;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  word-wrap: break-word;
  color: var(--phone-text-primary);
}
.popup .attachment {
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .attachment img,
.popup .attachment video {
  width: 100%;
  min-width: 100%;
  width: 18rem;
  height: 15rem;
  object-fit: cover;
}
.popup .profile-image {
  display: flex;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 23px;
  font-weight: 400;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--phone-text-secondary);
  color: #fff;
  margin-bottom: 1rem;
}
.popup input {
  width: 80%;
  height: 2rem;
  border-radius: 7px;
  border: 1px solid rgba(0, 0, 0, 0.2039215686);
  padding: 0 0.75rem;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0.5rem;
  background-color: var(--phone-color-primary);
  color: var(--phone-text-primary);
}
.popup input:focus {
  outline: none;
}
.popup .buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  width: 100%;
}
.popup .buttons[data-buttons="1"] div {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.popup .buttons[data-vertical="true"] {
  flex-direction: column;
}
.popup .buttons[data-vertical="true"] div:nth-child(1) {
  border-bottom-left-radius: 0;
}
.popup .buttons[data-vertical="true"] div:last-child {
  border-bottom: none;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.popup .buttons[data-vertical="true"] .separator {
  display: none;
}
.popup .buttons .button {
  flex: 1;
  height: 100%;
  padding: 0.25rem 0.75rem 1.25rem;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: var(--phone-color-blue);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.popup .buttons .button[data-bold="true"] {
  font-weight: 600;
}
.popup .buttons .button[data-color="blue"] {
  color: var(--phone-color-blue);
}
.popup .buttons .button[data-color="red"] {
  color: var(--phone-color-red);
}
.popup .buttons .button[data-color="green"] {
  color: var(--phone-color-green);
}
.popup .buttons .button[data-color="yellow"] {
  color: var(--phone-color-yellow);
}
.popup .buttons .button[data-disabled="true"] {
  filter: opacity(0.5);
  cursor: not-allowed;
}
.popup .buttons .button:nth-child(1) {
  border-bottom-left-radius: 15px;
}
.popup .buttons .button:nth-child(2) {
  border-bottom-right-radius: 15px;
}
.popup .buttons .button:last-child {
  border-right: none;
}
.popup .buttons .separator {
  width: 2.25px;
  height: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 5px;
}
.popup .buttons .separator:last-child {
  display: none;
}
.share-component-container {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  display: flex;
  align-items: flex-end;
  z-index: 11;
}
.share-component {
  height: 25rem;
  width: 100%;
  background-color: var(--phone-color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.share-component .share-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.share-component .share-header .close {
  width: 4rem;
  height: 0.2rem;
  border-radius: 5px;
  background-color: var(--components-highlight);
  cursor: pointer;
}
.share-component .share-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 3rem;
}
.share-component .share-body::-webkit-scrollbar {
  display: none;
}
.share-component .airdrop {
  width: 90%;
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  gap: 1.2rem;
  position: relative;
  box-sizing: border-box;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--phone-color-border);
}
.share-component .airdrop::-webkit-scrollbar {
  height: 0.5rem;
  border-radius: 6px;
  background-color: var(--phone-color-highlight3);
}
.share-component .airdrop::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: var(--phone-text-secondary);
}
.share-component .airdrop .no-users {
  width: 100%;
  margin: auto;
  color: var(--phone-text-primary);
  font-weight: 400;
  text-align: center;
  height: 2rem;
}
.share-component .airdrop .user {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.share-component .airdrop .user:hover:not([data-sent="true"]) {
  filter: brightness(0.8);
}
.share-component .airdrop .user .image {
  width: 4.2rem;
  height: 4.2rem;
  border: 3px solid transparent;
  margin-bottom: 0.3rem;
  position: relative;
}
.share-component .airdrop .user .image img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.share-component .airdrop .user .image .device {
  position: absolute;
  bottom: -0.3rem;
  right: -0.3rem;
  z-index: 1;
  background-color: var(--phone-color-highlight2);
  border: 2px solid var(--phone-color-highlight2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  font-size: 20px;
  color: var(--phone-text-secondary);
}
.share-component .airdrop .user .name {
  font-size: 15px;
  color: var(--phone-text-primary);
  text-align: center;
}
.share-component .airdrop .user .sent {
  color: var(--phone-color-blue);
  font-size: 14px;
}
.share-component .airdrop .user .sent img {
  border: 3px solid var(--phone-color-blue);
}
.share-component .airdrop .user .accepted {
  color: var(--phone-color-green);
  font-size: 14px;
}
.share-component .airdrop .user .accepted img {
  border: 3px solid var(--phone-color-green);
}
.share-component .airdrop .user .declined {
  color: var(--phone-color-red);
  font-size: 14px;
}
.share-component .airdrop .user .declined img {
  border: 3px solid var(--phone-color-red);
}
.share-component .app-items {
  width: 90%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--phone-color-border);
}
.share-component .app-items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.share-component .app-items .item:hover {
  filter: brightness(0.6);
}
.share-component .app-items .item img {
  width: 4rem;
  height: 4rem;
  border-radius: 14px;
}
.share-component .app-items .item .title {
  font-size: 15px;
  color: var(--phone-text-primary);
  opacity: 0.95;
}
.share-component .buttons {
  margin-top: 1rem;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.share-component .buttons .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: var(--app-secondary2);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.share-component .buttons .item:hover {
  background-color: var(--phone-color-hover);
}
.share-component .buttons .item:hover:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.share-component .buttons .item:hover:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.share-component .buttons .item:last-child {
  border-bottom: none;
}
.share-component .buttons .item .title {
  font-size: 18px;
  color: var(--phone-text-primary);
  opacity: 0.9;
  font-weight: 400;
}
.share-component .buttons .item svg {
  font-size: 25px;
  color: var(--phone-text-primary);
  opacity: 0.9;
}
.call-container-banner {
  position: absolute;
  z-index: 98;
  top: 3rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #131212bf;
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  box-shadow: 0 10px 15px #0003;
  animation: slideDown 1s cubic-bezier(0.19, 1, 0.22, 1);
  margin: auto;
  width: 95%;
  border-radius: 18px;
  height: 7rem;
  cursor: pointer;
}
.call-container-banner .caller {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding-left: 1.25rem;
  color: #fff;
}
.call-container-banner .caller img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--phone-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}
.call-container-banner .caller .info {
  display: flex;
  flex-direction: column;
}
.call-container-banner .caller .info .name {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}
.call-container-banner .caller .info .type {
  opacity: 0.8;
  font-size: 16px;
}
.call-container-banner .call-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: right;
  gap: 1rem;
  margin-right: 1rem;
}
.call-container-banner .call-buttons .button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.call-container-banner .call-buttons .button svg {
  font-size: 2rem;
  color: #fff;
  padding: 0.5rem;
  border-radius: 50%;
  box-shadow: 0 0 8px #0003;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.call-container-banner .call-buttons .button svg:hover {
  filter: brightness(0.8);
}
.call-container-banner .call-buttons .button .text {
  color: #fff;
  opacity: 0.9;
  text-align: center;
}
.call-container-banner .call-buttons .button .decline {
  transform: rotate(135deg);
  background-color: #f54140;
}
.call-container-banner .call-buttons .button .accept {
  background-color: #13aa67;
}
.call-container {
  position: absolute;
  z-index: 96;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 95%;
  width: 100%;
  padding-top: 15%;
  border-radius: 25px;
  overflow: hidden;
}
.call-container .call-background {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(4px) brightness(0.5);
  border-radius: 25px;
  scale: 1.1;
}
.call-container .caller {
  margin-top: 3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  z-index: 99;
}
.call-container .caller img {
  object-fit: cover;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
}
.call-container .caller .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.call-container .caller .info img {
  width: 7rem;
  height: 7rem;
  margin-bottom: 0.75rem;
}
.call-container .caller .info .name {
  font-size: 35px;
  text-align: center;
}
.call-container .caller .info .type {
  font-size: 18px;
  opacity: 0.8;
  text-align: center;
}
.call-container .buttons {
  z-index: 99;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  margin-bottom: 7rem;
}
.call-container .buttons .button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.call-container .buttons .button i {
  color: #fff;
  font-size: 1.9rem;
  border-radius: 50%;
  padding: 1.5rem;
  box-shadow: 0 0 8px #0003;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.call-container .buttons .button i:hover {
  filter: brightness(0.8);
}
.call-container .buttons .button svg {
  color: #fff;
  font-size: 2.5rem;
  border-radius: 50%;
  padding: 1.25rem;
  box-shadow: 0 0 8px #0003;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.call-container .buttons .button svg:hover {
  filter: brightness(0.8);
}
.call-container .buttons .button svg.bigger {
  padding: 1.2rem;
  font-size: 2.5rem;
}
.call-container .buttons .button .text {
  color: #fff;
  opacity: 0.9;
  text-align: center;
}
.call-container .buttons .button .grey {
  background-color: #7c7c80;
}
.call-container .buttons .button .decline {
  transform: rotate(135deg);
  background-color: #f54140;
}
.call-container .buttons .button .accept {
  background-color: #13aa67;
}
.call-container .hide {
  z-index: 2;
  width: 100%;
  grid-column: 1/-1;
  font-size: 16px;
  font-weight: 400;
  color: #fffc;
  text-align: center;
  cursor: pointer;
  margin-top: 0.5rem;
}
.call-container .options {
  max-width: 95%;
  height: auto;
  margin: auto;
  display: grid;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2rem;
  padding: 1rem 2rem;
  border-radius: 25px;
  z-index: 1;
  background-color: var(--controlcentre-opacity2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.call-container .options .option {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.call-container .options .option.keypad .icon {
  display: flex;
  flex-direction: column;
}
.call-container .options .option.keypad .icon .number {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
}
.call-container .options .option.keypad .icon .number:hover {
  text-decoration: inherit;
}
.call-container .options .option.keypad .icon .text {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
}
.call-container .options .option .icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  height: 4.75rem;
  width: 4.75rem;
  border-radius: 50%;
  background-color: var(--controlcentre-opacity);
  box-shadow: 0 0 2px #0003;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0.99;
}
.call-container .options .option .icon.active {
  background-color: var(--controlcentre-active);
}
.call-container .options .option .icon.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.call-container .options .option .icon:hover:not(.disabled) {
  background-color: var(--controlcentre-active);
}
.call-container .options .option .icon svg {
  width: 100%;
  height: 100%;
  padding: 1.25rem;
}
.call-container .options .option .text {
  color: #fff;
  opacity: 0.9;
  font-weight: 400;
}
.call-container .feed {
  top: 0;
  position: absolute;
  height: 57rem;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  filter: brightness(0.9);
}
.call-container .options-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 87%;
  left: 0;
  right: 0;
  top: 3.5rem;
  padding: 1rem 0.25rem 0.25rem;
  position: absolute;
  margin: auto;
  border-radius: 30px;
  background-color: #0009;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.call-container .options-header .call-header {
  width: 90%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.call-container .options-header .call-header .facetime-caller {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.call-container .options-header .call-header .facetime-caller .avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.call-container .options-header .call-header .facetime-caller .info {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.call-container .options-header .call-header .facetime-caller .info .name {
  font-size: 18px;
  opacity: 0.95;
  font-weight: 500;
  text-align: center;
}
.call-container .options-header .call-header .facetime-caller .info .status {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.3rem;
  opacity: 0.8;
  font-size: 14px;
  font-weight: 400;
}
.call-container
  .options-header
  .call-header
  .facetime-caller
  .info
  .status
  svg {
  font-size: 16px;
}
.call-container .options-header .call-header .end-button {
  padding: 0.3rem 1.3rem;
  border-radius: 25px;
  background-color: #fe3b30;
  font-size: 16px;
  transition: 0.5s;
  cursor: pointer;
  color: #fff;
}
.call-container .options-header .call-header .end-button:hover {
  filter: brightness(0.8);
}
.call-container .options-header .facetime-buttons {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.call-container .options-header .facetime-buttons .button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 3.25rem;
  width: 3.25rem;
  border-radius: 50%;
  background-color: #f4f4f433;
  box-shadow: 0 0 2px #0003;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  color: #fff;
}
.call-container .options-header .facetime-buttons .button.active {
  background-color: #f4f4f4fc;
  color: #000;
}
.call-container .options-header .facetime-buttons .button.disabled {
  opacity: 0.5;
}
.call-container .options-header .facetime-buttons .button.disabled:hover {
  cursor: not-allowed;
  background-color: #f4f4f421;
  color: #fff;
}
.call-container .options-header .facetime-buttons .button:hover {
  background-color: #f4f4f4e6;
  color: #000;
}
.call-container .options-header .facetime-buttons .button i,
.call-container .options-header .facetime-buttons .button svg {
  padding: 0.75rem;
  width: 100%;
  height: 100%;
}
.call-container .camera {
  position: absolute;
  top: 36rem;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 140px;
  height: 200px;
}
.call-container .camera .camera-body {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
}
.call-container .camera .camera-body canvas {
  box-shadow: 0 0 30px #0006;
  height: 100%;
}
.call-container .camera .camera-buttons {
  z-index: 99;
  position: absolute;
  bottom: 0;
  width: 90%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}
.call-container .camera .camera-buttons .button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #00000080;
  box-shadow: 0 0 2px #0003;
  padding: 0.8rem;
  cursor: pointer;
}
.call-container .camera .camera-buttons .button svg {
  font-size: 22px;
  color: #fff;
}
.control-centre-container {
  position: absolute;
  z-index: 97;
  height: 100%;
  width: 100%;
}
.control-centre {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 25px;
}
.control-centre .control-centre-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 90%;
  margin-top: 5rem;
  box-sizing: border-box;
}
.control-centre .control-centre-body > div {
  transition: background-color 0.2s ease-in-out;
}
.control-centre .control-centre-body .music-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background-color: var(--controlcentre-opacity);
  border-radius: 18px;
  padding: 1.2rem 1rem 1rem;
}
.control-centre .control-centre-body .music-player .song {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}
.control-centre .control-centre-body .music-player .song img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 10px;
}
.control-centre .control-centre-body .music-player .song .song-info {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: Inter, sans-serif;
}
.control-centre .control-centre-body .music-player .song .song-info .title {
  font-size: 18px;
  font-weight: 600;
}
.control-centre .control-centre-body .music-player .song .song-info .artist {
  font-size: 14px;
}
.control-centre .control-centre-body .music-player .slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  width: 100%;
}
.control-centre .control-centre-body .music-player .slider input {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  outline: none;
  -webkit-transition: 0.2s;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
}
.control-centre
  .control-centre-body
  .music-player
  .slider
  input::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.35rem;
  cursor: pointer;
}
.control-centre
  .control-centre-body
  .music-player
  .slider
  input::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 0.8rem;
  width: 0.8rem;
  background-color: #fff;
  border-radius: 50%;
  margin-top: -0.15rem;
  cursor: pointer;
}
.control-centre .control-centre-body .music-player .slider input:focus {
  outline: none;
}
.control-centre .control-centre-body .music-player .slider .values {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 12px;
  color: #fff;
  font-family: Inter, sans-serif;
}
.control-centre .control-centre-body .music-player .controls {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.control-centre .control-centre-body .music-player .controls svg {
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.control-centre .control-centre-body .music-player .controls svg:hover {
  filter: brightness(0.75);
}
.control-centre .control-centre-body .music-player .controls > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.control-centre .control-centre-body .music-player .controls > div svg {
  font-size: 30px;
}
.control-centre .control-centre-body .sliders {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.control-centre .control-centre-body .sliders .slider {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.control-centre .control-centre-body .sliders .slider svg {
  position: absolute;
  left: 1rem;
  font-size: 22px;
  color: #000;
  cursor: pointer;
  pointer-events: none;
}
.control-centre .control-centre-body .sliders .slider input {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 16px;
  padding: 0.4rem 0;
  -webkit-appearance: none;
}
.control-centre
  .control-centre-body
  .sliders
  .slider
  input::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin: 0 1rem;
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 50%;
  background: transparent;
}
.control-centre
  .control-centre-body
  .sliders
  .slider
  input::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}
.control-centre .control-centre-body .sliders .slider input:focus {
  outline: none;
}
.control-centre .control-centre-body .buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.25rem;
  justify-content: center;
  background-color: var(--controlcentre-opacity2);
  border-radius: 25px;
  padding: 1rem;
}
.control-centre .control-centre-body .buttons .button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--controlcentre-opacity);
  border-radius: 50%;
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.control-centre .control-centre-body .buttons .button[data-active="true"] {
  background-color: var(--controlcentre-active);
}
.control-centre .control-centre-body .buttons .button svg {
  font-size: 34px;
  color: #fff;
}
.camera-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  z-index: 97 !important;
  position: absolute;
}
.camera-container .camera-header {
  margin-top: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  height: 7.5%;
}
.camera-container .camera-header div {
  flex: 1;
}
.camera-container .camera-header svg {
  color: #fff;
  font-size: 20px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  padding: 0.1rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.camera-container .camera-header svg:hover {
  filter: brightness(0.5);
}
.camera-container .camera-header .timer {
  color: #fff;
  font-size: 22px;
  text-align: center;
}
.camera-container .camera-header span {
  flex: 1;
}
.camera-container .camera-body {
  width: 90%;
  height: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.camera-container .camera-body .camera-loading {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: inherit;
  -webkit-backdrop-filter: brightness(0.8) blur(5px);
  backdrop-filter: brightness(0.8) blur(5px);
}
.camera-container .camera-body .camera-loading .uploading {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.camera-container .camera-body canvas {
  max-height: 100%;
}
.camera-container .camera-body.rotate canvas {
  transform: rotate(90deg);
}
.camera-container .camera-body.selfie canvas {
  transform: translate(15%);
}
.camera-container .camera-bottom {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
  overflow: hidden;
}
.camera-container .camera-bottom .camera-types {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.2s ease-in-out;
}
.camera-container .camera-bottom .camera-types div {
  text-transform: uppercase;
  cursor: pointer;
  color: #fafafa;
  font-weight: 400;
  font-size: 17px;
}
.camera-container .camera-bottom .camera-types div.active {
  color: #e8c438;
  font-weight: 500;
}
.camera-container .camera-bottom .camera-buttons {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}
.camera-container .camera-bottom .camera-buttons span {
  width: 3.5rem;
  height: 3.5rem;
}
.camera-container
  .camera-bottom
  .camera-buttons
  .camera-button
  .camera-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 4px solid white;
}
.camera-container
  .camera-bottom
  .camera-buttons
  .camera-button
  .camera-button-container
  .camera-button-inner {
  height: 91.5%;
  width: 91.5%;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.camera-container
  .camera-bottom
  .camera-buttons
  .camera-button
  .camera-button-container
  .camera-button-inner.Video {
  background-color: var(--phone-color-red);
}
.camera-container
  .camera-bottom
  .camera-buttons
  .camera-button
  .camera-button-container
  .camera-button-inner.Recording {
  border-radius: 10%;
  height: 50%;
  width: 50%;
}
.camera-container
  .camera-bottom
  .camera-buttons
  .camera-button
  .camera-button-container
  .camera-button-inner:hover:not(.Recording) {
  height: 87%;
  width: 87%;
  opacity: 0.9;
}
.camera-container .camera-bottom .camera-buttons .flip-camera {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.3rem;
  width: 3.3rem;
  background-color: #0f0f0f;
  color: #d8d8d7;
  font-size: 15px;
  border-radius: 50%;
  cursor: pointer;
}
.camera-container .camera-bottom .camera-buttons .flip-camera svg {
  font-size: 30px;
}
.color-picker-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 96;
  display: flex;
  align-items: flex-end;
}
.color-picker-container .color-picker {
  width: 100%;
  height: 35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  border-radius: 25px 25px 0 0;
  background-color: var(--app-bg2);
  padding: 1.25rem 2.5rem;
  box-sizing: border-box;
}
.color-picker-container .color-picker .color-picker-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}
.color-picker-container .color-picker .color-picker-header .selector {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.1rem;
  background-color: var(--app-bg);
  border-radius: 6px;
  padding: 0.25rem 0.3rem;
}
.color-picker-container .color-picker .color-picker-header .selector .option {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0.4rem 1.5rem;
  border-radius: 6px;
  color: var(--phone-text-primary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.color-picker-container
  .color-picker
  .color-picker-header
  .selector
  .option:hover {
  background-color: var(--app-secondary);
  opacity: 0.8;
}
.color-picker-container
  .color-picker
  .color-picker-header
  .selector
  .option[data-active="true"] {
  background-color: var(--app-secondary);
}

/* Panel override: force system fonts to avoid broken glyphs/mojibake from webfonts */
:root, html, body, #root, * {
  font-family: "Segoe UI", "Roboto", Arial, "Helvetica Neue", sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeLegibility !important;
}

/* Also ensure form inputs and placeholders use the same family */
input, textarea, select, button, a { font-family: "Segoe UI", "Roboto", Arial, "Helvetica Neue", sans-serif !important; }

.color-picker-container .color-picker .color-picker-header .close {
  width: 4rem;
  height: 0.3rem;
  border-radius: 5px;
  background-color: var(--components-highlight);
  cursor: pointer;
}
.color-picker-container .color-picker .color-picker-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  width: 100%;
  height: 100%;
}
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-gradient {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 15.5rem;
}
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-gradient
  .react-colorful {
  width: 100%;
  height: 22rem;
  gap: 0.5rem;
}
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-gradient
  .react-colorful__saturation {
  border-radius: 12px;
  width: 100%;
}
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-gradient
  .react-colorful__hue,
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-gradient
  .react-colorful__alpha {
  border-radius: 12px;
  height: 0.75rem;
}
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-gradient
  .react-colorful__hue-pointer,
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-gradient
  .react-colorful__alpha-pointer {
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1/1;
}
.color-picker-container .color-picker .color-picker-content .border {
  height: 0.15rem;
  width: 100%;
  border-radius: 5px;
  background-color: var(--phone-color-border);
}
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-colors {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 15.5rem;
  width: 100%;
  box-shadow: 0 0 10px #0000000d;
}
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-colors
  > div {
  width: 100%;
  height: 100%;
  height: 1.5rem;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-colors
  > div:nth-child(1) {
  border-top-left-radius: 10px;
}
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-colors
  > div:nth-child(12) {
  border-top-right-radius: 10px;
}
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-colors
  > div:nth-child(109) {
  border-bottom-left-radius: 10px;
}
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-colors
  > div:last-child {
  border-bottom-right-radius: 10px;
}
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-colors
  > div:hover,
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-colors
  > div[data-active="true"] {
  box-shadow: inset 0 0 0 3px #fff;
}
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-recent {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-recent
  .active-color {
  height: 5rem;
  width: 5rem;
  aspect-ratio: 1/1;
  border-radius: 15px;
  transition: background-color 0.1s ease-in-out;
  box-shadow: inset 0 0 0 2px var(--components-highlight);
}
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-recent
  .common-colors {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
}
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-recent
  .common-colors
  .common-color {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: inset 0 0 0 1px var(--components-highlight);
}
.color-picker-container
  .color-picker
  .color-picker-content
  .color-picker-recent
  .common-colors
  .common-color:hover {
  box-shadow: inset 0 0 0 3px var(--components-highlight);
}
.contact-selector-container {
  width: 100%;
  height: 93%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background-color: var(--components-bg);
  border-radius: 30px 30px 50px 50px;
  box-sizing: border-box;
}
.contact-selector-container .contact-selector-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem 1rem;
  border-radius: 15px 15px 0 0;
}
.contact-selector-container .contact-selector-header .close {
  width: 4rem;
  height: 0.3rem;
  border-radius: 5px;
  background-color: var(--components-highlight);
  cursor: pointer;
}
.contact-selector-container .contact-selector-header .searchbox {
  background-color: var(--components-secondary);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
}
.contact-selector-container .contact-selector-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  position: relative;
  width: 90%;
  max-height: 100%;
  box-sizing: border-box;
}
.contact-selector-container .contact-selector-content::-webkit-scrollbar {
  display: none;
}
.contact-selector-container .contact-selector-content > div {
  width: 100%;
  box-sizing: border-box;
}
.contact-selector-container .contact-selector-content .contacts {
  background-color: var(--app-secondary);
  border-radius: 15px;
}
.contact-selector-container .contact-selector-content .divider {
  margin-bottom: 0.25rem;
  font-size: 15px;
  font-weight: 500;
  padding: 0 5%;
  padding-top: 1.5rem;
  box-sizing: border-box;
  color: var(--phone-text-secondary);
}
.contact-selector-container .contact-selector-content .divider.no-border {
  border: none;
  padding-top: 0;
}
.contact-selector-container .contact-selector-content .section {
  background-color: var(--app-secondary);
  border-radius: 15px;
}
.contact-selector-container .contact-selector-content .contact {
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  padding: 0.7rem 5%;
  font-size: 18px;
  font-weight: 400;
  color: var(--phone-text-primary);
}
.contact-selector-container .contact-selector-content .contact.item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 3.5%;
}
.contact-selector-container .contact-selector-content .contact.item:hover {
  background-color: var(--phone-color-hover);
}
.contact-selector-container
  .contact-selector-content
  .contact:hover:not(.nohover) {
  background-color: var(--phone-color-hover);
}
.contact-selector-container .contact-selector-content .contact .details {
  display: flex;
  flex-direction: column;
}
.contact-selector-container .contact-selector-content .contact .details .name {
  font-size: 18px;
}
.contact-selector-container
  .contact-selector-content
  .contact
  .details
  .phone-number {
  color: var(--phone-text-secondary);
  font-size: 14px;
  font-weight: 400;
}
.contact-selector-container .contact-selector-content .contact.border {
  border-bottom: 1px solid var(--phone-color-border);
}
.contact-selector-container
  .contact-selector-content
  .contact.border:last-child {
  border-bottom: none;
}
.contact-selector-container .contact-selector-content .contact .avatar {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background: linear-gradient(180deg, #e3e3e3, #999999);
  color: #fff;
  box-shadow: inset 0 4px 15px #00000040;
}
.contact-selector-container .contact-selector-content .no-border {
  border: none;
  padding-top: 0;
}
.contact-selector-container .contact-selector-content .total-contacts {
  padding-top: 1rem;
  padding-bottom: 2rem;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}
.shared-album-editor {
  width: 100%;
  height: 93%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background-color: var(--components-bg);
  border-radius: 30px 30px 50px 50px;
  box-sizing: border-box;
}
.shared-album-editor .shared-album-editor-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem 1rem;
  border-radius: 15px 15px 0 0;
}
.shared-album-editor .shared-album-editor-header .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 94%;
}
.shared-album-editor .shared-album-editor-header .top-bar > span {
  flex: 1;
}
.shared-album-editor .shared-album-editor-header .top-bar > span:nth-child(2) {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 500;
  flex: 2;
}
.shared-album-editor .shared-album-editor-header .top-bar > span:nth-child(3) {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.shared-album-editor .shared-album-editor-header .close {
  width: 4rem;
  height: 0.3rem;
  border-radius: 5px;
  background-color: var(--components-highlight);
  cursor: pointer;
}
.shared-album-editor .shared-album-editor-header svg {
  font-size: 1.5rem;
  color: var(--phone-color-blue);
  cursor: pointer;
}
.shared-album-editor .shared-album-editor-header .searchbox {
  background-color: var(--components-secondary);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
}
.shared-album-editor .shared-album-editor-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  position: relative;
  width: 90%;
  max-height: 100%;
  box-sizing: border-box;
}
.shared-album-editor .shared-album-editor-content::-webkit-scrollbar {
  display: none;
}
.shared-album-editor .shared-album-editor-content > div {
  width: 100%;
  box-sizing: border-box;
}
.shared-album-editor .shared-album-editor-content .contacts {
  background-color: var(--app-secondary);
  border-radius: 15px;
}
.shared-album-editor .shared-album-editor-content .divider {
  margin-bottom: 0.25rem;
  font-size: 15px;
  font-weight: 500;
  padding: 0 5%;
  padding-top: 1.5rem;
  box-sizing: border-box;
  color: var(--phone-text-secondary);
}
.shared-album-editor .shared-album-editor-content .divider.no-border {
  border: none;
  padding-top: 0;
}
.shared-album-editor .shared-album-editor-content .section {
  background-color: var(--app-secondary);
  border-radius: 15px;
}
.shared-album-editor .shared-album-editor-content .contact {
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  padding: 0.7rem 5%;
  font-size: 18px;
  font-weight: 400;
  color: var(--phone-text-primary);
}
.shared-album-editor .shared-album-editor-content .contact.item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 3.5%;
}
.shared-album-editor .shared-album-editor-content .contact.item:hover {
  background-color: var(--phone-color-hover);
}
.shared-album-editor .shared-album-editor-content .contact:hover:not(.nohover) {
  background-color: var(--phone-color-hover);
}
.shared-album-editor .shared-album-editor-content .contact .details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.shared-album-editor .shared-album-editor-content .contact .details .content {
  display: flex;
  flex-direction: column;
}
.shared-album-editor
  .shared-album-editor-content
  .contact
  .details
  .content
  .name {
  font-size: 18px;
}
.shared-album-editor
  .shared-album-editor-content
  .contact
  .details
  .content
  .phone-number {
  color: var(--phone-text-secondary);
  font-size: 14px;
  font-weight: 400;
}
.shared-album-editor .shared-album-editor-content .contact .details svg {
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  padding: 0.1rem;
  border-radius: 50%;
  background-color: var(--phone-color-red);
}
.shared-album-editor .shared-album-editor-content .contact.border {
  border-bottom: 1px solid var(--phone-color-border);
}
.shared-album-editor .shared-album-editor-content .contact.border:last-child {
  border-bottom: none;
}
.shared-album-editor .shared-album-editor-content .contact .avatar {
  display: flex;
  aspect-ratio: 1/1;
  height: 2.5rem;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background: linear-gradient(180deg, #e3e3e3, #999999);
  color: #fff;
  box-shadow: inset 0 4px 15px #00000040;
}
.shared-album-editor .shared-album-editor-content .no-border {
  border: none;
  padding-top: 0;
}
.shared-album-editor .shared-album-editor-content .total-contacts {
  padding-top: 1rem;
  padding-bottom: 2rem;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}
.photos-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  height: 100%;
  background-color: var(--phone-color-primary);
}
.photos-container .photos-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.photos-container .photos-content .scroll-container {
  overflow-y: auto;
  overflow-x: hidden;
}
.photos-container .photos-content .scroll-container::-webkit-scrollbar {
  display: none;
}
.photos-container .photos-content .library {
  height: 100%;
  position: relative;
}
.photos-container .photos-content .library-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  padding: 4rem 1.25rem 1.25rem;
  pointer-events: none;
  box-sizing: border-box;
}
.photos-container .photos-content .library-header.album {
  position: relative;
  background-color: var(--app-secondary);
  padding-top: 4rem;
  pointer-events: all;
}
.photos-container .photos-content .library-header.album .top > div,
.photos-container .photos-content .library-header.album .top > svg {
  flex: 1;
}
.photos-container .photos-content .library-header.album .top .back svg {
  color: var(--phone-color-blue);
  font-size: 26px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-align: left;
}
.photos-container .photos-content .library-header.album .top .back svg:hover {
  filter: brightness(0.7);
}
.photos-container .photos-content .library-header.album .top .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  color: var(--phone-text-primary);
}
.photos-container .photos-content .library-header.album .top .info .title {
  font-size: 18px;
  font-weight: 500;
}
.photos-container .photos-content .library-header.album .top .info .details {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  text-align: center;
}
.photos-container .photos-content .library-header.album .top .actions {
  justify-content: flex-end;
}
.photos-container .photos-content .library-header.album .top .actions .button {
  font-size: 14px;
  color: var(--phone-color-blue);
}
.photos-container .photos-content .library-header .top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.photos-container .photos-content .library-header .name {
  font-size: 20px;
  font-weight: 500;
  font-style: bold;
  color: #fff;
  margin-left: 1.25rem;
}
.photos-container .photos-content .library-header .info .date {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.photos-container .photos-content .library-header .info .back {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  pointer-events: all;
}
.photos-container .photos-content .library-header .info .back:hover {
  filter: brightness(0.8);
}
.photos-container .photos-content .library-header .info .back svg {
  font-size: 24px;
}
.photos-container .photos-content .library-header .actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.photos-container .photos-content .library-header .actions .button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--phone-text-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  background-color: var(--phone-color-opacity);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  pointer-events: all;
}
.photos-container .photos-content .library-header .actions .button:hover {
  filter: brightness(0.7);
}
.photos-container .photos-content .library-header .actions .button.round {
  border-radius: 50%;
  padding: inherit;
  width: 1.6rem;
  height: 1.6rem;
  font-size: 14px;
}
.photos-container .photos-content .library-content {
  display: flex;
  flex-direction: column-reverse;
  max-height: 48.5rem;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  will-change: transform;
  transform-origin: top;
}
.photos-container .photos-content .library-content[data-offset="true"] {
  margin-top: 8.5rem;
}
.photos-container .photos-content .library-content::-webkit-scrollbar {
  display: none;
}
.photos-container .photos-content .library-content .date-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.photos-container .photos-content .library-content .date-group .date {
  font-size: 15px;
  font-weight: 500;
  margin-top: 1rem;
  margin-left: 0.5rem;
  color: var(--phone-text-primary);
}
.photos-container .photos-content .library-content .library-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 0.15rem;
  max-width: 100%;
  filter: brightness(0.9);
}
.photos-container
  .photos-content
  .library-content
  .library-grid[data-zoomlevel="2"] {
  grid-template-columns: repeat(2, 1fr);
}
.photos-container
  .photos-content
  .library-content
  .library-grid[data-zoomlevel="3"] {
  grid-template-columns: repeat(3, 1fr);
}
.photos-container
  .photos-content
  .library-content
  .library-grid[data-zoomlevel="4"] {
  grid-template-columns: repeat(4, 1fr);
}
.photos-container
  .photos-content
  .library-content
  .library-grid[data-zoomlevel="5"] {
  grid-template-columns: repeat(5, 1fr);
}
.photos-container .photos-content .library-content .library-grid .grid-item {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}
.photos-container
  .photos-content
  .library-content
  .library-grid
  .grid-item:hover {
  filter: brightness(0.8);
}
.photos-container
  .photos-content
  .library-content
  .library-grid
  .grid-item
  .img,
.photos-container
  .photos-content
  .library-content
  .library-grid
  .grid-item
  video {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 2px;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  filter: brightness(0.9);
}
.photos-container
  .photos-content
  .library-content
  .library-grid
  .grid-item
  .video-duration {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0.5rem;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.photos-container
  .photos-content
  .library-content
  .library-grid
  .grid-item
  .checkbox {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0.5rem;
}
.photos-container .photos-content .library-content .info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--phone-text-primary);
}
.photos-container .photos-content .library-content .no-photos {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(40%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.photos-container .photos-content .library-content .no-photos .title {
  color: var(--phone-text-primary);
  font-size: 20px;
  font-weight: 600;
}
.photos-container .photos-content .library-content .no-photos .description {
  color: var(--phone-text-secondary);
  font-size: 16px;
  text-align: center;
  width: 80%;
}
.photos-container .photos-content .select-footer {
  position: absolute;
  bottom: -9rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--phone-color-border);
  background-color: var(--app-secondary);
  padding: 1.5rem 1rem 3.5rem;
}
.photos-container .photos-content .select-footer > div {
  flex: 1;
}
.photos-container .photos-content .select-footer .icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 26px;
  color: var(--phone-color-blue);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.photos-container .photos-content .select-footer .icons:hover {
  filter: brightness(0.7);
}
.photos-container .photos-content .select-footer .icons[data-disabled="true"] {
  color: var(--phone-text-secondary);
}
.photos-container .photos-content .select-footer .icons:nth-child(3) {
  justify-content: flex-end;
}
.photos-container .photos-content .select-footer .title {
  flex: auto;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: var(--phone-text-primary);
}
.photos-container .photos-content .library-footer {
  position: absolute;
  bottom: 8rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.15rem;
  border-radius: 20px;
  padding: 0.2rem;
  margin: auto;
  width: 88%;
  box-sizing: border-box;
  background-color: var(--phone-highlight-opacity45);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
}
.photos-container .photos-content .library-footer .option {
  flex: 1;
  padding: 0.45rem 0.25rem;
  border-radius: 18px;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.photos-container .photos-content .library-footer .option .text {
  opacity: 0.5;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--phone-text-primary);
}
.photos-container .photos-content .library-footer .option:hover {
  background-color: var(--phone-color-highlight3);
}
.photos-container .photos-content .library-footer .option:hover .text {
  color: var(--phone-text-primary);
  opacity: 1;
}
.photos-container .photos-content .library-footer .option[data-active="true"] {
  background-color: var(--phone-color-highlight3);
}
.photos-container
  .photos-content
  .library-footer
  .option[data-active="true"]
  .text {
  color: var(--phone-text-primary);
  opacity: 0.9;
}
.photos-container .photos-content .albums-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: var(--phone-color-primary);
  padding: 3.5rem 1.25rem 1.25rem;
}
.photos-container .photos-content .albums-header .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.photos-container .photos-content .albums-header .top > div,
.photos-container .photos-content .albums-header .top svg {
  color: var(--phone-color-blue);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.photos-container .photos-content .albums-header .top > div:hover,
.photos-container .photos-content .albums-header .top svg:hover {
  filter: brightness(0.7);
}
.photos-container .photos-content .albums-header .top svg {
  font-size: 26px;
}
.photos-container .photos-content .albums-header .top .edit {
  font-size: 18px;
}
.photos-container .photos-content .albums-header .title {
  font-size: 26px;
  font-weight: 600;
  font-style: bold;
  color: var(--phone-text-primary);
}
.photos-container .photos-content .divider {
  height: 1px;
  width: calc(100% - 3rem);
  margin: 0.75rem 0 0.75rem 1.5rem;
  background-color: var(--phone-color-border);
}
.photos-container .photos-content .albums-content,
.photos-container .photos-content .media-types {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.photos-container .photos-content .albums-content.media-types,
.photos-container .photos-content .media-types.media-types {
  padding: 0 1.25rem 1.25rem;
}
.photos-container .photos-content .albums-content.media-types .subtitle,
.photos-container .photos-content .media-types.media-types .subtitle {
  padding: 0;
}
.photos-container .photos-content .albums-content .subtitle,
.photos-container .photos-content .media-types .subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--phone-text-primary);
  padding: 0 1.25rem;
}
.photos-container .photos-content .albums-content .albums-grid,
.photos-container .photos-content .media-types .albums-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.75rem;
  padding: 0.5rem 1.25rem 0;
  box-sizing: border-box;
  z-index: 1;
}
.photos-container
  .photos-content
  .albums-content
  .albums-grid[data-edit="true"]
  .album[data-removable="false"],
.photos-container
  .photos-content
  .media-types
  .albums-grid[data-edit="true"]
  .album[data-removable="false"],
.photos-container
  .photos-content
  .albums-content
  .albums-grid[data-edit="true"]
  .album[data-removable="false"]:hover,
.photos-container
  .photos-content
  .media-types
  .albums-grid[data-edit="true"]
  .album[data-removable="false"]:hover {
  filter: opacity(0.5);
}
.photos-container
  .photos-content
  .albums-content
  .albums-grid[data-edit="true"]
  .album:hover,
.photos-container
  .photos-content
  .media-types
  .albums-grid[data-edit="true"]
  .album:hover {
  filter: inherit;
}
.photos-container .photos-content .albums-content .albums-grid .album,
.photos-container .photos-content .media-types .albums-grid .album {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.photos-container .photos-content .albums-content .albums-grid .album:hover,
.photos-container .photos-content .media-types .albums-grid .album:hover {
  filter: brightness(0.7);
}
.photos-container .photos-content .albums-content .albums-grid .album .cover,
.photos-container .photos-content .media-types .albums-grid .album .cover {
  position: relative;
  height: 10rem;
  width: 10rem;
}
.photos-container
  .photos-content
  .albums-content
  .albums-grid
  .album
  .cover
  img,
.photos-container
  .photos-content
  .albums-content
  .albums-grid
  .album
  .cover
  video,
.photos-container .photos-content .media-types .albums-grid .album .cover img,
.photos-container
  .photos-content
  .media-types
  .albums-grid
  .album
  .cover
  video {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0 0 10px #0000001a;
  object-fit: cover;
  object-position: center;
}
.photos-container
  .photos-content
  .albums-content
  .albums-grid
  .album
  .cover
  svg,
.photos-container .photos-content .media-types .albums-grid .album .cover svg {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  font-size: 24px;
  color: #fff;
}
.photos-container .photos-content .albums-content .albums-grid .album .title,
.photos-container .photos-content .media-types .albums-grid .album .title {
  font-size: 17px;
  color: var(--phone-text-primary);
}
.photos-container .photos-content .albums-content .albums-grid .album .count,
.photos-container .photos-content .media-types .albums-grid .album .count {
  font-size: 16px;
  color: var(--phone-text-secondary);
}
.photos-container .photos-content .albums-content .albums-grid .album .remove,
.photos-container .photos-content .media-types .albums-grid .album .remove {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  z-index: 1;
  font-size: 20px;
  color: #fff;
  background-color: var(--phone-color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.photos-container
  .photos-content
  .albums-content
  .albums-grid
  .album
  .remove:hover,
.photos-container
  .photos-content
  .media-types
  .albums-grid
  .album
  .remove:hover {
  filter: brightness(0.7);
}
.photos-container .photos-content .albums-content .media-types-items,
.photos-container .photos-content .media-types .media-types-items {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 0.25rem;
  background-color: var(--app-secondary2);
  border-radius: 14px;
}
.photos-container .photos-content .albums-content .media-types-items .item,
.photos-container .photos-content .media-types .media-types-items .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 0.8rem 1.25rem;
  border-bottom: 1px solid var(--phone-color-border);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.photos-container
  .photos-content
  .albums-content
  .media-types-items
  .item
  .type,
.photos-container .photos-content .media-types .media-types-items .item .type {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--phone-color-blue);
  font-size: 18px;
}
.photos-container
  .photos-content
  .albums-content
  .media-types-items
  .item
  .type
  svg,
.photos-container
  .photos-content
  .media-types
  .media-types-items
  .item
  .type
  svg {
  font-size: 22px;
}
.photos-container
  .photos-content
  .albums-content
  .media-types-items
  .item
  .action,
.photos-container
  .photos-content
  .media-types
  .media-types-items
  .item
  .action {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--phone-text-secondary);
  font-size: 16px;
}
.photos-container
  .photos-content
  .albums-content
  .media-types-items
  .item
  .action
  svg,
.photos-container
  .photos-content
  .media-types
  .media-types-items
  .item
  .action
  svg {
  font-size: 16px;
  opacity: 0.5;
}
.photos-container
  .photos-content
  .albums-content
  .media-types-items
  .item:hover,
.photos-container .photos-content .media-types .media-types-items .item:hover {
  background-color: var(--phone-color-opacity);
}
.photos-container
  .photos-content
  .albums-content
  .media-types-items
  .item:last-child,
.photos-container
  .photos-content
  .media-types
  .media-types-items
  .item:last-child {
  border-bottom: none;
}
.photos-container .photos-footer {
  position: absolute;
  bottom: 0rem;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8rem;
  border-top: 1px solid var(--phone-color-border);
  background-color: var(--app-secondary);
  padding-bottom: 3rem;
}
.photos-container .photos-footer .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-top: 1rem;
  color: var(--phone-text-secondary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.photos-container .photos-footer .item svg {
  font-size: 30px;
  color: var(--phone-text-secondary);
}
.photos-container .photos-footer .item:hover,
.photos-container .photos-footer .item[data-active="true"] {
  color: var(--phone-color-blue);
}
.photos-container .photos-footer .item:hover svg,
.photos-container .photos-footer .item[data-active="true"] svg {
  color: var(--phone-color-blue);
}
.photos-container .activephoto-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100%;
  width: 100%;
  animation: zoomIn 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.photos-container .activephoto-container .photo-top {
  position: absolute;
  top: 0;
  width: 94%;
  padding: 0 1rem 1rem;
  padding-top: 15%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: var(--phone-color-primary);
}
.photos-container .activephoto-container .photo-top > div {
  flex: 1;
}
.photos-container .activephoto-container .photo-top > div:last-child {
  text-align: right;
}
.photos-container .activephoto-container .photo-top .date {
  flex: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.25rem;
  font-size: 19px;
  font-weight: 400;
  color: var(--phone-text-primary);
}
.photos-container .activephoto-container .photo-top .date span {
  font-size: 14px;
  font-weight: 400;
}
.photos-container .activephoto-container .photo-top svg {
  cursor: pointer;
  color: var(--phone-color-blue);
  font-size: 26px;
  text-align: right;
}
.photos-container .activephoto-container .image-overflow {
  display: flex;
  flex-direction: row;
  gap: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--phone-color-primary);
}
.photos-container .activephoto-container .image-overflow::-webkit-scrollbar {
  display: none !important;
}
.photos-container .activephoto-container .image-overflow img,
.photos-container .activephoto-container .image-overflow video {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  object-fit: contain;
  pointer-events: none;
}
.photos-container .activephoto-container .photo-bottom-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--phone-color-primary);
  position: absolute;
  bottom: 1rem;
  width: 100%;
}
.photos-container .activephoto-container .photo-bottom-wrapper .photo-carousel {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  gap: 0.25rem;
  padding-top: 0.5rem;
  width: 100%;
  background-color: var(--phone-color-primary);
}
.photos-container
  .activephoto-container
  .photo-bottom-wrapper
  .photo-carousel
  img,
.photos-container
  .activephoto-container
  .photo-bottom-wrapper
  .photo-carousel
  video {
  object-fit: cover;
  height: 4rem;
  width: 2.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.photos-container
  .activephoto-container
  .photo-bottom-wrapper
  .photo-carousel
  img:hover,
.photos-container
  .activephoto-container
  .photo-bottom-wrapper
  .photo-carousel
  video:hover {
  filter: brightness(0.8);
}
.photos-container
  .activephoto-container
  .photo-bottom-wrapper
  .photo-carousel
  img[data-active="true"],
.photos-container
  .activephoto-container
  .photo-bottom-wrapper
  .photo-carousel
  video[data-active="true"] {
  height: 5rem;
  width: 3.25rem;
  margin: 0 0.25rem;
}
.photos-container
  .activephoto-container
  .photo-bottom-wrapper
  .photo-carousel::-webkit-scrollbar {
  display: none !important;
}
.photos-container .activephoto-container .photo-bottom-wrapper .photo-bottom {
  width: 80%;
  padding: 1.5rem 2.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.photos-container
  .activephoto-container
  .photo-bottom-wrapper
  .photo-bottom
  svg {
  cursor: pointer;
  color: var(--phone-color-blue);
  font-size: 28px;
}
.photos-container .addtoalbum-container {
  position: absolute;
  bottom: 0;
  z-index: 5;
  width: 100%;
  height: 94%;
  background-color: var(--phone-color-highlight2);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.photos-container .addtoalbum-container .addtoalbum-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1rem;
}
.photos-container .addtoalbum-container .addtoalbum-header > div {
  flex: 1;
}
.photos-container .addtoalbum-container .addtoalbum-header .title {
  flex: auto;
  font-size: 20px;
  font-weight: 500;
  color: var(--phone-text-primary);
  text-align: center;
}
.photos-container .addtoalbum-container .addtoalbum-header .cancel {
  cursor: pointer;
  color: var(--phone-color-blue);
  font-size: 18px;
  text-align: end;
}
.photos-container .addtoalbum-container .addtoalbum-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  box-sizing: border-box;
  padding: 0 1rem 4rem;
  overflow-y: auto;
  overflow-x: hidden;
}
.photos-container .addtoalbum-container .addtoalbum-content::-webkit-scrollbar {
  display: none;
}
.photos-container .addtoalbum-container .addtoalbum-content .preview {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  width: 92%;
}
.photos-container .addtoalbum-container .addtoalbum-content .preview img,
.photos-container .addtoalbum-container .addtoalbum-content .preview video {
  height: 4rem;
  border-radius: 6px;
  object-fit: cover;
}
.photos-container .addtoalbum-container .addtoalbum-content .preview .title {
  font-size: 18px;
  font-weight: 500;
  color: var(--phone-text-primary);
}
.photos-container .addtoalbum-container .addtoalbum-content .albums {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}
.photos-container .addtoalbum-container .addtoalbum-content .albums .album {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.photos-container
  .addtoalbum-container
  .addtoalbum-content
  .albums
  .album:hover {
  filter: brightness(0.7);
}
.photos-container
  .addtoalbum-container
  .addtoalbum-content
  .albums
  .album
  .cover {
  position: relative;
  height: 10rem;
  width: 10rem;
}
.photos-container
  .addtoalbum-container
  .addtoalbum-content
  .albums
  .album
  .cover
  img,
.photos-container
  .addtoalbum-container
  .addtoalbum-content
  .albums
  .album
  .cover
  video {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0 0 10px #0000000d;
  object-fit: cover;
  object-position: center;
}
.photos-container
  .addtoalbum-container
  .addtoalbum-content
  .albums
  .album
  .title {
  font-size: 17px;
  color: var(--phone-text-primary);
  overflow: hidden;
}
.photos-container
  .addtoalbum-container
  .addtoalbum-content
  .albums
  .album
  .count {
  font-size: 16px;
  color: var(--phone-text-secondary);
}
[data-theme="light"] .appstore-container [data-big="false"] .app-icon {
  border: 1px solid rgba(51, 51, 51, 0.2);
}
[data-theme="light"] .appstore-container .images img {
  border: 2px solid rgba(51, 51, 51, 0.2);
}
[data-theme="light"] .appstore-container .button {
  background-color: #76768033;
}
[data-theme="light"] .appstore-container .button:hover {
  background-color: #76768066;
}
[data-theme="dark"] .appstore-container [data-big="false"] .app-icon {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
[data-theme="dark"] .appstore-container .images img {
  border: 2px solid rgba(255, 255, 255, 0.3);
}
[data-theme="dark"] .appstore-container .button {
  background-color: #b4b4b433;
}
[data-theme="dark"] .appstore-container .button:hover {
  background-color: #b4b4b466;
}
.appstore-container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--phone-color-primary);
  box-sizing: border-box;
}
.appstore-container .appstore-header {
  width: 90%;
  margin-top: 3.5rem;
  height: 6%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
}
.appstore-container .appstore-header[data-hidden="true"] {
  visibility: none;
}
.appstore-container .appstore-header .info {
  display: flex;
  flex-direction: column;
}
.appstore-container .appstore-header .info .date {
  font-weight: 400;
  font-size: 15px;
  color: var(--phone-text-secondary);
}
.appstore-container .appstore-header .info .back {
  margin-left: -0.75rem;
  display: flex;
  align-items: center;
  color: var(--phone-color-blue);
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
}
.appstore-container .appstore-header .info .back svg {
  font-size: 24px;
}
.appstore-container .appstore-header .info .title {
  color: var(--phone-text-primary);
  font-size: 28px;
  font-weight: 600;
}
.appstore-container .appstore-header svg {
  color: var(--phone-color-blue);
  font-size: 45px;
}
.appstore-container .appstore-wrapper {
  height: 100%;
  width: 90%;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 100%;
  padding-bottom: 2rem;
  box-sizing: border-box;
}
.appstore-container .appstore-wrapper::-webkit-scrollbar {
  display: none;
}
.appstore-container .appstore-wrapper .searchbox {
  width: 100%;
  margin-bottom: 1rem;
  background-color: var(--app-secondary2);
  padding: 0.45rem 1rem;
  border-radius: 12px;
  box-sizing: border-box;
}
.appstore-container .appstore-app {
  width: 100%;
}
.appstore-container .appstore-page {
  width: 100%;
  max-height: 37.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.appstore-container .appstore-page section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  width: 95%;
  box-sizing: border-box;
}
.appstore-container .appstore-page section .title {
  font-size: 22px;
  font-weight: 600;
  color: var(--phone-text-primary);
}
.appstore-container .appstore-page section .appstore-apps {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.appstore-container .appstore-page section .appstore-apps::-webkit-scrollbar {
  display: none;
}
.appstore-container .app-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--phone-color-border);
  box-sizing: border-box;
}
.appstore-container .app-item:last-child {
  border-bottom: none;
}
.appstore-container .app-item .upper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
}
.appstore-container .app-item .upper .info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
}
.appstore-container .app-item .upper .info[data-big="true"] {
  display: grid;
  justify-content: end;
  grid-auto-flow: column;
  gap: 0.75rem;
  height: 100%;
}
.appstore-container .app-item .upper .info[data-big="true"] .app-icon {
  width: 95px;
  height: 95px;
  border-radius: 20px;
}
.appstore-container .app-item .upper .info[data-big="true"] .app-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  height: 100%;
}
.appstore-container
  .app-item
  .upper
  .info[data-big="true"]
  .app-item-content
  .app-name {
  font-size: 20px;
}
.appstore-container
  .app-item
  .upper
  .info[data-big="true"]
  .app-item-content
  .app-description {
  width: 85%;
  color: var(--phone-text-secondary);
  font-size: 16px;
  font-weight: 400;
}
.appstore-container .app-item .upper .info[data-big="true"] .button {
  color: #fff;
  background-color: var(--phone-color-blue);
}
.appstore-container .app-item .upper .info .app-icon {
  width: 65px;
  height: 65px;
  border-radius: 10px;
  object-position: center;
  object-fit: cover;
}
.appstore-container .app-item .upper .info .app-item-content .app-name {
  font-size: 18px;
  font-weight: 400;
  color: var(--phone-text-primary);
}
.appstore-container .app-item .upper .info .app-item-content .app-description {
  color: var(--phone-text-secondary);
  font-size: 16px;
  font-weight: 400;
}
.appstore-container .app-item .upper .button {
  border-radius: 15px;
  padding: 0.3rem 1.3rem;
  color: var(--phone-color-blue);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  width: auto;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.appstore-container .app-item .upper svg {
  margin-right: 1.5rem;
}
.appstore-container .app-item .images {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.appstore-container .app-item .images[data-big="true"] {
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
  scroll-behavior: smooth;
}
.appstore-container .app-item .images[data-big="true"] img {
  max-height: 100%;
  width: 100%;
  border-radius: 10px;
}
.appstore-container .app-item .images[data-big="true"]::-webkit-scrollbar {
  display: none;
}
.appstore-container .app-item .images img {
  border-radius: 15px;
  height: 16rem;
  width: 7.5rem;
}
.appstore-container .app-item section {
  width: 100%;
  margin-top: 1rem;
}
.appstore-container .app-item section .title {
  font-size: 20px;
  font-weight: 500;
  color: var(--phone-text-primary);
}
.appstore-container .app-item section .items {
  margin-top: 0.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.appstore-container .app-item section .items .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid var(--phone-color-border);
  padding: 0.5rem 0;
}
.appstore-container .app-item section .items .item .title {
  color: var(--phone-text-secondary);
  font-size: 16px;
  font-weight: 400;
}
.appstore-container .app-item section .items .item .value {
  color: var(--phone-text-primary);
  font-size: 16px;
  font-weight: 500;
}
.app-wrapper {
  width: 100%;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.app-wrapper[data-editmode="true"] {
  animation-delay: -0.22s;
  animation-duration: 0.3s;
}
.app-wrapper[data-editmode="true"]:nth-child(2n) {
  animation-name: appJiggle;
  animation-iteration-count: infinite;
  transform-origin: 50% 10%;
}
.app-wrapper[data-editmode="true"]:nth-child(2n-1) {
  animation-name: appJiggle2;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transform-origin: 30% 5%;
}
.app-wrapper.invisible {
  opacity: 0;
  cursor: default;
}
.app-wrapper .image {
  position: relative;
  width: 64px;
  aspect-ratio: 1/1;
  border-radius: 12.5px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 0 10px #0000004d;
}
.app-wrapper .image[data-dummy="false"] {
  box-shadow: #3b3b3b4d 0 0 3px;
}
.app-wrapper .image .notifications {
  position: absolute;
  top: -0.28rem;
  right: 0.22rem;
  transform: translate(50%);
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--phone-color-red);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.app-wrapper .image .notifications[data-len="1"] {
  width: 20px;
  min-width: 20px;
  padding: 0;
  border-radius: 50%;
}
.app-wrapper .image .appDelete {
  position: absolute;
  top: -0.35rem;
  left: 0.25rem;
  width: 1.7rem;
  height: 1.7rem;
  background-color: #a7a7a7e6;
  border-radius: 50%;
  transform: translate(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  z-index: 99999999;
}
.app-wrapper .image .appDelete .appDeleteBlur {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.app-wrapper .image .appDelete i {
  position: absolute;
  color: #000;
  font-size: 17px;
}
.app-wrapper .name {
  font-size: 13px;
  line-height: 0px;
  padding-bottom: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.35);
}
.app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  transform-origin: center;
  transition: filter 0.2s ease-in-out;
}
.app:hover:not([data-downloading="true"]) {
  filter: brightness(0.6);
}
.app .progress-bar-container {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 12.5px;
  background-color: #0009;
}
.app .progress-bar-container .progress-bar {
  position: absolute;
  width: 70%;
  aspect-ratio: 1/1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #e6e6e633;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.5);
}
.drag-app {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -32px);
  padding: 3px;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: 100;
}
:root {
  --homescreen-page-padding: 20px;
}
.homescreen-container {
  width: calc(100% - var(--homescreen-page-padding) * 2);
  height: calc(100% - var(--homescreen-page-padding) * 2 - 3.25rem);
  padding: var(--homescreen-page-padding);
  padding-top: 4.5rem;
  border: none;
  border-radius: 45px;
}
.homescreen-container .wallpaper {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  background-color: #000;
  background-clip: padding-box;
  border-radius: 45px;
  filter: brightness(0.9);
}
.homescreen-container .wallpaper[data-blur="true"] {
  filter: brightness(0.9) blur(15px);
}
.page-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.page-container > div {
  position: absolute;
  width: 100%;
  left: 0%;
}
.page-container > div > div {
  position: absolute;
  width: 100%;
}
.bottom-container {
  position: absolute;
  bottom: 1rem;
  width: calc(100% - var(--homescreen-page-padding) * 2);
  pointer-events: none;
}
.bottom-container .favourites {
  pointer-events: all;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: var(--phone-color-opacity);
  padding: 1rem 0.5rem;
  border-radius: 30px;
}
.bottom-container .favourites .app-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom-container .favourites > div {
  width: 100%;
}
.app-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: space-evenly;
  -webkit-user-select: none;
  user-select: none;
}
.page-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 84px;
}
.page-indicator > div {
  display: flex;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: all;
  cursor: pointer;
  z-index: 1;
}
.page-indicator > div .indicator {
  content: " ";
  width: 7px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.3);
}
.page-indicator > div .indicator:hover {
  background: rgba(255, 255, 255, 0.5);
}
.page-indicator > div .indicator.current {
  background: white;
}
#left-navigation-area,
#right-navigation-area {
  position: absolute;
  top: 0;
  width: var(--homescreen-page-padding);
  height: 100%;
}
#left-navigation-area {
  left: 0;
}
#right-navigation-area {
  right: 0;
}
.showimage-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999999998;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  overflow: hidden;
}
.showimage-container .showimage-image {
  width: 97%;
  height: 98.6%;
  margin: 0;
  background-color: #000000d9;
  border-radius: 55px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
}
.showimage-container .showimage-image img,
.showimage-container .showimage-image video {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.showimage-container .showimage-image .text {
  font-family: Roboto;
  font-style: normal;
  font-size: 13px;
  color: #c9c9c9;
  cursor: pointer;
}
.showimage-container .showimage-image .text:hover {
  text-decoration: underline;
}
[data-theme="light"] .notification[data-locked="false"] .notification-wrapper {
  background-color: #b4b4b4b3;
}
[data-theme="dark"] .notification[data-locked="false"] .notification-wrapper {
  background-color: #292929cc;
}
[data-theme="dark"] .notification .title {
  font-weight: 500;
  opacity: 0.75;
}
.notification-container {
  position: absolute;
  z-index: 500;
  top: 1rem;
  width: 100%;
  overflow: hidden;
}
.notification-container .notification-wrapper {
  margin-top: 3.5rem;
}
.notification {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Roboto;
  z-index: 500;
  left: 0;
  right: 0;
  width: 24rem;
  position: relative;
  cursor: pointer;
}
.notification[data-locked="true"] {
  margin: 0 auto;
  z-index: 1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 18px;
}
.notification[data-locked="true"] > div {
  background-color: var(--notification-primary);
}
.notification[data-locked="true"] .notification-wrapper {
  position: relative;
}
.notification[data-locked="true"] .notification-wrapper .notification-content {
  padding-left: 0.75rem;
}
.notification[data-locked="false"] {
  margin: auto;
}
.notification .stack {
  bottom: -0.4rem;
  position: absolute;
  width: 90%;
  height: 0.4rem;
  z-index: -1 !important;
  border-radius: 0 0 18px 18px;
}
.notification .notification-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  border-radius: 18px;
  width: 100%;
  box-sizing: border-box;
  z-index: 1;
}
.notification .notification-wrapper .notification-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  width: 95%;
  padding: 0.9rem 1rem 0.9rem 1.25rem;
}
.notification .notification-wrapper .notification-content[data-actions="true"] {
  padding-bottom: 0.3rem;
}
.notification .icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
}
.notification .avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.notification .avatar .app-icon {
  position: absolute;
  z-index: 1;
  bottom: -0.25rem;
  right: -0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 5px;
}
.notification .info {
  display: flex;
  flex-direction: column;
  width: 85%;
}
.notification .info[data-icon="false"] {
  width: 100%;
}
.notification .info .notification-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: var(--phone-text-primary);
  font-weight: 500;
}
.notification .info .notification-header .title {
  font-size: 16px;
  font-weight: 500;
  color: var(--phone-text-primary);
}
.notification .info .notification-header .time {
  opacity: 0.6;
}
.notification .info .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  opacity: 0.8;
}
.notification .info .content .text {
  width: 80%;
  overflow-wrap: break-word;
  font-size: 16px;
  font-weight: 500;
  color: var(--phone-text-primary);
}
.notification .info .content .thumbnail {
  width: 2.5rem;
  height: 2.5rem;
}
.notification .info .content img,
.notification .info .content video {
  margin-top: 0.25rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.notification .notification-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 93%;
  border-radius: 0 0 18px 18px;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background-color: var(--notification-secondary);
}
.notification .notification-actions .action {
  padding: 0.5rem 1rem;
  background-color: var(--controlcentre-opacity2);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--phone-text-primary);
  cursor: pointer;
  transition: filter 0.2s ease-in-out;
}
.notification .notification-actions .action:hover {
  filter: brightness(0.8);
}
.lockscreen-notification-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.75rem;
  z-index: 1;
  height: 100%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  padding-bottom: 1rem;
  scroll-snap-align: start;
}
.lockscreen-notification-container .notification-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
@keyframes loadNotification {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes clear {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.notch-container {
  position: absolute;
  height: 2.25rem;
  display: flex;
  justify-content: center;
  width: 100%;
  top: 1.2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9999;
  pointer-events: none;
}
.notch-wrapper {
  height: 2.25rem;
  width: 30%;
  background-color: #000;
  border-radius: 25px;
  cursor: pointer;
  position: relative;
  pointer-events: all;
  overflow: hidden;
}
.notch-wrapper .notch {
  z-index: 999999;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.notch-wrapper .notch .notch-content {
  width: 100%;
  height: 100%;
  position: relative;
}
.notch-wrapper .notch .notch-content[data-expanded="true"] .incoming-call {
  padding: 2rem 1rem;
}
.notch-wrapper .notch .notch-content[data-expanded="true"] .timer {
  padding: 2rem 1.5rem;
}
.notch-wrapper .notch .notch-content > div {
  box-sizing: border-box;
}
.notch-wrapper .notch .notch-content .airdrop-mode {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-sizing: border-box;
  padding: 2.5rem 2rem 2rem;
}
.notch-wrapper .notch .notch-content .airdrop-mode .airdrop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
.notch-wrapper
  .notch
  .notch-content
  .airdrop-mode
  .airdrop-header
  .text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.notch-wrapper
  .notch
  .notch-content
  .airdrop-mode
  .airdrop-header
  .text-content
  .title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.notch-wrapper
  .notch
  .notch-content
  .airdrop-mode
  .airdrop-header
  .text-content
  .description {
  font-size: 16px;
  color: #6f6f6f;
}
.notch-wrapper .notch .notch-content .airdrop-mode .airdrop-header .attachment {
  height: 7rem;
  aspect-ratio: 1/1;
}
.notch-wrapper
  .notch
  .notch-content
  .airdrop-mode
  .airdrop-header
  .attachment
  img,
.notch-wrapper
  .notch
  .notch-content
  .airdrop-mode
  .airdrop-header
  .attachment
  video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 12px;
}
.notch-wrapper .notch .notch-content .airdrop-mode .airdrop-header .avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 4px 15px #00000040;
}
.notch-wrapper
  .notch
  .notch-content
  .airdrop-mode
  .airdrop-header
  .avatar:not([data-hasavatar="true"]):not(:has(img)) {
  background: linear-gradient(180deg, #e3e3e3, #999999);
}
.notch-wrapper
  .notch
  .notch-content
  .airdrop-mode
  .airdrop-header
  .placeholder {
  height: 7rem;
  aspect-ratio: 1/1;
}
.notch-wrapper .notch .notch-content .airdrop-mode .buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.notch-wrapper .notch .notch-content .airdrop-mode .buttons .button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 24px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #fafafa;
  background-color: #4d4d4d;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.notch-wrapper .notch .notch-content .airdrop-mode .buttons .button:hover {
  filter: brightness(0.75);
}
.notch-wrapper .notch .notch-content .airdrop-mode .buttons .button.blue {
  background-color: #2848a180;
  color: #2fa1ff;
}
.notch-wrapper .notch .notch-content .silent-mode {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.6rem;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.notch-wrapper .notch .notch-content .silent-mode[data-red="true"] {
  color: var(--phone-color-red);
  font-weight: 600;
}
.notch-wrapper .notch .notch-content .silent-mode[data-red="true"] svg {
  background-color: var(--phone-color-red);
  padding: 0.15rem 1rem;
  border-radius: 10px;
  margin-left: -0.15rem;
}
.notch-wrapper .notch .notch-content .silent-mode svg {
  font-size: 18px;
  margin-right: -0.4rem;
  color: #fff;
}
.notch-wrapper .notch .notch-content .call {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.75rem;
}
.notch-wrapper .notch .notch-content .call .left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.notch-wrapper .notch .notch-content .call .left img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
}
.notch-wrapper .notch .notch-content .call .left .user {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: 0.5rem;
}
.notch-wrapper .notch .notch-content .call .left .user .info {
  color: #6f6f6f;
  font-size: 14px;
}
.notch-wrapper .notch .notch-content .call .left .user .name {
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}
.notch-wrapper .notch .notch-content .call .left .user .elapsed {
  color: var(--phone-color-green);
  font-size: 13px;
}
.notch-wrapper .notch .notch-content .call .left.green {
  display: flex;
  align-items: center;
  color: var(--phone-color-green);
  font-size: 12px;
  font-weight: 500;
}
.notch-wrapper .notch .notch-content .call .left.green svg {
  font-size: 16px;
  margin-right: -0.4rem;
}
.notch-wrapper .notch .notch-content .call .right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.notch-wrapper .notch .notch-content .call .right .button {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.notch-wrapper .notch .notch-content .call .right .button svg {
  font-size: 25px;
  color: #fff;
}
.notch-wrapper .notch .notch-content .call .right .button.red {
  background-color: var(--phone-color-red);
}
.notch-wrapper .notch .notch-content .call .right .button.green {
  background-color: var(--phone-color-green);
}
.notch-wrapper .notch .notch-content .call .right .button.black {
  background-color: #141414;
}
.notch-wrapper .notch .notch-content .call .right .button.rotate {
  transform: rotate(135deg);
}
.notch-wrapper .notch .notch-content .call .right .button:hover {
  filter: brightness(0.75);
}
.notch-wrapper .notch .notch-content .music {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.75rem;
}
.notch-wrapper .notch .notch-content .music.full {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 2rem;
  padding-top: 0;
}
.notch-wrapper .notch .notch-content .music .left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.notch-wrapper .notch .notch-content .music .left img {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 30%;
  object-fit: cover;
}
.notch-wrapper .notch .notch-content .music .right {
  display: flex;
  align-items: center;
}
.notch-wrapper .notch .notch-content .music .right canvas {
  margin-right: -0.3rem;
}
.notch-wrapper .notch .notch-content .music .song {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 1.5rem;
}
.notch-wrapper .notch .notch-content .music .song .song-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}
.notch-wrapper .notch .notch-content .music .song .song-info img {
  width: 4rem;
  height: 4rem;
  border-radius: 30%;
  object-fit: cover;
}
.notch-wrapper .notch .notch-content .music .song .song-info .info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.notch-wrapper .notch .notch-content .music .song .song-info .info .name {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  line-height: 15px;
}
.notch-wrapper .notch .notch-content .music .song .song-info .info .artist {
  color: #6f6f6f;
  font-size: 16px;
  font-weight: 500;
}
.notch-wrapper .notch .notch-content .music .music-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}
.notch-wrapper .notch .notch-content .music .music-slider input {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  outline: none;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  border-radius: 20px;
}
.notch-wrapper
  .notch
  .notch-content
  .music
  .music-slider
  input::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.4rem;
  cursor: pointer;
}
.notch-wrapper
  .notch
  .notch-content
  .music
  .music-slider
  input::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 1.5rem;
  width: 1.5rem;
  cursor: pointer;
}
.notch-wrapper .notch .notch-content .music .music-slider input:focus {
  outline: none;
}
.notch-wrapper .notch .notch-content .music .music-slider .duration {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  opacity: 0.8;
}
.notch-wrapper .notch .notch-content .music .music-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: -0.25rem;
}
.notch-wrapper .notch .notch-content .music .music-controls svg {
  font-size: 38px;
  color: #fff;
}
.notch-wrapper .notch .notch-content .music .music-controls svg.pause {
  font-size: 45px;
}
.notch-wrapper .notch .notch-content .timer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.75rem;
}
.notch-wrapper .notch .notch-content .timer .left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.notch-wrapper .notch .notch-content .timer .left svg {
  font-size: 23px;
  color: var(--phone-color-orange);
}
.notch-wrapper .notch .notch-content .timer .left .button {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.notch-wrapper .notch .notch-content .timer .left .button:last-child svg {
  font-size: 33px;
  stroke-width: 10;
}
.notch-wrapper .notch .notch-content .timer .left .button svg {
  font-size: 30px;
  color: #fff;
  stroke-width: 20;
}
.notch-wrapper .notch .notch-content .timer .left .button.black {
  background-color: #141414;
}
.notch-wrapper .notch .notch-content .timer .left .button.orange {
  background-color: #ff9d0a4d;
}
.notch-wrapper .notch .notch-content .timer .left .button.orange svg {
  color: var(--phone-color-yellow);
}
.notch-wrapper .notch .notch-content .timer .left .button:hover {
  filter: brightness(0.75);
}
.notch-wrapper .notch .notch-content .timer .right {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
  font-size: 13px;
  color: var(--phone-color-orange);
  font-weight: 500;
}
.notch-wrapper .notch .notch-content .timer .right .label {
  font-size: 18px;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.notch-wrapper .notch .notch-content .timer .right .time {
  font-size: 45px;
  font-weight: 300;
}
:root {
  --phone-frame-color: #39334d;
}
.phone-frame {
  position: absolute;
  width: 92%;
  height: 98%;
  border-radius: 60px;
  background-color: #000;
  box-shadow:
    0 0 0.1em 0.25em var(--phone-frame-color),
    0 0 0 0.4em #d3cde4;
  z-index: 1;
}
.phone-frame .frame-buttons {
  position: absolute;
  top: -0.4em;
  right: -0.4em;
  bottom: -0.4em;
  left: -0.4em;
  pointer-events: none;
}
.phone-frame .frame-buttons .left,
.phone-frame .frame-buttons .right {
  position: absolute;
  width: 0.333em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5em;
}
.phone-frame .frame-buttons .left {
  right: 100%;
  top: 10rem;
}
.phone-frame .frame-buttons .left .frame-button {
  cursor: pointer;
  pointer-events: all;
  border-radius: 0.75em 0 0 0.75em;
}
.phone-frame .frame-buttons .left .frame-button:nth-child(1) {
  height: 3em;
  margin-bottom: 0.5em;
}
.phone-frame .frame-buttons .right {
  left: 100%;
  transform: scale3d(-1, 1, 1);
  top: 16rem;
}
.phone-frame .frame-buttons .right .frame-button {
  pointer-events: all;
  cursor: pointer;
  border-radius: 0.75em 0 0 0.75em;
  height: 6em;
}
.phone-frame .frame-buttons .frame-button {
  background: var(--phone-frame-color);
  height: 4em;
  box-shadow:
    inset -0.15em 0 0.1em #000,
    inset 0 0 0.1em var(--phone-frame-color),
    inset 0 0.2em 0.1em var(--phone-frame-color),
    inset 0 -0.2em 0.1em var(--phone-frame-color),
    inset -0.1em 0.333em 0.1em #00000080,
    inset -0.1em -0.333em 0.1em #00000080;
  border-top-left-radius: 0.2em;
  border-bottom-left-radius: 0.2em;
}
.phone-frame .phone-camera {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
  z-index: 9999999999999;
  right: 10rem;
  cursor: default;
}
.phone-frame .phone-camera:before {
  content: "";
  height: 33.3%;
  aspect-ratio: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0.25em #4c4da3;
  background:
    radial-gradient(#6667ac, transparent 50%) no-repeat 33.3% 10%/75% 50%,
    radial-gradient(#454680, transparent 50%) no-repeat 60% 85%/50% 50%;
  opacity: 0.75;
  background-color: #080928;
}
.phone-frame .old-notch {
  position: absolute;
  z-index: 999;
  top: 0.62rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 40%;
  height: 2.63rem;
  background-color: #000;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  pointer-events: none;
}
.phone-frame .old-notch:before,
.phone-frame .old-notch:after {
  content: "";
  position: absolute;
  border: none;
  height: 10px;
  height: 20px;
  width: 20px;
  top: 0;
}
.phone-frame .old-notch:after {
  right: -20px;
  border-radius: 10px 0 0;
  box-shadow: -10px 0 #000;
}
.phone-frame .old-notch:before {
  left: -20px;
  border-radius: 0 10px 0 0;
  box-shadow: 10px 0 #000;
}
.phone-frame .old-notch .phone-camera {
  left: 0.5rem;
  right: inherit;
}
.phone-frame .phone-content {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 55px;
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.indicator-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 10rem;
  height: 10px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 0.5rem;
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: none;
}
.indicator-container .home-indicator {
  width: 9rem;
  height: 5px;
  border-radius: 4px;
}
.pin-circles {
  margin-top: 1rem;
  width: 45%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.pin-circles .circle {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  opacity: 0.7;
  border: 2px solid var(--phone-text-primary);
}
.pin-circles .fill {
  background-color: var(--phone-text-primary);
}
.pin-circles.white .circle {
  border: 2px solid #ffffff;
}
.pin-circles.white .fill {
  background-color: #fff;
}
.wrong {
  -webkit-animation: wrongCode 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  animation: wrongCode 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
@keyframes wrongCode {
  10% {
    -webkit-transform: translateX(20%);
    transform: translate(20%);
  }
  30% {
    -webkit-transform: translateX(-20%);
    transform: translate(-20%);
  }
  60% {
    -webkit-transform: translateX(20%);
    transform: translate(20%);
  }
  to {
    -webkit-transform: translateX(0%);
    transform: translate(0);
  }
}
.lockscreen-editor {
  position: absolute;
  z-index: 10;
  bottom: 0 !important;
  height: 27rem;
  width: 100%;
  padding: 1.25rem 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background-color: var(--lockscreeneditor-background);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.lockscreen-editor .lockscreen-editor-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.25rem;
  box-sizing: border-box;
}
.lockscreen-editor .lockscreen-editor-header .close {
  background-color: #696969;
  width: 5rem;
  height: 0.3rem;
  border-radius: 5px;
  cursor: pointer;
}
.lockscreen-editor .lockscreen-editor-header .selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--lockscreeneditor-secondary);
  padding: 0.35rem 0.4rem;
  border-radius: 8px;
}
.lockscreen-editor .lockscreen-editor-header .selector .item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--phone-text-primary);
  padding: 0.45rem 3.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.lockscreen-editor .lockscreen-editor-header .selector .item:hover {
  background-color: var(--phone-color-primary);
  filter: brightness(0.9);
}
.lockscreen-editor
  .lockscreen-editor-header
  .selector
  .item[data-active="true"] {
  background-color: var(--phone-color-primary);
}
.lockscreen-editor .lockscreen-editor-content {
  display: flex;
  flex-direction: column;
}
.lockscreen-editor .lockscreen-editor-content .lockscreen-layout-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  justify-content: center;
  gap: 0.75rem 1rem;
  padding: 0 1.25rem 0.8rem;
  box-sizing: border-box;
}
.lockscreen-editor .lockscreen-editor-content .lockscreen-layout-grid .item {
  display: flex;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0.4rem 0.65rem;
  border-radius: 15px;
  border: 4px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-layout-grid
  .item
  .time-container {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-layout-grid
  .item
  .time-container
  .time {
  font-size: 35px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-layout-grid
  .item
  .time-container
  .date {
  font-size: 14px;
  font-weight: 400;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
  margin-top: -0.5rem;
}
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-layout-grid
  .item[data-layout="1"],
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-layout-grid
  .item[data-layout="2"] {
  justify-content: center;
}
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-layout-grid
  .item[data-layout="2"]
  .time {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-layout-grid
  .item[data-layout="2"]
  .time
  span {
  line-height: 1.85rem;
}
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-layout-grid
  .item[data-layout="2"]
  .time
  span:last-child {
  margin-bottom: 0.25rem;
}
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-layout-grid
  .item[data-layout="3"] {
  justify-content: flex-start;
}
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-layout-grid
  .item[data-layout="4"] {
  justify-content: flex-end;
}
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-layout-grid
  .item:hover,
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-layout-grid
  .item[data-active="true"] {
  border: 4px solid var(--phone-color-blue);
}
.lockscreen-editor .lockscreen-editor-content .lockscreen-editor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem 1rem;
  width: 100%;
  padding: 0 1.25rem;
  box-sizing: border-box;
  margin-bottom: 0.75rem;
}
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-editor-grid
  .grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 90%;
  font-size: 60px;
  text-align: center;
  color: var(--phone-text-primary);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: 4px solid transparent;
}
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-editor-grid
  .grid-item:hover,
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-editor-grid
  .grid-item[data-active="true"] {
  border: 4px solid var(--phone-color-blue);
}
.lockscreen-editor .lockscreen-editor-content .lockscreen-editor-colors {
  display: flex;
  align-items: center;
  overflow-x: auto;
  overflow-y: none;
  scroll-behavior: smooth;
  gap: 0.75rem;
  width: 100%;
  border-top: 3px solid var(--phone-color-border);
  padding: 1.25rem 2rem 1rem 1rem;
  box-sizing: border-box;
}
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-editor-colors::-webkit-scrollbar {
  display: none;
}
.lockscreen-editor .lockscreen-editor-content .lockscreen-editor-colors .color {
  height: 2.25rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  border: 4px solid transparent;
  box-shadow: 1px 1px 10px #0000001a;
}
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-editor-colors
  .color:hover,
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-editor-colors
  .color[data-active="true"] {
  border: 4px solid var(--phone-color-blue);
}
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-editor-colors
  .color:first-child {
  margin-left: 1rem;
}
.lockscreen-editor
  .lockscreen-editor-content
  .lockscreen-editor-colors
  .color:last-child {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 2.4rem;
}
[data-style="1"] {
  font-family:
    Nunito Black,
    sans-serif;
}
[data-style="2"] {
  font-family: Library3am, sans-serif;
}
[data-style="3"] {
  font-family: Gloock, sans-serif;
}
[data-style="4"] {
  font-family:
    Protest Guerrilla,
    sans-serif;
}
[data-style="5"] {
  font-family: Limelight, sans-serif;
}
[data-style="6"] {
  font-family: AbrilFatface, sans-serif;
}
[data-style="7"] {
  font-family: Inter, sans-serif;
}
[data-style="8"] {
  font-family: Monoton, sans-serif;
}
@font-face {
  font-family: Protest Guerrilla;
  src: url(/ui/dist/assets/fonts/lockscreen/ProtestGuerrilla.ttf);
}
@font-face {
  font-family: Nunito Black;
  src: url(/ui/dist/assets/fonts/lockscreen/Nunito-Black.ttf);
}
@font-face {
  font-family: Monoton;
  src: url(/ui/dist/assets/fonts/lockscreen/Monoton.ttf);
}
@font-face {
  font-family: Library3am;
  src: url(/ui/dist/assets/fonts/lockscreen/Library3am.otf);
}
@font-face {
  font-family: Gloock;
  src: url(/ui/dist/assets/fonts/lockscreen/Gloock.ttf);
}
@font-face {
  font-family: Limelight;
  src: url(/ui/dist/assets/fonts/lockscreen/Limelight.ttf);
}
@font-face {
  font-family: AbrilFatface;
  src: url(/ui/dist/assets/fonts/lockscreen/AbrilFatface.ttf);
}
@font-face {
  font-family: Nunito-Medium;
  src: url(/ui/dist/assets/fonts/lockscreen/Nunito-Medium.ttf);
}
[data-theme="light"] .music-player-container,
[data-theme="light"] .lockscreen-editor {
  background-color: #c8c8c899;
}
[data-theme="dark"] .music-player-container,
[data-theme="dark"] .lockscreen-editor {
  background-color: #14141466;
}
.lockscreen {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 95;
  overflow-y: hidden;
  scroll-behavior: smooth;
  background-position: center;
  background-size: cover;
  top: 0;
}
.lockscreen::-webkit-scrollbar {
  display: none;
}
.lockscreen .pin-blur {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 105%;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.lockscreen .top {
  position: relative;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0.5rem;
  padding-top: 16%;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}
.lockscreen .top svg {
  font-size: 30px;
  margin-bottom: 1rem;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.2));
}
.lockscreen .top .time-container {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  border: 4px solid transparent;
  border-radius: 15px;
  transition: all 0.2s ease-in-out;
}
.lockscreen .top .time-container[data-layout="1"],
.lockscreen .top .time-container[data-layout="2"] {
  align-items: center;
}
.lockscreen .top .time-container[data-layout="2"] .time {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lockscreen .top .time-container[data-layout="3"] {
  align-items: flex-start;
  justify-content: flex-start;
  margin-right: auto;
}
.lockscreen .top .time-container[data-layout="4"] {
  align-items: flex-end;
  margin-left: auto;
}
.lockscreen .top .time-container[data-editmode="true"] {
  border-color: #ffffff4d;
}
.lockscreen .top .time-container > div {
  text-align: center;
}
.lockscreen .top .time-container .time {
  font-size: 95px;
  letter-spacing: -2px;
  line-height: 5rem;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.3);
}
.lockscreen .top .time-container .date {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  font-family: Nunito-Medium, sans-serif;
}
.lockscreen .music-player-container {
  width: 85%;
  border-radius: 25px;
  padding: 1rem 1rem 0.75rem;
  margin-top: 1.5rem;
  position: relative;
}
.lockscreen .music-player-container .blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 25px;
}
.lockscreen .music-player-container .music-player-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}
.lockscreen .music-player-container .music-player-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.lockscreen .music-player-container .music-player-header .music-player-song {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}
.lockscreen
  .music-player-container
  .music-player-header
  .music-player-song
  .artwork {
  height: 4rem;
  width: 4rem;
  border-radius: 7px;
}
.lockscreen
  .music-player-container
  .music-player-header
  .music-player-song
  .music-player-info {
  display: flex;
  flex-direction: column;
}
.lockscreen
  .music-player-container
  .music-player-header
  .music-player-song
  .music-player-info
  .title {
  font-weight: 500;
  font-size: 17px;
  color: var(--phone-text-primary);
  line-height: 15px;
}
.lockscreen
  .music-player-container
  .music-player-header
  .music-player-song
  .music-player-info
  .artist {
  margin-top: 0.1rem;
  font-size: 16px;
  opacity: 0.6;
  color: var(--phone-text-primary);
  font-weight: 500;
}
.lockscreen .music-player-container .music-player-header canvas {
  margin-bottom: 1.5rem;
}
.lockscreen .music-player-container .duration-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}
.lockscreen .music-player-container .duration-slider input {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  outline: none;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  border-radius: 20px;
}
.lockscreen
  .music-player-container
  .duration-slider
  input::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  cursor: pointer;
}
.lockscreen
  .music-player-container
  .duration-slider
  input::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 1.5rem;
  width: 1.5rem;
  cursor: pointer;
}
.lockscreen .music-player-container .duration-slider input:focus {
  outline: none;
}
.lockscreen .music-player-container .duration-slider .duration {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--phone-text-primary);
  font-weight: 500;
  opacity: 0.7;
}
.lockscreen .music-player-container .music-player-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 65%;
}
.lockscreen .music-player-container .music-player-actions svg {
  background-color: inherit;
  color: var(--phone-text-primary);
  padding: 0;
  font-size: 35px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.lockscreen .music-player-container .music-player-actions svg:hover {
  transform: scale(1.1);
  filter: brightness(0.7);
}
.lockscreen .music-player-container .music-player-actions .pause svg {
  font-size: 45px;
  stroke-width: 20;
}
.lockscreen .actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 2.75rem;
  z-index: 8;
  opacity: 1;
  width: 85%;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.lockscreen .actions.hidden {
  opacity: 0;
}
.lockscreen .actions svg {
  padding: 0.75rem;
  border-radius: 50%;
  font-size: 30px;
  background-color: var(--controlcentre-active);
  color: var(--phone-text-primary);
  transition: all 0.2s ease-in-out;
}
.lockscreen .actions svg:nth-child(1) {
  rotate: -45deg;
}
.lockscreen .actions svg:hover {
  filter: brightness(1.3);
  scale: 1.03;
}
.lockscreen .actions svg[data-active="true"] {
  background-color: #fff;
  color: #000;
}
.lockscreen .pin-wrapper {
  position: relative;
  padding-top: 15%;
  background: rgba(0, 0, 0, 0.35);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lockscreen .pin-wrapper .pin {
  animation: slideDown 1s cubic-bezier(0.19, 1, 0.22, 1);
  width: 80%;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  color: #fff;
}
.lockscreen .pin-wrapper .pin .title {
  margin-top: 5rem;
  font-size: 22px;
  font-weight: 400;
}
.lockscreen .pin-wrapper .pin .numbers {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-columns: repeat(3, 1fr);
  gap: 2rem;
}
.lockscreen .pin-wrapper .pin .numbers div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(145, 145, 145, 0.2);
  border-radius: 50%;
  height: 5rem;
  width: 5rem;
  text-align: center;
  font-size: 34px;
  font-family: Roboto;
  font-weight: 400;
}
.lockscreen .pin-wrapper .pin .numbers div:hover {
  cursor: pointer;
  background: rgba(145, 145, 145, 0.55);
}
.lockscreen .pin-wrapper .pin .numbers div span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
}
.lockscreen .pin-wrapper .pin .bottom {
  z-index: 1;
  margin-top: 6rem;
  font-size: 17px;
}
.lockscreen .pin-wrapper .pin .bottom:hover {
  cursor: pointer;
}
.header {
  position: absolute;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 1.2rem 2rem;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: 0.5s;
  z-index: 99;
  pointer-events: none;
}
.header .header-editMode {
  width: 98%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: all;
}
.header .header-editMode .button {
  border-radius: 20px;
  height: 1.5rem;
  width: auto;
  padding: 0 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #a7a7a7bf;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 16px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
}
.header .header-editMode .button:first-child {
  font-size: 25px;
  font-weight: 400;
  padding: 0 1.5rem;
}
.header .time {
  display: flex;
  align-items: center;
  margin-left: 0.8rem;
}
.header .time.incall {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #08e045bf;
  transition: all 0.5s;
  padding: 0 1rem;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  pointer-events: all;
  margin-left: 0;
}
.header .right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-right: 0.4rem;
  font-weight: 500;
}
.header .right .top {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 500;
  gap: 0.35rem;
  width: 100%;
}
.header .right .top[data-theme="dark"] .service div {
  background-color: #1e1e1e80;
}
.header .right .top[data-theme="dark"] .service div[data-active="true"] {
  background-color: #000;
}
.header .right svg {
  font-size: 17px;
  padding: -0.25rem;
}
.header .right .service {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0.15rem;
}
.header .right .service div {
  background-color: #ffffff80;
  transition: 0.5s;
  height: 0.8rem;
  width: 0.21em;
  border-radius: 2.5px;
}
.header .right .service div:nth-child(1) {
  height: 0.25rem;
}
.header .right .service div:nth-child(2) {
  height: 0.45rem;
}
.header .right .service div:nth-child(3) {
  height: 0.6rem;
}
.header .right .service div[data-active="true"] {
  background-color: #fff;
}
.header .right .control-centre-bar {
  width: 90%;
  height: 0.25rem;
  cursor: pointer;
  pointer-events: all;
  border-radius: 5px;
  transition: 0.5s;
}
.volume-master-wrapper {
  position: absolute;
  z-index: 999;
  left: 0.1rem;
  top: 17.75rem;
  height: 3rem;
  width: 4.5rem;
}
.volume-master-wrapper .volume-master {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.volume-master-wrapper .volume-master svg {
  position: absolute;
  bottom: -2.5rem;
  font-size: 25px;
  color: #14141480;
  cursor: pointer;
  pointer-events: none;
}
.volume-master-wrapper .volume-master svg.white {
  color: #ffffff80;
}
.volume-master-wrapper .volume-master input {
  position: absolute;
  width: 215%;
  height: 100%;
  background-color: #fff;
  border-radius: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transform: rotate(-90deg);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.volume-master-wrapper .volume-master input:focus {
  outline: none;
}
.volume-master-wrapper .volume-master input::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin: 0 1rem;
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 50%;
  background: transparent;
}
.volume-master-wrapper .volume-master input::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}
[data-theme="light"] .numpad div {
  background-color: #fff;
}
[data-theme="dark"] .numpad div {
  background-color: #636366;
}
.numpad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.numpad div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.2rem 1rem;
  color: var(--phone-text-primary);
  font-size: 26px;
  font-family: Roboto;
  font-weight: 400;
  border-radius: 5px;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}
.numpad div:hover {
  filter: brightness(0.8);
}
.numpad div span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
}
.numpad div.zero {
  padding: 0.75rem;
}
.numpad span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.numpad span i {
  cursor: pointer;
  font-size: 25px;
  color: var(--phone-text-primary);
  transition: all 0.1s ease-in-out;
}
.numpad span i:hover {
  color: var(--phone-text-secondary);
}
[data-theme="dark"] .faceid {
  filter: invert(100%);
}
.setup-container {
  height: 100%;
  width: 100%;
  background-color: var(--phone-color-primary);
  position: relative;
  transition: background-color 0.3s ease-in-out;
}
.setup-container div {
  transition:
    background-color,
    color 0.3s ease-in-out;
}
.setup-container .setup-header {
  left: 1.5rem;
  top: 4rem;
  position: absolute;
  z-index: 1;
}
.setup-container .setup-header svg {
  font-size: 25px;
  cursor: pointer;
  color: var(--phone-text-primary);
  pointer-events: all;
}
.setup-container .setup-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding-top: 7rem;
  box-sizing: border-box;
}
.setup-container .setup-wrapper .titleContainer,
.setup-container .setup-wrapper .footer {
  transition: opacity 1s ease-in-out;
}
.setup-container .setup-wrapper .titleContainer {
  margin: auto;
  font-weight: 500;
  font-size: 4rem;
  color: var(--phone-text-primary);
  opacity: 1;
}
.setup-container .setup-wrapper .titleContainer.small {
  font-size: 2rem;
}
.setup-container .setup-wrapper .footer {
  margin-bottom: 2rem;
  font-weight: 400;
  font-size: 17px;
  color: var(--phone-text-primary);
  opacity: 1;
}
.setup-container .setup-wrapper .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
.setup-container .setup-wrapper .content .icon img {
  width: 3rem;
}
.setup-container .setup-wrapper .content .title {
  font-size: 35px;
  font-weight: 600;
  color: var(--phone-text-primary);
}
.setup-container .setup-wrapper .content .subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 20px;
  font-weight: 500;
  color: var(--phone-text-secondary);
  text-align: center;
  width: 70%;
  margin-top: 2rem;
}
.setup-container .setup-wrapper .content .subtitle svg {
  font-size: 25px;
}
.setup-container .setup-wrapper .content .description {
  font-size: 16px;
  font-weight: 400;
  color: var(--phone-text-secondary);
  text-align: center;
  width: 70%;
}
.setup-container .setup-wrapper .actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: absolute;
  bottom: 2.5rem;
}
.setup-container .setup-wrapper .button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: var(--phone-color-blue);
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  padding: 0.75rem 1.5rem;
  margin-top: 15rem;
}
.setup-container .setup-wrapper .highlight {
  font-size: 17px;
  font-weight: 500;
  color: var(--phone-color-blue);
  text-align: center;
  cursor: pointer;
}
.setup-container .setup-wrapper .setup-chooseLanguage {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.setup-container .setup-wrapper .setup-chooseLanguage .languages {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 1rem;
  padding-bottom: 3rem;
}
.setup-container
  .setup-wrapper
  .setup-chooseLanguage
  .languages::-webkit-scrollbar {
  display: none;
}
.setup-container .setup-wrapper .setup-chooseLanguage .languages .item {
  width: 70%;
  background-color: var(--phone-color-highlight2);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
}
.setup-container .setup-wrapper .setup-chooseLanguage .languages .item .label {
  color: var(--phone-text-primary);
}
.setup-container .setup-wrapper .setup-chooseLanguage .languages .item svg {
  font-size: 18px;
  color: var(--phone-text-primary);
}
.setup-container .setup-wrapper .setup-passcode {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 1rem;
}
.setup-container .setup-wrapper .setup-passcode .input {
  position: absolute;
}
.setup-container .setup-wrapper .setup-passcode .highlight {
  margin-top: 1rem;
}
.setup-container .setup-wrapper .setup-passcode .buttons {
  width: 94%;
  margin-top: auto;
  background-color: var(--phone-color-highlight2);
  gap: 0.4rem;
  padding: 0.75rem 0.75rem 4rem;
}
.setup-container .setup-wrapper .setup-faceUnlock {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 1rem;
}
.setup-container .setup-wrapper .setup-faceUnlock .subtitle {
  color: var(--phone-text-primary);
}
.setup-container .setup-wrapper .setup-faceUnlock img {
  width: 40%;
  margin-bottom: 1rem;
}
.setup-container .setup-wrapper .setup-appearance {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-sizing: border-box;
}
.setup-container .setup-wrapper .setup-appearance .modes {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 17px;
}
.setup-container .setup-wrapper .setup-appearance .modes .mode-text {
  color: var(--phone-text-primary);
}
.setup-container .setup-wrapper .setup-appearance .modes .mode {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.setup-container .setup-wrapper .setup-appearance .modes .mode img {
  width: 8rem;
}
.keyboard-wrapper {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.keyboard-container {
  width: 30vw;
} /*!
* 
*   react-simple-keyboard v3.8.32
*   https://github.com/hodgef/react-simple-keyboard
*
*   Copyright (c) Francisco Hodge (https://github.com/hodgef) and project contributors.
*
*   This source code is licensed under the MIT license found in the
*   LICENSE file in the root directory of this source tree.
*
*/ /*!
 * 
 *   simple-keyboard v3.8.24
 *   https://github.com/hodgef/simple-keyboard
 *
 *   Copyright (c) Francisco Hodge (https://github.com/hodgef) and project contributors.
 *
 *   This source code is licensed under the MIT license found in the
 *   LICENSE file in the root directory of this source tree.
 *
 */
.hg-theme-default {
  background-color: #ececec;
  border-radius: 5px;
  box-sizing: border-box;
  font-family:
    HelveticaNeue-Light,
    Helvetica Neue Light,
    Helvetica Neue,
    Helvetica,
    Arial,
    Lucida Grande,
    sans-serif;
  overflow: hidden;
  padding: 5px;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
}
.hg-theme-default .hg-button span,
.hg-theme-default .hg-button span svg {
  pointer-events: none;
}
.hg-theme-default button.hg-button {
  border-width: 0;
  font-size: inherit;
  outline: 0;
}
.hg-theme-default .hg-button {
  display: inline-block;
  flex-grow: 1;
}
.hg-theme-default .hg-row {
  display: flex;
}
.hg-theme-default .hg-row:not(:last-child) {
  margin-bottom: 5px;
}
.hg-theme-default .hg-row .hg-button-container,
.hg-theme-default .hg-row .hg-button:not(:last-child) {
  margin-right: 5px;
}
.hg-theme-default .hg-row > div:last-child {
  margin-right: 0;
}
.hg-theme-default .hg-row .hg-button-container {
  display: flex;
}
.hg-theme-default .hg-button {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #b5b5b5;
  border-radius: 5px;
  box-shadow: 0 0 3px -1px #0000004d;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  padding: 5px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.hg-theme-default .hg-button.hg-standardBtn {
  width: 20px;
}
.hg-theme-default .hg-button.hg-activeButton {
  background: #efefef;
}
.hg-theme-default.hg-layout-numeric .hg-button {
  align-items: center;
  display: flex;
  height: 60px;
  justify-content: center;
  width: 33.3%;
}
.hg-theme-default .hg-button.hg-button-numpadadd,
.hg-theme-default .hg-button.hg-button-numpadenter {
  height: 85px;
}
.hg-theme-default .hg-button.hg-button-numpad0 {
  width: 105px;
}
.hg-theme-default .hg-button.hg-button-com {
  max-width: 85px;
}
.hg-theme-default .hg-button.hg-standardBtn.hg-button-at {
  max-width: 45px;
}
.hg-theme-default .hg-button.hg-selectedButton {
  background: rgba(5, 25, 70, 0.53);
  color: #fff;
}
.hg-theme-default .hg-button.hg-standardBtn[data-skbtn=".com"] {
  max-width: 82px;
}
.hg-theme-default .hg-button.hg-standardBtn[data-skbtn="@"] {
  max-width: 60px;
}
.hg-candidate-box {
  background: #ececec;
  border-bottom: 2px solid #b5b5b5;
  border-radius: 5px;
  display: inline-flex;
  margin-top: -10px;
  position: absolute;
  transform: translateY(-100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
ul.hg-candidate-box-list {
  display: flex;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}
li.hg-candidate-box-list-item {
  align-items: center;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}
li.hg-candidate-box-list-item:hover {
  background: rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
li.hg-candidate-box-list-item:active {
  background: rgba(0, 0, 0, 0.1);
}
.hg-candidate-box-prev:before {
  content: "◄";
}
.hg-candidate-box-next:before {
  content: "►";
}
.hg-candidate-box-next,
.hg-candidate-box-prev {
  align-items: center;
  color: #969696;
  cursor: pointer;
  display: flex;
  padding: 0 10px;
}
.hg-candidate-box-next {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}
.hg-candidate-box-prev {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
.hg-candidate-box-btn-active {
  color: #444;
}
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}
.leaflet-container {
  overflow: hidden;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
.leaflet-tile::selection {
  background: transparent;
}
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}
.leaflet-container .leaflet-overlay-pane svg {
  max-width: none !important;
  max-height: none !important;
}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
  width: auto;
  padding: 0;
}
.leaflet-container img.leaflet-tile {
  mix-blend-mode: normal;
}
.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}
.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  touch-action: none;
  touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}
.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}
.leaflet-tile-loaded {
  visibility: inherit;
}
.leaflet-zoom-box {
  width: 0;
  height: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 800;
}
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}
.leaflet-pane {
  z-index: 400;
}
.leaflet-tile-pane {
  z-index: 200;
}
.leaflet-overlay-pane {
  z-index: 400;
}
.leaflet-shadow-pane {
  z-index: 500;
}
.leaflet-marker-pane {
  z-index: 600;
}
.leaflet-tooltip-pane {
  z-index: 650;
}
.leaflet-popup-pane {
  z-index: 700;
}
.leaflet-map-pane canvas {
  z-index: 100;
}
.leaflet-map-pane svg {
  z-index: 200;
}
.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}
.lvml {
  behavior: url(/web/20250313074034im_/https://unpkg.com/leaflet@1.9.4/dist/leaflet.css#default#VML);
  display: inline-block;
  position: absolute;
}
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  pointer-events: auto;
}
.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}
.leaflet-top {
  top: 0;
}
.leaflet-right {
  right: 0;
}
.leaflet-bottom {
  bottom: 0;
}
.leaflet-left {
  left: 0;
}
.leaflet-control {
  float: left;
  clear: both;
}
.leaflet-right .leaflet-control {
  float: right;
}
.leaflet-top .leaflet-control {
  margin-top: 10px;
}
.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}
.leaflet-left .leaflet-control {
  margin-left: 10px;
}
.leaflet-right .leaflet-control {
  margin-right: 10px;
}
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}
.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}
svg.leaflet-zoom-animated {
  will-change: transform;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}
.leaflet-interactive {
  cursor: pointer;
}
.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}
.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}
.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted;
  pointer-events: auto;
}
.leaflet-container {
  background: #ddd;
  outline-offset: 1px;
}
.leaflet-container a {
  color: #0078a8;
}
.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}
.leaflet-container {
  font-family:
    Helvetica Neue,
    Arial,
    Helvetica,
    sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}
.leaflet-bar {
  box-shadow: 0 1px 5px #000000a6;
  border-radius: 4px;
}
.leaflet-bar a {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #000;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
  background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}
.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}
.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font:
    700 18px Lucida Console,
    Monaco,
    monospace;
  text-indent: 1px;
}
.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}
.leaflet-control-layers {
  box-shadow: 0 1px 5px #0006;
  background: #fff;
  border-radius: 5px;
}
.leaflet-control-layers-toggle {
  background-image: url(/web/20250313074034im_/https://unpkg.com/leaflet@1.9.4/dist/images/layers.png);
  width: 36px;
  height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(/web/20250313074034im_/https://unpkg.com/leaflet@1.9.4/dist/images/layers-2x.png);
  background-size: 26px 26px;
}
.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}
.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}
.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}
.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}
.leaflet-control-layers label {
  display: block;
  font-size: 13px;
  font-size: 1.08333em;
}
.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}
.leaflet-default-icon-path {
  background-image: url(/web/20250313074034im_/https://unpkg.com/leaflet@1.9.4/dist/images/marker-icon.png);
}
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
  line-height: 1.4;
}
.leaflet-control-attribution a {
  text-decoration: none;
}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
  text-decoration: underline;
}
.leaflet-attribution-flag {
  display: inline !important;
  vertical-align: baseline !important;
  width: 1em;
  height: 0.6669em;
}
.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}
.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}
.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  white-space: nowrap;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px #fff;
}
.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}
.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}
.leaflet-popup-content {
  margin: 13px 24px 13px 20px;
  line-height: 1.3;
  font-size: 13px;
  font-size: 1.08333em;
  min-height: 1px;
}
.leaflet-popup-content p {
  margin: 1.3em 0;
}
.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-top: -1px;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}
.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  pointer-events: auto;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px #0006;
}
.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  text-align: center;
  width: 24px;
  height: 24px;
  font:
    16px/24px Tahoma,
    Verdana,
    sans-serif;
  color: #757575;
  text-decoration: none;
  background: transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
  color: #585858;
}
.leaflet-popup-scrolled {
  overflow: auto;
}
.leaflet-oldie .leaflet-popup-content-wrapper {
  -ms-zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678);
}
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px #0006;
}
.leaflet-tooltip.leaflet-interactive {
  cursor: pointer;
  pointer-events: auto;
}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}
.leaflet-tooltip-bottom {
  margin-top: 6px;
}
.leaflet-tooltip-top {
  margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}
.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}
.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}
.leaflet-tooltip-left {
  margin-left: -6px;
}
.leaflet-tooltip-right {
  margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}
.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}
.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}
@media print {
  .leaflet-control {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
.marker-cluster-small {
  background-color: #b5e28c99;
}
.marker-cluster-small div {
  background-color: #6ecc3999;
}
.marker-cluster-medium {
  background-color: #f1d35799;
}
.marker-cluster-medium div {
  background-color: #f0c20c99;
}
.marker-cluster-large {
  background-color: #fd9c7399;
}
.marker-cluster-large div {
  background-color: #f1801799;
}
.leaflet-oldie .marker-cluster-small {
  background-color: #b5e28c;
}
.leaflet-oldie .marker-cluster-small div {
  background-color: #6ecc39;
}
.leaflet-oldie .marker-cluster-medium {
  background-color: #f1d357;
}
.leaflet-oldie .marker-cluster-medium div {
  background-color: #f0c20c;
}
.leaflet-oldie .marker-cluster-large {
  background-color: #fd9c73;
}
.leaflet-oldie .marker-cluster-large div {
  background-color: #f18017;
}
.marker-cluster {
  background-clip: padding-box;
  border-radius: 20px;
}
.marker-cluster div {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  margin-top: 5px;
  text-align: center;
  border-radius: 15px;
  font:
    12px Helvetica Neue,
    Arial,
    Helvetica,
    sans-serif;
}
.marker-cluster span {
  line-height: 30px;
}
.leaflet-cluster-anim .leaflet-marker-icon,
.leaflet-cluster-anim .leaflet-marker-shadow {
  -webkit-transition:
    -webkit-transform 0.3s ease-out,
    opacity 0.3s ease-in;
  -moz-transition:
    -moz-transform 0.3s ease-out,
    opacity 0.3s ease-in;
  -o-transition:
    -o-transform 0.3s ease-out,
    opacity 0.3s ease-in;
  transition:
    transform 0.3s ease-out,
    opacity 0.3s ease-in;
}
.leaflet-cluster-spider-leg {
  -webkit-transition:
    -webkit-stroke-dashoffset 0.3s ease-out,
    -webkit-stroke-opacity 0.3s ease-in;
  -moz-transition:
    -moz-stroke-dashoffset 0.3s ease-out,
    -moz-stroke-opacity 0.3s ease-in;
  -o-transition:
    -o-stroke-dashoffset 0.3s ease-out,
    -o-stroke-opacity 0.3s ease-in;
  transition:
    stroke-dashoffset 0.3s ease-out,
    stroke-opacity 0.3s ease-in;
}
:root {
  --phone-color-primary: rgb(255, 255, 255);
  --phone-color-opacity: rgba(242, 242, 242, 0.4);
  --phone-color-opacity2: rgb(30, 30, 30, 0.5);
  --phone-color-highlight: rgb(250, 250, 250);
  --phone-color-highlight2: rgb(240, 240, 240);
  --phone-color-highlight3: rgb(220, 220, 220);
  --phone-highlight-opacity15: rgba(145, 145, 145, 0.15);
  --phone-highlight-opacity35: rgba(145, 145, 145, 0.35);
  --phone-highlight-opacity45: rgba(145, 145, 145, 0.45);
  --phone-highlight-opacity55: rgba(145, 145, 145, 0.55);
  --phone-color-input: rgba(241, 241, 241, 0.656);
  --phone-text-primary: rgb(0, 0, 0);
  --phone-text-secondary: rgb(142, 142, 147);
  --phone-color-hover: rgb(240, 240, 240);
  --phone-color-border: rgba(200, 200, 200, 0.4);
  --phone-color-grey: #8e8e93;
  --phone-color-blue: #0a84ff;
  --phone-color-green: #32d74b;
  --phone-color-green-secondary: #092911;
  --phone-color-red: #ff3b30;
  --phone-color-orange: rgb(255, 157, 10);
  --phone-color-yellow: #cca250;
  --phone-color-pink: #ff3b30;
  --instagram-primary: #ffffff;
  --instagram-blue: rgb(0, 149, 246);
  --instagram-red: rgb(237, 73, 86);
  --instagram-primary-text: rgb(38, 38, 38);
  --instagram-secondary-text: rgb(142, 142, 142);
  --instagram-stroke: rgb(219, 219, 219);
  --instagram-border: rgb(219, 219, 219);
  --instagram-highlight: rgb(239, 239, 239);
  --tinder-color-pink: #ff4573;
  --tinder-color-orange: #ff5f65;
  --tinder-color-mix: #f5547c;
  --twitter-primary: #f5f8fa;
  --twitter-secondary: #14171a;
  --twitter-background-highlight: rgb(239, 243, 244);
  --twitter-primary-text: #14171a;
  --twitter-secondary-text: #657786;
  --twitter-alt-text: #657786;
  --twitter-border: #bdc5cd75;
  --twitter-border-secondary: #1d9bf0;
  --twitter-highlight: #1d9bf0;
  --twitter-hover: rgba(15, 20, 25, 0.1);
  --twitter-action: #14171a;
  --twitter-blue: #1d9bf0;
  --tiktok-primary: #ffffff;
  --tiktok-secondary: #000000;
  --tiktok-text-primary: #000000;
  --tiktok-text-secondary: #86878b;
  --tiktok-color-border: #d0d1d3;
  --tiktok-color-pink: #fe2c55;
  --tiktok-color-aqua: #00f2ea;
  --tiktok-color-yellow: #f8cd14;
  --tiktok-color-blue: #479fc5;
  --tiktok-color-unread: rgba(254, 44, 86, 0.2);
  --crypto-color-primary: rgb(255, 255, 255);
  --browser-primary: rgb(245, 245, 245);
  --browser-secondary: rgba(153, 153, 153, 0.15);
  --browser-gradient: linear-gradient(230deg, #f4d6ff, #c5f1ff);
  --browser-footer: rgba(255, 255, 255, 0.75);
  --browser-border: rgba(102, 102, 102, 0.75);
  --browser-text-secondary: #696969;
  --controlcentre-opacity: rgba(255, 255, 255, 0.15);
  --controlcentre-opacity2: rgba(255, 255, 255, 0.2);
  --controlcentre-active: rgba(255, 255, 255, 0.5);
  --notification-primary: rgba(215, 215, 215, 0.5);
  --notification-secondary: rgba(215, 215, 215, 0.1);
  --lockscreeneditor-background: rgba(255, 255, 255, 0.75);
  --lockscreeneditor-secondary: #d9d9d9;
  --app-bg: #ececec;
  --app-bg2: #ffffff;
  --app-secondary: #ffffff;
  --app-secondary2: #ececec;
  --app-highlight: #cccccc;
  --app-highlight2: #999999;
  --app-highlight3: #ffffff;
  --app-border: #666666;
  --app-slider: #cccccc;
  --app-slider-active: #333333;
  --app-button: #ffffff;
  --components-bg: #eeeeee;
  --components-secondary: #ffffff;
  --components-highlight: #cccccc;
}
[data-theme="dark"] {
  --phone-color-primary: #000000;
  --phone-color-opacity: rgb(30, 30, 30, 0.5);
  --phone-color-opacity2: rgba(242, 242, 242, 0.4);
  --phone-color-highlight: rgb(15, 15, 15);
  --phone-color-highlight2: rgb(20, 20, 20);
  --phone-color-highlight3: rgb(25, 25, 25);
  --phone-highlight-opacity35: rgba(145, 145, 145, 0.35);
  --phone-highlight-opacity45: rgba(50, 50, 50, 0.6);
  --phone-highlight-opacity55: rgb(60, 60, 60, 0.8);
  --phone-color-input: rgba(60, 60, 67, 0.6);
  --phone-text-primary: #f2f2f7;
  --phone-text-secondary: #6f6f6f;
  --phone-color-grey: #636366;
  --phone-color-hover: rgb(30, 30, 30);
  --phone-color-border: rgba(150, 150, 150, 0.2);
  --phone-color-blue: #076bcf;
  --instagram-primary: #000000;
  --instagram-blue: rgb(0, 149, 246);
  --instagram-red: rgb(237, 73, 86);
  --instagram-primary-text: rgb(250, 250, 250);
  --instagram-secondary-text: rgb(142, 142, 142);
  --instagram-stroke: rgb(219, 219, 219);
  --instagram-border: rgb(54, 54, 54);
  --instagram-highlight: rgb(38, 38, 38);
  --twitter-primary: #000000;
  --twitter-secondary: #f5f8fa;
  --twitter-background-highlight: rgb(20, 20, 20);
  --twitter-primary-text: #f5f8fa;
  --twitter-secondary-text: #aab8c2;
  --twitter-alt-text: #657786;
  --twitter-border: #38444d;
  --twitter-border-secondary: #38444d;
  --twitter-hover: rgba(150, 150, 150, 0.1);
  --twitter-highlight: #dcdcdc;
  --twitter-action: #1d9bf0;
  --twitter-blue: #1d9bf0;
  --crypto-color-primary: rgb(24, 26, 32);
  --tiktok-text-primary: #f2f2f7;
  --tiktok-text-secondary: #6f6f6f;
  --tiktok-color-border: #96969633;
  --browser-primary: rgb(15, 15, 15);
  --browser-secondary: rgba(153, 153, 153, 0.15);
  --browser-gradient: linear-gradient(230deg, #453b48, #2f393d);
  --browser-footer: rgba(51, 51, 51, 0.75);
  --browser-border: rgba(102, 102, 102, 0.75);
  --browser-text-secondary: #999999;
  --controlcentre-opacity: rgba(0, 0, 0, 0.15);
  --controlcentre-opacity2: rgba(0, 0, 0, 0.2);
  --controlcentre-active: rgba(0, 0, 0, 0.5);
  --notification-primary: rgba(0, 0, 0, 0.1);
  --notification-secondary: rgba(0, 0, 0, 0.12);
  --lockscreeneditor-background: rgba(0, 0, 0, 0.8);
  --lockscreeneditor-secondary: #333333;
  --app-bg: #000000;
  --app-bg2: #000000;
  --app-secondary: #141414;
  --app-secondary2: #141414;
  --app-highlight: #cccccc;
  --app-highlight2: #696969;
  --app-highlight3: #212121;
  --app-border: #cccccc;
  --app-slider: #999999;
  --app-slider-active: #ffffff;
  --app-button: #333333;
  --components-bg: #000000;
  --components-secondary: #141414;
  --components-highlight: #696969;
}
@keyframes zoomIn {
  0% {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.5);
  }
  to {
    transform: scale(1);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-20%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(40%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideRight {
  0% {
    transform: translate(-10%);
  }
  to {
    transform: translate(0);
  }
}
@keyframes slideLeft {
  0% {
    transform: translate(10%);
  }
  to {
    transform: translate(0);
  }
}
@keyframes appJiggle {
  0% {
    transform: rotate(-1deg);
    animation-timing-function: ease-in;
  }
  50% {
    transform: rotate(1.5deg);
    animation-timing-function: ease-out;
  }
}
@keyframes appJiggle2 {
  0% {
    transform: rotate(1deg);
    animation-timing-function: ease-in;
  }
  50% {
    transform: rotate(-1.5deg);
    animation-timing-function: ease-out;
  }
}
@keyframes widgetJiggle {
  0% {
    transform: rotate(-0.5deg);
    animation-timing-function: ease-in;
  }
  50% {
    transform: rotate(0.5deg);
    animation-timing-function: ease-out;
  }
}
@keyframes widgetJiggle2 {
  0% {
    transform: rotate(0.5deg);
    animation-timing-function: ease-in;
  }
  50% {
    transform: rotate(-0.5deg);
    animation-timing-function: ease-out;
  }
}
* {
  -webkit-user-select: none;
  user-select: none;
}
body {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}
img[data-isblurred="true"],
video[data-isblurred="true"] {
  cursor: pointer;
  filter: blur(8px) !important;
}
img[data-isblurred="true"]:hover,
video[data-isblurred="true"]:hover {
  filter: blur(8px) brightness(0.8) !important;
}
.phoneVisbility {
  transition: all 0.5s ease-out;
  visibility: hidden;
}
.container {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  font-family: Roboto;
  font-style: normal;
}
.container.greenscreen {
  background-color: #0f0;
}
.full-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 29rem;
  height: 58.5rem;
  margin: 1rem;
  transition:
    margin 0.35s,
    rotate 0.35s;
  transition-timing-function: ease-in-out;
  overflow: hidden;
  transform-origin: bottom right;
}
.frame {
  transition: 0.5s;
  position: absolute;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 118.6%;
  height: 118.6%;
  z-index: 999;
  pointer-events: none;
}
.phone-container {
  position: relative;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  overflow: hidden;
  width: 97%;
  height: 98.6%;
  border-radius: 55px;
  padding: 0;
}
.phone-container .no-battery {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-container .no-battery svg {
  color: #ffffff80;
  font-size: 75px;
}
.phone-container .no-battery img {
  width: 10rem;
  height: 10rem;
  object-fit: cover;
  filter: invert(1);
}
.phone-container .white-screen {
  position: absolute;
  z-index: 9999;
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}
.phone-container .screenshot-container {
  position: absolute;
  bottom: 2.5rem;
  left: 1.5rem;
  z-index: 999;
  height: 13rem;
  width: 6rem;
}
.phone-container .screenshot-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  border: 6px solid #ffffff;
  cursor: pointer;
}
.phone-container .phone-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.phone-container .phone-wrapper.slideUp {
  animation: slideUp 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.phone-container .phone-wrapper.zoomIn {
  animation: zoomIn 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.phone-container .phone-wrapper.zoomOut {
  animation: zoomOut 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.brightness {
  position: absolute;
  width: 90%;
  height: 96%;
  background-color: #000;
  border-radius: 50px;
  z-index: 999;
  pointer-events: none;
  transition: all 0.3s ease-out;
}
.number {
  color: var(--phone-color-blue);
  cursor: pointer;
  font-weight: 600;
}
.number:hover {
  text-decoration: underline;
}
.close-button {
  position: absolute;
  z-index: 2;
  bottom: 3rem;
  left: 50%;
  transform: translate(-50%);
  padding: 0.5rem 2rem;
  border-radius: 16px;
  background-color: var(--controlcentre-opacity2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fafafa;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.close-button:hover {
  opacity: 0.75;
}
.app-containerbox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.app-containerbox[data-viewmode="true"] {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  box-sizing: border-box;
  pointer-events: all;
  z-index: 2;
  white-space: nowrap;
  background-color: #00000080;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.app-containerbox[data-viewmode="true"]::-webkit-scrollbar {
  display: none;
}
.app-containerbox[data-viewmode="true"] .app-canister {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0 -2.75rem;
  z-index: 3;
}
.app-containerbox[data-viewmode="true"] .app-canister:first-child {
  margin-right: 0rem;
}
.app-containerbox[data-viewmode="true"]
  .app-canister[data-inview="true"]
  .app-container {
  scale: 0.75;
  cursor: pointer;
  transition: filter 0.3s ease-in-out;
  pointer-events: visible;
}
.app-containerbox[data-viewmode="true"]
  .app-canister[data-inview="true"]
  .app-container:hover {
  filter: brightness(0.85);
}
.app-containerbox[data-viewmode="true"] .app-canister .app-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 68%;
  position: absolute;
  z-index: 2;
  top: 5.25rem;
  left: 4rem;
}
.app-containerbox[data-viewmode="true"] .app-canister .app-info .details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.app-containerbox[data-viewmode="true"]
  .app-canister
  .app-info
  .details
  .app-icon {
  border-radius: 8px;
  aspect-ratio: 1/1;
  width: 2rem;
}
.app-containerbox[data-viewmode="true"]
  .app-canister
  .app-info
  .details
  .app-name {
  color: #fafafa;
  font-size: 18px;
  font-weight: 500;
  font-family: Roboto, sans-serif;
}
.app-containerbox[data-viewmode="true"] .app-canister .app-info svg {
  font-size: 18px;
  color: #fafafa;
  background-color: var(--controlcentre-opacity2);
  padding: 0.3rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease-out;
}
.app-containerbox[data-viewmode="true"] .app-canister .app-info svg:hover {
  background-color: var(--controlcentre-active);
}
.app-containerbox[data-viewmode="true"] .app-canister .app-container {
  aspect-ratio: 9/20;
  scale: 0.7;
  border-radius: 25px;
  transform-origin: center;
  position: relative;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  box-shadow: 0 0 15px 10px #00000026;
}
.app-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-position: center;
  background-size: cover;
  position: absolute;
  z-index: 10;
  top: 0;
  transform-origin: bottom right;
  border-radius: 45px;
  overflow: hidden;
  transition: scale 0.4s ease-in-out;
}
.app-container .app-content {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.app-container .app-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
}
.app-container .app-content iframe::-webkit-scrollbar {
  display: none;
}
.app-container .app-content .app-loading {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-container .app-content .game-container {
  width: 100%;
  height: 100%;
}
.loading {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Firefox scrollbar compatibility ── */
.context-wrapper .context-buttons section,
.emoji-picker .epr-body,
.gallery-container .gallery-body .gallery-content,
.albums-grid,
.gif-selector .gif-results,
.music-selector-container .music-selector-body,
.share-component .share-body,
.share-component .airdrop,
.contact-selector-container .contact-selector-content,
.shared-album-editor .shared-album-editor-content,
.photos-container .photos-content .scroll-container,
.photos-container .photos-content .library-content,
.photos-container .activephoto-container .image-overflow,
.photo-carousel,
.photos-container .addtoalbum-container .addtoalbum-content,
.appstore-container .appstore-wrapper,
.appstore-container .appstore-page section .appstore-apps,
.appstore-container .app-item .images[data-big="true"],
.lockscreen-editor-colors,
.lockscreen,
.languages,
.app-containerbox[data-viewmode="true"],
.app-container .app-content iframe {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
