@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&family=Share+Tech+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400&display=swap');

*,
*::after,
*::before {
  box-sizing: border-box;
}

:root {
  --lakegreen: #007c15;
  --seablue: #04adc4;
  --purplehaze: #572cce;
  --orangedream: #e24f00;
  --goldrush: rgb(228, 164, 2);
  --dark: #000000;
  --darkgrey: #222222;
  --light: #ffffff;
  /* Rocket color-scheme:  */
  --color: #40407a;
  --font-color: #f18f0f;
  --rocket-main: white;
  --rocket-highlight: #e24f00;
  --rocket-glass: #0383a3;
  --rocket-smoke: #f1f2f6;
  --rocket-fire: #f0932b;
  --rocket-fire-highlight: #f1c40f;

}

html,
body {
  position: relative;
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: black;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #f1eded;
  margin: 0;
  padding: 0;
}

/* SVG Circle and Timer */

.svg_circle {
  fill: transparent;
  stroke: var(--goldrush);
  stroke-width: 4;
  stroke-linecap: round;
  /* filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%); */
}

#customTime {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
}

.swiper-wrapper {
  /* z-index: 2000; */
}

.swiper-slide {
  cursor: pointer;
}

#cosmic_view {
  /* z-index: 10; */
  width: 1920px;
  height: 1080px;
}

/* Start of: Popup Message and Modal  */
.custom-tooltip {
  font-family: 'Orbitron', 'Poppins', sans-serif;
  color: whitesmoke;
  font-size: 1rem;
  width: 200px;
  border-radius: 3px solid black;
  filter: drop-shadow(10px 10px 5px #000000);
  -webkit-filter: drop-shadow(10px 10px 5px #000000);
  -moz-filter: drop-shadow(10px 10px 5px #000000);
  padding: 0.5em 0.5em 0.5em 0.5em;
  --bs-tooltip-bg: var(--darkgrey);
  --bs-tooltip-color: var(--light);
}

.custom-popover {
  --bs-popover-max-width: 200px;
  --bs-popover-border-color: var(--lakegreen);
  --bs-popover-header-bg: var(--lakegreen);
  --bs-popover-header-color: var(--light);
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: .5rem;
}

.auto_play_popup {
  position: relative;
  bottom: 4%;
}

/* End of: Popup Message and Modal  */
/* Start of: Autoplay Toggle Button */

.button-container {
  z-index: 100;
  position: absolute;
  left: 2%;
  bottom: 6.6%
}

#auto_play_img {
  width: 72px;
  height: 47px;
  filter: invert(100%);
  -webkit-filter: invert(100%);
}

#autoPlay_btn {
  cursor: pointer;
  position: absolute;
  background-color: transparent;
  padding: 7px;
  bottom: 2%;
  left: 2%;
  z-index: 1000;
}

.btn {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 2px solid #e74c3c;
  border-radius: 0.6em;
  color: #e74c3c;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  margin: 20px;
  padding: 1.2em 2.8em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.btn:hover,
.btn:focus {
  color: #fff;
  outline: 0;
}

.purple_btn {
  border-color: whitesmoke;
  border-radius: 0;
  color: var(--purplehaze);
  position: absolute;
  left: 1%;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 2250ms ease-in-out;
}

.purple_btn:hover {
  border: 2px solid rgb(50, 50, 50);
  filter: invert(10%);
  -webkit-filter: invert(10%);
}

.purple_btn:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 100%;
  background: rgb(109, 62, 228);
  background: linear-gradient(0deg, rgb(64, 29, 152) 0%, rgba(72, 0, 172, 1) 100%);
  z-index: -1;
  -webkit-transition: width 150ms ease-in-out;
  transition: width 150ms ease-in-out;
}

.purple_btn:hover {
  color: #fff;
}

.purple_btn:hover:after {
  width: 110%;
}

#btn_prev,
#btn_next {
  z-index: 2000;
  color: rebeccapurple;
  font-size: 58px;
}

#btn_next:hover {
  color: orange;
  font-size: 66px;
}

