* {
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  --text-primary-color: #fff;
  --text-secondary-color: #201f25;
  --background-color: #f5f5f5;
  --gradient-color: linear-gradient(-45deg, rgba(19, 1, 43, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(-45deg, rgb(75, 55, 102) 0%, rgb(37, 15, 57) 100%);
  z-index: 99999;
  opacity: 1;
  transition: 1s ease-in-out;
}
.loader-container .loader-text .loader-OS {
  font-weight: 200;
  font-family: "Handjet", sans-serif;
  font-size: 4em;
  color: #ffffff;
  border-bottom: 1px solid #55376d;
  animation: fontweight 5s ease-in-out infinite;
}
.loader-container .loader-text .loader-version {
  margin-top: 0.2em;
  font-weight: 400;
  font-size: 14px;
  color: #55376d;
  display: flex;
  justify-content: end;
}

@keyframes fontweight {
  0% {
    font-weight: 100;
  }
  50% {
    font-weight: 300;
  }
  100% {
    font-weight: 100;
  }
}
body.loading main {
  visibility: hidden;
}

#mp3-player {
  position: absolute;
  bottom: 9vh;
  right: 0.6%;
  width: 400px;
  max-width: 100%;
  height: auto;
  background: linear-gradient(rgba(58, 58, 58, 0.4), rgba(0, 0, 0, 0.3));
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.3px);
  -webkit-backdrop-filter: blur(7.3px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}
#mp3-player .mp3-container {
  padding: 1em 2em;
  display: flex;
  flex-direction: column;
}
#mp3-player .mp3-container .top-container {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1em;
}
#mp3-player .mp3-container .top-container img {
  max-width: 20%;
  max-height: 20%;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  margin-right: 1em;
}
#mp3-player .mp3-container .top-container .mp3-infos {
  color: #fff;
  font-size: 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  float: left;
}
#mp3-player .mp3-container .top-container .mp3-infos a {
  text-decoration: none;
  color: #fff;
}
#mp3-player .mp3-container .top-container .mp3-infos a .mp3-title {
  font-weight: bold;
}
#mp3-player .mp3-container .top-container .mp3-infos .mp3-artist {
  font-weight: 100;
}
#mp3-player .mp3-container .top-container .mp3-infos .mp3-timer {
  font-weight: bold;
  font-size: 13px;
}
#mp3-player .mp3-container .mp3-current-container {
  width: 100%;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.3490196078);
  border-radius: 5px;
  position: relative;
}
#mp3-player .mp3-container .mp3-current-container .mp3-current-progress {
  width: 50%;
  height: 5px;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
  transition: 1s ease-in-out;
}
#mp3-player .mp3-container .mp3-current-container .mp3-current-progress:after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: #dddddd;
  right: 0;
  top: -8px;
  transition: 1s ease-in-out;
}
#mp3-player .mp3-container .bottom-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 1em;
}
#mp3-player .mp3-container .bottom-container img {
  width: 50px;
  height: 50px;
  padding: 0.2em;
}
#mp3-player .mp3-container .bottom-container img:hover {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.3px);
  -webkit-backdrop-filter: blur(7.3px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}
#mp3-player .mp3-container .bottom-container img:active {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.3px);
  -webkit-backdrop-filter: blur(7.3px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}
#mp3-player .mp3-container .bottom-container .small {
  width: 30px;
  height: 30px;
}
#mp3-player .mp3-container .bottom-container .play {
  width: 60px;
  height: 60px;
}

#desktop {
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: fixed;
}
#desktop video {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  filter: hue-rotate(13deg);
}
#desktop .desktop-container {
  width: 100%;
  z-index: 2;
  height: 100%;
  overflow: hidden;
}
#desktop .desktop-container .shortcut-container {
  height: auto;
  width: 100%;
  padding: 2em;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  z-index: 2;
}
#desktop .desktop-container .shortcut-container .shortcut {
  max-width: 10%;
  max-width: 110px;
  height: fit-content;
  padding: 0.5em;
  box-sizing: content-box;
  margin: 0 1em;
  border: 1px solid transparent;
  z-index: 2;
}
#desktop .desktop-container .shortcut-container .shortcut .shortcut-icon {
  width: 60%;
  margin: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
}
#desktop .desktop-container .shortcut-container .shortcut .shortcut-name {
  color: var(--text-primary-color);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 12pt;
}
#desktop .desktop-container .shortcut-container .shortcut:hover {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7.3px);
  -webkit-backdrop-filter: blur(7.3px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}
