:root {
  font-size:16px;  
  font-family: "Roboto", sans-serif;
  color:black;
}

body {
  padding:0;
  margin:0;
}

html {
  scroll-behavior: smooth;
}

figcaption {
  font-size:.7em;
}

ul ol {
  line-height:1.6em;
}

li {
  margin-bottom:10px;
}

a {
  text-decoration: none;
  color:#2d57d2;
  padding:8px;
  border-radius:5px;
  cursor:pointer;
}

a:hover {
  background: rgba(0,0,0,0.05);
}

.appHeaderTab, .appHeaderMenu {
  color:black;
  text-decoration:none;
  cursor: pointer;
  padding:8px;
  border-radius:5px;
}
.appHeaderMenu {border-radius:5px 5px 0 0;}

.appHeaderMenuButton{
  color:black;
  text-decoration:none;
  background: transparent !important;
}

.appHeaderMenuButton::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  margin-left: 0.5em;
}
.appHeaderMenu:hover > .appHeaderMenuButton::after {
  content: "\f0d8";
}

.appHeaderMenu, .homeResultsWrapper {
  display:inline-block;
  position:relative;
}

.appHeaderMenuContent {
  position:absolute;
  display:none;
  gap:5px;
  background:#F2F2F2;
  min-width:150px;
  min-height:20px;
  right:0;
  top:100%;
  flex-direction:column;
  border-radius:5px 0 5px 5px;
  padding:10px;
}

.appHeaderMenuContent a {
  all: unset;
  cursor: pointer;
  padding:8px;
  border-radius:5px;
  border: 1px solid rgba(0,0,0,0);
}

.appHeaderMenuContent a:hover {
  background:var(--bg);
  border: 1px solid rgba(0,0,0,0.05);
}

.appHeaderMenu:hover .appHeaderMenuContent {display: flex;}

.appHeaderTab:hover, .appHeaderMenu:hover {
  background:rgba(0,0,0,0.05)
}

.appHeader {
  display:inline-block;
  width:calc(100% - 30px);
  height:50px;
  padding:15px;
  background:white;
  border-bottom:solid 1px transparent;
  position:sticky;
  top:0;
  z-index:5;
  transition: border .3s ease;
}

.appHeader.stuck {
  border-bottom:solid 1px rgba(0,0,0,0.1);
}

.appHeaderRight {
  float:right;
  height:100%;
  display:flex;
  gap:20px;
  align-items:center;
}

