/*
CSS INDEX 
------------
1. Imports 
2. Fundamentals
3. Clip Art
4. Table/Modals, RD,GR,YW buttons, etc
5. Navbar & Apple Icon 
6. Folders, Folder Container, Dragging
7. Form Login CSS
8. Ability User to change BG
9. Icon Images
10. Media Queries
------------
*/
/*** 1. IMPORTS ***/
@import url("https://fonts.googleapis.com/css2?family=Italianno&display=swap");
/*** 2. FUNDAMENTALS ***/
:root {
  --background: url("/images/road.jpg");
  --text-color: #fff;
  --font-size: 14px;
  --logo: url("/images/apple-c-icon.png");
  --font-family: "Rubik", sans-serif;
}

html {
  overflow: hidden;
  background-color: #000;
  height: -webkit-fill-available;
}

body {
  overflow: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  background-image: var(--background);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  color: var(--text-color) !important;
  font-family: var(--font-family) !important;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  min-height: 100dvh;
}

a {
  text-decoration: none !important;
  color: #60cfff;
}

a:hover {
  color: #ccc;
}

p {
  font-size: var(--font-size);
  font-family: var(--font-family) !important;
  text-align: center;
  padding-top: 5px;
  color: var(--text-color) !important;
}

table {
  width: 100%;
  font-size: var(--font-size);
  color: var(--text-color) !important;
}

th {
  background-color: rgba(0, 0, 0, 0.35) !important;
  border-bottom: 1px solid rgba(128, 128, 128, 0.459);
  color: var(--text-color) !important;
  border-right: 1px solid rgba(128, 128, 128, 0.459);
}

th:hover {
  cursor: default;
}

td,
th {
  padding-left: 10px;
  padding-bottom: 5px;
  padding-top: 5px;
}

#welcome-message {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 99999;
  pointer-events: none;
  text-align: center;
}

#welcome-message p {
  font-family: -apple-system, "SF Pro Display", "Helvetica Neue", sans-serif !important;
  font-size: 36px;
  font-weight: 200;
  color: #fff !important;
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 1;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 1px;
}

#ask-question {
  width: 100%;
}

.ask-container {
  margin: 5px 10px 0px 10px;
}

.ask-container #response {
  border-radius: 0.3rem;
  margin: 15px 0px 15px 0px;
  background-color: #444444;
  padding: 7px;
  display: none;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1098039216);
}

/*** 3. CLIP ART ***/
#clipAlert {
  display: flex;
  align-items: center;
  justify-content: center;
}

#clipAlert p {
  width: 150px;
  height: 40px;
  top: 6%;
  left: 0%;
  padding: 5px;
  position: fixed;
  color: var(--text-color) !important;
  text-shadow: 1px 1px 1px black;
}

#skip-name-alert {
  display: none;
  color: #eee;
  font-size: 11px;
  margin-top: 5px;
  background: rgba(34, 34, 34, 0.75);
  padding: 6px;
  border-radius: 0.2rem;
}

#skip-name-alert span {
  text-decoration: underline;
}

#skip-name-alert span:hover {
  cursor: pointer;
  opacity: 0.8;
}

/*** 4. TABLE/MODAL/NOTIFICATION Styles (includes modal, buttons, content within modals) ***/
.notification {
  position: fixed;
  bottom: 55px;
  right: 12px;
  width: 400px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  -o-background-filter: blur(10px);
  z-index: 99999999;
  height: 100px;
  border-bottom-right-radius: 0.7em;
  border-bottom-left-radius: 0.7em;
  border-top-right-radius: 0.7em !important;
  border-top-left-radius: 0.7em !important;
  animation: fadeInRight;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 1s;
  /* don't forget to set a duration! */
  display: none;
  transition: 0.2s;
}

.notification:hover {
  cursor: pointer;
  opacity: 0.85;
  transition: 0.2s;
}

.notification header {
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--text-color);
  border-top-right-radius: 1em !important;
  border-top-left-radius: 1em !important;
}

.notification header span {
  text-align: left;
  font-size: 13px;
  color: #eee;
}

.notification h5 {
  text-align: left;
  font-size: 12px;
  padding: 5px 0px 0px 10px;
  color: #fff;
  font-weight: bold;
}

