* {
  font-family: "Klee One", sans-serif;
  padding: 0px;
}

html {
  padding: 0;
  margin: 0;
  background: #b4f4aa;
  line-height: 1.2;
  overflow-x: hidden;
}

td {
  vertical-align: top;
  color: #ffffff;
}

input {
  width: 50px;
  text-align: center;
  vertical-align: top;
  color: #000000;
  border: none;
  background-color: rgba(255, 255, 255, 0.7);
}

input[type="button"] {
  border-style: outset;
  border-width: 1px;
  border-color: black;
  width: 90px;
  text-align: center;
}

input[type="button"]:active {
  border-style: inset;
  border-width: 1px;
  border-color: white;
}

textarea {
  padding-left: 20px;
  margin: 0;
  border-style: inset;
  border-width: 0px;
  box-sizing: border-box;
  width: 100%;
  resize: none;
  color: #000000;
  height: 25px;
  background-color: rgba(119, 119, 119, 0.2);
  opacity: 1;
  text-align: left;
}

select {
  width: 100%;
  color: #000000;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
}

option {
  color: #000000;
}

thead tr td {
  text-align: center;
}

table {
  border-collapse: collapse;
  width: 100%;
  line-height: 1.2;
  text-align: center;
}

th {
  border: 1px solid #ffffff;
  background-color: #ffe5d4;
  font-size: 12px;
  text-align: center;
  vertical-align: top;
  padding: 2px 5px 2px 5px;
  color: #000000;
  font-weight: bold;
}

td {
  border: 1px solid #ffffff;
  background-color: #fff2e9;
  font-size: 12px;
  vertical-align: top;
  padding: 5px;
  color: #000000;
}

body table {
  width: 100%;
}

body {
  width: 1000px;
  margin: auto;
  padding: 0;
  overflow-x: hidden;
}

/* fixed header and footer style */
.webpage {
  margin: 40px 0px 80px 0px;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #000000;
  color: #fff;
  font-size: 30px;
  text-align: center;
  z-index: 99;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #000000;
  color: #fff;
  font-size: 15px;
  text-align: center;
  z-index: 99;
}

.copyright {
  color: #000000;
  font-size: smaller;
  display: block;
  text-align: center;
}

/* start of countdown style */

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  text-align: center;
}

.countdown {
  display: flex;
  justify-content: center;
  margin: 30px 0px 20px 0px;
  text-align: center;
}

.box {
  margin: 0 5px;
  padding: 5px 10px;
  background-color: black;
  border-radius: 5px;
}

.box span {
  display: block;
}

.number {
  font-family: "Digital-7 mono";
  font-size: 2em;
  color: white;
}

.label {
  font-size: 0.8em;
  color: #bbb;
}

.colon {
  font-family: "Digital-7 mono";
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 10px;
}

.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.expired-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.expired {
  font-size: 2em;
  font-weight: bold;
  color: red;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-right: 0.15em solid orange;
  animation: typing 4s steps(32, end), blink-caret 0.75s step-end infinite;
  text-align: center;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 32ch;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: orange;
  }
}

/* end of countdown style */


/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 0px;
  width: calc(100% / 4);
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

/* long table style */
.hidden {
  display: none;
}

.button-container {
  display: flex; /* equal width */
  justify-content: center; /* Center horizontally */
  text-align: center;
  width: 100%;
}

.button-container :hover {
  background-color: #7db992;
}

.button-container button {
  flex: 1;
  margin: 1px;
  padding: 5px;
  box-sizing: border-box;
  background-color: #a6e3bb;
  border: none;
}

.button-container button.active {
  background-color: #7db992;
}

/* hidden birthday eye icon */
.icon-button {
  background: none;
  border: none;
  cursor: pointer;
}

/* original css */
.gate {
  width: 35px;
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
}

.collapsible {
  background-color: rgba(109, 158, 255, 0.2);
  color: black;
  cursor: pointer;
  width: 100%;
  border: none;
  vertical-align: middle;
  padding: 2.5px;
  min-height: 30px;
  margin: 1px;
}

.active,
.collapsible:hover {
  background-color: rgba(109, 158, 255, 0.5);
}

.content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: rgba(255, 255, 255, 1);
  align-content: center;
}

.content0 {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: rgba(255, 255, 255, 0);
  align-content: center;
}

svg {
  margin: auto;
  display: block;
}

text {
  height: 25px;
  cursor: default;
}

.planetHover {
  cursor: pointer;
}

.planetHover:hover {
  fill: rgba(0, 0, 0, 0.2);
}

.channelHover {
  cursor: pointer;
}

.channelHover:hover {
  stroke: rgb(0, 255, 0);
  stroke-width: 10px;
}