#desktop .desktop-container .shortcut-container .shortcut:active {
  background: rgba(255, 255, 255, 0.3);
}
#desktop .desktop-container .shortcut-container .shortcut.clicked {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.3px);
  -webkit-backdrop-filter: blur(7.3px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}
#desktop .desktop-container .taskbar-container {
  z-index: 9999;
  width: 100%;
  height: 60px;
  background: linear-gradient(rgba(58, 58, 58, 0.3), rgba(0, 0, 0, 0.2));
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.3px);
  -webkit-backdrop-filter: blur(7.3px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: center;
}
#desktop .desktop-container .taskbar-container .startup-button,
#desktop .desktop-container .taskbar-container .back-button {
  width: auto;
  height: 60px;
  padding: 0.8em;
}
#desktop .desktop-container .taskbar-container .startup-button img,
#desktop .desktop-container .taskbar-container .back-button img {
  height: 100%;
}
#desktop .desktop-container .taskbar-container .startup-button:hover,
#desktop .desktop-container .taskbar-container .back-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.3px);
  -webkit-backdrop-filter: blur(7.3px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}
#desktop .desktop-container .taskbar-container .back-button {
  display: none;
}
#desktop .desktop-container .taskbar-container .taskbar-app-container {
  margin-left: 1em;
  display: flex;
}
#desktop .desktop-container .taskbar-container .taskbar-app-container .app {
  max-width: 60px;
  width: 100%;
  margin: 0 0.5em;
  padding: 0.5em;
  display: flex;
  justify-content: center;
}
#desktop .desktop-container .taskbar-container .taskbar-app-container .app img {
  width: auto;
  height: 100%;
}
#desktop .desktop-container .taskbar-container .taskbar-app-container .app:hover {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.3px);
  -webkit-backdrop-filter: blur(7.3px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}
#desktop .desktop-container #current-time {
  font-size: 14px;
  font-family: sans-serif;
  color: var(--text-primary-color);
  right: 1em;
  bottom: 1.5em;
  position: fixed;
  z-index: 999999;
}

.window-app {
  display: none;
  background: rgb(19, 1, 43);
  background: -moz-linear-gradient(-45deg, rgba(19, 1, 43, 0.5) 0%, rgba(0, 0, 0, 0.82) 100%);
  background: -webkit-linear-gradient(-45deg, rgba(19, 1, 43, 0.5) 0%, rgba(0, 0, 0, 0.82) 100%);
  background: var(--gradient-color);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#13012b",endColorstr="#000000",GradientType=1);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.3px);
  -webkit-backdrop-filter: blur(7.3px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  max-width: 95%;
  max-height: 80%;
  width: fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.3s ease, height 0.3s ease;
}
.window-app .fullscreen-size {
  max-width: 95%;
  max-height: 90%;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
.window-app .task-nav {
  width: 100%;
  height: 40px;
  padding: 0.5em 1em;
  cursor: move;
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px 15px 0 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.3px);
  -webkit-backdrop-filter: blur(7.3px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: bold;
}
.window-app .task-nav .name-container {
  display: flex;
  justify-content: flex-start;
  max-width: 50%;
}
.window-app .task-nav .name-container img {
  max-height: 22px;
  max-width: 22px;
}
.window-app .task-nav .name-container .app-name {
  color: var(--text-primary-color);
  display: flex;
  justify-items: center;
  margin-left: 1em;
}
.window-app .task-nav .app-actions {
  width: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.window-app .task-nav .app-actions .action {
  width: 18px;
  height: 18px;
  border-radius: 18px;
  border: 1px solid rgb(61, 61, 61);
}
.window-app .task-nav .app-actions .action.minimize {
  background-color: rgb(216, 124, 19);
}
.window-app .task-nav .app-actions .action.minimize:hover {
  background-color: rgb(236, 156, 64);
  box-shadow: 0 0 5px rgb(236, 156, 64);
}
.window-app .task-nav .app-actions .action.fullscreen {
  background-color: rgb(20, 165, 20);
}
.window-app .task-nav .app-actions .action.fullscreen:hover {
  background-color: rgb(55, 218, 55);
  box-shadow: 0 0 5px rgb(55, 218, 55);
}
.window-app .task-nav .app-actions .action.close {
  background-color: rgb(201, 26, 64);
}
.window-app .task-nav .app-actions .action.close:hover {
  background-color: rgb(226, 75, 108);
  box-shadow: 0 0 5px rgb(226, 75, 108);
}
.window-app .content-container {
  max-height: 94.5%;
  width: 100%;
  overflow: auto;
  border-radius: 0 0 16px 16px;
}

#gallery-app .content-container {
  height: 100%;
}
#gallery-app .content-container .carousel {
  height: 100%;
}
#gallery-app .content-container .carousel .carousel-images {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#gallery-app .content-container .carousel .carousel-images img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  transition: 0.2s;
  transform-origin: top center;
}
#gallery-app .content-container .carousel .carousel-images .height-special {
  transform: scale(5) !important;
}
#gallery-app .content-container .carousel .prev-btn,
#gallery-app .content-container .carousel .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 20px;
}
#gallery-app .content-container .carousel .prev-btn {
  left: 10px;
}
#gallery-app .content-container .carousel .next-btn {
  right: 10px;
}
#gallery-app .content-container .zoom-container {
  position: absolute;
  bottom: 2em;
  right: 2em;
  padding: 1em;
  display: flex;
  color: var(--text-primary-color);
}
#gallery-app .content-container .zoom-container .zoom-svg {
  width: 30px;
  height: 30px;
}
#gallery-app .content-container .zoom-container .zoom-out {
  cursor: pointer;
  margin-right: 1em;
  fill: #fff;
}
#gallery-app .content-container .zoom-container .zoom-in {
  cursor: pointer;
}