#btn_prev:hover {
  color: orangered;
  font-size: 66px;
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active,
.swiper-pagination-bullet-next,
.swiper-pagination-bullet-active-prev {
  z-index: 1000;
}

.swiper-pagination-bullet {
  z-index: 2000;
  color: orange;
  width: 24px;
  height: 24px;
  filter: invert(100%);
  -webkit-filter: invert(100%);
  transition: scale 0.5s linear ease-in-out;
}

.swiper-pagination-bullet:hover {
  color: orangered;
  border: 1px solid white;
  transform: scale(1.1);
}



.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  /* z-index: 10; */
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 1000;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

/* Start of: AutoTimer */
.duration-dropdown {
  z-index: 2500;
  background-color: rgb(73, 73, 73);
  border: 1px solid black;
  padding: 7px;
  position: absolute;
  left: 2.7%;
  bottom: 3%;
}

#select_duration {
  color: white;
  font-size: 24px;
  font-family: 'Orbitron',
    sans-serif;

}

#durationSelect {
  cursor: pointer;
  background-color: rgb(35, 35, 35);
  font-size: 16px;
  font-family: 'Orbitron',
    sans-serif;
  letter-spacing: 2px;
  position: relative;
  top: -2px;
  margin-top: -2px;
  margin-left: 4px;
  padding-left: 4px;
  color: var(--orangedream);

}

select {
  border: 1px solid black;
}

select:focus>option:checked {
  background: var(--purplehaze);
  cursor: pointer;
}

option {
  cursor: pointer;
  background: var(--purplehaze);
}

option:checked,
option:hover {
  cursor: pointer;
  color: white;
  background: var(--purplehaze);
}


.seconds {
  cursor: pointer;
  font-size: 16px;
  font-family: 'Orbitron',
    sans-serif;
  letter-spacing: 2px;
  background-color: #919191;
  color: var(--orangedream);
}

.credit_container {
  z-index: 2000;
  position: absolute;
  right: 7.7%;
  bottom: 3%;
  transition: all ease-in-out 0.4s;
}

.credits {
  font-family: 'Orbitron',
    'Poppins',
    sans-serif;
  letter-spacing: 2px;
  font-size: 1.2rem;
  color: white;
  opacity: 0.4;
  text-decoration: none;
  transition: all ease-in-out 0.4s;
  transition: scale ease-in-out 0.3s;

}

.credits:hover {
  padding: 4px 6px 4px 6px;
  color: rgb(210, 153, 7);
  opacity: 1;
  translate: scale(1.3);
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: line-through;
  box-shadow: inset;
  border: 1px solid black;

}

#fortyhz:hover {
  color: rgb(255, 42, 0);
}

#escape:hover {
  color: goldenrod;
}

/* Start of: Rocket Fire Button */

.fire_btn_container {
  z-index: 2200;
  position: absolute;
  left: 40%;
  bottom: 3%;
}

#rocket_btn {
  padding-left: 11px;
}

