.window {
  width: 590px;
  height: 390px;
  border: solid 1px #4b4b4b78;
  overflow: hidden;
  visibility: hidden;
  transform: translate(-50%, -50%);
  transform-origin: bottom bottom;
  pointer-events: none;
  position: fixed;
  left: 50%;
  top: 50%;
  corner-shape: squircle;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(20px) saturate(190%);
  border-radius: 1rem;
  background: var(--bg-transparent);
}

.window.maximize {
  width: 100% !important;
  height: calc(100%) !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(1) !important;
  z-index: 1 !important;
  border: none;
}

.window.show {
  visibility: visible;
  pointer-events: all;
  transform: translate(-50%, -50%);
}

.window.minimize {
  transform: translate(-50%, 90%) scale(0.5);
  opacity: 0;
  pointer-events: none;
}

.header {
  width: 100%;
  border-bottom: solid 1px var(--border) !important;
  height: 45px;
  display: flex;
  z-index: 1 !important;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
}

.buttons,
.title {
  padding-left: 16px;
  padding-top: 1px;
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.buttons button {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 5rem;
}
.buttons button:hover {
  opacity: 1;
}
.buttons button svg {
  opacity: 0;
  transition: 0.2s;
}
.buttons:hover svg {
  opacity: 1;
}
.close {
  background: var(--color-accent-red);
}

.min {
  background: var(--color-accent-yellow);
}

.max {
  background: var(--color-accent-green);
}

.content {
  width: 100%;
  position: absolute;
  left: 0;
  overflow: hidden;
  bottom: 0;
  height: calc(100% - 45px);
}

.title {
  display: flex;
  align-items: center;
  position: absolute;
  color: var(--color-text);
  font-size: 13px;
  font-family: Inter;
  font-weight: 500;
  position: absolute;
  left: 50%;
  justify-content: center;
  transform: translate(-50%, 0);
}

#vscode .content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#start-screen img {
  width: 90px;
  height: 90px;
}

.settings-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.9rem;
}

.settings-content :is(h1, h2, h3, h4, h5, h6, p, span) {
  color: var(--color-text);
  font-family: Inter;
  font-weight: 500;
}

.bg-card {
  padding: 5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  border: solid 1.8px transparent;
  position: relative;
  border-radius: 0.8rem;
  transition: border-color 0.3s ease;
}

.bg-card:hover {
  border: solid 1.8px #006eff;
}

.wallpaper-content {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  gap: 0.7rem;
  border-radius: 1rem;
  corner-shape: squircle;
  padding: 5px;
}

.bg-card img {
  width: 120px;
  height: 75px;
  border-radius: 0.3rem;
  object-fit: cover;
}

.name {
  font-size: 0.8rem;
  left: 50%;
  font-family: "Inter";
  color: var(--color-text);
  top: 30px;
}

#vscode {
  width: 890px;
  height: 590px;
}

#about {
  width: 440px;
  height: 280px;
  resize: none;
}

.about-content h1 {
  color: var(--color-text);
  font-weight: 400;
  font-size: 1.8rem;
}

.about-content h4 {
  color: var(--color-text);
  font-size: 1.2rem;
  font-weight: 400;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.close:hover,
.max:hover,
.min:hover {
  opacity: 0.8;
}

.fold-name {
  color: var(--color-text);
  font-size: 13.5px;
  white-space: nowrap;
  font-family: "Inter";
}

.itens-fold {
  display: flex;
  padding: 15px;
  flex-direction: column;
  gap: 0.4rem;
}

.fold {
  display: flex;
  gap: 0.6rem;
  font-size: 13px;
  color: var(--color-text);
  padding: 5px;
  font-family: "Inter";
  border-radius: 0.4rem;
}

.folders {
  display: grid;
  padding: 8px;
  grid-template-columns: repeat(5, 1fr);
}

.fold2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  flex-direction: column;
  border-radius: 0.4rem;
  gap: 0.6rem;
}

.fold-detail {
  width: 100%;
  background: var(--select);
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  font-family: "Inter";
  font-size: 0.8rem;
  color: var(--border);
  justify-content: center;
  height: 35px;
  border-top: solid 1px var(--border);
  bottom: 0;
}

.detail {
  position: absolute;
  right: 0;
  text-align: center;
  align-content: center;
  color: var(--border);
  font-size: 0.9rem;
  top: 0;
  height: 100%;
  border-bottom: solid 1px var(--border);
  border-left: solid 1px var(--border);
  background: var(--background);
  width: 560px;
}

.fold2:hover {
  background: var(--select);
}

.fold2 img {
  height: 69px;
}

.ind-name {
  color: var(--border);
  margin-left: 16px;
  font-size: 0.8rem;
  margin-top: 19px;
  font-family: "Inter";
  font-weight: 600;
}

.fold svg {
  width: 15px;
  margin-top: 1px;
  color: var(--color-accent-blue);
  height: 15px;
}