#chat-app {
  max-height: 90%;
  min-width: 90%;
  background: linear-gradient(135deg, #1e1e1e, #2b2b2b);
}
#chat-app .content-container {
  display: flex;
  height: 100%;
}
#chat-app .content-container .clients-list {
  background: linear-gradient(135deg, #252525, #3a3a3a);
  width: 20%;
  height: 100%;
  padding: 10px;
  overflow-y: auto;
}
#chat-app .content-container .clients-list .client {
  padding: 1em;
  border-radius: 10px;
  border: 1px solid #3c3c3c;
  display: flex;
  position: relative;
  margin-bottom: 10px;
  transition: background-color 0.3s;
}
#chat-app .content-container .clients-list .client:hover {
  background: linear-gradient(135deg, #444, #555);
}
#chat-app .content-container .clients-list .client.active {
  background: linear-gradient(135deg, #444, #555);
}
#chat-app .content-container .clients-list .client .client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1em;
}
#chat-app .content-container .clients-list .client .client-name {
  font-weight: bold;
  color: #fff;
}
#chat-app .content-container .clients-list .client .msg-preview {
  font-weight: 100;
  color: #aaa;
  font-size: 12px;
}
#chat-app .content-container .clients-list .client .client-date {
  color: #777;
  font-size: 12px;
  position: absolute;
  right: 1em;
}
#chat-app .content-container .msg-container {
  width: 80%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #181818;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
#chat-app .content-container .msg-container .msg {
  width: 90%;
  margin-bottom: 1em;
  margin: auto;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#chat-app .content-container .msg-container .msg .sent-msg-container,