.fire_btn {
  color: #ffffff;
  width: auto;
  font-size: 17px;
  border-radius: 7px;
  border: solid 1px #eeb44f;
  box-shadow: inset 1px 1px 2px 0px #1d1d1d;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-family: 'Orbitron', 'Poppins', sans-serif;
  background: linear-gradient(0deg, #ff4f03 10%, #fb9e25 100%);
  display: inline-flex;
  align-items: center;
  padding: 4px 6px 4px 6px;
}

.fire_btn:hover {
  background: linear-gradient(0deg, #fb9e25 10%, #ff4f03 100%);
  font-family: 'Orbitron',
    'Poppins',
    sans-serif;
  transition: font-size 0.5s ease 0s,
    transform 0.5s ease 0s;
  color: black;
  border: 1px solid whitesmoke
    /* filter: invert(100%);
  -webkit-filter: invert(100%); */

}

.fire_btn-text {
  position: relative;
  padding: 10px 18px;
  padding-left: 10px;
}

.fire_btn-icon {
  position: relative;
  border-right: 1px solid #ffffff29;
  box-shadow: inset rgb(0 0 0 / 14%) -1px 0 0;
  margin-left: 7px;
  padding: 10px 10px;
  color: #ffd000;
  background: #fb9e25;
}

.fire_btn-icon>i {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 33px;
}

/* End of: Rocket Fire Button */

/* Start of: Rocket Launch */

.rocket_container {
  z-index: 3000;
  position: absolute;
  left: 35%;
  bottom: 4%;
}

#frame {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.shadow {
  position: absolute;
  width: 50%;
  height: 100%;
  right: 0;
  background: rgba(100, 100, 100, 0.1);
  z-index: 3001;
}

.shadow--full {
  width: 100%;
}

.rocket {
  position: relative;
  width: 55px;
  height: 100px;
}

.rocket__body {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 3000;
}

.rocket__body__window {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 30px;
  left: 13.5px;
  border-radius: 50%;
  background: var(--rocket-glass);
  z-index: 3000;
  border: 3px solid var(--rocket-highlight);
}

.rocket__body__inner {
  position: relative;
  width: 55px;
  height: 125px;
  border-radius: 80%;
  background: var(--rocket-main);
  overflow: hidden;
}

.rocket__body__inner:before,
.rocket__body__inner:after {
  content: "";
  position: absolute;
  background: var(--rocket-highlight);
  border-radius: 50%;
}

.rocket__body__inner:before {
  width: 100%;
  height: 50px;
  top: -30px;
}

.rocket__body__inner:after {
  width: 100%;
  height: 10px;
  bottom: 22.5px;
}

.rocket__wing {
  position: absolute;
  background: var(--rocket-highlight);
  bottom: 0px;
  z-index: 3000;
}

.rocket__wing--left {
  left: -29px;
  width: 44px;
  height: 20px;
  border-radius: 100% 0 0 0;
  transform: rotate(-50deg);
}

.rocket__wing--right {
  right: -29px;
  width: 44px;
  height: 20px;
  border-radius: 0 100% 0 0;
  transform: rotate(50deg);
}

.rocket__label {
  width: 250px;
  position: absolute;
  top: -80px;
  left: -80px;
}

.rocket__label p {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Bowlby One SC", cursive;
  font-size: 80px;
  line-height: 80px;
  margin: 0;
  text-transform: uppercase;
  color: var(--font-color);
  transform: rotate(-25deg);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgb(255, 255, 255);
}

.rocket__smoke {
  position: absolute;
  width: 50px;
  height: 10px;
  bottom: 5px;
  opacity: 0;
  z-index: 3015;
}

.rocket__smoke__inner {
  position: relative;
  margin: 30px 0 0 0;
  width: 100%;
  height: 100%;
  background: var(--rocket-smoke);
}

.rocket__smoke__inner div {
  position: absolute;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  left: -5px;
  bottom: 0;
  box-shadow: inset -2px -3px 0 0 var(--rocket-smoke);
  background: #fff;
  z-index: 3010;
}

.rocket__smoke__inner div:nth-child(1) {
  transform: scale(1.5);
  left: 10%;
  bottom: 30%;
  z-index: 3009;
}

.rocket__smoke__inner div:nth-child(2) {
  transform: scale(2.5);
  left: 50%;
  bottom: 90%;
  z-index: 3008;
}

.rocket__smoke__inner div:nth-child(3) {
  transform: scale(1.1);
  left: 84%;
  bottom: 4.5%;
  z-index: 3007;
}

.rocket__smoke--right {
  right: -50px;
}

.rocket__smoke--left {
  left: -50px;
  transform: rotateY(180deg);
}

.rocket__fire {
  position: absolute;
  width: 13.75px;
  height: 13.75px;
  bottom: -15.75px;
  left: 20.75px;
  background: var(--rocket-fire);
  border-radius: 80% 0 55% 50%/55% 0 80% 50%;
  margin-top: 20px;
  transform: rotate(135deg);
}

.rocket__fire:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 1px;
  width: 10.3125px;
  height: 10.3125px;
  background: var(--rocket-fire-highlight);
  border-radius: 80% 0 55% 50%/55% 0 80% 50%;
}


/* End of: Rocket Launch */