.notification p {
  text-align: left;
  font-size: 11px;
  padding: 0px 10px 0px 10px;
  color: #eee;
  white-space: pre-wrap;
}

.notification .time {
  position: absolute;
  right: 30px;
  top: 5px;
  font-size: 12px;
  color: #eee;
}

.notification .closed {
  position: absolute;
  right: 6px;
  top: 7px;
  font-size: 10px;
  height: 17px;
  width: 17px;
  border-radius: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  color: #eee;
  transition: 0.2s;
  border: 1px solid rgba(244, 244, 244, 0.3);
  z-index: 99999999999;
}

.notification .closed:hover {
  opacity: 0.6;
  cursor: pointer;
  transition: 0.2s;
}

.dark-table {
  background-color: #332c2a;
  color: var(--text-color) !important;
}

.light-light {
  background: #333333;
  color: var(--text-color) !important;
}

.dark-table:hover,
.light-light:hover {
  background: rgba(21, 109, 215, 0.8);
}

.modal {
  cursor: crosshair;
  width: 100%;
  z-index: 999999;
  pointer-events: none;
}

.modal-dialog {
  pointer-events: auto;
}

.modal-backdrop.show {
  opacity: 0.2;
}

.modal-body {
  background: rgba(0, 0, 0, 0.8);
  border: 0px;
  cursor: pointer;
  padding: 0px;
  overflow-y: scroll;
  height: 530px;
}

.modal-content {
  border: 0px;
  cursor: pointer;
}

.modal-header {
  background: rgba(0, 0, 0, 0.75);
  border: 0px;
  cursor: default;
  height: 40px;
}

.modal-folder-heading {
  position: absolute;
  font-size: 13px;
  left: 50%;
  top: 2%;
  transform: translate(-50%, 1%);
}

.modal-folder-heading img {
  max-width: 20px;
  margin-top: -5px;
}

.about-me-modal p,
.about-me-modal h2,
.about-me-modal h3,
.about-me-modal h4,
.about-me-modal h5,
.about-me-modal h6 {
  text-align: left;
  margin: 10px;
}

.about-me-modal img {
  margin: 10px;
}

.cursive {
  font-family: "Italianno", cursive !important;
  font-size: 30px;
  letter-spacing: 1px;
}

.green-button,
.yellow-button,
.red-button {
  width: 13px;
  height: 13px;
  margin: 5px 0px 5px 0px;
  border-radius: 100px;
  position: absolute;
  cursor: pointer;
  touch-action: manipulation;
}
.green-button::before,
.yellow-button::before,
.red-button::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
}

.green-button {
  background-color: #72be47;
  top: 8px;
  left: 50px;
}

.yellow-button {
  background-color: #e0c04c;
  top: 8px;
  left: 30px;
}

.red-button {
  background-color: #ed655a;
  top: 8px;
  left: 10px;
}

.green-button:hover,
.yellow-button:hover,
.red-button:hover {
  opacity: 0.7;
}

.green-button:after {
  /* This will render the '' */
  color: rgba(0, 0, 0, 0.4);
  top: -45%;
  left: 4%;
  transform: rotate(-25deg);
  position: absolute;
  font-size: 13px;
  visibility: hidden;
}

.yellow-button:after {
  /* This will render the '-' */
  color: rgba(0, 0, 0, 0.4);
  top: -5.5px;
  left: 1.4px;
  position: absolute;
  font-size: 13px;
  visibility: hidden;
}

.red-button:after {
  /* This will render the 'X' */
  color: rgba(0, 0, 0, 0.5);
  top: -5.5px;
  left: 1.4px;
  position: absolute;
  font-size: 13px;
}

.me {
  border-radius: 100px;
}

.hobbies {
  width: 100%;
}

.hobbies p {
  background: rgba(0, 0, 0, 0.25);
  padding: 0.8em;
  text-align: center;
  color: var(--text-color);
  border-radius: 4px;
  font-size: 13px;
  margin: 0px -9px 5px 10px;
  display: inline-block;
}

