/*!**********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles.scss ***!
  \**********************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;700&display=swap);
/*!**************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles.scss (1) ***!
  \**************************************************************************************************************/
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
}
#loading-screen #loading-screen-content {
  margin-top: 12%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#loading-screen #loading-screen-content #loading-screen-header {
  font-size: 30px;
  color: white;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#loading-screen #loading-screen-content #loading-screen-header #loading-screen-header-title {
  width: 50%;
}
#loading-screen #loading-screen-content #loading-screen-header #loading-screen-header-text {
  margin-bottom: 0;
}
#loading-screen #loading-screen-content #loading-bar {
  width: 40%;
  height: 10px;
  background-color: #444;
  position: relative;
  overflow: hidden;
}
#loading-screen #loading-screen-content #loading-bar #loading-bar-inner {
  width: 0%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  position: absolute;
  top: 0;
  left: 0;
}

#info {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 280px;
  background-color: rgba(24, 19, 51, 0.5);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  border-color: rgb(255, 255, 255);
  border-radius: 16px;
  color: white;
  user-select: none;
}
@media (max-width: 767px) {
  #info {
    bottom: 90px;
    width: 245px;
  }
  #info #info-header {
    height: 33px !important;
  }
  #info #info-content {
    font-size: 14px;
  }
}
#info #info-header {
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-position-y: top;
  background-size: 150%;
  border-radius: 16px;
  height: 64px;
  opacity: 0.7;
}
#info #info-header #info-name {
  font-weight: bold;
  justify-content: center;
  font-size: 32px;
  text-shadow: 2px 2px 4px #000;
}
#info #info-content {
  padding: 10px;
}
#info #info-content .info-button {
  margin-top: 8px;
  background-color: #5D5C78;
  color: white;
  border-width: 0;
  border-radius: 16px;
}
#info #info-content #info-next-solar-eclipse {
  justify-content: center;
}
#info #info-content #info-next-lunar-eclipse {
  justify-content: center;
}
#info .info-element {
  display: flex;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  box-shadow: 0px 0px 6px #293457;
  background: #5D5C78;
  border-radius: 0px;
  border: 0px solid #121C26;
}

input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #635959;
  border: 0px solid #FFFFFF;
  height: 20px;
  width: 20px;
  border-radius: 50px;
  background: #776E91;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8.5px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #5D5C78;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  box-shadow: 0px 0px 6px #293457;
  background: #5D5C78;
  border-radius: 0px;
  border: 0px solid #121C26;
}

input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #635959;
  border: 0px solid #FFFFFF;
  height: 20px;
  width: 20px;
  border-radius: 50px;
  background: #776E91;
  cursor: pointer;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range]::-ms-fill-lower {
  background: #5D5C78;
  border: 0px solid #121C26;
  border-radius: 0px;
  box-shadow: 0px 0px 6px #293457;
}

input[type=range]::-ms-fill-upper {
  background: #5D5C78;
  border: 0px solid #121C26;
  border-radius: 0px;
  box-shadow: 0px 0px 6px #293457;
}

input[type=range]::-ms-thumb {
  margin-top: 1px;
  box-shadow: 0px 0px 0px #635959;
  border: 0px solid #FFFFFF;
  height: 20px;
  width: 20px;
  border-radius: 50px;
  background: #776E91;
  cursor: pointer;
}

input[type=range]:focus::-ms-fill-lower {
  background: #5D5C78;
}

input[type=range]:focus::-ms-fill-upper {
  background: #5D5C78;
}

input[type=range] {
  -webkit-appearance: none;
  width: 200px;
  background-color: transparent;
}

#control-panel {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: rgba(24, 19, 51, 0.5);
  border-radius: 16px;
  z-index: 100;
  width: 25%;
  justify-content: space-between;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  border-color: rgb(255, 255, 255);
}
#control-panel .slider-wrapper {
  width: 100%;
  justify-content: center;
  display: flex;
}
#control-panel #simulation-speed {
  text-align: center;
}
@media (max-width: 767px) {
  #control-panel {
    left: 0;
    width: 32px;
    height: 100%;
    transform: none;
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    padding-top: 20px;
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
    justify-content: center;
  }
  #control-panel .to-current {
    margin-bottom: 20px;
  }
  #control-panel .speed-controls {
    display: flex !important;
    flex-direction: column !important;
    height: 29% !important;
    width: 33% !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  #control-panel .speed-controls .slider-wrapper {
    display: inline-block !important;
    width: 20px !important;
    height: 150px;
    padding: 0;
  }
  #control-panel .speed-controls .slider-wrapper #sim-speed-slider {
    display: flex;
    align-items: center;
    width: 150px;
    height: 20px;
    margin: 0;
    transform-origin: 75px 75px;
    transform: rotate(-90deg);
  }
  #control-panel .play-pause {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 0;
    margin-top: 20px;
  }
}
#control-panel .play-pause #play-pause-icon {
  cursor: pointer;
  width: 32px;
  height: 32px;
  filter: invert(100%);
}
#control-panel .speed-controls {
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
}
#control-panel .speed-controls #sim-speed-slider {
  width: 80%;
}
#control-panel .speed-controls #simulation-speed {
  color: white;
  width: 40%;
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  user-select: none;
}
#control-panel #current-date-icon {
  display: flex;
  align-items: baseline;
  height: 32px;
  background-color: #2E2E27;
  color: white;
  border-width: 1px;
  border-radius: 5px;
}
#control-panel #current-date-icon .dot {
  height: 8px;
  width: 8px;
  background-color: #000000;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}
#control-panel #current-date-icon.active {
  color: greenyellow;
  border-width: 1px;
  border-color: greenyellow;
}
#control-panel #current-date-icon.active .dot {
  background-color: greenyellow;
}

