/* hi there! please credit me @ goldenfreddy.neocities.org if you copy any of the coding here! thanks :) */

* {
  box-sizing: border-box;
  word-break: break-word;
  font-family: "LcdSolid";
}

:root {
  cursor: url("images/fnaf/pizzacursorA.png"), auto;
  font-family: "LcdSolid";
  color: white;
}

a:hover {
  cursor: url("images/fnaf/pizzacursorB.png"), auto;
}

@font-face {
  font-family: "LcdSolid";
  src: url("fonts/LcdSolid.ttf")format("truetype");
}

body {
  color: red;
  background-color: black;
  border: solid white 2px;
  height: 94vh;
  width: auto;
  margin: 17px;
  overflow: hidden;
}

body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(33, 0, 43, 0) 50%, rgba(33, 0, 43, 0.18) 50%);
  z-index: 2;
  background-size: 100% 3px, 4px 100%;
  pointer-events: none;
}

h1 {
  text-shadow: 2px 2px 2px red;
  font-weight: normal;
  font-size: 18pt;
  word-spacing: -.2ch;
  margin: 20px 0 10px 0;
  padding: 0;
}

h2 {
  width: fit-content;
  text-shadow: 2px 2px 2px red;
  font-weight: normal;
  font-size: 15pt;
  word-spacing: -.2ch;
  margin: 15px auto 10px auto;
  padding: 0;
  border-bottom: dashed rgba(255, 0, 0, 0.5) 1.5px;
}

button {
  position: relative;
  z-index: 5;
  color: white;
  text-transform: uppercase;
  font-size: 9.5pt;
  background-color: #434343;
  border: outset white 2px;
  min-width: 120px;
  max-width: 150px;
  height: 30px;
  overflow: hidden;
}

button:hover, button:active {
  color: #ffe6ab;
  background-color: #743787;
  border: outset #ffe6ab 2px;
  cursor: url('images/fnaf/pizzacursorB.png'), auto;
}

#active {
  position: relative;
  z-index: 5;
  color: white;
  background-color: #8dad00;
  border: outset white 2px;
}

#active:hover {
  cursor: url("images/fnaf/pizzacursorB.png"), auto;
}

::selection {
  background: RGBA(255, 50, 50, 0.4);
}

hr {
  border: rgba(255, 168, 168, 0.25) 3px;
  border-style: dashed none none none;
	width: 85%;
	margin: 25px auto 15px auto;
}

iframe {
  position: relative;
  z-index: 99;
  width: 35vw;
  height: 40vh;
  min-width: 500px;
  min-height: 290px;
  border: solid red 2px;
  cursor: url("images/fnaf/pizzacursorB.png"), auto;
}

ul {
  list-style: inside url("images/fnaf/menustarsmall.png");
  max-width: 650px;
  background-color: rgba(20, 20, 20, 0.4);
  text-align: left;
  margin: auto;
  color: white;
  padding: 15px;
  text-shadow: 0 0 3px red, 0 0 5px red;
  border: dashed rgba(255, 0, 0, 0.5) 2px;
  border-left: none;
  border-right: none;
  line-height: 35px;
  letter-spacing: 1px;
}

a, a:link, .tab {
  transition: color .5s ease-out;
}

a:hover, .tab:hover {
  transition: 0s;
}

a > img:hover {
  filter: drop-shadow(0 0 3px #ffe98f);
}

br {
  opacity: 0;
  pointer-events: none;
  user-select: none;
}

/* ================================================== layout shit ================================================== */

.allcontainer {
  height: 100%;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.allflex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
  gap: 5px;
}

/* ================================================== sidebar divs ================================================== */

.flexleftright {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  gap: 5px;
  width: 30%;
}

.leftblob {
  display: block;
  height: fit-content;
  width: auto;
  margin-top: -70px;
}

.noel {
  position: relative;
  z-index: 2;
  background-image: url(images/noeltiny.png);
  width: 54px;
  height: 99px;
  margin-left: 180px;
  margin-bottom: -35px;
}

.noel:hover {
transition: transform .1s ease-out;
transform: scale(1.2, 0.75) translate(0, 15%);
}

.handunit {
  background-image: url(images/fnaf/handunit.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 284px;
  min-width: 284px;
  height: 200px;
  min-height: 200px;
  margin-left: -35px;
  margin-top: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.handtext {
  color: white;
  text-align: center;
  font-size: 9pt;
  line-height: 22px;
  padding: 10px 5px;
  width: 150px;
  height: 130px;
  margin-left: 110px;
  margin-top: 50px;
  overflow: hidden;
}

.timerbox {
  display: inline;
  font-family: "LcdSolid";
}

#timertext {
  font-family: "LcdSolid";
}

#counter .years, .months, .days {
  font-family: "LcdSolid";
  color: #ff9e9e;
}

#left {
  height: 96%;
  min-width: 130px;
  margin: 5px 20px;
}

