:root {
  --bodyBG: #fabccb;
  --linkColor: #f3a0b8;
  --linkColorLt: #ffe7f6;
  --headerColor: #f489a3;
  --blue: #b1d1ef;

  --white: #fff;
  --black: #000;

  --contentBG: rgba(255,255,255,0.9);
  --linkColorLtTransparent: rgb(255, 231, 246, 0.9);
  --headerColorTransparent: rgb(244, 137, 163, 0.8);

  --font: 'Open Sans', sans-serif;
  --headerFont: 'Lobster Two', sans-serif;
}

/* GENERAL */

* {
  margin: 0;
  padding: 0;
  cursor: url(https://cur.cursors-4u.net/nature/nat-10/nat991.cur), auto !important;
  font-family: var(--font);
}

a {
  text-decoration: none;
  color: var(--linkColor);
  font-weight: bold;
}

a:hover {
  cursor: url(https://ani.cursors-4u.net/nature/nat-11/nat1045.cur), auto !important;
  color: var(--headerColor);
}

body {
	font-size: 15px;
}

input, select, textarea {
  background: var(--bodyBG);
  outline: none;
  border: 1px dotted var(--contentBG);
  padding: 2px;
}
input:hover, select:hover {
  cursor: url(https://ani.cursors-4u.net/nature/nat-11/nat1045.cur), auto !important;
}
textarea {
  width: 80%;
  height: 300px;
  margin: 10px 0;
  padding: 5px;
}

::-webkit-scrollbar {
  width: 13px;
}
::-webkit-scrollbar-track {
  background: var(--contentBG);
}
::-webkit-scrollbar-thumb {
  background: var(--linkColorLt);
}

/* SIDEBAR */

.sidebar {
  width: 20vw;
  text-align: right;
  position: fixed;
  bottom: 2vh;
  opacity: 100;
}
.fa-bars, .fa-times-circle {
  display: none;
  z-index: 5;
}
.fa-bars {
  visibility: hidden;
  position: fixed;
}
.sidebar a {
  display: block;
  width: 18vw;
  margin: 8px 0;
  text-decoration: none;
  background: var(--linkColorLtTransparent);
  padding: 3px 5px;
  color: var(--headerColor);
  font-size: 20px;
  font-family: var(--headerFont);
  box-shadow: 3px 3px 0px var(--linkColor), 0px 3px 0px var(--linkColor);
  text-shadow: 1px 1px 0px var(--contentBG);
  outline: 1px dotted var(--linkColorLt);
  font-weight: normal;
  transition: all 0.2s;
}
.sidebar a::first-letter {
  font-weight: bold;
  text-transform: uppercase;
}
.sidebar a:hover {
  background: var(--contentBG);
  outline: 1px dotted var(--contentBG);
}

.extraSidebar {
  z-index: 1;
  position: fixed;
  right: 5px;
  bottom: 5px;
  text-align: center;
}
.extraSidebar a {
  display: block;
  margin-bottom: 5px;
  padding: 2px;
  background: var(--bodyBG);
  color: var(--white);
  border: 1px dotted var(--white);
  font-weight: normal;
  letter-spacing: 1px;
  font-size: 12px;
  transition: all 0.2s;
}
.extraSidebar a:hover {
  color: var(--headerColor);
  background: var(--linkColorLt);
  border: 1px dotted var(--headerColor);
}
.extraSidebar a:nth-child(1) {
  background: none;
  border: none;
  color: var(--bodyBG);
  font-variant: small-caps;
}
.extraSidebar a:nth-child(1):hover {
  padding-bottom: 10px;
  color: var(--headerColor);
}

/* CONTENT */

.content {
  background: var(--contentBG);
  min-height: 100vh;
  width: 72vw;
  position: absolute;
  top: 0;
  right: 0;
  overflow-y: hidden;
  overflow-x: hidden;
  outline: 1px dotted var(--contentBG);
  padding: 20px 40px 20px;
  text-align: center;
}

.header {
  position: relative;
  top: -20px;
  margin-right: -40px;
  margin-left: -40px;
}
#headerIMG {
  width: 100%;
  height: 40vh;
  background: url("images/header.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.index #headerIMG {
  outline: 1px dotted var(--bodyBG);
}

.menu {
  display: flex;
  text-align: center;
  font-variant: small-caps;
}
.menu a {
  width: 100%;
  border-right: 1px dotted var(--contentBG);
  padding: 5px 0;
  background: var(--linkColorLt);
  text-shadow: 1px 1px 0px rgba(255,255,255,0.5);
  border-bottom: 1px dotted var(--contentBG);
  border-radius: 0 0 10px 10px;
  transition: all 0.2s;
}
.menu a:hover {
  background: var(--white);
  border-bottom: 1px dotted var(--linkColorLt);
}

h2 {
  padding-top: 20px;
  color: var(--headerColor);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  font-weight: normal;
  font-size: 28px;
  font-family: var(--headerFont);
}
p {
  line-height: 0;
}

/* GAME HEADERS */

.info {
  display: flex;
  margin: 20px auto 20px;
  align-items: center;
}
.info div {
  width: 100%;
}

#one {
  text-align: left;
}
#one img {
  float: left;
  margin-right: 10px;
}
#one b {
  display: inline-block;
  margin-bottom: 10px;
}