.progress {
  margin: -5px 10px -5px 10px;
  background: transparent;
  border: none !important;
  padding: 0px;
  height: 4px;
}

.progress-html {
  width: 100%;
  border-radius: 4px;
}

.progress-css {
  width: 100%;
  border-radius: 4px;
}

.progress-js {
  width: 90%;
  border-radius: 4px;
}

.progress-adobe {
  width: 86%;
  border-radius: 4px;
}

.progress-api {
  width: 55%;
  border-radius: 4px;
}

.progress-react {
  width: 40%;
  border-radius: 4px;
}

.progress-backend {
  width: 22%;
  border-radius: 4px;
}

.line-white {
  background: rgba(113, 113, 113, 0.6901960784);
  width: 80%;
  margin-left: 10px;
  height: 1px;
  border-radius: 10px;
}

/*** 5. Navbar & Apple Icon ***/
.fa {
  margin-left: 15px;
  padding: 5px 7px 5px 7px;
}

.fa:hover {
  background: rgba(21, 109, 215, 0.8);
  padding: 5px 7px 5px 7px;
  border-radius: 4px;
}

.apple-logo {
  width: 15px;
  /*content: var(--logo);*/
}

.navbar {
  background: rgba(0, 0, 0, 0.4);
  height: 2rem;
  color: var(--text-color) !important;
  visibility: hidden;
}

.nav-link {
  margin-left: 5px;
  margin-right: 0px;
  font-size: 13px;
  color: var(--text-color) !important;
}

.nav-item:hover {
  cursor: pointer;
}

.nav-link:hover {
  cursor: pointer;
}

.nav-link:focus {
  background: rgba(21, 109, 215, 0.8) !important;
  height: 2rem;
  cursor: pointer;
}

.dropdown-item {
  font-size: 13px;
  padding: 1px 5px 1px 5px;
  margin: 0px;
  color: var(--text-color) !important;
}

.dropdown-item:hover {
  background: rgba(21, 109, 215, 0.8);
}

.dropdown-menu {
  background-color: rgba(38, 38, 38, 0.399);
  backdrop-filter: blur(15px);
  color: var(--text-color) !important;
  padding: 5px 0px 5px 0px;
}

/*** 6. Folders, Folder Container, Dragging ***/
.folder-container-1 {
  width: 60px;
  position: absolute;
  right: 30px;
  top: 12%;
  cursor: pointer;
  display: none;
}

.folder-container-2 {
  width: 60px;
  position: absolute;
  right: 150px;
  top: 11%;
  cursor: pointer;
  display: none;
}

#folders {
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
}

#folders:active {
  opacity: 0.7;
  transform: rotate(4deg);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  border: 1px solid grey;
}

.resize-drag {
  /* This makes things *much* easier */
  box-sizing: border-box;
  touch-action: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
}

.resize-container {
  width: 100%;
  height: 240px;
}

/*** 7. Form Login CSS ***/
.form-container {
  z-index: 999;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-signin {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 999999;
}

/* macOS login avatar */
.mac-login-avatar {
  margin-bottom: 10px;
}

.mac-login-avatar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.mac-login-name {
  font-size: 18px !important;
  font-weight: 300 !important;
  color: #fff !important;
  letter-spacing: 0.5px;
  margin-bottom: 12px !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* macOS-style input row */
.mac-input-wrapper {
  position: relative;
  width: 220px;
  display: flex;
  align-items: center;
}

.mac-input-wrapper input {
  width: 100%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 7px;
  padding: 7px 36px 7px 12px;
  color: #fff;
  font-size: 13px;
  outline: none;
  text-align: left;
  transition: border 0.2s, background 0.2s;
}

.mac-input-wrapper input:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.mac-input-wrapper input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}

.mac-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}

.mac-arrow-btn {
  position: absolute;
  right: 5px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.75);
  color: #333;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s;
}

.mac-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.95);
}

/* macOS bottom controls (Sleep / Restart / Shut Down) */
.mac-bottom-controls {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 48px;
  z-index: 999999;
}

.mac-control-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 0;
}

.mac-control-btn span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.mac-control-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}

.mac-control-btn:hover .mac-control-icon {
  background: rgba(255, 255, 255, 0.2);
}