#right {
  height: 96%;
  min-width: 130px;
  margin: 5px 20px;
  align-items: flex-end;
}

#left img {
  width: fit-content;
  height: auto;
  margin: 10px;
}

#right img {
  margin: 10px;
}

/* ================================================== center box divs ================================================== */

.flexmiddle {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  width: 65%;
  min-width: 200px;
  gap: 30px;
}

.callshrinkwrap {
  width: 55vw;
  min-width: 300px;
  height: auto;
  margin-top: 30px;
}

.callheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  height: 50px;
  font-size: 13pt;
  border: solid grey 2px;
  overflow: hidden;
  background-color: RGBA(100,100,100,0.75);
  padding: 15px;
}

.callheader span {
  font-family: "LcdSolid";
  color: white;
}

.callheader a, .callheader a:link, .callheader a:visited {
  color: white;
  text-decoration: none;
}

.callheader a:hover {
  color: #ff5959;
  text-decoration: none;
}

.callbody {
  color: white;
  height: 65vh;
  font-size: 11.5pt;
  border: solid grey 2px;
  border-top: none;
  background-color: RGBA(50, 50, 50, 0.85);
  overflow: auto;
  padding: 5px 20px;
  letter-spacing: 0.5px;
  line-height: 25px;
  text-align: center;
  overflow-x: hidden;
}

.callbody a, .callbody a:link, .callbody a:visited,
.handtext a, .handtext a:link, .handtext a:visited {
  color: #ff5959;
  text-decoration: none;
}

.callbody a:hover, .handtext a:hover {
  color: white;
  text-shadow: #ffe98f 0 0 5px, #ffe98f 0 0 5px;
  text-decoration: none;
}

.callbody img {
  position: relative;
  z-index: 5;
}

.camdown {
  background-color: RGBA(220, 220, 220, 0.4);
  border: 0.3em solid RGBA(60, 60, 60, 0.4);
  border-radius: 7px;
  width: 40vw;
  max-width: 500px;
  height: 60px;
  padding: 20px;
  text-align: center;
}

.camdown:hover {
  background-color: RGBA(230, 230, 230, 0.5);
  border: 0.3em solid RGBA(60, 60, 60, 0.4);
  border-radius: 7px;
  width: 40vw;
  max-width: 500px;
  height: 60px;
  padding: 20px;
  text-align: center;
}

/* ================================================== misc divs ================================================== */

.navmap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  width: 150px;
}

.navline {
  height: fit-content;
  margin-bottom: 30px;
  width: 4px;
  border-left: solid white 1px;
  border-right: solid white 1px;
  position: relative;
  z-index: 0;
  margin-right: 80px; 
}

.camdisabled {
  top: 42px;
  right: 44.5%;
  background-image: url(images/fnaf/camdisabled.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 186px;
  height: 27px;
  z-index: 1;
}

.subtext {
  font-family: "LcdSolid";
  font-size: 8.5pt;
  margin: 0;
  margin-bottom: 10px;
  line-height: 20px;
  letter-spacing: 2px;
}

.stampgallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  margin: 15px;
  padding: 0;
  gap: 5px;
  line-height: 0;
}

.stampgallery img {
  margin: 0;
}

.sqr {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  margin-bottom: 2px;
  background-color: white;
}

.cir {
  display: inline-block;
  width: 10px;
  height: 12px;
  margin: 0 3px;
  border-radius: 3px;
  border: solid white 1.5px;
}

.mobilewrap, .mobilewarning, .omc {
  display: none; 
}