#chat-app .content-container .msg-container .msg .received-msg-container {
  display: flex;
  margin: 1em 0;
}
#chat-app .content-container .msg-container .msg .sent-msg-container .msg-img,
#chat-app .content-container .msg-container .msg .received-msg-container .msg-img {
  max-width: 100%;
  max-height: 400px;
  margin-bottom: 1em;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, filter 0.3s;
}
#chat-app .content-container .msg-container .msg .sent-msg-container .msg-video,
#chat-app .content-container .msg-container .msg .received-msg-container .msg-video {
  width: 100%;
  max-height: 400px;
  margin-bottom: 1em;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, filter 0.3s;
}
#chat-app .content-container .msg-container .msg .sent-msg-container {
  justify-content: flex-end;
}
#chat-app .content-container .msg-container .msg .sent-msg-container .sent-msg {
  background: linear-gradient(135deg, #3a82f6, #1546d0);
  color: #fff;
  padding: 15px;
  border-radius: 20px 20px 0 20px;
  max-width: 60%;
  width: fit-content;
  position: relative;
}
#chat-app .content-container .msg-container .msg .sent-msg-container .sent-msg .msg-date {
  font-size: 12px;
  position: absolute;
  bottom: 5px;
  right: 15px;
  color: #d1e4ff;
}
#chat-app .content-container .msg-container .msg .sent-msg-container .sent-msg .msg-text {
  margin-bottom: 0.6em;
  line-height: 24px;
}
#chat-app .content-container .msg-container .msg .received-msg-container {
  justify-content: flex-start;
}
#chat-app .content-container .msg-container .msg .received-msg-container .msg-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1em;
}
#chat-app .content-container .msg-container .msg .received-msg-container .wrong-message {
  background: linear-gradient(135deg, #f63a3a, #d01515) !important;
}
#chat-app .content-container .msg-container .msg .received-msg-container .received-msg {
  background: linear-gradient(135deg, #444, #555);
  color: #fff;
  padding: 15px;
  border-radius: 20px 20px 20px 0;
  max-width: 60%;
  width: fit-content;
  position: relative;
}
#chat-app .content-container .msg-container .msg .received-msg-container .received-msg .msg-name {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
}
#chat-app .content-container .msg-container .msg .received-msg-container .received-msg .msg-date {
  font-size: 12px;
  position: absolute;
  bottom: 5px;
  left: 15px;
  color: #999;
}
#chat-app .content-container .msg-container .msg .received-msg-container .received-msg .msg-text {
  margin-bottom: 0.6em;
  line-height: 24px;
}
#chat-app .content-container .msg-container .msg::-webkit-scrollbar {
  display: none;
}
#chat-app .content-container .msg-container .interface {
  display: flex;
  align-items: center;
  background-color: #2c2c2e;
  padding: 10px;
  border-radius: 30px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  width: 100%;
  margin: 0 auto;
}
#chat-app .content-container .msg-container .interface .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
#chat-app .content-container .msg-container .interface .icon img {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}
#chat-app .content-container .msg-container .interface .icon img:hover {
  transform: scale(1.1);
}
#chat-app .content-container .msg-container .interface .message-input {
  flex: 1;
  background-color: transparent;
  border: none;
  color: #fff;
  padding: 10px;
  font-size: 16px;
  outline: none;
}
#chat-app .content-container .msg-container .interface .message-input::placeholder {
  color: #aaa;
}
#chat-app .content-container .msg-container .interface .microphone {
  margin-left: 10px;
}
#chat-app .content-container .msg-container .interface .smiley img,
#chat-app .content-container .msg-container .interface .attachment img,
#chat-app .content-container .msg-container .interface .microphone img {
  cursor: pointer;
  fill: #fff;
}

.fullscreen-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.fullscreen-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

#mail-app {
  max-width: 80%;
}
#mail-app .content-container {
  display: flex;
  flex: 1;
  background-color: var(--gradient-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}
#mail-app .content-container .client-list {
  width: 30%;
  background-color: #2c2c2e;
  padding: 1em;
  border-right: 1px solid #3a3a3c;
  overflow-y: auto;
  transition: background-color 0.3s ease;
}
#mail-app .content-container .client-list .client-item {
  padding: 1em;
  cursor: pointer;
  background-color: #3a3a3c;
  margin-bottom: 0.4em;
  border-radius: 12px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
#mail-app .content-container .client-list .client-item .new-badge,
#mail-app .content-container .client-list .client-item .new-badge-special {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: bold;
  text-transform: uppercase;
  margin-left: 20px;
}
#mail-app .content-container .client-list .client-item .new-badge {
  background-color: #0a84ff;
  color: white;
}
#mail-app .content-container .client-list .client-item .new-badge-special {
  background-color: #ff453a;
  color: white;
}
#mail-app .content-container .client-list .client-item:hover {
  background-color: #48484a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
