* {
  box-sizing: border-box;
  font-family: 'Finlandica', sans-serif;
}


@font-face {
  font-family: "GlacierIndifference";
  src: url(fonts/GlacialIndifference-Regular.otf);
}


body {
  margin: 0;
  background: rgb(36, 35, 35);
  background-attachment: fixed;
  height: 100vh;

  overflow: scroll;

  /* transition: background-color 0.25s; */
}

:root {
  --bg: #EAF6ED;
  --contrast: black;
  --slight: rgb(220, 220, 220);
  --main: #267D28;
  --secondary: #59905A;
  --bgslight: rgba(255, 255, 255, 0.6);
  --br: 0px;
}

button {
  cursor: pointer;
}

.fullwidth {
  width: 100%;
  text-align: center;
}

.nicegrad {
  font-size: 72px;
  background: var(--bg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.node {
  width: 100px;
  height: 50px;
  font-size: 20px;
  border: 4px solid var(--main);
  color: var(--contrast);
  text-align: center;
  background-color: var(--bg);
  transition: box-shadow 0.5s;
  overflow: hidden;
}

.nodeval {
  width: 100%;
  background: var(--bg);
  color: var(--main);
  border: 0px;
  font-size: 33px;
  text-align: center;

  transition: font-size 0.5s;
}



.nodebin {
  width: 100px;
  height: 50px;
  font-size: 20px;
  border: 4px solid var(--main);
  color: var(--contrast);
  text-align: center;
  background-color: var(--bg);
}

.nodevalbin {
  width: 100%;
  background: var(--bg);
  color: var(--main);
  border: 0px;
  font-size: 20px;
  text-align: center;
}

.nodecontrols {
  opacity: 0;
  transition: opacity 0.2s;
}

.guess {
  width: 75%;
  background: var(--bg);
  color: var(--main);
  border: 3px solid var(--main);
  font-size: 20px;
  text-align: center;
}

.guesstile {
  width: 33%;
  float: right;
}

.check {
  width: 31.25%;
  background: var(--bg);
  color: rgb(176, 52, 7);
  border: 3px solid rgb(176, 52, 7);
  font-size: 20px;
  margin-left: 12.5%;
  float: left;
  margin-top: 15px;
  cursor: pointer;
}

.randompls {
  position: absolute;
  left: 43%;
  top: 0px;
  width: 20%;
  text-align: center;
  background: var(--bg);
  color: var(--contrast);
  border: 2px solid var(--main);
  font-size: 20px;
  cursor: pointer;
}


.thingpanel {
  float: left;
  width: 10%;
  height: 100%;
  background-color: var(--bgslight);
  border: 5px solid var(--slight);
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  padding: 0px;
  overflow: hidden;
  cursor: pointer;
  margin-left: 3%;
  margin-right: 1.25%;
  opacity: 0;
}


.thingpanel:hover {
  border-color: var(--secondary);
}


.thingheader {
  height: 35px;
  width: 100%;
  background-color: var(--secondary);
  padding: 3px;
  text-align: center;
  color: var(--bg);
  font-size: 22px;
}


.nodeadderleft {
  width: 30px;
  font-size: 10px;
  border: 1px solid var(--main);
  color: var(--contrast);
  text-align: center;
  float: left;
  background: var(--bg);
  transition: background-color 0.25s, color 0.25s;
  cursor: pointer;
}

.nodeadderleft:hover {
  background: var(--main);
  color: var(--bg);
}

.nodeadderright {
  width: 30px;
  font-size: 10px;
  border: 1px solid var(--main);
  color: var(--contrast);
  text-align: center;
  float: right;
  background: var(--bg);
  transition: background-color 0.25s, color 0.25s;
  cursor: pointer;
}

.nodeadderright:hover {
  background: var(--main);
  color: var(--bg);
}

.deletenode {
  width: 32px;
  font-size: 10px;
  border: 1px solid rgb(176, 27, 7);
  color: var(--contrast);
  text-align: center;
  float: right;
  background: var(--bg);
  transition: background-color 0.25s, color 0.25s;
  cursor: pointer;
}

.deletenode:hover {
  background: rgb(176, 27, 7);
  color: #EAF6ED;
}

.wrong {
  position: fixed;
  width: 50%;
  left: 25%;
  height: fit-content;
  top: 35%;
  background-color: var(--bgslight);
  border-radius: 25px;
  border: 6px solid var(--main);
  text-align: center;
  opacity: 0;
  left: -100%;
  transition: opacity 0.25s;
  z-index: 10000;
}

/* do not change this it is used by linkedlist */
.connector {
  position: absolute;
  border-radius: var(--br);
  border-top: 7px solid var(--contrast);
  border-left: 0px solid var(--contrast);
}

.connectorsholder {
  transition: opacity 0.2s;
}

.notif {
  width: 10%;
  left: 45%;
  top: 0px;
  position: fixed;
  height: 33px;
  background: gray;
  border: 3px solid var(--contrast);
}

h1 {
  color: var(--contrast);
}

h2 {
  color: var(--contrast);
}

h3 {
  color: var(--contrast);
}

a {
  color: var(--contrast);
  text-decoration: none;
}


nav {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 100%;
  background-color: var(--bg);
  z-index: 1000;
}

.nav-items {
  margin: 0;
  padding: 0;
}

.navleft {
  position: fixed;
  float: left;
}

.navcenter {
  text-align: center;
  width: 100%;
}

.navright {
  position: fixed;
  right: 0%;
  top: 0%;
}

.nav-items li {
  display: inline-block;
}


.larget {
  padding: 0.5rem;
  margin: 0.5rem;
  display: block;
  background-color: rgb(71, 71, 71);
  border-radius: 5px;
  color: #EAF6ED;
  transition: background-color 0.25s;
  cursor: pointer;
}

.larget_disabled {
  padding: 0.5rem;
  margin: 0.5rem;
  display: block;
  background-color: rgb(71, 71, 71);
  border-radius: 5px;
  color: #EAF6ED;
  transition: background-color 0.25s;
  cursor: not-allowed;
  opacity: 0.5;
}

.larget:hover {
  background-color: var(--main);
}

.logo {
  padding: 5px;
  margin: 0px;
  margin-right: 5px;
  margin-top: 3.5px;
  height: 42px;
  border-radius: 10px;
  transition: background-color 0.25s;
  cursor: pointer;
}


.logo:hover {
  background-color: var(--main);
}


.headername {
  color: #EAF6ED;
  font-family: GlacierIndifference;
  font-size: 25px;
  padding: 0.63rem;
}




.bankbox {
  width: 90%;
  margin-left: 5%;
  margin-top: 5px;
  height: 65px;
  border: 2px dashed var(--bg);
  background-color: rgba(0, 0, 0, 0);
  text-align: center;
  padding: 5px;
  transition: border 0.25s;
}

.command {
  width: 95%;
  margin-left: 2.5%;
  height: 50px;
  background-color: var(--nicedark);
  border: 2px solid var(--main);
  color: var(--contrast);
  border-radius: 15px;
  padding: 5px;
  padding-top: 10px;
  font-size: 20px;
  cursor: grab;
  opacity: 0.82;
  transition: opacity 0.25s;
}

.quarterleft {
  width: 25%;
  float: left;
  height: min-content;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.runnotif {
  color: var(--main);
  height: 70px;
}

.halfleft {
  width: 50%;
  float: left;
}

.deletereceiver {
  color: var(--contrast);
  margin-top: -11px;
  margin-left: 29%;
  width: 65px;
  height: 30px;
  background-color: var(--slight);
  float: center;
  cursor: pointer;
  transition: color 0.5s;
}

.deletereceiver:hover {
  color: red;
}

.codestatementholder {
  margin-left: 25%;
  text-align: center;
  max-height: 270px;
  overflow: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}



.blockreceiver {
  width: 60%;
  margin-left: 100%;
  margin-top: 5px;
  height: 65px;
  border: 2px dashed rgb(120, 120, 120);
  background-color: rgba(0, 0, 0, 0);
  text-align: center;
  padding: 5px;
  transition: border 0.25s;
  float: center;
  z-index: 15;
}

.addreceiver {
  width: 100%;
  margin-left: 25px;
  margin-top: 15px;
  height: 65px;
  font-size: 20px;
  font-weight: bold;
  color: var(--bg);
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 100px;
  background-color: var(--slight);
  border: 1px solid rgba(0, 0, 0, 0);
  text-align: center;
  padding: 0px;
  transition: border 0.25s, background-color 0.25s;
  cursor: pointer;
}

.nodeselector {
  position: fixed;
  left: -200px;
  z-index: 1001;
  top: 0px;
  padding: 5px;
  width: 150px;
  height: 100px;
  background-color: var(--bg);
  border: 2px solid var(--main);
  border-radius: 25px;
  color: #EAF6ED;
  text-align: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.littleinput {
  background-color: var(--slight);
  border: 0px solid var(--bg);
  width: 15px;
  font-size: 20px;
  color: var(--main);
}

.littleinputlarge {
  background-color: var(--slight);
  border: 0px solid var(--bg);
  width: 30px;
  font-size: 20px;
  color: var(--main);
}


.results {
  position: fixed;
  bottom: 0%;
  height: min-content;
  width: 100%;
  text-align: center;
  background-color: var(--slight);
  transition: bottom 0.2s, top 0.2s;
  padding-bottom: 0px;
  z-index: 1000;
}

.results:hover {
  bottom: 0px;
}

.wholenotif {
  opacity: 0;
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.25s;
}

.dot {
  height: 5%;
  aspect-ratio: 1;
  position: absolute;
  background-color: var(--contrast);
  border-radius: 100px;
  top: 50%;
  left: 50%;
}

.largenotif {
  position: fixed;
  display: none;
  width: 50%;
  height: 30%;
  left: 25%;
  top: 66%;
  background-color: var(--slight);
  border-radius: 25px;
  border: 6px solid var(--main);
  text-align: center;
  font-size: 50px;
  color: var(--contrast);
  opacity: 0;
  z-index: 1000;
  transition: opacity 0.25s, display 0s, top 0.25s, background-color 0.25s;
}

.close {
  width: 20%;
  margin-left: 40%;
  background: var(--bg);
  color: var(--contrast);
  border: 5px solid var(--main);
  font-size: 20px;
  cursor: pointer;
}

.exit-modal {
  all: unset;
  cursor: pointer;
  position: absolute;
  color: var(--contrast);
  bottom: 0;
  right: 15px;
  width: 2.5rem;
  font-size: 10px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  user-select: none;
  font-weight: bold;
}

.clickbuttons {
  position: fixed;
  top: 78%;
  height: 10%;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0);
}

.checkbutton {
  width: 10%;
  height: 33px;
  background: var(--bg);
  color: var(--contrast);
  padding-top: 5px;
  border: 3px solid rgb(176, 27, 7);
  cursor: pointer;
}


.standaloneicon {
  position: fixed;
  left: -100px;
  top: -100px;
  z-index: 1001;
}

/* totally not copied over from w3 lmfao */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--contrast);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--bg);
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: var(--main);
}