.alert {
  display: none;
  width: 45vw;
  min-width: 650px;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  margin: 0 50px -30px 0;
  background-color: rgba(255, 0, 0, 0.5);
  font-size: 9pt;
  text-align: left;
  overflow: hidden;
  clip-path: polygon(0% 0%, 100% 0%, calc(100% - 20px) 50%, 100% 100%, 0% 100%);
}

#outlined {
  font-weight: bold;
  letter-spacing: 1.5px;
  margin: 0 2px;
  text-shadow: rgb(255, 255, 255) 1px 0px 0px, rgb(255, 255, 255) 0.540302px 0.841471px 0px, rgb(255, 255, 255) -0.416147px 0.909297px 0px, rgb(255, 255, 255) -0.989992px 0.14112px 0px, rgb(255, 255, 255) -0.653644px -0.756802px 0px, rgb(255, 255, 255) 0.283662px -0.958924px 0px, rgb(255, 255, 255) 0.96017px -0.279416px 0px;
}

/* ================================================== tooltip styling ==================================================  */

.has-tooltip {
  position: relative;
}

.has-tooltip .THEtooltip {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s ease 0.5s;
}

.has-tooltip:hover .THEtooltip {
  opacity: 1;
  visibility: visible;
}

.has-tooltip:hover {
  color: red;
}

.THEtooltip {
  bottom: calc(100% + 50%);
  color: #fff;
  font-size: 9pt;
  left: 0;
  margin-left: calc(-50% - 50%);
  padding: 5px 10px;
  position: absolute;
  background-color: RGBA(0,0,0,0.84);
  border: 2px solid #c0c0c0;
  box-shadow: 0px 5px 5px 5px rgba(20, 0, 38, .25);
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  width: calc(100% + 100% + 100%);
  z-index: 6;
  line-height: 20px;
}

#ignore {
  font-weight: normal;
  color: #ff9e9e;
  text-shadow: none;
  letter-spacing: inherit;
  text-decoration: wavy underline 1px;
  text-decoration-color: RGBA(255, 0, 0, 0.5);
  text-underline-offset: 1px;
  text-underline-position: under;
}

/* ================================================== accordion styling ==================================================  */

.accordiontree {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0;
}

.accordionitem {
  margin: 3px;
  padding: 8px 4%;
  background-color: rgba(20, 20, 20, 0.7);
  width: 95%;
  border: solid black 2px;
  line-height: 24px;
  box-sizing: border-box;
}

.accordionitem > a, .accordionitem > a:hover {
  color: white;
  text-shadow: 0 0 5px red;
  font-weight: normal;
  font-size: 15pt;
  word-spacing: -.2ch;
}

.accordionhidden {
  display: none;
}

.accordiontree hr {
  border: rgba(184, 100, 100, 0.25) 3px;
  border-style: dashed none none none;
	width: 85%;
	margin: 10px auto;
}

.accordtext {
  font-size: 9.5pt !important;
}

#spin {
  color: #ff9e9e;
  font-weight: bold;
}

#hfx {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: revert;
  text-underline-offset: 2px;
}

#baby {
  color: inherit;
  font-style: oblique;

}

/* ================================================== tab layout ================================================== */

.tabcontainer {
  width: 100%;
  height: fit-content;
  margin: 15px auto;
}

.tabflex, .tabflexB {
  display: flex;
  justify-content: center; 
  align-items: center;
  flex-direction: row; 
  flex-wrap: wrap; 
  align-content: center;
  width: 100%;
  height: fit-content;
  gap: 8px;
  margin: 5px auto;
}

.tabflex > div, .tabflexB > div {
  width: fit-content;
  height: fit-content;
  margin: 5px 0px;
}

.tabflex img, .tabflexB img {
  position: relative;
  z-index: 5;
  max-height: 110px;
  max-width: 200px;
}

.tabflexB img {
 width: 48px;
 height: 48px;
}

.flextext {
  font-size: 9.5pt;
  color: white;
  width: 100%;
  padding: 0 40px;
}

