@font-face {
  font-family: 'BadComic-Regular';
  src: url('https://file.garden/aTr8t_0tyznNb_DW/BadComic-Regular.ttf') format('truetype');
}

  
/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */

/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: transparent;
  --content-background-color: #ffffff;
  --sidebar-background-color: #ffffff;

  /* Text Colors: */
  --text-color: #ff006a;
  --sidebar-text-color: #ff006a;
  --link-color: #f31642;
  --link-color-hover: #ffffff;
  
  /* text rainbow */
  a {
  display: inline-block; /* Required for transforms */
}

a {
  display: inline-block;
  transition: transform 0.2s ease;
}

a {
  display: inline-block;
  transition: transform 0.3s;
}
@keyframes rainbow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 400% 50%;
  }
}

a:hover {
  background: linear-gradient(
    90deg,
    #E38BDA,
    #FFA4A4,
    #FDD39B,
    #FFFAB0,
    #B8E38C,
    #96BCF3
  );

  background-size: 400% 100%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  animation: rainbow 3s linear infinite;
  cursor: url('https://file.garden/aTr8t_0tyznNb_DW/cursor(1).cur'), pointer;
}

a:hover {
  font-weight: 700;
  transform: scale(1.05);
  cursor: url('https://file.garden/aTr8t_0tyznNb_DW/cursor(1).cur'), pointer;
}

@keyframes rainbow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 300% 50%;
  }
}
a {
  display: inline-block;
}

a:hover {
  animation:
    rainbow 2s linear infinite,
    hop 0.4s ease-out;
    cursor: url('https://file.garden/aTr8t_0tyznNb_DW/cursor(1).cur'), pointer;
}

@keyframes hop {
  0%   { transform: translateY(0); }
  40%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}


  /* Text: */
  --font: 'BadComic-Regular', sans-serif;
  --heading-font: 'BadComic-Regular', sans-serif;
  --font-size: 16px;

  /* Other Settings: */
  --margin: 12px;
  --padding: 22px;
  --border: none;
  --round-borders: 34px;
  --sidebar-width: 200px;
}

/* -------------------------------------------------------- */
/* BASICS */
/* -------------------------------------------------------- */

* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  font-size: var(--font-size);
  margin: 0;
  padding: var(--margin);
  color: var(--text-color);
  font-family: 'BadComic-Regular', sans-serif;
  line-height: 1.2;
  background: var(--background-color);
  background-image: url("https://file.garden/aTr8t_0tyznNb_DW/tumblr_inline_n2590ayYaL1qhwjx8540.gif");
  cursor: url('https://file.garden/aTr8t_0tyznNb_DW/cursor.cur'), auto;
  
}

::selection {
  /* (Text highlighted by the user) */
  background: rgba(0, 0, 0, 0.2);
}

mark {
  /* Text highlighted by using the <mark> element */
  text-shadow: 1px 1px 4px var(--link-color);
  background-color: inherit;
  color: var(--text-color);
}

/* Links: */
a {
  text-decoration: underline;
}

a,
a:visited {
  color: var(--link-color);
}

a:hover,
a:focus {
  color: var(--link-color-hover);
  text-decoration: none;
  cursor: url('https://file.garden/aTr8t_0tyznNb_DW/cursor(1).cur'), pointer;
}

/* -------------------------------------------------------- */
/* LAYOUT */
/* -------------------------------------------------------- */

.layout {
  width: 1000px;
  display: grid;
  grid-gap: var(--margin);
  grid-template: "header header" auto "main rightSidebar" auto "footer footer" auto / auto var(--sidebar-width);
  /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */
}

main {
  grid-area: main;
  overflow-y: auto;
  padding: var(--padding);
  background: var(--content-background-color);
  border: var(--border);
  border-radius: var(--round-borders);
}

/* -------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------- */

header {
  grid-area: header;
  background: transparent;
  border: none;
  width: fit-content;
  margin: 0 auto;
  padding: 0;
}

.header-content {
  padding: 0px;
}

.header-title {
  font-family: var(--heading-font);
  font-size: 1.5em;
  font-weight: bold;
}

.header-image img {
  width: 25%;
  height: auto;
  display: inline-block !important;
  animation: float 3s ease-in-out infinite !important;
}

#logo {
  display: inline-block !important;
  animation: float 3s ease-in-out infinite !important;
}

/* -------------------------------------------------------- */
/* SIDEBARS */
/* -------------------------------------------------------- */