#two {
  height: fit-content;
}
#two b {
  display: block;
  width: fit-content;
  margin: auto;
  color: var(--white);
  font-size: 30px;
  font-style: italic;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: var(--headerColor);
}

#three {
  text-align: right;
}
#three img {
  float: right;
  margin-left: 10px;
}
#three b, #three a {
  display: inline-block;
  margin-bottom: 10px;
}

.sect, h1, summary {
  display: block;
  text-align: center;
  font-family: var(--headerFont);
  font-size: 40px;
  color: var(--headerColor);
  font-style: italic;
  font-weight: normal;
  border-bottom: 1px dotted var(--headerColor);
  margin: 20px auto;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.far {
  font-size: 25px;
}

/* INDEX & TRADE TABLE */

.indexImage {
  background: url("images/Cure_Heart_Haru_no_Carnival.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 300px;
  height: 230px;
  margin: 10px auto 0;
}

table {
  width: 80%;
  margin: 20px auto 0;
  background: var(--white);
  color: var(--white);
  border: 1px dotted var(--headerColor);
}
th {
  padding: 5px;
  background: var(--bodyBG);
  border: 1px dotted var(--contentBG);
  color: var(--contentBG);
  font-size: 22px;
  font-variant: small-caps;
  letter-spacing: 1px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--headerColor);
}
td {
  padding: 5px;
  background: var(--bodyBG);
  border: 1px dotted var(--contentBG);
  text-align: center;
}
td a {
  text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
  color: #fff;
  font-family: var(--headerFont);
  font-size: 20px;
  transition: all 0.2s;
}

.trade {
  text-align: justify;
}

/* MODS */

/* card search mod */
.highlightCard {
	border: 2px solid var(--linkColor);
  border-radius: 3px;
	background: var(--linkColor);
}
.dimmedCard {
	opacity: 0.3;
	filter: alpha(opacity=30);
}

/* card search mod & trade form */
form, #cardlist {
  display: block;
  margin: auto;
  width: fit-content;
}
#cardlist {
  text-align: center;
}

/* style-my-tootltips plugin, tooltip styling */
#s-m-t-tooltip{
	/* basic */
	max-width: 300px;
	z-index: 10;
	margin: 24px 14px 7px 12px;
	/* style and design */
	padding: 8px;
	background: var(--headerColor); /* fallback if rgba not supported */
	background: var(--headerColorTransparent);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 2px 2px 0 rgba(0,0,0,0.15),
                  -1px -1px 0 rgba(255,255,255,0.3);
	-webkit-box-shadow: 2px 2px 0 rgba(0,0,0,0.15),
                      -1px -1px 0 rgba(255,255,255,0.3);
	box-shadow: 2px 2px 0 rgba(0,0,0,0.15),
              -1px -1px 0 rgba(255,255,255,0.3);
	/* font */
	font-size: 13px;
	line-height: 16px;
  letter-spacing: 1px;
	color: var(--white);
}