.tabholder {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tab {
  cursor: pointer;
  padding: 10px 5px;
  display: inline-block;
  color: #ff9e9e;
  text-shadow: 0 0 5px red;
  font-family: "LcdSolid";
  text-transform: uppercase;
}

.tab:hover {
	color: white;
  cursor: url("images/fnaf/pizzacursorB.png"), auto;
}

.panels {
  min-height: 100px;
  min-width: 100%;
  border-radius: 3px;
  overflow: hidden;
}

.panel {
  display: none;
}

.paneltext {
  font-size: 10.5pt;
  margin: 15px 40px 5px 40px;
}

.paneltext img {
  position: relative;
  z-index: 5;
  margin: 0 0 -15px 0;
}

.radio {
  display: none;
}

#zero:checked ~ .panels #zero-panel,
#one:checked ~ .panels #one-panel,
#two:checked ~ .panels #two-panel,
#three:checked ~ .panels #three-panel,
#four:checked ~ .panels #four-panel,
#five:checked ~ .panels #five-panel,
#six:checked ~ .panels #six-panel,
#seven:checked ~ .panels #seven-panel,
#eight:checked ~ .panels #eight-panel,
#nine:checked ~ .panels #nine-panel,
#ten:checked ~ .panels #ten-panel,
#eleven:checked ~ .panels #eleven-panel,
#twelve:checked ~ .panels #twelve-panel,
#thirteen:checked ~ .panels #thirteen-panel,
#fourteen:checked ~ .panels #fourteen-panel,
#fifteen:checked ~ .panels #fifteen-panel,
#sixteen:checked ~ .panels #sixteen-panel,
#seventeen:checked ~ .panels #seventeen-panel,
#eightteen:checked ~ .panels #eightteen-panel,
#nineteen:checked ~ .panels #nineteen-panel,
#twenty:checked ~ .panels #twenty-panel {
  display: block;
}

#zero:checked ~ .tabs #zero-tab,
#one:checked ~ .tabs #one-tab,
#two:checked ~ .tabs #two-tab,
#three:checked ~ .tabs #three-tab,
#four:checked ~ .tabs #four-tab,
#five:checked ~ .tabs #five-tab,
#six:checked ~ .tabs #six-tab,
#seven:checked ~ .tabs #seven-tab,
#eight:checked ~ .tabs #eight-tab,
#nine:checked ~ .tabs #nine-tab,
#ten:checked ~ .tabs #ten-tab,
#eleven:checked ~ .tabs #eleven-tab,
#twelve:checked ~ .tabs #twelve-tab,
#thirteen:checked ~ .tabs #thirteen-tab,
#fourteen:checked ~ .tabs #fourteen-tab,
#fifteen:checked ~ .tabs #fifteen-tab,
#sixteen:checked ~ .tabs #sixteen-tab,
#seventeen:checked ~ .tabs #seventeen-tab,
#eightteen:checked ~ .tabs #eightteen-tab,
#nineteen:checked ~ .tabs #nineteen-tab,
#twenty:checked ~ .tabs #twenty-tab {
  color: #ad5555;
}

#hundred {
  max-width: 100px;
  max-height: 100px;
}

#sixtyfive {
  max-width: 65px;
  max-height: 65px;
}

/* ================================================== carousel layout ================================================== */

.carou {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 0;
  user-select: none;
  width: 100%;
  height: 75%;
}

.caribou {
  position: relative;
  margin: -40px 0 0 0;
  display: block;
  height: 100%;
}