#appHeaderIcon {
  width:50px;
  height:50px;
}
.appAlert {
  background:rgba(20,20,80,0.1);
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.appModal {
  position:fixed;
  z-index:10;
  width:100%;
  height:100%;
  top:0;
  left:0;
  background:rgba(0,0,0,0.1);
  backdrop-filter: blur(2px);
}

.appParagraph {
  width:70%;
  text-align: center;
  font-size:1.1em;
  line-height: 1.5em;
}

.appImageViewer {
  width: 70vw;
  min-height:20vw;
  border-radius:10px;
  background:white;
  border: 2px solid rgba(0,0,0,0.1);
  position:fixed;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  z-index:11;
  padding:20px;
}

.appImageViewerTitleContainer {
  margin:0;
  position:Absolute;
  background:rgba(255,255,255,0.7);
  border-bottom:2px solid rgba(0,0,0,0.1);
  width: calc(100% - 40px);
  top:0;
  left:0;
  padding:20px;
  opacity:0;
  transition:opacity .3s ease;
  display:flex;
  justify-content: space-between;
  border-radius: 10px 10px 0 0;
}

.appImageViewerTitle {
  margin:0;
}

.appImageViewerCloseButton {
  background:transparent;
  border:none;
  outline:none;
  width: 2em;
  transform:scale(2);
}

.appImageViewer:hover > .appImageViewerTitleContainer {
  opacity:1;
}

.appImageViewerImg {
  width:100%;
  border-radius:5px;
}

.appTextHeader {
  font-size:2em;
  margin-bottom:0;
}

.appTitle {
  font-family: "Titan One";
  color:#008080;
  font-size:3em;
}

.appSectionColumn {
  display: flex;
  flex-direction: column;
  gap:20px;
}

.homeExtentionBox {
  min-width:600px;
  min-height:200px;
  background:#FFF5E0;
  border:2px solid transparent;
  border-radius:10px;
  display:inline-block;
  justify-content: space-between;
  gap:20px;
  padding:20px;
  transition: border .2s ease;
}

.homeExtentionInfoList1 {
  background: #2d57d2;
  border-radius: 5px;
  padding:10px;
  color:white;
  font-family: "Titan One";
  font-size:1.5em;
  width:fit-content;
}

.homeExtentionInfoList2 {
  background: #008148;
  border-radius: 5px;
  padding:10px;
  color:white;
  font-family: "Titan One";
  font-size:1.5em;
  width:fit-content;
}

.homeExtentionInfoList3 {
  background: #c80606;
  border-radius: 5px;
  padding:10px;
  color:white;
  font-family: "Titan One";
  font-size:1.5em;
  width:fit-content;
}

.homeExtentionBox:hover {
  border:2px solid rgba(0,0,0,0.05);
}

.homeExtentionSubbox {
  width:calc(100% - 20px);
  height:calc(100% - 40px);
  border-radius:5px;
  border:1px solid transparent;
  display:flex;
  flex-direction: column;
  gap:15px;
  padding:20px;
  background: rgba(100,100,100,0.05);
  cursor:pointer;
  color:black;
}

.homeExtentionSubboxInfo1 {
  border-radius:5px;
  background: linear-gradient(135deg, transparent, #2d57d255 110%);
  padding:10px;
  line-height:1.5em;

}

.homeExtentionSubboxInfo2 {
  border-radius:5px;
  background: linear-gradient(45deg, transparent, #00814855 110%);
  padding:10px;
  line-height:1.5em;
  text-align: center;
}

.homeExtentionSubboxInfo3 {
  border-radius:5px;
  background: linear-gradient(225deg, transparent, #c8060655 110%);
  padding:10px;
  line-height:1.5em;
  text-align: center;
}

.homeExtentionSubboxTitle {
  margin:0;
  color:black;
  color:rgba(0,0,0,1);
}

.homeExtentionSubbox:hover {
  border:1px solid rgba(0,0,0,0.1);
}

.homeExtentionImageColumn {
  display:flex;
  height:100%;
}

.homeExtentionImageContainer {
  flex:1;
  border-radius:10px;
  border:2px solid rgba(0,0,0,0.1);
  transition: flex .3s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow: hidden;
}

.homeExtentionImageContainer:hover {
  flex:2;
}

.homeExtentionImageContainer:hover > .homeExtentionImageContainerHint {
  opacity:0;
}

.homeExtentionImage {
  width: 100%;
  position: absolute;
}


.homeExtentionImageContainerHint {
  background:rgba(0,0,0,0.2);
  backdrop-filter: blur(1px);
  display:flex;
  align-items: center;
  justify-content: center;
  width:100%;
  height:100%;
  z-index:2;
  position: absolute;
  font-family: "Titan One";
  color:white;
  font-size:30px;
  transition: opacity .3s ease;
  cursor:zoom-in;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
}

.appSectionRow {
  display:flex;
  gap:20px;
}

.appSectionParagraph {
  margin:0;
  line-height: 1.5em;
  font-size: 1.1em;
}

.appAlertCloseButton {
  font-size:1.5em;
  position:absolute;
  right:10px;
  background:transparent;
  border:none;
  cursor:pointer;
}

.appFooter {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin:20px;
}

.appButtonMono {
  padding:8px;
  border:1px solid rgba(0,0,0,0.1);
  border-radius:5px;
  cursor:pointer;
  font-size:1.1em;
  background:transparent;
  color:black;
}

.appButtonMono:hover {
  background:rgba(0,0,0,0.05);
}

#appBody {
  padding:100px;
  padding-top:0;
  min-height:calc(50vh);
  display:flex;
  flex-direction: column;
  gap:100px;
}

.appSection {
  display:flex;
  flex-direction: column;
  gap:20px;
  align-items: center;
  justify-content: center;
}

.homeSubtitle {
  margin-top:0;
  font-size:3em;
  color:gray;
}

.homeTitle {
  font-size:7em;
  margin-top:0;
  font-family:"Titan One";
  color:#36BCD7;
  text-shadow:.04em .05em 0 rgba(54, 188, 215, 0.3);
}

#homeSearch {
  width:490px;
  height:30px;
  border-radius:20px;
  padding:10px;
  padding-left:20px;
  font-size:16px;
  border: 2px solid rgba(0,0,100,0.1);
  background:#F2F9FF;
  transition: box-shadow .2s ease;
  position:relative;

}

#homeSearch:hover {
  box-shadow: inset 0 0 10px rgba(200,200,255,.5);
}

#homeSearch:focus {
  outline:none;
  box-shadow: none;
}