#sidebar {
  position: fixed;
  left: 0;
  top: 20%;
  width: 80px;
  height: 440px;
  background-color: rgba(24, 19, 51, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  user-select: none;
  border-radius: 16px;
}
@media (max-width: 767px) {
  #sidebar {
    left: auto;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 50px;
    flex-direction: row;
    justify-content: space-evenly;
    padding-top: 0;
    padding-bottom: 20px;
  }
  #sidebar .sidebar-item {
    margin-bottom: 0 !important;
  }
}
#sidebar .sidebar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}
#sidebar .sidebar-item .sidebar-text {
  font-family: Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 8px;
  text-align: center;
  margin-top: 5px;
  color: white;
  user-select: none;
}
#sidebar #toggleMoons,
#sidebar #toggleOrbits,
#sidebar #toggleLabels,
#sidebar #openSettings {
  margin-top: 10px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  user-select: none;
}
#sidebar #toggleSize {
  margin-top: 10px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  user-select: none;
}
#sidebar #music-icon {
  cursor: pointer;
  width: 40px;
  height: 40px;
  filter: invert(100%);
}

#right-sidebar {
  top: 40px;
  right: 10px;
  position: absolute;
  display: flex;
}
@media (max-width: 767px) {
  #right-sidebar {
    display: none;
  }
}
#right-sidebar h3 {
  color: white;
}
#right-sidebar li {
  cursor: pointer;
  padding: 5px;
  font-size: 14px;
  color: white;
  text-align: left;
  user-select: none;
}
#right-sidebar li:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#right-sidebar li.selected {
  background-color: #5D5C78;
}

#moon-menu {
  position: relative;
  right: 75px;
  top: 67px;
}
#moon-menu ul {
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style-type: none !important;
  position: absolute !important;
  width: 75px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: rgba(24, 19, 51, 0.5);
}

#planet-menu {
  padding: 8px;
  background-color: rgba(24, 19, 51, 0.5);
  border-radius: 16px;
}
#planet-menu #celestial-body-list {
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style-type: none !important;
}

#current-date-time {
  position: fixed;
  display: flex;
  top: 0;
  width: 100%;
  justify-content: center;
  margin-top: 28px;
}
#current-date-time #current-date-time-picker {
  font-size: 40px;
  color: white;
  border: none;
  background-color: transparent;
  text-shadow: 2px 2px 4px #000000;
}
@media (max-width: 991px) {
  #current-date-time #current-date-time-picker {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  #current-date-time #current-date-time-picker {
    font-size: 24px;
  }
}
#current-date-time #date-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 32px;
  background-color: black;
  z-index: 1;
}

.settings-modal {
  display: none;
  position: fixed;
  z-index: 101;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  user-select: none;
}
@media (max-width: 767px) {
  .settings-modal .settings-modal-content {
    width: 80% !important;
    font-size: 16px !important;
  }
  .settings-modal .settings-modal-content .settings-modal-item {
    flex-direction: column;
    align-items: center !important;
  }
}
.settings-modal .settings-modal-content {
  background-color: rgba(24, 19, 51, 0.5);
  margin: 15% auto;
  width: 530px;
  height: 50%;
  margin-top: 10%;
  color: white;
  border-radius: 16px;
  border-width: 1px;
  border-style: solid;
  border-color: white;
}
.settings-modal .settings-modal-content-header {
  background-color: black;
  opacity: 0.9;
  border-radius: 16px;
}
.settings-modal .settings-modal-content-header .settings-modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 16px;
  margin-top: 8px;
}
.settings-modal .settings-modal-content-header .settings-modal-close:hover,
.settings-modal .settings-modal-content-header .settings-modal-close:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}
.settings-modal .settings-modal-content-header .settings-modal-title {
  font-size: 16x;
  font-weight: bold;
  text-align: center;
  padding: 12px;
  display: block;
  margin-left: 8px;
}
.settings-modal .settings-modal-content-header .settings-modal-title h2 {
  margin: 0;
}
.settings-modal .settings-modal-content-body {
  padding: 20px;
}
.settings-modal .settings-modal-content-body .settings-modal-item {
  display: flex;
  align-items: baseline;
  justify-content: space-around;
}
.settings-modal .settings-modal-content-body .settings-modal-item .toggle {
  margin: 0 0 1.5rem;
  box-sizing: border-box;
  font-size: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.settings-modal .settings-modal-content-body .settings-modal-item .toggle input {
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
}
.settings-modal .settings-modal-content-body .settings-modal-item .toggle input + label {
  margin: 0;
  padding: 0.75rem 2rem;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  border: solid 1px #DDD;
  background-color: rgba(24, 19, 51, 0.5);
  font-size: 16px;
  line-height: 36%;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: border-color 0.15s ease-out, color 0.25s ease-out, background-color 0.15s ease-out, box-shadow 0.15s ease-out;
}
.settings-modal .settings-modal-content-body .settings-modal-item .toggle input + label:first-of-type {
  border-radius: 6px 0 0 6px;
  border-right: none;
}
.settings-modal .settings-modal-content-body .settings-modal-item .toggle input + label:last-of-type {
  border-radius: 0 6px 6px 0;
  border-left: none;
}
.settings-modal .settings-modal-content-body .settings-modal-item .toggle input:hover + label {
  border-color: #213140;
}
.settings-modal .settings-modal-content-body .settings-modal-item .toggle input:checked + label {
  background-color: #5D5C78;
  color: #FFF;
  box-shadow: 0 0 10px rgba(44, 16, 204, 0.5);
  border-color: rgb(44, 16, 204);
  z-index: 1;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  overflow: hidden;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
input {
  font-family: "Roboto", sans-serif;
}

#game-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

button {
  margin: 0 5px;
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
}
