/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
line-height: 1.15; /* 1 */
-webkit-text-size-adjust: 100%; /* 2 */
}
body {
margin: 0;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
hr {
box-sizing: content-box; /* 1 */
height: 0; /* 1 */
overflow: visible; /* 2 */
}
pre {
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
}
a {
background-color: transparent;
}
abbr[title] {
border-bottom: none; /* 1 */
text-decoration: underline; /* 2 */
text-decoration: underline dotted; /* 2 */
}
b,
strong {
font-weight: bolder;
}
code,
kbd,
samp {
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
img {
border-style: none;
}
button,
input,
optgroup,
select,
textarea {
font-family: inherit; /* 1 */
font-size: 100%; /* 1 */
line-height: 1.15; /* 1 */
margin: 0; /* 2 */
}
button,
input { /* 1 */
overflow: visible;
}
button,
select { /* 1 */
text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}
fieldset {
padding: 0.35em 0.75em 0.625em;
}
legend {
box-sizing: border-box; /* 1 */
color: inherit; /* 2 */
display: table; /* 1 */
max-width: 100%; /* 1 */
padding: 0; /* 3 */
white-space: normal; /* 1 */
}
progress {
vertical-align: baseline;
}
textarea {
overflow: auto;
}
[type="checkbox"],
[type="radio"] {
box-sizing: border-box; /* 1 */
padding: 0; /* 2 */
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;/* 1 */
outline-offset: -2px; /* 2 */
}
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-file-upload-button {
-webkit-appearance: button; /* 1 */
font: inherit; /* 2 */
}
details {
display: block;
}
summary {
display: list-item;
}
template {
display: none;
}
[hidden] {
display: none;
}
@font-face {
font-family: "000webfont";
src: url("fonts/000webfont.ttf") format("truetype"), ;
}
@font-face {
font-family: "basiic";
src: url("fonts/basiic.ttf") format("truetype");
}
@font-face {
font-family: "virale";
src: url("fonts/virale.ttf") format("opentype");
}
@font-face {
font-family: "Pixel Operator";
src: url("fonts/pixel_operator/PixelOperator.ttf") format("truetype");
}
html, body {
cursor: url(img/graphics/cursor.gif);
background-repeat: repeat;
background-color: #ffffff;
width: 1920px;
height: 1080px;
display: grid;
grid-gap: 10px;
overflow: hidden;
grid-template: "leftSidebar header header"
"leftSidebar main rightSidebar"
"footer footer footer" / 1fr 5fr 1fr;
grid-template-rows: 125px 2fr 75px;
}
::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-track {
background: #f1f1f100;
}
::-webkit-scrollbar-thumb {
background: #f1f1f100;
}
::-webkit-scrollbar-thumb:hover {
background: #f1f1f100;
}

/* TOOLTIP V1 */

[data-tooltip] { position: relative; cursor: help; }
[data-tooltip]::before, [data-tooltip]::after {
position: absolute; 
opacity: 0; 
visibility: hidden;
transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
pointer-events: none; z-index: 1000;
}
[data-tooltip]::before {
content: attr(data-tooltip);
background: rgb(255, 255, 255);
font-family: "Pixel Operator", sans-serif;
color: #F37D7D;
padding: 3px 10px;
margin: 110px 0px 0px -10px;
border: #F37D7D 1.75px solid;
max-width: 250px;
width: 75px;
text-align: center;
font-size: 13px;
filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}
[data-tooltip]::after { content: ""; border: 8px solid transparent; }
/* Positions */
[data-direction="top"]::before, [data-direction="top"]::after { left: 50%; bottom: 100%; transform: translateX(-50%) translateY(10px); }
[data-direction="top"]::after { border-top-color: rgba(98, 150, 210, 1); margin-bottom: -4px; }
[data-direction="top"]::before { margin-bottom: 12px; }
[data-direction="bottom"]::before, [data-direction="bottom"]::after { left: 50%; top: 100%; transform: translateX(-50%) translateY(-10px); }
[data-direction="bottom"]::after { border-bottom-color: rgba(98, 150, 210, 1); margin-top: -4px; }
[data-direction="bottom"]::before { margin-top: 12px; }
[data-direction="left"]::before, [data-direction="left"]::after { top: 50%; right: 100%; transform: translateY(-50%) translateX(10px); }
[data-direction="left"]::after { border-left-color: rgba(98, 150, 210, 1); margin-right: -4px; }
[data-direction="left"]::before { margin-right: 12px; }
[data-direction="right"]::before, [data-direction="right"]::after { top: 50%; left: 100%; transform: translateY(-50%) translateX(-10px); }
[data-direction="right"]::after { border-right-color: rgba(98, 150, 210, 1); margin-left: -4px; }
[data-direction="right"]::before { margin-left: 12px; }
/* Trigger */
[data-tooltip]:hover::before, [data-tooltip]:hover::after { opacity: 1; visibility: visible; }
[data-direction="top"]:hover::before, [data-direction="top"]:hover::after,
[data-direction="bottom"]:hover::before, [data-direction="bottom"]:hover::after { transform: translateX(-50%) translateY(0); }
[data-direction="left"]:hover::before, [data-direction="left"]:hover::after,
[data-direction="right"]:hover::before, [data-direction="right"]:hover::after { transform: translateY(-50%) translateX(0); }

/*END TOOLTIP V1 */

/*TOOLTIP V2 */
[data-tooltip2] { position: relative; cursor: help; }
[data-tooltip2]::before, [data-tooltip2]::after {
position: absolute; 
opacity: 0; 
visibility: hidden;
transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
pointer-events: none; z-index: 1000;
}
[data-tooltip2]::before {
content: attr(data-tooltip2);
background: rgb(255, 255, 255);
font-family: "Pixel Operator", sans-serif;
color: #F37D7D;
padding: 3px 10px;
margin: 40px 0px 0px -10px;
border: #F37D7D 1.75px solid;
max-width: 300px;
width: 200px;
text-align: center;
font-size: 13px;
filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}
[data-tooltip2]::after { content: ""; border: 8px solid transparent; }
/* Positions */
[data-direction="top"]::before, [data-direction="top"]::after { left: 50%; bottom: 100%; transform: translateX(-50%) translateY(10px); }
[data-direction="top"]::after { border-top-color: #F37D7D; margin-bottom: -5px;margin-left: -200px; }
[data-direction="top"]::before { margin-bottom: 12px; }
[data-direction="bottom"]::before, [data-direction="bottom"]::after { left: 50%; top: 100%; transform: translateX(-50%) translateY(-10px); }
[data-direction="bottom"]::after { border-bottom-color: #F37D7D; margin-top: -3px; margin-left: -200px; }
[data-direction="bottom"]::before { margin-top: 12px; }
[data-direction="left"]::before, [data-direction="left"]::after { top: 50%; right: 100%; transform: translateY(-50%) translateX(10px); }
[data-direction="left"]::after { border-left-color: #F37D7D; margin-right: -4px; }
[data-direction="left"]::before { margin-right: 12px; }
[data-direction="right"]::before, [data-direction="right"]::after { top: 50%; left: 100%; transform: translateY(-50%) translateX(-10px); }
[data-direction="right"]::after { border-right-color: #F37D7D; margin-left: -4px; }
[data-direction="right"]::before { margin-left: 12px; }
/* Trigger */
[data-tooltip2]:hover::before, [data-tooltip2]:hover::after { opacity: 1; visibility: visible; }
[data-direction="top"]:hover::before, [data-direction="top"]:hover::after,
[data-direction="bottom"]:hover::before, [data-direction="bottom"]:hover::after { transform: translateX(-50%) translateY(0); }
[data-direction="left"]:hover::before, [data-direction="left"]:hover::after,
[data-direction="right"]:hover::before, [data-direction="right"]:hover::after { transform: translateY(-50%) translateX(0); }
/*end tooltip v2 */

h1 {
font-family:"000webfont", sans-serif;
font-size: 60px;
color: #6296D2;
font-weight: 50;
margin: 0px 10px 0px 10px;
}
h3 {
font-family: "000webfont", sans-serif;
font-size: 20px;
color: #ffffff;
font-weight: 500;
}
p {
font-family: "Pixel Operator", sans-serif;
font-size: 13px;
color: #4c4c4c;
}
table {
width: 330%;
}
th {
font-family: "000webfont", sans-serif;
font-size: 20px;
color: #6B6B6B;
font-weight: 500;
text-align: left;
padding: 3px 15px 3px 10px;
}
td {
font-family: "Pixel Operator", sans-serif;
font-size: 13px;
color: #6B6B6B;
font-weight: 500;
text-align: left;
padding: 10px 30px 10px 10px;
}
/* H E A D E R / N A V */
.site-title {
    color: #D23232;
margin: 55px 0px 0px 0px;
}
.navbar {
grid-area: header;
display: flex;
flex-direction: row;
justify-content: flex-start;
flex-wrap: nowrap;
align-items: center;
align-content: stretch;
gap: 20px;
margin: 0px 0px 0px -11px;
padding: 0px 0px 0px 0px;
max-height: 90px;
width: 88%;
}
.nav-links {
flex-grow: 1;
width: 30%;
}
.nav-links table {
margin: 0px 0px 0px 3px;
width: 100%;
table-layout: fixed;
border-collapse: separate;
border-spacing: 8px;
}
.nav-links td {
padding: 0px 0px 0px 5px;
background-color: #EDEDED;
border-radius: 0px 15px 0px 0px; 
corner-shape: bevel; 
}
.nav-links a {
color: #6B6B6B;
text-align: left;
padding: 0px 0px 0px 10px;
text-decoration: none;
font-family: "000webfont", sans-serif;
font-size: 20px;
border-radius: 0px 15px 0px 0px; 
corner-shape: bevel; 
display: block;
width: 100%;
height: 100%;
}

.nav-links td:hover {
background-color: #D23232;
color: #ffffff;
}

.nav-links td:hover a {
color: #ffffff;
}
.activepage {
background-color: #D23232 !important;
color: #ffffff;
}
.activepage a {
color: #ffffff;
}
.description {
margin: 0px 0px 0px 0px;
background-color: #EDEDED;
width: 488px;
height: 60px;
}
.description h3 {
margin: 8px 20px 10px -5px;
text-align: left;
}
.description h1 {
font-size: 15px;
margin: 12px 20px 0px 10px;
}
.subtitle {
text-decoration: none;
font-family: "000webfont", sans-serif;
font-size: 20px;
}

.timetxt {
  font-family: "000webfont", sans-serif;
  font-size: 15px;
}

.time {
  font-family: 'Your-Font-Name', sans-serif !important;
  font-size: 24px !important;
  color: #333333 !important;
}

.latest {
  padding: 15px 10px 10px 0px;
}
/* END H E A D E R / N A V */

/* MAIN */
main {
grid-area: main;
margin: 75px 0px 0px 0px;
width: 80%;
}
.mainparent {
display: grid;
grid-template-columns: repeat(7, 1fr);
grid-template-rows: 5rem 5rem 3rem 20rem;
gap: 15px;
}

.about-parent {
    display: grid;
    grid-template-columns: 170px 100px 170px 200px 200px 200px;
    grid-template-rows: 300px 375px;
    gap: 15px;
  
  
}

.header {
  margin: 5px;
}

.header h2 {
  font-family: "000webfont", sans-serif;
  font-size: 20px;
  color: #fff;
  background-color: #D23232;
  padding: 10px 10px 20px 10px;
  margin: 5px;
  font-weight: 100;
  height: 10px;
}

.header h3 {
  font-family: "000webfont", sans-serif;
  font-size: 20px;
  color: #fff;
  background-color: #D23232;
  padding: 10px 10px 20px 10px;
  margin: 5px;
  font-weight: 100;
  height: 10px;
}
    
.thebasics {
    grid-column: span 2 / span 2;
    border: #D23232 1.75px solid;
      border-radius: 0px 0px 15px 0px;
  corner-shape: bevel;

}

.mefr {
    grid-column-start: 3;
border: #D23232 1.75px solid;
  border-radius: 0px 0px 15px 0px;
  corner-shape: bevel;
}

.favorites {
   grid-column: span 3 / span 3;
    grid-row: span 2 / span 2;
    grid-column-start: 4;
    border: #D23232 1.75px solid;
      border-radius: 0px 0px 15px 0px;
  corner-shape: bevel;
width: 595px;
height: 673px;

scrollbar-color: #F37D7D #f1f1f100;
   
}

.fav-content {
    height: 55px;
    overflow-y: scroll;
overflow-x: hidden;
scrollbar-width: thin;
height: 580px;
}

hr {
border:  #F37D7D 0.25px solid;
width: 90%;
}

.fav-subhead {
    margin: 5px 0px 5px 0px;
}

.fav-subhead h3 {
font-family: "000webfont", sans-serif;
font-size: 20px;
color: #D23232;
font-weight: 100;
margin: 0px 10px 0px 0px;
} 

.media-row{
    display: flex;
      padding: 5px 0px 5px 0px;
      
}

.fav-media {    
    height: 120px;
    width: 80px;
    padding: 0px 15px 0px 0px;
}

.data-tooltip img {
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    overflow: visible;
    vertical-align: middle;
}

.data-tooltip img:hover {
    -webkit-transform:scale(1.2); /* Safari and Chrome */
    -moz-transform:scale(1.2); /* Firefox */
    -ms-transform:scale(1.2); /* IE 9 */
    -o-transform:scale(1.2); /* Opera */
    transform:scale(1.2);
}

.fav-gif {
    height: 120px;
    width: 80px;
        padding: 0px 15px 0px 0px;
}

.likes {
    grid-row-start: 2;
border: #D23232 1.75px solid;
  border-radius: 0px 0px 15px 0px;
  corner-shape: bevel;


}

.likes li {
    font-family: "Pixel Operator", sans-serif;
    font-size: 14px;
    color: #4c4c4c;
      list-style-type: none;
        margin: -2px 0px 0px 0px;
}

.likes ul li:before {
  content: '\2726';
  color: #D23232;
  font-size: 14px;
  padding: 5px 0px 0px 0px;
  margin: 0px 5px 0px -30px;
}

.cats {
   grid-column: span 2 / span 2;
    grid-row-start: 2;
    border: #D23232 1.75px solid;
      border-radius: 0px 0px 15px 0px;
  corner-shape: bevel;
  padding: 0px 0px 0px 15px;
  height: 357px;
}

.catback {
    background-color: #EDEDED;
    padding: 15px;
    height: 250px;
    width: 250px;
    overflow: hidden scroll;
    scrollbar-width: thin;
    scrollbar-color: #F37D7D #f1f1f100;
    padding: 0px 0px 0px 15px;

}
        
.cat-img img {
    padding: 5px;
    width: 100px;
}

.w3-bar-item {
    background-color: #EDEDED;
    border: none;
    width: 55px;
}

.w3-button {
    font-family: "000webfont", sans-serif;
    font-size: 18px;
    color: #4c4c4c;
}

.w3-button:hover {
    font-family: "000webfont", sans-serif;
    font-size: 18px;
    color: #fff;
    background-color: #F37D7D;
}

.w3-button:active {
    background-color: #F37D7D;
    color: #ffffff;
}

.w3-red {
    background-color: #D23232;
    color: #ffffff;
}


/* end about */

/* LEFT */
.sidebars {
margin: 0px 30px 0px 0px;
}
.leftSidebar {
grid-area: leftSidebar;
height: 100%;
display: flex;
}
.pfp{
z-index: -1;
width: 90%;
margin: 40px 0px -10px -27px;
}
#statuscafe {
padding: 0px;
}
#statuscafe-username {
margin: -51px 0px 0px 20px;
font-family: "000webfont", sans-serif;
font-size: 18px;
color: #2c3d4f
}
#statuscafe-username a {
margin-bottom: .5em;
font-family: "000webfont", sans-serif;
font-size: 18px;
color: #2c3d4f
}
#statuscafe-content {
margin: -1px 0px 0px 20px;
font-family: "Pixel Operator", sans-serif;
font-size: 13px;
color: #2c3d4f
}
.statustext {
margin-bottom: 25px;
}
.asidebox {
border: #D23232 1.75px solid;
width: 195px;
margin: 15px 0px 0px 0px;
}

.info-row {
display: flex;
align-items: flex-start;
margin: 0px 3px 3px 5px;
}
.info-label {
background-color: #F37D7D;
font-family: "000webfont", sans-serif;
font-size: 16px;
padding: 3px 10px 12px 10px;
margin: 10px 0px 0px 0px;
width: 130px;
height: 100px;
border: #F37D7D 1.75px solid;
max-height: 10px;
color: #fff;
}
.info-value {
background-color: #fff;
font-family: "Pixel Operator", sans-serif;
font-size: 13px;
margin: 10px 5px 3px 0px;
padding: 5px 10px 5px 10px;
border: #F37D7D 1.75px solid;
width: 90%;
}



.marquee {
display: flex ;
overflow: hidden ;
white-space: nowrap ;
width: 950px; ;
}
.marquee__item {
animation-duration: 25s ;
animation-iteration-count: infinite ;
animation-name: marquee-content ;
animation-timing-function: linear ;
padding: 5px 15px 5px 0px ;
}
.marquee:hover .marquee__item {
animation-play-state: paused ;
}
@keyframes marquee-content {
from {
transform: translateX( 0% );
}
to {
transform: translateX( -100% );
}
}
.marquee img 
{
height: 50px;
}