.homeSearchIsContent {
  border-bottom: 2px solid transparent !important;
  border-radius:20px 20px 0 0 !important;
  box-shadow: none !important;
}

#homeSearchButton {
  background:#0275DE;
  border: 1px solid transparent;
  width:45px;
  height:45px;
  border:none;
  font-size:1.3em;
  cursor: pointer;
  border-radius: 100%;
}

#homeSearchButton:hover {
  border: 2px solid rgba(255,255,255,0.5);
  filter:brightness(.9);
}

#homeSearchForm {
  display:flex;
  align-items: center;
  justify-content: center;
  gap:10px;
}

.homeResultsContent {
  display:none;
  transform:translateY(-5px);
  flex-direction: column;
  gap:5px;
  background: #F2F9FF;
  border:2px solid rgba(0,0,100,0.1);
  width:500px;
  min-height:30px;
  max-height:244px;
  border-radius: 0 0 20px 20px;
  padding:10px;
  position: absolute;
  border-top:2px solid transparent;
  overflow:scroll
}

.homeResultsContent a {
  padding:13px;
  border-radius:5px;
  width:calc(100% - 26px);
  color:black;
  text-decoration: none;
  display:flex;
  align-items: center;
  gap:15px;

}

.homeResultsContent a:hover {
  background:rgba(0,0,0,0.1);
}

.homeSelectedResult {
  background:#1A704899 !important;
}

.homeResultsContentShow {
  display:flex;
}

.homeResultBlookTag {
  font-size:.7em;
  padding:5px;
  background:rgb(8, 194, 208);
  border-radius:5px;
  border: 1px solid rgba(0,0,0,0.1);
  font-weight:bold;
  color:white;
}

.homeResultToolTag {
  font-size:.7em;
  padding:5px;
  background:#fcba03;
  border-radius:5px;
  border: 1px solid rgba(0,0,0,0.1);
  font-weight:bold;
  color:white;
}

.appDiscordButton {
  padding:5px;
  padding-left:10px;
  padding-right:10px;
  background:rgba(100, 121, 246, .7);
  border-radius:5px;
  border: 1px solid rgba(80, 70, 229,0.5);
  color:rgb(60, 48, 227);
  text-decoration: none;
  font-weight: bolder;
}

.appDiscordButton:hover {
  filter:brightness(1.1);
  background:rgba(100, 121, 246, .7);
}

.homeSearchResultIcon {
  width:1.6em;
  height:1.6em;
  clip-path: url(#squircle);
  background:rgba(28, 107, 148,.7);
  display:Flex;
  align-items: center;
  justify-content: center;
  color:rgb(0,0,0,0.3);
}

.homeSearchBlookResultIcon {
  width:1.6em;
}

.blooksMainContainer {
  display:flex;
  align-items: center;
  gap:20px;
}

.blooksMainImg {
  width:300px;
}

.blooksVerticalSeperator {
  width:1px;
  height:300px;
  background:rgba(0,0,0,0.1);
}

.blooksInfoList {
  font-size: 1.3em;
  display:Flex;
  flex-direction: column;
  gap:10px;
}

.blookInfoListTitle {
  font-size:3em;
  font-weight:bolder;
  font-family:"Titan One";
}

.blooksInfoListTable {
  width:300px;
  text-align:left;
}

.blooksInfoListTableItem {
  height:1.5em;
}

.blooksInfoRarity {
  width:fit-content;
  display:flex;
  gap:5px;
  justify-content: center;
  align-items: center;
  font-family: "Titan One";
}

.blooksInfoRarity.Common {
  color: rgba(0, 0, 0, 0.15);
}
.blooksInfoRarity.Uncommon {
  color: rgb(65, 180, 39);
}
.blooksInfoRarity.Rare {
  color: rgb(10, 20, 250);
}
.blooksInfoRarity.Epic {
  color: rgb(190, 0, 0);
}
.blooksInfoRarity.Legendary {
  color: rgb(255, 145, 16);
}
.blooksInfoRarity.Chroma {
  color: #0CF;
}
.blooksInfoRarity.Mystical {
  color: #A335ED;
}
.blooksInfoRarity.Unique {
  color: #008080;
}
.blooksInfoRarity.Hidden {
  background:linear-gradient(45deg,rgb(3, 255, 255) 10%, rgb(158, 60, 222) 50%, rgb(69, 129, 142) 90%);color:transparent;
  background-clip: text;
}

.blooksInfoRarityIcon {
  height:1em;
}

.blooksInfoParagraph {
  width:500px;
  display:flex;
  gap: .5em;
  margin-top:50px;
}

#indexSearchBar {
  width:490px;
  height:30px;
  border-radius:20px;
  padding:10px;
  padding-left:20px;
  font-size:16px;
  border: 2px solid rgba(0,0,100,0.1);
  background:#F2F9FF;
  transition: box-shadow .2s ease;
  position:relative;
}