input:focus+.slider {
  box-shadow: 0 0 1px var(--main);
}

input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


.slide2container {
  position: relative;
  margin-top: 5px;
  margin-bottom: 30px;
  width: 100%;
}

/* slider */

.slider2 {
  -webkit-appearance: none;
  appearance: none;
  width: 50%;
  margin-left: 0%;
  height: 10px;
  background: var(--contrast);
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider2:hover {
  opacity: 1;
}

.slider2::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 25px;
  width: 10px;
  background: var(--main);
  cursor: pointer;
}

.slider2::-moz-range-thumb {
  height: 25px;
  width: 10px;
  background: var(--main);
  cursor: pointer;
}


.screen {
  display: none;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  transition: opacity 0.25s, display 0.25s;
}

.smalltext {
  font-size: 15px;
  margin: 0px;
  padding: 0px;
}

.myProgress {
  width: 40%;
  margin-left: 30%;
  background-color: grey;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 15px;
  color: #EAF6ED;
}

.myBar {
  width: 0%;
  height: 30px;
  background-color: green;
  padding-top: 5px;
  transition: width 0.5s;
}

.exercisetab {
  position: fixed;
  bottom: 0%;
  height: min-content;
  width: 100%;
  text-align: center;
  background-color: var(--slight);
  border: 0px solid var(--main);
  transition: bottom 0.2s, top 0.2s;
  padding-bottom: 20px;
  padding-top: 0px;
  z-index: 1000;
}

