/*********************
MAIN.CSS
**********************/
/* devanagari */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJbecmNE.woff2)
    format("woff2");
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC,
    U+A830-A839, U+A8E0-A8FF;
}
/* latin-ext */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJnecmNE.woff2)
    format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecg.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/*********************
BODY STYLING
**********************/

html {
  scroll-behavior: smooth;
}
body {
  background: #09101D;
  font-family: "Poppins";
  color: white;
}

/** DARK OVERRIDE **/
.card,.modal-container {
  background: #202334;
  border: 0;
}
.modal-header,.modal-title{color:white !important}
.neko-navbar,
.filter-item.card {
  background: #09101D !important;
  color: white;
}
.off-canvas .off-canvas-sidebar {
  background-image: linear-gradient(to right, black, #09101D) !important;
  color: white;
}
.menu-item > a:hover {
 /* background: #1e2936 !important; */
  color: black !important;
  transition: all 0.5s ease;
}
.menu-item > a {
  transition: all 0.5s ease;
}

.divider-vert[data-content]::after,
.divider[data-content]::after {
  background-color: inherit !important;
  color: white !important; /* Change text color for better contrast */
}
.divider {
  border: 1px solid transparent; /* Required for border-image to work */
  border-image: linear-gradient(to right, transparent, transparent, white) 1;
}
.neko-logo,
.neko-logo > h2 {
  color: white;
}
/*
.remove-color
 {
  filter: grayscale(100%);
  transition: all 0.5s ease;
}
.remove-color:hover {
  filter: grayscale(0%);
}
*/
.filter-nav{
  color: black;
}
.btn.btn-primary,
.btn.btn-link,
.bg-primary,
.text-primary,
a,
a:visited,
a:active,
a:hover,
.filter .filter-tag#tag-0:checked~.filter-nav .chip[for=tag-0], 
.filter .filter-tag#tag-1:checked~.filter-nav .chip[for=tag-1], 
.filter .filter-tag#tag-2:checked~.filter-nav .chip[for=tag-2]
{
  filter: hue-rotate(-40deg);
}
/** DARK OVERRIDE END **/

.img-square{
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  filter: hue-rotate(40deg);
}
.va-middle {
  vertical-align: middle;
}
.disable-select {
  user-select: none;
}
.card.nobg {
  border: 0px;
  background: inherit;
}
.menu {
  box-shadow: none;
  background: inherit;
}
.photo-icon {
  top: 0;
  right: 0;
  padding: 0.4em;
  z-index:1;
}
.kofi-button {
  top: 0;
  right: 0;
  padding: 0.4em;
  max-width: 200px;
  z-index:1;
}
.text-no-decoration {
  text-decoration: none !important;
}
.pfp-container{display: inline-block;
    height: 1.8rem;
    text-align: center;
    user-select: none;
    vertical-align: middle;
              padding:8px}

@media only screen and (max-width: 960px) {
  #content {
    padding-top: 80px;
    /* to not hide elements behind navigation bar on phone */
  }
}

@media only screen and (min-width: 960px) {
  .neko-navbar {
    display: none;
    /* instead, hide navigation bar on desktop */
  }
  #content {
    padding-top: 40px;
    /* padding on desktop */
  }
}

/*********************
CUSTOM SCROLLBAR
**********************/

::-webkit-scrollbar {
  width: 14px;
  height: 18px;
}

::-webkit-scrollbar-thumb {
  height: 6px;
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  -webkit-border-radius: 7px;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05),
    inset 1px 1px 0px rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb:hover {
  background-color: #5755d9;
}

::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

/*********************
NAVIGATION BAR STYLING
**********************/
/* this shows on mobile */
.neko-navbar {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  padding: 12px;
  background: white;
  border-bottom: 1px solid #e6ecf0;
  left: 0;
}
.navbar-logo {
  display: block;
}

.neko-navbar .btn {
  font-size: 1.2em;
}

.neko-navbar .avatar {
  margin-left: 8px;
}


/*********************
NYAN ELEMENTS STYLING
**********************/

#user-header-shadow {
  padding: 40px;
  font-weight: bold;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1)
  );
  /* Standard syntax (must be last) */
}

#user-header-container {
  background-image: url(https://pbs.twimg.com/profile_banners/1041197474/1572729862/1500x500);
  background-repeat: no-repeat;
  background-size: cover;
}

.form-group:not(:last-child) {
  margin-bottom: 20px;
  /* margin at the end of the form */
}

textarea.form-input {
  margin-bottom: 4px;
}

/*********************
OFF-CANVAS SIDEBAR STYLING
**********************/

.off-canvas .off-canvas-sidebar {
  width: 12rem;
  min-height: 100vh;
}
.off-canvas .off-canvas-content {
  padding: 0px;
}

.neko-container {
  /*min-height: 100vh;  i dont see reason for this to exist */
}

.neko-sidebar .neko-nav {
  bottom: 1.5rem;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  padding: 0.5rem 1.5rem;
  position: fixed;
  top: 3.5rem;
  width: 12rem;
}

.neko-content {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0 4rem;
  width: calc(100vw - 12rem);
}

.neko-content > .container {
  margin: auto;
  max-width: 800px;
  padding-bottom: 1.5rem;
}

.neko-brand {
  color: #5755d9;
  height: 2rem;
  left: 1.5rem;
  position: fixed;
  top: 0.85rem;
}

.neko-brand .neko-logo {
  align-items: center;
  border-radius: 0.1rem;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  font-size: 0.7rem;
  height: 2rem;
  padding: 0.2rem;
  width: auto;
}

.neko-brand .neko-logo:focus,
.neko-brand .neko-logo:hover {
  text-decoration: none;
}

.neko-brand .neko-logo img {
  display: inline-block;
  height: auto;
  width: 1.6rem;
}

.neko-brand .neko-logo h2 {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 0;
  margin-left: 0.5rem;
  margin-right: 0.3rem;
}

/* FINAL RESPONSIVENESS TOUCHES */

@media (max-width: 960px) {
  .off-canvas .off-canvas-content {
    width: 100%;
  }
  .neko-sidebar .neko-brand {
    margin: 0.85rem 1.5rem;
    padding: 0;
    position: static;
  }
  .neko-sidebar .neko-nav {
    margin-top: 1rem;
    position: static;
  }
  .neko-sidebar .menu .menu-item > a {
    padding: 0.3rem 0.4rem;
  }
  .neko-content {
    min-width: auto;
    padding: 0 1.5rem;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .neko-sidebar .neko-brand {
    margin: 0.85rem 1rem;
  }
  .neko-sidebar .neko-nav {
    padding: 0.5rem 1rem;
  }
  .neko-content {
    padding: 0 0.5rem;
  }
}

/*********************
ANIMATION
**********************/

.off-canvas .off-canvas-content {
  -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 1s; /* Firefox < 16 */
  -ms-animation: fadein 1s; /* Internet Explorer */
  -o-animation: fadein 1s; /* Opera < 12.1 */
  animation: fadein 1s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