#indexSearchBar:focus {
  outline:none;
  box-shadow: none;
}

.indexSortContainer {
  display:flex;
  gap:10px;
  align-items: center;
}

.indexSearchLabel {
  font-size: 1.3em;
  font-weight: bold;
}

#indexSortOptions {
  border: 2px solid rgba(0,0,0,0.1);
  background:none;
  padding:10px;
  border-radius:10px;
  box-shadow: 0 2px 0 rgba(0,0,0,0.1);
  transform:translateY(1.5px);
  cursor:pointer;
  transition:all .2s ease-out;
  outline:none;
}

#indexSortOptions:hover {
  box-shadow: 0 5px 0 rgba(0,0,0,0.1);
  transform:translateY(0px);
  filter: brightness(110%);
}

#indexBlooksContainer {
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  min-width:500px;
}

.indexGroupHeader {
  width:100%;
  padding: 5px 5px 5px 5%;
}

.indexGroupHeaderBox {
  width: 95%;
  height:42px;
  background: #1d6b94;
  border-radius:10px;
  box-shadow: 0 8px #175da5;
}

.indexGroupHeaderBox::after {
  content: '';
  display:block;
  height:3px;
  margin:7px;
  background:white;
  border-radius:5px;
  transform:translateY(-4px);
}

.indexGroupHeaderTile {
  display:block;
  height:35px;
  width:210px;
  position: absolute;
  background-size:35px;
  transform: translate(3px, 1px);
  opacity:40%;
}

.indexGroupHeaderTile.Aquatic {
  background-image: url(https://ac.blooket.com/dashclassic/assets/Array_Tile_Aquatic-DGwJPWGz.svg);
}

.indexGroupHeaderText {
  font-family:'Titan One';
  color:white;
  font-size:30px;
  margin-left: 10px;
  text-shadow: 2px 3px 5px rgba(0,0,0,0.5);
}

.indexBlookCard {
  background:#1f6b93;
  width:291px;
  height:277px;
  border-radius:30px;
  padding:4px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  margin:10px;
  transition: all .2s cubic-bezier(0.3, 0.2, 0.2, 1.4);
}

.indexBlookCardRow {
  display:flex;
  margin-bottom: 5px;
}

.indexBlookCardNameBar {
  background: #2e4f8e;
  width:154px;
  height:27px;
  box-shadow: 2px 2px 0 #335ca3;
  border-radius: 8px;
  margin-left: 23px;
  font-family: "Titan One";
  font-size:27px;
  z-index:2;
  transition: all .2s ease;
}

.indexBlookCardNameBar > span {
  position:Absolute;
  transform: translate(5px, -4px);
  color:white;
  text-shadow:rgba(0,0,0,0.5) 0 3px 5px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
  width: 150px;
}

.indexBlookCardRarityBar {
  width:89px;
  height:19px;
  border-radius:8px;
  margin-left:8px;
  font-family: "Fredoka";
  font-size: 16px;
  transform: translate(175px, 3px);
  position:Absolute;
}

.indexBlookCardRarityBar > span {
  position:Absolute;
  color:white;
  text-shadow: rgba(0,0,0,0.5) 0 3px 5px;
  width:100%;
  text-align: center;
}

.indexBlookCardRarityBar.Unique {
  background: rgb(62, 124, 127);
  box-shadow: rgb(57, 103, 126) 0 3px 0;
}

.indexBlookCardRarityBar.Mystical {
  background: rgb(163, 53, 238);
  box-shadow: rgb(101, 33, 148) 0 3px 0;
}

.indexBlookCardRarityBar.Chroma {
  background: rgb(0, 204, 255);
  box-shadow: rgb(0, 169, 212) 0 3px 0;
}

.indexBlookCardRarityBar.Legendary {
  background: rgb(255, 145, 15);
  box-shadow: rgb(163, 93, 10) 0 3px 0;
}

.indexBlookCardRarityBar.Epic {
  background: rgb(190, 0, 0);
  box-shadow: rgb(87, 2, 2) 0 3px 0;
}

.indexBlookCardRarityBar.Rare {
  background: rgb(10, 20, 250);
  box-shadow: rgb(11, 16, 150) 0 3px 0;
}

.indexBlookCardRarityBar.Uncommon {
  background: rgb(65, 180, 39);
  box-shadow: rgb(50, 138, 30) 0 3px 0;
}

.indexBlookCardRarityBar.Common {
  background: rgb(216, 223, 237);
  box-shadow: rgb(181, 183, 186) 0 3px 0;
}

.indexBlookCardPackImage {
  width:65px;
  height:65px;
  background-size:85px 85px;
  background-position: center;
  border: solid 3px #1e6b94;
  border-radius:10px;
  transform: translate(6px, -2px);
  position:absolute;
  z-index:2;
}

.indexBlookCardPackLabel {
  transform: translate(6px, 67px);
  width:70px;
  min-height:20px;
  background:#1f76b3;
  border-radius:5px;
  box-shadow: 0 4px #17517e;
  position:absolute;
  z-index:2;
}

.indexBlookCardPackLabelNoImage {
  transform: translate(6px, 0);
}

.indexBlookCardPackLabel > span {
  position:Absolute;
  width:100%;
  text-align:center;
  font-family: "Titan One";
  font-size:12px;
  transform: translateY(3px);
  color:white;
  text-shadow: rgb(23, 81, 126) 0 2px;
}

.indexBlookCardSerialNumber {
  font-family: "Changa One", serif;
  color:white;
  font-weight: 400;
  -webkit-text-stroke: 1px black;
  position:absolute;
  width:269px;
  text-align:right;
  transform:translate(10px, 147px);
  opacity: 0.6;
  text-shadow: 0 0 2px black;
  font-size: 18px;
}

.indexBlookCardImageContainer {
  position:absolute;
  width:291px;
  display:flex;
  place-content: center;
  z-index:1;
}

.indexBlookCardImageContainer > img {
  width:130px;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.5));
  cursor:pointer;
  transition: all .2s ease;
}