#finder {
  width: 790px;
  resize: none;
  height: 470px;
}
#finder .header {
  border-bottom: none !important;
}
.sidebar-finder {
  width: 230px;
  background: transparent;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0rem;
  left: 0;
  bottom: 0;
}

.fold:hover {
  background: var(--select);
}

.folds-content {
  width: calc(100% - 230px);
  height: 100%;
  border-left: solid 1px var(--border);
  background: var(--background);
  position: absolute;
  right: 0;
  bottom: 0;
}

#settings {
  width: 790px;
  height: 530px;
}

#vscode .header {
  background: #202327;
}

#vscode .title {
  color: #fff;
}

#notes .header {
  background: var(--background);
}

.content-notes {
  background: var(--background);
  display: flex;
  flex-direction: column;
}
#settings .header {
  background: var(--background);
}

#editor {
  width: 100%;
  padding: 5px;
  border: none;
  outline: 0;
  font-size: 1rem;
  color: var(--color-text);
  background: var(--background);
  height: 100%;
}

#editor:focus {
  border: none;
}

#notes input {
  background: 0 0;
  border: none;
  color: var(--color-text);
  font-size: 1.7rem;
  text-align: center;
  align-content: center;
  height: 34px;
}

.safari-content {
  display: flex;
  flex-direction: column;
}

.top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 46px;
  position: fixed;
  background: var(--bg-transparent);
}

.top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: 0 0;
  border-radius: 10rem;
  color: var(--color-text);
  border: none;
  width: 29px;
  height: 29px;
}

#safari .header {
  background: var(--bg-transparent);
}

.safari-content iframe {
  width: 100%;
  height: calc(100% - 82px);
  position: fixed;
  left: 0;
  bottom: 0;
}

#safari {
  width: 890px;
  height: 570px;
}

#search-btn i {
  color: var(--color-text);
}

#search {
  width: 588px;
  color: var(--color-text);
  padding: 3px;
  border: solid 1px var(--border);
  background: var(--bg-transparent);
  box-shadow: var(--glass-effect);
  height: 23px;
  border-radius: 3rem;
}

.header2 {
  right: 0;
  position: absolute;
  border-bottom: solid 1px var(--border);
  top: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  width: 100%;
  height: 35px;
}

.header2 h2 {
  color: var(--color-text);
  font-weight: 400;
  font-size: 1.2rem;
}

.message h3 {
  padding: 4px;
  background: var(--select);
  color: var(--color-text);
  font-weight: 400;
}

.message h2 {
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.messages-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.messages-content h1 {
  font-size: 3.8rem;
  font-weight: 500;
  color: var(--color-text);
}
.message img {
  height: 96px;
  border-radius: 100rem;
  width: 96px;
}

.ri-verified-badge-fill {
  color: var(--color-accent-blue);
}

.bottom {
  width: 100%;
  height: 47px;
  border-top: solid 1px var(--border);
  display: flex;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.58);
  position: absolute;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.bottom input {
  width: 450px;
  color: var(--color-text);
  padding: 3px;
  height: 26px;
  background: var(--select);
  border-radius: 10rem;
}

.send {
  width: 29px;
  border: none;
  height: 29px;

  color: var(--color-text);
  background: var(--color-accent-blue);
  border-radius: 10rem;
}

@keyframes lev {
  from {
    transform: translate(0, 0px);
  }

  to {
    transform: translate(0, 5px);
  }
}
.list-item svg {
  height: 20px;
  width: 20px;
}
.list {
  display: flex;
  margin: 10px;
  flex-direction: column;
  gap: 0.3rem;
}

.list-item {
  color: var(--color-text);
  display: flex;
  align-items: center;
  padding: 4px;
  justify-content: center;
  align-content: center;
  gap: 0.5rem;
}

.list-item:hover {
  background: var(--select);
}

#music h2 {
  color: var(--color-text);
  font-weight: 500;
  font-size: 1.9rem;
}

#music p {
  color: var(--color-text);
}

#music .header {
  background: var(--background);
}
.music-content {
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.7rem;
}

#music {
  width: 690px;
  height: 470px;
  background: var(--background);
}

.logo {
  height: 64px;
  animation: lev 1.4s ease alternate infinite;
  width: 64px;
}

.sidebar-contact {
  height: calc(100% - 32px);
  position: fixed;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: 240px;
  background: var(--background);
  border-right: solid 1px var(--border);
}

#messages {
  width: 790px;
  height: 560px;
}

.contact {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  padding: 3px;
  border-bottom: solid 1px var(--border);
  height: 56px;
}

.contact img {
  height: 35px;
  border-radius: 100rem;
}

.contact h5 {
  color: var(--color-text);
  font-weight: 400;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.message {
  width: calc(100% - 240px);
  background: var(--background);
  position: fixed;
  right: 0;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-left: solid 1px var(--border);
  gap: 0.7rem;
  bottom: 0;
  height: calc(100% - 32px);
}

#safari svg {
  color: var(--color-text);
  width: 15px;
  height: 15px;
}