/* MOBILE FRIENDLY */

@media (max-width: 1100px) {
  body {
    overflow-x: hidden;
  }
  .content {
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 0 0 20px 0;
    background: #fff;
    font-size: 3vw;
    overflow-y: auto;
  }
  th, a {
    font-size: 3vw;
  }
  .header {
    top: 0;
    margin-right: 0;
    margin-left: 0;
  }
  #headerIMG {
    background-position: center;
    background-size: cover;
    height: 25vh !important;
  }
  .indexImage {
    width: 40vw;
    height: 45vh;
  }
  .info {
    padding: 0 20px;
    font-size: 2.5vw;
  }
  .info a, .info b {
    font-size: 2.5vw;
  }
  #two {
    padding: 0 5px;
  }
  .sidebar {
    z-index: 0;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: var(--headerColor);
    text-align: center;
    overflow-y: auto;
    transition: all 0.5s;
  }
  .sidebar a {
    margin: 20px auto;
    font-size: 8vw;
    width: 40%;
    box-shadow: none;
    border-bottom: 2px dotted;
    background: none;
    color: #fff;
    text-shadow: -1px 1px 0px #000;
    outline:none;
    transition: all 0.5s ease-in-out;
  }
  .sidebar a:hover {
    background: none;
    outline: none;
    text-shadow: -1px 1px 0px #000, -2px 2px 0px var(--headerColor), -3px 3px 0px #000;
  }
  .fa-bars {
    visibility: visible;
  }
  .fa-bars, .fa-times-circle {
    font-size: 7vw;
    color: var(--blue);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    text-shadow: -2px 2px 0px #000;
    position: fixed;
    top: 10px;
    left: 10px;
  }
};

blockquote{
color: #eee; 
font-size: 10px; 
background-color: #ccc; 
margin:10px; padding:2px;
}
.highlightCard {
    border: 2px solid #D63550;
    background: #D63550;
}
.dimmedCard {
    opacity:0.3;
    filter:alpha(opacity=30);
}
textarea{
color: #fff; 
font-size: 15px; 
background-color: #fabccb; 
margin:0px; padding:2px;
border: 1px solid #ccc;
}

/*-- CARD COUNT MOD --*/

/* background overlay */
.cIOverlay {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #000;
    background: rgba(255,255,255,0.9);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* instruction text */
.cIOverlay span {
    display: block;
    color: #f489a3;
    text-align: justify;
    width: 30%;
    font-weight: bold;
    cursor: default;
}

/* textarea to input cards */
.cIOverlay textarea {
    width: 30vw;
    padding: 2px;
    height: 100px;
    font-size: 17px;
    color: #fff;
    background: #fabccb;
    border: 1px dotted #fff;
    outline: none;
}

/* button to count cards */
.cIOverlay input {
    margin: 5px 0;
    width: 30.5vw;
    cursor: url(https://cur.cursors-4u.net/nature/nat-10/nat991.cur), auto !important;
    background: #fabccb;
    color: #fff;
    border: 1px dotted #fff;
    font-size: 20px;
    outline: none;
}
/* close button */
.cIOverlay input[value=X] {
    font-size: 15px;
    width: 28px;
    height: 28px;
    background: #fabccb;
    border-radius: 50px;
    position: fixed;
    right: 30%;
    top: 30%;
}
/* hover effect over buttons */
.cIOverlay input:hover {
    background: #f3a0b8;
    color: #fff;
}

/* text displaying card amount */
.cIOverlay #countText {
    text-align: center;
    font-size: 25px;
    font-family: var(--headerFont);
    color: #f489a3;
}

/* button added into your html */
.cardCountButton {
    cursor: url(https://cur.cursors-4u.net/nature/nat-10/nat991.cur), auto !important;
    font-size: 20px;
    font-weight: bold;
    font-family: var(--headerFont);
    color: #f489a3;
    background: #fcdde4;
    border: 5px outset #f489a3;
    outline: none;
    float: left;
}
/* html button after it's been clicked/while in use */
.cardCountButton:focus {
    border: 5px inset #f7acbe;
}