/* start navigation */

ul {
  list-style-type: none;
  border: 1px solid black;
  border-radius: 8px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #5ebcfe;
}

li {
  float: left;
  border-right: 1px dotted black;
}

li:last-child {
  border-right: 1px dotted black;
  border-left: 1px dotted black;
}

li a, .dropbtn {
  display: inline-block;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: #4a93ea;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #5ebcfe;
  border-top: none;
  border-left: 1px solid black;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  
  min-width: 110px;
  z-index: 10;
}

.dropdown-content a {
  color: #1a0b20;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-top: 1px dotted black;
}

.dropdown-content a:hover {
  background-color: #4a93ea;
  color: #000;
  text-decoration: underline;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Drop button hover radius. Only applies to the last option so the bottom isn't going outside the border. */
.dbtnh {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* end navigation // start site base */

body {
  background-image: url('/assets/characters/pages/fnafBG.png');
}

a:link {
  color: #1a0b20;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: #1a0b20;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: #000;
  background-color: transparent;
  text-decoration: underline;
}

html {
  text-align: center;
  color: black;
  font-family: verdana;
  font-size: 80%;
}

#copyright {
  font-family:verdana;
  font-size: 60%;
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 5;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  background: #fa6ebd;
  border-radius: 8px;
}
 
::-webkit-scrollbar-track {
  width: 0;  
  background: #fa6ebd;
  border: 1px solid black;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #5ebcfe;
  border: 1px solid black;
}
::-webkit-scrollbar-thumb:hover {
  background: #4a93ea;  
  border-radius: 8px;
}

/* end site base // start content */

/* character base */
.content {
  background-color: rgba(250,212,234,0.6);
  border: 1px solid #1a0b20;
  border-radius: 8px;
  padding: 0 15px 15px 0;
  text-align: center;
  overflow: auto;
  margin: 10px;
  min-width: 350px;
  max-width: 500px;
  max-height: 350px;
}

.content2 {
  background-color: rgba(250,212,234,0.6);
  border: 1px solid #1a0b20;
  border-radius: 8px;
  padding: 0 15px 15px 0;
  text-align: left;
  overflow: auto;
  margin: 10px;
  min-width: 20%;
  max-width: 90%;
  max-height: 350px;
}

.content3 {
  background-color: rgba(250,212,234,0.6);
  border: 1px solid #1a0b20;
  border-radius: 8px;
  padding: 0 15px 15px 0;
  text-align: center;
  overflow: auto;
  margin: 10px;
  min-width: 350px;
  max-width: 550px;
  min-height: 150px;
  max-height: 300px;
}

.sidecontenta {
  background-color: rgba(250,212,234,0.6);
  border: 1px solid #1a0b20;
  border-radius: 8px;
  padding: 0 15px 15px 0;
  text-align: left;
  overflow: auto;
  margin: 5px;
  min-width: 30%;
  max-width: 100%;
  min-height: 100px;
  max-height: 550px;
}

.divider1 {
  padding: 5px 10px 5px 10px;
  margin: 10px;
  background-color: #5ebcfe;
  color: black;
  border-radius: 6px;
  min-width: 150px;
  max-width: 1000px;
  border: 1px dashed black;
}

.divheadera {
  padding: 5px 10px 5px 10px;
  margin: 0;
  background-color: #5ebcfe;
  color: black;
  border-radius: 6px;
  min-width: 100px;
  max-width: 25%; 
  text-align: center;
}

.pagedoll {
  position: fixed; 
  bottom: 3px; 
  right: 3px; 
  z-index: 9;
}

.t1 {
  margin-right: auto; 
  margin-left: auto;
}

.t2 {
  margin-right: auto; 
  margin-left: 4%;
}

.t3 {
  margin-left: 8%; 
  margin-right: 8%;
}

.t4 {
  margin-right: 8%; 
  margin-left: 8%;
}
/* end content // start misc. */

p {
  max-width: 100%;
  padding-left: 15px;
  overflow: auto;
  margin-top: 0;
}

h4 {
  text-align: left;
  font-style: italic;
  font-size: 15px;
  padding: 5px;
  margin: 0;
}

.mainhr {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  clear: both; 
  border-width: 1px 0 0 0;
  border-style: solid;
  border: 1px dashed #1a0b20;
  width: 300px;
  float: left;
}

/*//////////////////// COLLAPSABLES ////////////////////*/
input[type='checkbox'] { 
  display: none; 
} 
 
.collapsible-content {
  height: 0;
  overflow: auto;
  background-color: rgba(232,194,247,0.4);
  color: #1a0b20;
  border-radius: 6px;
  max-width: 150px;
  max-height: 150px;
}
 
.lbl-toggle { 
  display: block; 
  padding: 8px; 
  cursor: pointer; 
  transition: all 0.25s ease-out; 
  color: #a478b5; 
  background: #1a0b20;
  border: 1px solid transparent; 
  border-radius: 6px;
  max-width: 150px;
  font-family: verdana;
  font-size: 16px;
  font-weight: bold;
} 
 
.lbl-toggle::before { 
  content: ' '; 
  display: inline-block; 
  border-top: 5px solid transparent; 
  border-bottom: 5px solid transparent; 
  border-left: 5px solid currentColor; 
  vertical-align: middle; margin-right: .7rem; 
  transform: translateY(-2px); transition: transform .2s ease-out; 
} 
 
.toggle:checked+.lbl-toggle::before { 
  transform: rotate(90deg) translateX(-3px); 
} 
 
.toggle:checked + .lbl-toggle + .collapsible-content { 
  height: auto; 
}
 
.collapsible-content .content-inner { 
  padding: 0 8px 0 8px;
  border: 1px solid #1a0b20;
  border-radius: 6px;
  text-align: left;
}
/*//////////////////// END COLLAPSABLES ////////////////////*/

.marquee {
  width: 100%; 
  max-height: 158px;
  border: 1px solid black;
  border-radius: 8px; 
  background-color: rgba(250,212,234,0.6);
  z-index: 7;
}

.tnews {
  background-color: #fa6ebd;
  border-radius: 8px 0 20px 0;
  padding: 10px;
  font-size: 15px;
  color: black;
  width: 12%;
  margin: 1px 0 0 1px;
  z-index: 8;
  position: absolute;
}

.ttop {
  background-color: #fa6ebd;
  border-radius: 8px 0 20px 0;
  padding: 10px 0 10px 0;
  font-size: 15px;
  color: black;
  z-index: 12;
  min-width: 10%;
  max-width: 250px;
  margin-left:0;
}

.ttop2 {
  background-color: #fa6ebd;
  border-radius: 8px 0 20px 0;
  padding: 10px 0 10px 0;
  font-size: 15px;
  color: black;
  z-index: 12;
  min-width: 10%;
  max-width: 270px;
  margin-left:0;
}

.img {
  height: 150px;
  padding: 4px 30px 0 0;
}

.img2 {
  height: 160px;
  padding: 15px 25px 0 15px;
}

.intext {
  height: 150px;
  max-width: 200px;
  overflow: auto;
  padding-right: 30px;
  margin-top:0
}

.ttoptext {
  font-size: 15px;
  color: black;
  z-index: 12;
  margin-left:5px;
}
/* end misc. */