aside {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}
  
aside a {
  display: block;
  width: fit-content;

  margin: 12px 0 12px auto;

  padding: 4px 10px;

  border-radius: 999px;

  transition: .2s;
}

aside a:hover {
  transform: translateX(-5px);
  cursor: url('https://file.garden/aTr8t_0tyznNb_DW/cursor(1).cur'), pointer;
}

aside a {
  box-shadow:
    0 2px 8px rgba(255,255,255,0.3);
}

.left-sidebar {
  grid-area: leftSidebar;
}

.right-sidebar {
  grid-area: rightSidebar;
}

.sidebar-title {
  font-weight: bold;
  font-size: 1.2em;
  font-family: var(--heading-font);
  text-align: center;
  margin-bottom: 20px;
}

.sidebar-section:not(:last-child) {
  margin-bottom: 3em;
}

.sidebar-section:not(:last-child)::after {
  content: "☁ ☁ ☁";
  display: block;
  text-align: center;

  margin-top: 15px;

  opacity: 0.6;
}

.sidebar-section {
  background: transparent;
  padding: 0;
}

.sidebar-section a {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 12px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
}

.sidebar-section img {
  display: block;
  margin: 0 auto;
  transition: .2s ease;
}

.sidebar-section img:hover {
  transform: rotate(-5deg) scale(1.08);
}

.sidebar-section ul,
.sidebar-section ol {
  padding-left: 1.5em;
}

.sidebar-section > *:not(p):not(ul):not(ol):not(blockquote) {
  margin-top: 10px;
}

.menu-links {
  list-style: none;
  padding: 0;
}

.menu-links a {
  background: white;

  padding: 8px 14px;

  border-radius: 20px;

  box-shadow:
    0 2px 8px rgba(0,0,0,0.08);

  transition: .2s ease;
}

.menu-links li:nth-child(1) {
  transform: translateX(0px);
}

.menu-links li:nth-child(2) {
  transform: translateX(15px);
}

.menu-links li:nth-child(3) {
  transform: translateX(30px);
}

/* Sidebar Blockquote: */

.sidebar-section blockquote {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 1em 0;
  border-radius: 10px;
  overflow: hidden;
}

.sidebar-section blockquote > *:first-child {
  margin-top: 0;
}

.sidebar-section blockquote > *:last-child {
  margin-bottom: 0;
}

/* Site Button: */

.site-button {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-button textarea {
  font-family: monospace;
  font-size: 0.7em;
}

/* -------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------- */

footer {
  grid-area: footer;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  font-size: 0.75em;
  padding: 15px;
  background: var(--content-background-color);
  display: flex;
  
}

footer a,
footer a:visited {
  color: var(--link-color);
}

footer a:hover,
footer a:focus {
  color: var(--link-color-hover);
}

/* -------------------------------------------------------- */
/* NAVIGATION */
/* -------------------------------------------------------- */

.comicnav {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 15px;

  font-family: 'BadComic-Regular';
  font-size: 25px;
  font-weight: bold;

  margin: 20px auto;

  background: rgba(255,255,255,0.4);

  backdrop-filter: blur(8px);

  padding: 12px 24px;

  border-radius: 999px;

  width: fit-content;
   box-shadow:
    0 0 15px rgba(255,255,255,0.6),
    0 0 30px rgba(227,139,218,0.25);
}

nav {
  margin-bottom: 3em;
}

nav .sidebar-title {
  margin-bottom: 0.5em;
}

nav ul {
  margin: 0 -5px;
  padding: 0;
  list-style: none;
  user-select: none;
}

nav ul li {
  margin-bottom: 0;
}

nav > ul li > a,
nav > ul li > strong {
  display: inline-block;
}

nav > ul li > a,
nav > ul li > details summary,
nav > ul li > strong {
  padding: 5px 10px;
}

nav > ul li > a.active,
nav > ul li > details.active summary {
  font-weight: bold;
}

nav ul summary {
  cursor: url('https://file.garden/aTr8t_0tyznNb_DW/cursor(1).cur'), pointer;
}

nav ul ul li > a {
  padding-left: 30px;
}



/* -------------------------------------------------------- */
/* CONTENT */
/* -------------------------------------------------------- */
.chapter-select {
  text-align: center;
  margin: 40px auto;
   animation: rainbowGlow 5s ease-in-out infinite;
}

@keyframes rainbowGlow {
  0%,100% {
    filter:
      drop-shadow(0 0 8px rgba(227,139,218,.15))
      drop-shadow(0 0 8px rgba(255,164,164,.1));
  }

  50% {
    filter:
      drop-shadow(0 0 15px rgba(227,139,218,.25))
      drop-shadow(0 0 15px rgba(255,164,164,.15))
      drop-shadow(0 0 15px rgba(150,188,243,.15));
  }
}

.chapter-title {
  display: inline-block;

  margin-bottom: 15px;

  padding: 8px 18px;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    #f3d7ef,
    #ffd8d8,
    #fee8c9,
    #fffdd9,
    #dff1cb,
    #d6e7fc
  );

  color: #ff2d75;
  font-family: 'BadComic-Regular';
  font-size: 1.3rem;

  box-shadow:
    0 0 10px rgba(255,255,255,.7);
}