.indexBlookCardInfo {
  position:absolute;
  width:50px;
  height:20px;
  background: linear-gradient(0deg, rgba(254, 180, 27, 1) 50%, rgba(253, 217, 66, 1) 50%);
  border: solid 2px #ef7325;
  border-radius: 5px;
  font-family: 'Titan One';
  color:white;
  -webkit-text-stroke: 1.5px #696763;
  text-align:center;
  transform: translate(13px, 157px);
}

.indexBlookCardMain {
  width: 275px;
  height: 164px;
  background: white;
  margin: auto;
  margin-bottom: 14px;
  border-radius:10px;
  border: solid 4px #30518d;
  box-shadow: 0 4px 0 #233d63;
  background-position: 50% 70%;
  background-size: 285px 285px;
}

.indexBlookCardInfoRow {
  display:flex;
  gap:18px;
  place-content:center;
}

.indexBlookCardInfoBox {
  width:77px;
  height:53px;
  background: #0472c3;
  text-align:center;
  font-family:"Fredoka";
  color:white;
  text-shadow: 0 2px 2px rgba(0,0,0,0.5);
  border-radius:8px;
  box-shadow: 0 4px 0 #33599d;
}

.indexBlookCardInfoBoxToken {
  width:18px;
  height:18px;
  position:absolute;
  transform: translate(-32px, -25px);
  rotate: -37deg;
}

.indexBlookCardInfoBoxPercent {
  position:absolute;
  font-family: 'Titan One';
  text-shadow: none;
  transform: translate(-40px, -5px);
}

.indexBlookCardInfoBoxPerson {
  width:18px;
  height:18px;
  position:Absolute;
  transform: translate(-40px, -5px);
  filter: invert(1);
}

.indexBlookCardInfoBoxTitle {
  height:20px;
  background: rgb(1,128,221);
  display:block;
  border-radius:8px 8px 0 0;
  box-shadow: rgb(1,122,210);
}

.indexBlookCardInfoBoxContent {
  margin-top:5px;
  font-size:13px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.indexBlookCardInfoBoxInfoButton {
  width:18px;
  height:18px;
  position:Absolute;
  transform: translate(22px, -45px);
  background: radial-gradient(circle, rgba(200,200,200,0.5) 35%, rgba(110, 110, 110, 0.5) 35%, rgba(110,110,110,0.5) 50%, rgba(200,200,200,0.5) 50%);
  border:none;
  border-radius:100%;
  font-family: Georgia, serif;
  color: rgb(110,110,110);
  font-size:9px;
  cursor:pointer;
}

.indexBlookCardInvisible {
  display:none;
}

.indexBlookCardPackLabelLarge {
  height: 35px;
}