::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(244, 244, 244, 0.7) !important;
  opacity: 1 !important;
  /* Firefox */
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(244, 244, 244, 0.7) !important;
  opacity: 1 !important;
  /* Firefox */
}

.skip-info {
  background: rgba(0, 0, 0, 0.2) !important;
  margin-top: 30px;
  font-size: 12px;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

#username {
  display: none;
}

/*** 8. Ability User to change BG ***/
#bg-container {
  width: 100%;
  background: rgba(0, 0, 0, 0) !important;
  margin-top: 25px;
  padding: 0px;
}

#bg-container img {
  width: 100%;
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 100%;
  height: 65px;
  transition: 0.3s;
}

#bg-container img:hover {
  opacity: 0.7;
  cursor: pointer;
  transform: scale(1.1);
  transition: 0.3s;
}

.plus {
  font-size: 25px;
  text-shadow: 1px 0px 2px black;
  position: absolute;
  right: 22px;
  bottom: 40px;
  z-index: 999999;
  display: none;
}

.plus:hover {
  cursor: pointer;
}

/*** 9. Icon Images ***/
.search {
  display: none;
}

.fa-battery-full span {
  font-family: arial !important;
  font-weight: bold;
}

.fa-battery-half span {
  font-family: arial !important;
  font-weight: bold;
}

.fa-battery-quarter {
  color: #ff6e68 !important;
}

.fa-battery-quarter span {
  font-family: arial !important;
  font-weight: bold;
  color: #ff6e68 !important;
}

/*** 10. Modal Window Controls & Dragging ***/
.modal-header {
  cursor: grab;
}

.modal-content.minimized .modal-body {
  display: none;
}

.modal-content.minimized .modal-folder-heading {
  display: none;
}

.modal-dialog.fullscreen {
  max-width: 100% !important;
  width: 100% !important;
  height: 100vh !important;
  margin: 0 !important;
  transform: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
}

.modal-dialog.fullscreen .modal-body {
  height: calc(100vh - 80px) !important;
}

/*** 11. Desktop Right-Click Context Menu ***/
#desktop-context-menu {
  display: none;
  position: fixed;
  z-index: 99999999;
  background: rgba(38, 38, 38, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 8px;
  padding: 5px 0;
  min-width: 185px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.context-menu-label {
  font-size: 10px !important;
  color: rgba(255, 255, 255, 0.4) !important;
  padding: 4px 14px !important;
  text-align: left !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 !important;
  pointer-events: none;
}

.context-menu-item {
  font-size: 14px;
  color: #fff;
  padding: 5px 14px;
  cursor: pointer;
}

.context-menu-item:hover {
  background: rgba(21, 109, 215, 0.8);
  border-radius: 4px;
}

.context-menu-divider {
  margin: 4px 0;
  border-color: rgba(255, 255, 255, 0.15);
}

/*** 12. Media Querey 1 handling width of 870px or less ***/
@media only screen and (max-width: 870px) {
  #welcome-message p {
    font-size: 14px;
  }
  table {
    font-size: 10px;
  }
  .notification {
    display: none !important;
  }
  .notification header span {
    font-size: 13px;
  }
  .notification h5 {
    font-size: 13px;
  }
  .notification p {
    font-size: 11px;
  }
  .bluetooth,
  .wifi,
  .battery,
  .search,
  .date {
    position: fixed;
    bottom: 2%;
  }
  .mobile-fade {
    display: block;
    background-image: linear-gradient(to bottom, transparent, black);
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 0px;
    margin: 0px;
    left: 0;
    height: 90px;
    z-index: -1;
  }
  .bluetooth {
    left: 5%;
  }
  .wifi {
    left: 15%;
  }
  .battery {
    left: 25%;
  }
  .search {
    left: 40%;
    display: none;
  }
  .date {
    right: 5%;
    padding: 5px 0px 0px 0px;
    margin: 0px;
  }
  .username {
    right: 0 !important;
    top: 0 !important;
    position: fixed !important;
  }
  .mac-input-wrapper input {
    font-size: 16px;
  }
  html {
    overflow-y: visible !important;
  }
}/*# sourceMappingURL=style.css.map */