.chapter-select select {
 
  display: block;
  margin: 15px auto 40px auto;

  width: 250px;

  padding: 12px 18px;

  border: 2px solid #ffd6eb;
  border-radius: 999px;

  background: rgba(255,255,255,.85);

  color: #ff2d75;

  font-family: 'BadComic-Regular';
  font-size: 1rem;

  box-shadow:
    0 0 12px rgba(255,182,219,.3);

  cursor: url('https://file.garden/aTr8t_0tyznNb_DW/cursor(1).cur'), pointer;

  transition: all .2s ease;
  text-align: center;
}

.chapter-select select:hover {
  transform: translateY(-2px);

  box-shadow:
    0 0 18px rgba(255,182,219,.5);
}

.descript {
  position: relative;
  background: rgba(255,255,255,0.5);
  border-radius: 5px;
  padding: 10px;
  margin: 10px;
  animation: float 4s ease-in-out infinite;
}

.descript::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;

  background: linear-gradient(
    90deg,
    #E38BDA,
    #FFA4A4,
    #FDD39B,
    #FFFAB0,
    #B8E38C,
    #96BCF3,
    #E38BDA
  );

  background-size: 400% 100%;
  animation: rainbow 4s linear infinite;

  z-index: -1;
  filter: blur(4px);
  opacity: 0.5;
}

@keyframes rainbow {
  from { background-position: 0% 50%; }
  to { background-position: 400% 50%; }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

main {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0px,
    rgba(255,255,255,0.3) 50px,
    rgba(255,255,255,0.7) 120px,
    rgba(255,255,255,1) 250px
  );

  position: relative;
  padding-top: 80px;
}

.about-box {
  position: relative;

  background: rgba(255,255,255,.7);

  border-radius: 24px;
  padding: 25px;

  overflow: visible;
  display: auto;
}

.about-box::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(255,214,235,.35),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(150,188,243,.25),
      transparent 40%
    );

  pointer-events: none;
}

.about-box h2 {
  display: inline-block;

  background: linear-gradient(
    90deg,
    #f3d7ef,
    #ffd8d8,
    #fee8c9,
    #fffdd9,
    #dff1cb,
    #d6e7fc
  );

  background-size: 300% 100%;
  animation: rainbowShift 8s linear infinite;

  padding: 6px 18px;
  border-radius: 999px;

  color: #ff2d75;

  box-shadow:
    0 0 8px rgba(255,255,255,.7),
    0 0 15px rgba(227,139,218,.12);
}

@keyframes rainbowShift {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 300% 50%;
  }
}

.about-box h2:first-child {
  margin-top: 10px;
}

.about-box p {
  max-width: 620px;

  margin: 20px auto 0;
  padding: 0 10px;

  line-height: 1.7;
  letter-spacing: 0.02em;

  text-align: center;
}

main > * {
  position: relative;
  z-index: 1;
}

main a,
main a:visited {
  background: white;
}

main a:hover,
main a:focus {
  background: white;
  text-decoration-style: wavy;
  cursor: url('https://file.garden/aTr8t_0tyznNb_DW/cursor(1).cur'), pointer;
}

main p,
main .image,
main .full-width-image,
main .two-columns {
  margin: 0.75em 0;
}

main ol,
main ul {
  margin: 0.5em 0;
  padding-left: 1.5em;
}

main ol li,
main ul li {
  margin-bottom: 0.2em;
  line-height: 1.3;
}

main ol {
  padding-left: 2em;
}

main blockquote {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 1em 0;
  border-radius: 10px;
}

main pre {
  margin: 1em 0 1.5em;
}