#mail-app .content-container .client-list .client-item.active {
  background-color: #565658;
  box-shadow: none;
}
#mail-app .content-container .client-list .client-item .marque {
  font-size: 16px;
  font-weight: 500;
  color: #f2f2f7;
  margin-bottom: 5px;
}
#mail-app .content-container .client-list .client-item .objet {
  font-size: 14px;
  color: #a1a1a6;
}
#mail-app .content-container .email-container {
  width: 70%;
  padding: 2em;
  background-color: #e1e1e1;
  display: flex;
  justify-content: center;
  overflow: auto;
}
#mail-app .content-container .email-container img {
  width: auto;
  height: fit-content;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#pdf-app {
  max-width: 80%;
}
#pdf-app .content-container .cv-img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  transition: 0.2s ease-in-out;
}
#pdf-app .content-container .zoom-container {
  position: absolute;
  bottom: 2em;
  right: 2em;
  padding: 1em;
  display: flex;
  color: #000;
}
#pdf-app .content-container .zoom-container .zoom-svg {
  width: 30px;
  height: 30px;
}
#pdf-app .content-container .zoom-container .zoom-out {
  cursor: pointer;
  margin-right: 1em;
}
#pdf-app .content-container .zoom-container .zoom-in {
  cursor: pointer;
}
#pdf-app .content-container .download-button {
  position: absolute;
  top: 3em;
  right: 2em;
  padding: 1em;
}
#pdf-app .content-container .download-button img {
  width: 50px;
  height: 50px;
}
#pdf-app .content-container .download-button img:hover {
  cursor: pointer;
}

#trash-app {
  max-width: 50%;
}
#trash-app .content-container .trash-items {
  width: 100%;
}
#trash-app .content-container .trash-items .trash-cat {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #444;
  font-weight: bold;
  border-bottom: 2px solid #888;
  text-align: left;
  color: #fff;
}
#trash-app .content-container .trash-items .trash-item,
#trash-app .content-container .trash-items .trash-cat {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #444;
  text-align: left;
}
#trash-app .content-container .trash-items .trash-item .trash-name,
#trash-app .content-container .trash-items .trash-cat .trash-name {
  flex-basis: 50%;
  width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#trash-app .content-container .trash-items .trash-item .trash-date,
#trash-app .content-container .trash-items .trash-cat .trash-date {
  flex-basis: 25%;
}
#trash-app .content-container .trash-items .trash-item .trash-size,
#trash-app .content-container .trash-items .trash-cat .trash-size {
  flex-basis: 25%;
}
#trash-app .content-container .trash-items .trash-item p,
#trash-app .content-container .trash-items .trash-cat p {
  margin: 0;
  color: #fff;
}

#cmd-app {
  max-width: 50%;
  max-height: 90%;
  background-color: #000000;
}
#cmd-app .content-container {
  height: 92%;
  padding: 1em;
}
#cmd-app .content-container .terminal {
  width: 100%;
  height: 100%;
  position: relative;
}
#cmd-app .content-container .terminal .line {
  color: #fff;
  font-family: Consolas, monospace;
}
#cmd-app .content-container .terminal .line.hidden-line {
  display: none;
}
#cmd-app .content-container .terminal .line:not(.hidden-line) {
  display: block;
}
#cmd-app .content-container .terminal .error {
  color: red;
  font-family: Consolas, monospace;
}
#cmd-app .content-container .terminal .success {
  color: green;
  font-family: Consolas, monospace;
}
#cmd-app .content-container .terminal .info {
  color: rgb(216, 216, 15);
  font-family: Consolas, monospace;
}
#cmd-app .content-container .terminal .process {
  color: rgb(116, 116, 116);
  font-family: Consolas, monospace;
}
#cmd-app .content-container .terminal .link {
  color: rgb(52, 21, 231);
  font-family: Consolas, monospace;
  font-weight: bold;
}
#cmd-app .content-container .terminal .link::visited {
  color: rgb(136, 119, 235);
  font-family: Consolas, monospace;
  font-weight: bold;
}
#cmd-app .content-container .terminal .last-line {
  display: flex;
  position: relative;
}
#cmd-app .content-container .terminal .last-line:after {
  content: "";
  content: "";
  position: absolute;
  display: block;
  height: 14px;
  width: 7px;
  background-color: #4d4d4d;
  left: 13px;
  top: 3px;
  animation: blinksquare 0.8s infinite;
}