.exerciseprompt {
  color: var(--main);
  font-weight: bold;
}

.buttonbucket {
  width: 100%;
}

.checkexercise {
  float: left;
  color: var(--contrast);
  background-color: var(--bg);
  border: 3px solid var(--main);
  width: 10%;
  margin: 0px;
  padding: 0px;
  margin-left: 30%;
  cursor: pointer;
}

.feedbackspacer {
  width: 100%;
  margin-top: -45px;
  background-color: rgba(0, 0, 0, 0);
  text-align: center;
  padding-bottom: 10px;
}

.spacebox {
  width: 2%;
  aspect-ratio: 1/1.15;
  border-bottom: 3px solid var(--contrast);
  margin: 0.5%;
  margin-bottom: 10px;
  font-size: 150%;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  float: left;
}

.coolbutton {
  background-color: var(--main);
  border-radius: 25px;
  width: 30%;
  margin-left: 35%;
  margin-top: 20px;
  height: 40px;
  color: var(--bg);
  font-size: 23px;
  border: 2px solid var(--main);
  cursor: not-allowed;
  opacity: 0.4;
  transition: border-radius 0.25s, opacity 0.25s;
}

.coolbutton:hover {
  border-radius: 0px;
}

.coolbuttonrun {
  padding: 0.5rem;
  margin: 0.5rem;
  display: block;
  background-color: rgb(71, 71, 71);
  border-radius: 5px;
  height: 50px;
  width: 66%;
  margin-left: 16.5%;
  font-size: 25px;
  color: #EAF6ED;
  transition: background-color 0.25s, opacity 0.25s;
  cursor: pointer;
}