main code {
  text-transform: none;
}

main center {
  margin: 1em 0;
  padding: 0 1em;
}

main hr {
  border: 0;
  border-top: var(--border);
  margin: 1.5em 0;
}

/* HEADINGS: */

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: var(--heading-font);
  margin-bottom: 0;
  line-height: 1.5;
}

main h1:first-child,
main h2:first-child,
main h3:first-child,
main h4:first-child,
main h5:first-child,
main h6:first-child {
  margin-top: 0;
}

main h1 {
  font-size: 1.5em;
}

main h2 {
  font-size: 1.4em;
}

main h3 {
  font-size: 1.3em;
}

main h4 {
  font-size: 1.2em;
}

main h5 {
  font-size: 1.1em;
}

main h6 {
  font-size: 1em;
}

/* COLUMNS: */

.two-columns {
  display: flex;
}

.two-columns > * {
  flex: 1 1 0;
  margin: 0;
}

.two-columns > *:first-child {
  padding-right: 0.75em;
}

.two-columns > *:last-child {
  padding-left: 0.75em;
}

/* -------------------------------------------------------- */
/* CONTENT IMAGES */
/* -------------------------------------------------------- */

.comicpage {
  width: 100%;
  height: auto;
  padding: 0px;
  margin: 0;
  overflow: hidden;
  border-style: solid;
  border-width: 15px;
  border-color: #ffffff;
  border-radius: 5px;
  box-shadow:
    0 0 25px rgba(227,139,218,.55),
    0 0 50px rgba(150,188,243,.45),
    0 0 75px rgba(255,255,255,.7);
  position: relative;
  z-index: 2;
}
  

.image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.full-width-image {
  display: block;
  width: 100%;
  height: auto;
}

.images {
  display: flex;
  width: calc(100% + 5px + 5px);
  margin-left: -5px;
  margin-right: -5px;
}

.images img {
  width: 100%;
  height: auto;
  padding: 5px;
  margin: 0;
  overflow: hidden;
}

/* -------------------------------------------------------- */
/* ACCESSIBILITY */
/* -------------------------------------------------------- */

/* please do not remove this. */

#skip-to-content-link {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color: var(--content-background-color);
  color: var(--text-color);
  transform: translateY(-3rem);
  transition: transform 0.1s ease-in;
  z-index: 99999999999;
}

#skip-to-content-link:focus,
#skip-to-content-link:focus-within {
  transform: translateY(0);
}

/* -------------------------------------------------------- */
/* MOBILE RESPONSIVE */
/* -------------------------------------------------------- */

/* CSS Code for devices < 800px */
@media (max-width: 800px) {

  body {
    font-size: 14px;
    padding: 8px;
  }

 .layout {
  grid-template:
    "header"
    "main"
    "rightSidebar"
    "footer"
    / 1fr;
}

  .left-sidebar {
    display: none;
  }
  
   .pagedoll img {
    width: 80px;
    background: transparent !important;
   }

  /* Logo */

  .header-image {
    text-align: center;
  }

  .header-image img,
  #logo {
    display: block;
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
  }

  /* Sidebar */

  aside {
    padding: 10px;
    border: none;
  }

  .sidebar-title {
    font-size: 1.4em;
  }

  .menu-links li {
    transform: none !important;
  }

  .menu-links a {
    width: 100%;
    text-align: center;
    margin: 8px auto;
  }

  /* Comic navigation */

  .comicnav {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 18px;
    width: 100%;
    padding: 10px;
  }

  /* Main content */

  main {
    padding: 12px;
    padding-top: 20px;
    border-radius: 20px;
  }

  /* Comic image */

  .comicpage {
    width: 100%;
    border-width: 8px;

    box-shadow:
      0 0 15px rgba(227,139,218,.45),
      0 0 30px rgba(150,188,243,.3);
  }

  /* Image galleries */

  .images {
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }

  .images img {
    width: 100%;
    padding: 3px;
  }

  /* Description boxes */

  .descript {
    margin: 8px 0;
    padding: 8px;
  }

  /* Comments */

  .comment-container {
    padding: 15px;
    border-radius: 18px;
  }

  #HCB_comment_box h3 {
    font-size: 1.4rem !important;
  }

  /* Footer */

  footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  #skip-to-content-link {
    font-size: 1rem;
  }
}

#logo {
  width: 250px;
  max-width: 100%;

  display: block;

  animation: float 3s ease-in-out infinite;
  transition: transform 0.2s ease;
}