#web-app {
  max-width: 95%;
  max-height: 90%;
}
#web-app .content-container {
  background-color: #262230;
  height: 100%;
  max-height: 95%;
}
#web-app .content-container .interface-container {
  width: 100%;
  position: fixed;
  background-color: #262230;
  height: auto;
  padding: 2px 20px 10px 2px;
}
#web-app .content-container .interface-container .markdown-container {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: flex-start;
  margin: 5px;
}
#web-app .content-container .interface-container .markdown-container .markdown-item {
  max-width: 300px;
  width: 100%;
  background-color: #353042;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 5px;
  padding: 5px 10px;
  margin: 0 2px;
}
#web-app .content-container .interface-container .markdown-container .markdown-item .markdown-img {
  width: 20px;
  height: 20px;
}
#web-app .content-container .interface-container .markdown-container .markdown-item .markdown-name {
  color: #fff;
  font-size: 12px;
  margin-left: 1em;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#web-app .content-container .interface-container .markdown-container .markdown-item:hover {
  background: #4a435c;
  cursor: pointer;
}
#web-app .content-container .interface-container .markdown-container .markdown-item.active {
  background: #4a435c;
}
#web-app .content-container .interface-container .searchbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px;
  height: 40px;
}
#web-app .content-container .interface-container .searchbar .input {
  width: 70%;
  border-radius: 5px;
  background-color: #1b1922;
  height: 100%;
  border: none;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#web-app .content-container .interface-container .searchbar .input:focus {
  border: none;
}
#web-app .content-container .interface-container .searchbar .input .placeholder {
  color: #4a435c;
  font-size: 12px;
}
#web-app .content-container .interface-container .searchbar .input img {
  display: flex;
  justify-content: end;
}
#web-app .content-container .interface-container .searchbar img {
  max-width: 20px;
  max-height: 20px;
  opacity: 0.2;
}
#web-app .content-container .interface-container .searchbar .arrow-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 1em;
  width: 3%;
}
#web-app .content-container .markdown-preview-container {
  width: 100%;
  height: 100%;
}
#web-app .content-container .markdown-preview-container .markdown-preview {
  width: 100%;
  height: 100%;
}
#web-app .content-container .markdown-preview-container .markdown-preview .markdown-preview-item img {
  width: 100%;
  margin-top: 100px;
}
#web-app .content-container .markdown-preview-container .markdown-preview .markdown-preview-item iframe {
  height: 100vh;
  margin-top: 100px;
}

#aim-app {
  min-width: 90%;
  min-height: 90%;
}
#aim-app .content-container {
  background: linear-gradient(-45deg, rgb(75, 55, 102) 0%, rgb(37, 15, 57) 100%);
  height: 100%;
}
#aim-app .content-container .aim-container .game-over {
  position: relative;
  height: 100%;
  width: 100%;
  display: none;
}
#aim-app .content-container .aim-container .game-over p {
  color: #fff;
  font-family: "Handjet", sans-serif;
  font-size: 10em;
  font-weight: 100;
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#aim-app .content-container .aim-container .score-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
}
#aim-app .content-container .aim-container .score-container .score {
  color: #fff;
}
#aim-app .content-container .target-container {
  width: 100%;
  height: 92%;
  position: relative;
}
#aim-app .content-container .target-container #target {
  height: 93%;
  padding: 2em;
}
#aim-app #restart {
  display: none;
  justify-content: center;
  position: absolute;
  bottom: 2em;
  right: 47%;
  padding: 1em 2em;
  background-color: rgb(139, 113, 173);
  border: none;
  border-radius: 10px;
}
#aim-app #restart:hover {
  background-color: rgb(184, 160, 214);
}