g {
  pointer-events: none;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.slidecontainer {
  width: 100%;
  height: 30px;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 40px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 40px;
  background: rgb(60, 106, 205);
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 20px;
  height: 40px;
  background: rgb(163, 230, 239);
  cursor: pointer;
}

.textTitle {
  background: #ffe5d4;
  width: 50%;
  min-height: 30px;
  padding-right: 20px;
  text-align: end;
  color: black;
  line-height: 1.2;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}

.textDescription {
  background: #fff2e9;
  width: 50%;
  min-height: 30px;
  padding-left: 20px;
  text-align: start;
  color: black;
  line-height: 1.2;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}

a {
  color: black;
  text-decoration: none;
}

.nameBox {
  width: 100%;
  text-align: center;
}

.inputHead {
  width: 100%;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 10px;
}

.birthPadding {
  float: left;
  width: 5%;
}

.birthBox {
  float: left;
  width: 15%;
  text-align: center;
}

.returnPadding {
  float: left;
  width: 20%;
}

.returnBox {
  float: left;
  width: 30%;
  text-align: center;
}

.timezoneSelectDiv {
  float: left;
  width: 15%;
  text-align: center;
}

.timezoneSelect {
  width: 60px;
  text-align: center;
}

.timezonePadding {
  float: left;
  width: 5%;
}

.resultText {
  float: left;
  width: 45%;
  text-align: right;
  padding-right: 5%;
  min-height: 25px;
  vertical-align: middle;
  opacity: 1;
}

.resultDate {
  float: left;
  width: 35%;
  padding-left: 0%;
}

.resultBirthText {
  float: left;
  width: 70%;
  text-align: center;
  padding-left: 15%;
}

.resultArrow {
  float: right;
  width: 10%;
  height: 25px;
  vertical-align: middle;
}

.preSVG {
  float: left;
  text-align: right;
  width: 10%;
}

.SVG {
  float: left;
  width: 80%;
}

.postSVG {
  float: right;
  width: 10%;
  vertical-align: middle;
  text-align: center;
}

.postSVGItem {
  float: right;
  width: 100%;
}

.title {
  text-align: center;
  font-size: larger;
}

.textTablePadding {
  width: 85px;
}

.circle {
  border: 1px solid #000;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  position: relative;
  margin: 0px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  background-color: #ffffff;
}

.circle.plus:before,
.circle.plus:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: green;
}

.circle.plus:before {
  width: 2px;
  margin: 2px auto;
}

.circle.plus:after {
  margin: auto 2px;
  height: 2px;
}

.circle.minus:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: red;
  margin: auto 2px;
  height: 2px;
}

.animation {
  display: block;
}

.separator {
  display: block;
}

.reportTitle {
  display: none;
}

.reportLogo {
  display: none;
}

.calculateButton {
  border-radius: 10px;
  background: #ff0000;
  border: none;
  color: white;
  font-size: large;
  width: 90%;
  height: 40px;
}

.courseButton {
  border-radius: 10px;
  border: none;
  background: #00a0ff;
  color: white;
  font-size: large;
  width: 90%;
  height: 40px;
}

.calSeparatorPadding {
  float: left;
  width: 0%;
  height: 30px;
}

.calSeparatorButton {
  float: left;
  width: 50%;
  text-align: center;
  vertical-align: middle;
  height: 30px;
}

.calSeparatorDiv {
  height: 40px;
  vertical-align: middle;
  margin: 15px;
}

.courseNow {
  text-align: center;
  padding: 10px;
  margin: 10px;
}

.courseNowButton {
  border-radius: 10px;
  background: #22c05f;
  color: white;
  font-size: 175%;
  padding: 10px;
  cursor: pointer;
  -webkit-transition: padding 0.5s;
  transition: padding 0.5s;
}

.courseNowButton:hover {
  padding: 25px;
}

.postSVGButton {
  color: black;
  font-size: 16px;
  width: 90px;
  height: 40px;
  border-radius: 5px;
  margin: 5px;
  background: #fada72;
}

.multiChartButton1 {
  width: 90px;
}

.multiChartButton2 {
  width: 90px;
}

.calNearbyButton {
  color: white;
  border: none;
  width: 250px;
  height: 40px;
  border-radius: 20px;
  background: #00a0ff;
}

*:disabled {
  pointer-events: none;
}

button {
  cursor: pointer;
  font-size: 14px;
}

.range-wrap {
  position: relative;
}

.range-value {
  position: absolute;
  top: -50%;
}

/* slider time icon */
.range-value span {
  width: 50px;
  height: 25px;
  line-height: 20px;
  text-align: center;
  background: #03a9f4;
  color: #fff;
  font-size: 14px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 5px;
}

.range-value span:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid #03a9f4;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  margin-top: -1px;
}