.coolbuttonrun:hover {
  background-color: var(--main);
}

.csvdrop {
  width: 250px;
}

input[type="file"] {
  display: none;
}

.custom-file-upload {
  border: 3px dashed var(--main);

  border-radius: 33px;

  width: 90%;
  margin: 5%;
  aspect-ratio: 6/1;

  text-align: center;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  color: #EAF6ED;
}

.upload-text {
  margin-top: 7%;
  transform: translateY(-50%);
  font-size: 25px;
}


.plotgraph {
  margin: 5%;
  width: 70%;
  aspect-ratio: 2/1;
  border-bottom: 5px solid var(--contrast);
  /* cursor: crosshair; */
  border-left: 5px solid var(--contrast);
  transform: rotate(0.00001deg);
}

.point {
  position: absolute;
  background-color: var(--secondary);
  width: 1%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  transition: background-color 0.25s left 10s top 10s;
}

.tickY {
  position: absolute;
  width: 2%;
  height: 1%;
  background-color: var(--contrast);
  transform: translate(-50%, -50%);
}

.tickX {
  position: absolute;
  width: 2%;
  height: 1%;
  background-color: var(--contrast);
  transform: rotate(90deg) translate(-25%, 200%);
}

.tickLabel {
  position: absolute;
  font-size: 20px;
  color: var(--contrast);
  font-weight: bold;
}



.tickedBox {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0%;
  height: 0%;
  border-top: 2px dashed rgb(200, 0, 0);
  border-right: 2px dashed rgb(200, 0, 0);
}

.bfequation {
  font-size: 20px;
  color: red;
  transform: rotate(0.01deg);
  margin-bottom: 0px;
}


.halfheightbox {
  height: 40vh;
  width: 90%;
  margin-left: 5%;
  border: 3px solid var(--main);
  background-color: var(--slight);
  border-radius: 33px;
  margin-top: 3vh;
}

.fullheightbox {
  height: 83vh;
  width: 90%;
  margin-left: 5%;
  border: 3px solid var(--main);
  background-color: var(--slight);
  border-radius: 33px;
  margin-top: 3vh;
}

.placetext {
  font-size: 30px;
  color: #EAF6ED;
  margin-top: 3vh;
}

.featureselect {
  position: absolute;
  right: 54%;
  height: 30px;
  background-color: var(--bgslight);
  color: #EAF6ED;
  border-radius: 10px;
  border: 3px solid var(--main);
}

.loadinganim {
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  margin-left: 50%;
  margin-top: 55%;
  transform: translateX(-50%);
  transition: opacity 0.5s;
}

.flexrow {
  display: flex;
  flex-direction: row;
}

.loadingpoint {
  width: 20px;
  height: 20px;
  border-radius: 20px;

  background-color: var(--main);
}

.piechart {
  width: 25%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-image: conic-gradient(pink 70deg,
      lightblue 0 235deg,
      orange 0);
  margin-top: 100px;
  margin-left: 4.16%;
  margin-right: 4.16%;
  float: left;
  overflow-y: visible;
  /* transform: translateX(-50%); */
}

.pielegend {
  text-align: center;
  margin: 15px;
  margin-left: 33%;
  width: 33%;
  display: flex;
  flex-direction: row;
  background-color: var(--bgslight);
}

.key {
  width: 30px;
  height: 30px;
  margin: 15px;
}

.indicatordot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: red;
  margin: 5px;
  margin-top: -29px;
  margin-left: 360px;

  transition: background-color 0.5s;
}


.GPTdisplay {
  color: white;
  width: 90%;
  margin-left: 5%;
  margin-top: 43%;
  height: 37.5%;
  overflow-y: scroll;
  display: none;
  opacity: 0;

  transition: opacity 0.5s;
}