@keyframes blinksquare {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  #desktop {
    background: url("../../img/background8.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #desktop .desktop-container .shortcut-container {
    height: auto;
    padding: 0.5em;
  }
  #desktop .desktop-container .shortcut-container .shortcut {
    max-width: 20%;
    height: fit-content;
    padding: 0.5em;
    box-sizing: content-box;
    margin: 1em;
    border: 1px solid transparent;
  }
  #desktop .desktop-container .shortcut-container #aim-shortcut {
    display: none;
  }
  #desktop .desktop-container .taskbar-container {
    justify-content: center;
    bottom: 0;
  }
  #desktop .desktop-container .taskbar-container .back-button {
    display: block;
    position: absolute;
    left: 1em;
  }
  #desktop .desktop-container .taskbar-container .taskbar-app-container {
    display: none;
  }
  #desktop .desktop-container #current-time {
    display: none;
  }
  .window-app {
    max-width: 100%;
    max-height: 93%;
  }
  .window-app .task-nav {
    display: none;
  }
  .window-app .content-container {
    max-height: 100%;
  }
  #mp3-player {
    display: none;
  }
  #trash-app {
    max-width: 100%;
    max-height: 93%;
  }
  #trash-app .trash-items {
    font-size: 12px;
  }
  #trash-app .trash-items .trash-item .trash-name {
    width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #chat-app {
    max-width: 100%;
    max-height: 93%;
  }
  #chat-app .content-container .clients-list {
    width: 100%;
  }
  #chat-app .content-container .clients-list.inactive {
    display: none;
  }
  #chat-app .content-container .msg-container {
    display: none;
    width: 100%;
  }
  #chat-app .content-container .msg-container.active {
    display: block;
    width: 100%;
    height: fit-content;
  }
  #mail-app {
    max-width: 100%;
    max-height: 93%;
  }
  #mail-app .content-container .client-list {
    width: 100%;
  }
  #mail-app .content-container .client-list.inactive {
    display: none;
  }
  #mail-app .content-container .email-container {
    display: none;
    width: 100%;
  }
  #mail-app .content-container .email-container.active {
    display: block;
    width: 100%;
    height: auto;
    overflow: auto;
  }
  #mail-app .content-container .email-container img {
    width: 100%;
    height: auto;
  }
  #gallery-app .content-container .carousel .carousel-images {
    justify-content: center;
  }
  #gallery-app .content-container .carousel .carousel-images img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  #gallery-app .content-container .carousel .carousel-images .height-special {
    position: absolute;
    top: 0;
  }
  #pdf-app {
    max-width: 100%;
    max-height: 93%;
  }
  #pdf-app .content-container {
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  #pdf-app .content-container .cv-img {
    max-width: 100%;
  }
  #cmd-app {
    max-width: 100%;
    max-height: 93%;
  }
  #cmd-app .content-container {
    height: 100%;
  }
  #web-app {
    max-width: 100%;
    max-height: 93%;
  }
  #web-app .markdown-container .markdown-item {
    min-width: 50px;
  }
  #aim-lab {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #desktop {
    background: url("../../img/background8.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #desktop .desktop-container .shortcut-container {
    height: auto;
  }
  #desktop .desktop-container .shortcut-container .shortcut {
    max-width: 10%;
    height: fit-content;
    padding: 0.5em;
    box-sizing: content-box;
    margin: 1em;
    border: 1px solid transparent;
  }
  #desktop .desktop-container .shortcut-container #aim-shortcut {
    display: none;
  }
  #desktop .desktop-container .taskbar-container {
    justify-content: center;
    bottom: 0;
  }
  #desktop .desktop-container .taskbar-container .back-button {
    display: block;
    position: absolute;
    left: 1em;
  }
  #desktop .desktop-container .taskbar-container .taskbar-app-container {
    display: none;
  }
  #desktop .desktop-container #current-time {
    display: none;
  }
  .window-app {
    max-width: 100%;
    max-height: 93%;
  }
  .window-app .task-nav {
    display: none;
  }
  .window-app .content-container {
    max-height: 100%;
  }
  #trash-app {
    max-width: 100%;
    max-height: 93%;
  }
  #trash-app .trash-items {
    font-size: 12px;
  }
  #trash-app .trash-items .trash-item .trash-name {
    width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #chat-app {
    max-width: 100%;
    max-height: 93%;
  }
  #chat-app .content-container .clients-list {
    width: 100%;
  }
  #chat-app .content-container .clients-list.inactive {
    display: none;
  }
  #chat-app .content-container .msg-container {
    display: none;
    width: 100%;
  }
  #chat-app .content-container .msg-container.active {
    display: block;
    width: 100%;
    height: fit-content;
  }
  #mail-app {
    max-width: 100%;
    max-height: 93%;
  }
  #mail-app .content-container .client-list {
    width: 100%;
  }
  #mail-app .content-container .client-list.inactive {
    display: none;
  }
  #mail-app .content-container .email-container {
    display: none;
    width: 100%;
  }
  #mail-app .content-container .email-container.active {
    display: block;
    width: 100%;
    height: auto;
    overflow: auto;
  }
  #mail-app .content-container .email-container img {
    width: 100%;
  }
  #gallery-app .content-container .carousel .carousel-images img {
    max-width: 100%;
    max-height: 100%;
  }
  #pdf-app {
    max-width: 100%;
    max-height: 93%;
  }
  #pdf-app .content-container {
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  #pdf-app .content-container .cv-img {
    max-width: 100%;
  }
  #cmd-app {
    max-width: 100%;
    max-height: 93%;
  }
  #cmd-app .content-container {
    height: 100%;
  }
  #aim-lab {
    display: none;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  #mp3-player {
    bottom: 15vh;
  }
}

/*# sourceMappingURL=style.css.map */