.caribou-inner {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.caribou-open:checked + .caribou-item {
  position: static;
  opacity: 1;
  pointer-events: auto;
}

.caribou-item {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.caribou-control {
  font-family: "LcdSolid";
  cursor: url("images/fnaf/pizzacursorB.png"), auto;
  color: #ff4d4d;
  display: none;
  font-size: 40px;
  height: 40px;
  line-height: 35px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  text-align: center;
  width: 40px;
  z-index: 10;
}

.caribou-control.prev {
  font-family: "LcdSolid";
  left: -50px;
  cursor: url("images/fnaf/pizzacursorB.png"), auto;
}

.caribou-control.next {
  font-family: "LcdSolid";
  right: -50px;
  cursor: url("images/fnaf/pizzacursorB.png"), auto;
}

.caribou-control:hover {
  font-family: "LcdSolid";
  color: white;
  cursor: url("images/fnaf/pizzacursorB.png"), auto;
}

#caribou-1:checked ~ .control-1,
#caribou-2:checked ~ .control-2,
#caribou-3:checked ~ .control-3,
#caribou-4:checked ~ .control-4,
#caribou-5:checked ~ .control-5,
#caribou-6:checked ~ .control-6,
#caribou-7:checked ~ .control-7,
#caribou-8:checked ~ .control-8,
#caribou-9:checked ~ .control-9,
#caribou-10:checked ~ .control-10 {
  display: block;
}

.caribou-indicators {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.caribou-indicators li {
  display: inline-block;
  margin: 20px 5px 0 5px;
}

.caribou-bullet {
  display: block;
  color: white;
  font-size: 9pt;
  line-height: 20px;
  background-color: rgba(255, 168, 168, 0.15);
  border-radius: 100%;
  width: 20px;
  height: 20px;
}

.caribou-bullet:hover {
  background-color: rgba(255, 168, 168, 0.3);
  cursor: url("images/fnaf/pizzacursorB.png"), auto;
}

#caribou-1:checked ~ .control-1 ~ .caribou-indicators li:nth-child(1) .caribou-bullet,
#caribou-2:checked ~ .control-2 ~ .caribou-indicators li:nth-child(2) .caribou-bullet,
#caribou-3:checked ~ .control-3 ~ .caribou-indicators li:nth-child(3) .caribou-bullet,
#caribou-4:checked ~ .control-4 ~ .caribou-indicators li:nth-child(4) .caribou-bullet,
#caribou-5:checked ~ .control-5 ~ .caribou-indicators li:nth-child(5) .caribou-bullet,
#caribou-6:checked ~ .control-6 ~ .caribou-indicators li:nth-child(6) .caribou-bullet,
#caribou-7:checked ~ .control-7 ~ .caribou-indicators li:nth-child(7) .caribou-bullet,
#caribou-8:checked ~ .control-8 ~ .caribou-indicators li:nth-child(8) .caribou-bullet,
#caribou-9:checked ~ .control-9 ~ .caribou-indicators li:nth-child(9) .caribou-bullet,
#caribou-10:checked ~ .control-10 ~ .caribou-indicators li:nth-child(10) .caribou-bullet {
  background-color: rgba(255, 168, 168, 0.45);
}

/* ================================================== scrollbar styling ==================================================  */

*::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}

*::-webkit-scrollbar-track {
  background-color: RGBA(0, 0, 0, 0.3);
  border-left: 2px solid grey;
}

*::-webkit-scrollbar-track:hover, *::-webkit-scrollbar-track:active {
  background-color: RGBA(0, 0, 0, 0.3);
}

*::-webkit-scrollbar-thumb {
  background-color: RGBA(126, 135, 135, 0.3);
  border: 2px solid #737373;
  border-style: solid none solid solid;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: RGBA(162, 173, 173, 0.3);
}

*::-webkit-scrollbar-thumb:active {
  background-color: RGBA(179, 201, 201, 0.3);
}

/* ================================================== mobile zone ================================================== */

@media screen and (orientation: portrait), (max-width: 880px) {

body {
  height: 82vh;
}

h1 {
  font-size: 24px; 
}

h2 {
  font-size: 17px; 
}

#right {
  height: 96%;
  min-width: 130px;
  margin: 5px 20px;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 100px;
}

.callbody {
  font-size: 20px; 
}

.callbody, .callheader {
  max-height: 850px;
  width: 65vw;
}

.callshrinkwrap {
  margin-left: -200px;
  margin-top: -80px;
  margin-bottom: -120px;
}

.camdown {
  display: none;
}

.leftblob {
  display: block;
  height: fit-content;
  width: auto;
  margin-top: 900px;
}

.mobilewrap {
  display: block;
  height: fit-content;
  width: fit-content;
  margin-top: -120px;
  margin-right: -250px;
  margin-left: 150px;
}

.mobilewarning {
  display: block;
  width: 90%;
  height: 110px;
  font-size: 11pt;
  padding: 5px 10px;
  color: white;
  background-color: red;
  text-align: center;
  border: solid white 2px;
}

.omc {
  display: block;
  position: relative;
  z-index: 2;
  background-image: url(images/fnaf/omc.png);
  width: 170px;
  height: 106px;
  margin-left: 300px;
  margin-bottom: -2px;
}}