#logo:hover {
  transform: rotate(-5deg) scale(1.08);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.heart-border {
  display: inline-flex;
  gap: 4px;
}

.heart-border span {
  display: inline-block;
  cursor: url('https://file.garden/aTr8t_0tyznNb_DW/cursor(1).cur'), pointer;
  transition: transform 0.2s ease;
}

/* Bounce the individual heart being hovered */
.heart-border span:hover {
  animation: bounce 0.5s ease;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-12px); }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.heart-border:hover span {
  animation: floaty 1s ease-in-out infinite;
}

.heart-border span:hover {
  animation: bounce 0.5s ease;
}

.heart-border span:nth-child(1) {
  animation-delay: 0s;
}

.heart-border span:nth-child(2) {
  animation-delay: 0.15s;
}

.heart-border span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-3px); }
}

/* Main comment area */
#HCB_comment_box {
  font-family: "BadComic-Regular", sans-serif;
}

/* Comment form */
#HCB_comment_box textarea,
#HCB_comment_box input[type="text"] {
  background: rgba(255,255,255,0.75) !important;
  border: 2px solid #ffd6eb !important;
  border-radius: 15px !important;
  padding: 12px !important;

  box-shadow:
    0 0 10px rgba(255,182,219,.4),
    inset 0 0 5px rgba(255,255,255,.8);

  transition: .3s;
}

/* Focus effect */
#HCB_comment_box textarea:focus,
#HCB_comment_box input[type="text"]:focus {
  outline: none;
  transform: translateY(-2px);

  box-shadow:
    0 0 15px #ffc6e5,
    0 0 25px #ffe3f3;
}

/* Buttons */
#HCB_comment_box input[type="submit"],
#HCB_comment_box .hcb-button {
  background: linear-gradient(
    90deg,
    #ffb6da,
    #ffd1e6,
    #ffe8b8
  ) !important;

  border: none !important;
  border-radius: 999px !important;

  padding: 10px 18px !important;

  font-weight: bold;
  color: #6b4f5e !important;

  transition: .3s;
}

/* Floating button hover */
#HCB_comment_box input[type="submit"]:hover,
#HCB_comment_box .hcb-button:hover {
  transform: translateY(-4px);

  box-shadow:
    0 5px 15px rgba(255,182,219,.5);
}

/* Cute section title */
#HCB_comment_box h3 {
  color: #ff5ba8 !important;
  text-shadow:
    0 0 8px rgba(255,255,255,.8);

  font-size: 2rem !important;
}

/* Individual comments */
.comment {
  background: rgba(255,255,255,.65) !important;

  border: 2px solid #ffe0f1 !important;
  border-radius: 18px !important;

  padding: 15px !important;
  margin: 15px 0 !important;

  box-shadow:
    0 3px 10px rgba(0,0,0,.08);
}

.comment-container {
  position: relative;

  background: rgba(255, 255, 255, 0.35);

  border-radius: 25px;
  padding: 25px;
  margin: 20px auto;
  width: 100%;
  max-width: none;


  backdrop-filter: blur(8px);
}

.comment-container::before {
  content: "";
  position: absolute;
  inset: -2px;

  border-radius: inherit;

  background: linear-gradient(
    90deg,
    #E38BDA,
    #FFA4A4,
    #FDD39B,
    #FFFAB0,
    #B8E38C,
    #96BCF3,
    #E38BDA
  );

  background-size: 400% 100%;

  animation: rainbow 10s linear infinite;

  filter: blur(8px);
  opacity: 0.2;

  z-index: -1;
}

@keyframes rainbow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 400% 50%;
  }
}

.menu-links a,
.menu-links a:hover,
.menu-links a:visited {
  color: #ff2d75 !important;
  -webkit-text-fill-color: #ff2d75 !important;
  cursor: url('https://file.garden/aTr8t_0tyznNb_DW/cursor(1).cur'), pointer;
}

.pagedoll {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: transparent !important;
}

.pagedoll img {
  width: 230px;
  transition: transform 0.2s ease;
  background: transparent !important;
  animation: bounce 1.2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-12px);
  }

  40% {
    transform: translateY(0);
  }

  60% {
    transform: translateY(-6px);
  }

  80% {
    transform: translateY(0);
  }
}

.pagedoll img:hover {
  transform: scale(1.1) rotate(-3deg);
  background: transparent !important;
}
