/*******************************************************************************
 * Variables used throughout the theme.
 * To adjust anything, simply edit the variables below and rebuild the theme.
 ******************************************************************************/
/*******************************************************************************
 * Themes
 ******************************************************************************/
:root {
  --global-bg-color: #fafaf821;
  --global-code-bg-color: rgba(181, 9, 172, 0.05);
  --global-text-color: #000000;
  --global-text-color-light: #828282;
  --global-text-color: black;
  --global-hover-color: #402F7C;
  --global-footer-bg-color: rgb(66.25, 66.25, 66.25);
  --global-footer-text-color: #e8e8e8;
  --global-footer-link-color: #ffffff;
  --global-distill-app-color: #828282;
}
:root .fa-sun {
  display: none;
}
:root .fa-moon {
  padding-left: 10px;
  padding-top: 12px;
  display: block;
}

html[data-theme=dark] {
  --global-bg-color: rgb(66.25, 66.25, 66.25);
  --global-code-bg-color: #2c3237;
  --global-text-color: #e8e8e8;
  --global-text-color-light: #e8e8e8;
  --global-theme-color: #F29105;
  --global-hover-color: #F29105;
  --global-footer-bg-color: #e8e8e8;
  --global-footer-text-color: rgb(66.25, 66.25, 66.25);
  --global-footer-link-color: #000000;
  --global-distill-app-color: #e8e8e8;
}
html[data-theme=dark] .fa-sun {
  padding-left: 10px;
  padding-top: 12px;
  display: block;
}
html[data-theme=dark] .fa-moon {
  display: none;
}

/******************************************************************************
 * Content
 ******************************************************************************/
body {
  padding-bottom: 70px;
  color: var(--global-text-color);
  background-color: var(--global-bg-color);
}

body.fixed-top-nav {
  padding-top: 56px;
}

body.sticky-bottom-footer {
  padding-bottom: 0;
}

.container {
  max-width: 860px;
  width: 90%;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (max-width: 768px) {
  .profile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .profile img.profile-image {
    max-width: 250px;
    width: 100%;
    margin-left: 0 !important;
    margin-bottom: 15px;
    align-self: flex-start;
  }
  .profile .email-container {
    margin-left: 0 !important;
    text-align: left;
    margin-top: 15px;
  }
  .profile-text {
    width: 100%;
    padding-left: 0 !important;
    text-align: left;
  }
}
.profile img {
  width: 100%;
}

/******************************************************************************
 * Publications
 ******************************************************************************/
/*****************************************************************************
* Projects
*****************************************************************************/
@media screen and (max-width: 768px) {
  .project-content {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    width: 100%;
    max-width: 100%;
  }
  .project-content p, .project-content div {
    max-width: 100%;
    overflow-x: auto;
    word-break: break-word;
  }
  .project-content .caption {
    font-size: 0.8rem;
    padding: 0 10px;
  }
}
/*******************************************************************************
 * Styles for the base elements of the theme.
 ******************************************************************************/
p, h1, h2, h3, h4, h5, h6, em, div, span, strong {
  color: var(--global-text-color);
}

body {
  font-size: 16px;
}

body.no-margin {
  margin-left: 0;
}

h5 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}

h5::before {
  content: "";
  position: absolute;
  bottom: -0.2em;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: black;
  z-index: -1;
}

.widget-title-cover {
  line-height: 1;
  margin-bottom: 10px;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

h6 {
  margin-left: 10px;
  font-size: x-small;
  text-transform: uppercase;
  font-weight: 100;
}

/* To change the font of p, add the following code: */
pp {
  margin-left: 10px;
  font-family: "Courier New", Courier, monospace;
}

/* To create a list of items in the sidebar, each with a title, content, and date, add the following code: */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  margin-bottom: 20px;
}

.sidebar h6 {
  margin-top: 0;
}

.sidebar p {
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: var(--global-text-color);
}

.sidebar span {
  font-size: 0.75rem;
  margin-left: 20px;
  color: var(--global-text-color);
}

.sidebar a {
  color: var(--global-theme-color);
  font-weight: 400;
}
.sidebar a:hover {
  color: var(--global-theme-color);
  text-decoration: underline;
  font-weight: 400;
}
.sidebar a:hover:after {
  width: 100%;
}

.sidebar .item-title {
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 5px;
  margin-left: 20px;
  color: var(--global-text-color);
}

.sidebar .item-date {
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: var(--global-text-color);
}

.sidebar .item-content {
  font-size: 0.875rem;
  margin-left: 20px;
  margin-bottom: 10px;
  color: var(--global-text-color);
}

.fadeInUpFast {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.animated-fast {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

spanfade {
  color: var(--global-text-color);
}

@keyframes fadeInUpFast {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.p, h1, h2, h3, h4, h5, sidebar li {
  animation: fadeInUpFast 0.6s ease-out;
}

a, table.table a {
  color: var(--global-theme-color);
  font-weight: 400;
}
a:hover, table.table a:hover {
  color: var(--global-hover-color);
  text-decoration: underline;
  font-weight: 400;
}
a:hover:after, table.table a:hover:after {
  width: 100%;
}

.equation {
  margin-bottom: 1rem;
  text-align: center;
}

.caption {
  font-size: 0.875rem;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.citation, .citation-number {
  color: var(--global-theme-color);
}

.profile {
  margin-left: 1rem;
  margin-right: 0rem;
}
.profile .address {
  margin-bottom: 5px;
  margin-top: 5px;
  margin-left: -60px;
  font-family: monospace;
  font-size: 0.8rem;
}
.profile .address p {
  display: inline-block;
  margin: 0;
}

@media (min-width: 576px) {
  .profile {
    width: 30%;
  }
  .profile .address p {
    display: block;
  }
}
.post-description {
  margin-bottom: 2rem;
  font-size: 0.875rem;
}
.post-description a {
  color: inherit;
}
.post-description a:hover {
  color: var(--global-theme-color);
  text-decoration: underline;
}

.navbar {
  box-shadow: none;
  border-bottom: 1px solid #e8e8e8;
  background-color: var(--global-bg-color);
  opacity: 0.95;
  margin-left: 9.5%;
}

.navbar.navbar-light a:hover {
  text-decoration: underline;
}
.navbar.navbar-light .navbar-brand {
  color: var(--global-text-color);
}
.navbar.navbar-light .navbar-nav .nav-item .nav-link {
  font-weight: 200;
  color: var(--global-text-color);
}
.navbar.navbar-light .navbar-nav .nav-item .nav-link:hover {
  color: var(--global-hover-color);
  text-decoration: underline;
  font-weight: 400;
}
.navbar.navbar-light .navbar-nav .nav-item.active > .nav-link {
  background-color: inherit;
  font-weight: bolder;
  color: var(--global-theme-color);
}
.navbar.navbar-light .navbar-nav .nav-item.active > .nav-link:hover {
  color: var(--global-hover-color);
}
.navbar.navbar-light .navbar-brand.social {
  padding-bottom: 0;
  padding-top: 0;
  font-size: 1.7rem;
}
.navbar.navbar-light .navbar-brand.social a i::before {
  color: var(--global-text-color);
  -webkit-transition: all 0.2s ease-in-out;
}
.navbar.navbar-light .navbar-brand.social a:hover i::before {
  color: var(--global-hover-color);
}

.navbar-toggler .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--global-text-color);
  border-radius: 1px;
  margin-bottom: 4px;
  transition: all 0.2s;
}
.navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.navbar-toggler .middle-bar {
  opacity: 0;
}
.navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}
.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}
.navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}

.news table td {
  width: 80%;
  font-size: 1rem;
  padding-right: 8rem;
  color: var(--global-text-color);
}

.news table th {
  color: var(--global-text-color);
}

.social {
  text-align: right;
  padding-right: 5rem;
}
.social .contact-icons {
  margin-top: -1rem;
  margin-left: -120px;
  font-size: 1.5rem;
  color: black;
}
.social .contact-icons a i::before {
  -webkit-transition: all 0.2s ease-in-out;
}
.social .contact-icons a:hover i::before {
  color: var(--global-hover-color);
}
.social .contact-note {
  font-size: 0.8rem;
}

footer.fixed-bottom {
  background-color: var(--global-footer-bg-color);
  font-size: 0.75rem;
}
footer.fixed-bottom .container {
  color: var(--global-footer-text-color);
  padding-top: 9px;
  padding-bottom: 8px;
}
footer.fixed-bottom a {
  color: var(--global-footer-link-color);
}
footer.fixed-bottom a:hover {
  color: var(--global-theme-color);
  text-decoration: none;
}

footer.sticky-bottom {
  border-top: 1px solid #e8e8e8;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 0.9rem;
}

.header-bar {
  border-bottom: 1px solid #e8e8e8;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 5rem;
}
.header-bar h1 {
  color: var(--global-theme-color);
  font-size: 5rem;
}

.post-list {
  margin: 0;
  margin-bottom: 40px;
  padding: 0;
}
.post-list li {
  border-bottom: 1px solid #e8e8e8;
  list-style: none;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.post-list li .post-meta {
  color: var(--global-text-color-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}
.post-list li a {
  color: var(--global-text-color);
  text-decoration: none;
}
.post-list li a:hover {
  color: var(--global-theme-color);
}

.pagination .page-item .page-link {
  color: var(--global-text-color);
}
.pagination .page-item .page-link:hover {
  color: #000000;
}
.pagination .page-item.active .page-link {
  color: #ffffff;
  background-color: var(--global-theme-color);
}
.pagination .page-item.active .page-link:hover {
  background-color: var(--global-theme-color);
}

.distill a:hover {
  border-bottom-color: var(--global-theme-color);
  text-decoration: none;
}

.profile-text {
  display: flex;
  justify-content: center;
}

.profile-text .clearfix {
  margin-left: -105px;
  width: 100%;
  max-width: 520px;
}

.projects .card-item {
  width: auto;
  margin-bottom: 10px;
}
.projects .card-item a {
  text-decoration: none;
}
.projects .card-item .row {
  display: flex;
  align-items: center;
}
.projects .card-item .card img {
  width: 100%;
}
.projects .grid-item {
  width: 250px;
  margin-bottom: 10px;
}
.projects .grid-item a {
  color: black;
  text-decoration: none;
}
.projects .grid-item a:hover {
  color: var(--global-theme-color);
}
.projects .grid-item .card img {
  width: 100%;
}
.projects .grid-item .card .card-title {
  color: #000000;
}
.projects h2.category {
  color: #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding-top: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: right;
}

.publications {
  margin-top: 2rem;
}
.publications h1 {
  color: var(--global-theme-color);
  font-size: 2rem;
  text-align: center;
  margin-top: 1em;
  margin-bottom: 1em;
}
.publications h2 {
  margin-bottom: 1rem;
}
.publications h2 span {
  font-size: 1.5rem;
}
.publications h2.year {
  color: #828282;
  border-top: 1px solid #828282;
  padding-top: 1rem;
  margin-top: 2rem;
  margin-bottom: 0rem;
  padding-right: -30rem;
  text-align: right;
}
.publications ol.bibliography {
  list-style: none;
  padding: 0;
  margin-top: 0;
  width: 100%;
}
.publications ol.bibliography li {
  margin-bottom: 1rem;
}
.publications ol.bibliography li .preview {
  width: 100%;
  min-width: 150px;
  max-width: 200px;
  margin-right: 2.4rem;
}
.publications ol.bibliography li .abbr {
  width: 0.5rem;
  height: 2rem;
  margin-bottom: 0.5rem;
  padding-right: 11.6rem;
}
.publications ol.bibliography li .abbr abbr {
  display: inline-block;
  background-color: rgba(79, 141, 166, 0.6470588235);
  padding-left: 1rem;
  padding-right: 1rem;
}
.publications ol.bibliography li .abbr abbr a {
  color: white;
}
.publications ol.bibliography li .abbr abbr a:hover {
  text-decoration: none;
}
.publications ol.bibliography li .abbr .award {
  font-weight: 900;
  color: var(--global-theme-color) !important;
  border: 1px solid var(--global-theme-color);
}
.publications ol.bibliography li .title {
  color: var(--global-text-color);
  font-weight: 400;
}
.publications ol.bibliography li .author {
  font-size: 16px;
  font-weight: 10;
  width: 34rem;
}
.publications ol.bibliography li .author a {
  border-bottom: 1px dashed var(--global-theme-color);
}
.publications ol.bibliography li .author a:hover {
  border-bottom-style: solid;
  text-decoration: none;
}
.publications ol.bibliography li .author > em {
  border-bottom: 1px solid;
  font-style: normal;
  font-weight: bolder;
}
.publications ol.bibliography li .links a.btn {
  color: rgb(104, 92, 92);
  border: 1px solid var(--global-text-color);
  border-color: rgb(104, 92, 92);
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-top: 0.05rem;
  padding-bottom: 0.05rem;
  margin-left: -0.07rem;
}
.publications ol.bibliography li .links a.btn:hover {
  color: white;
  font-weight: bold;
  background-color: #423779;
  border: 1px solid #423779;
}
.publications ol.bibliography li .btn-abs {
  background-color: rgb(147, 165, 166);
  color: white;
  font-weight: bolder;
  border: 0px solid var(--global-text-color);
  margin-right: 0.2rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}
.publications ol.bibliography li .btn-abs:hover {
  color: white;
  border-color: var(--global-theme-color);
}
.publications ol.bibliography li .btn-bib {
  background-color: rgb(147, 165, 166);
  color: white;
  font-weight: bolder;
  border: 0px solid var(--global-text-color);
  margin-right: 0.2rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}
.publications ol.bibliography li .btn-bib:hover {
  color: white;
  border-color: var(--global-theme-color);
}
.publications ol.bibliography li .btn-html {
  background-color: rgb(60, 142, 177);
  color: white;
  font-weight: bolder;
  border: 0px solid var(--global-text-color);
  margin-right: 0.2rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}
.publications ol.bibliography li .btn-html:hover {
  color: white;
  border-color: var(--global-theme-color);
}
.publications ol.bibliography li .btn-huggingface {
  background-color: rgb(60, 142, 177);
  color: white;
  font-weight: bolder;
  border: 0px solid var(--global-text-color);
  margin-right: 0.2rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}
.publications ol.bibliography li .btn-huggingface:hover {
  color: white;
  border-color: var(--global-theme-color);
}
.publications ol.bibliography li .btn-pdf {
  background-color: rgb(233, 78, 21);
  color: white;
  font-weight: bolder;
  border: 0px solid var(--global-text-color);
  margin-right: 0.2rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}
.publications ol.bibliography li .btn-pdf:hover {
  color: white;
  border-color: var(--global-theme-color);
}
.publications ol.bibliography li .btn-bib {
  background-color: rgb(189, 215, 233);
  color: white;
  font-weight: bolder;
  border: 0px solid var(--global-text-color);
  margin-right: 0.2rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}
.publications ol.bibliography li .btn-bib:hover {
  color: white;
  border-color: var(--global-theme-color);
}
.publications ol.bibliography li .btn-code {
  background-color: rgb(55, 182, 161);
  color: white;
  font-weight: bolder;
  border: 0px solid var(--global-text-color);
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}
.publications ol.bibliography li .btn-code:hover {
  color: white;
  border-color: var(--global-theme-color);
}
.publications ol.bibliography li .btn-data {
  background-color: rgb(236, 105, 18);
  color: white;
  font-weight: bolder;
  border: 0px solid var(--global-text-color);
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}
.publications ol.bibliography li .btn-data:hover {
  color: white;
  border-color: var(--global-theme-color);
}
.publications ol.bibliography li .hidden {
  font-size: 0.875rem;
  max-height: 0px;
  overflow: hidden;
  text-align: justify;
  -webkit-transition: 0.15s ease;
  -moz-transition: 0.15s ease;
  -ms-transition: 0.15s ease;
  -o-transition: 0.15s ease;
  transition: all 0.15s ease;
}
.publications ol.bibliography li .hidden p {
  line-height: 1.4em;
  margin: 10px;
}
.publications ol.bibliography li .hidden pre {
  font-size: 1em;
  line-height: 1.4em;
  padding: 10px;
}
.publications ol.bibliography li .hidden.open {
  max-height: 100em;
  -webkit-transition: 0.15s ease;
  -moz-transition: 0.15s ease;
  -ms-transition: 0.15s ease;
  -o-transition: 0.15s ease;
  transition: all 0.15s ease;
}
.publications ol.bibliography li div.abstract.hidden {
  border: dashed 1px var(--global-bg-color);
}
.publications ol.bibliography li div.abstract.hidden.open {
  border-color: var(--global-text-color);
}
.publications ol.bibliography li div.bibtex.hidden {
  border: dashed 1px var(--global-bg-color);
}
.publications ol.bibliography li div.bibtex.hidden.open {
  border-color: var(--global-text-color);
}

figure.highlight {
  margin: 0 0 1rem;
}

pre {
  color: var(--global-theme-color);
  background-color: var(--global-code-bg-color);
  border-radius: 6px;
  padding: 6px 12px;
}
pre pre, pre code {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}

code {
  color: var(--global-theme-color);
  background-color: var(--global-code-bg-color);
  border-radius: 3px;
  padding: 3px 3px;
}

html.transition,
html.transition *,
html.transition *:before,
html.transition *:after {
  transition: all 750ms !important;
  transition-delay: 0 !important;
}

.repocards {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  flex-flow: row wrap;
  -webkit-flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.repocard-single {
  flex: 1 1 auto;
  padding: 5px;
}

.repocard-img {
  max-width: 375px;
}

.card {
  height: 100%;
}
.card .card-body {
  padding: 1rem;
}
.card .card-body .card-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.card .card-body .card-text {
  font-size: 0.9rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media screen and (max-width: 768px) {
  .card {
    margin-bottom: 1rem;
  }
  .card .card-body {
    padding: 0.8rem;
  }
  .card .card-body .card-title {
    font-size: 1rem;
  }
  .card .card-body .card-text {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  .grid-item {
    width: 100% !important;
    padding: 0 10px;
  }
  .github-icon {
    font-size: 0.9rem;
  }
  .github-icon .stars {
    font-size: 0.8rem;
  }
}
/*******************************************************************************
 * Style overrides for distill blog posts.
 ******************************************************************************/
d-byline {
  border-top-color: #e8e8e8 !important;
}

d-byline h3 {
  color: var(--global-text-color) !important;
}

d-byline a, d-article d-byline a {
  color: var(--global-text-color) !important;
}
d-byline a:hover, d-article d-byline a:hover {
  color: var(--global-hover-color) !important;
}

d-article {
  border-top-color: #e8e8e8 !important;
}
d-article a, d-article p, d-article h1, d-article h2, d-article h3, d-article h4, d-article h5, d-article h6 {
  color: var(--global-text-color) !important;
}
d-article a, d-article h1, d-article h2, d-article hr {
  border-bottom-color: #e8e8e8 !important;
}
d-article a:hover {
  border-bottom-color: var(--global-hover-color) !important;
}

d-appendix {
  border-top-color: #e8e8e8 !important;
  color: var(--global-distill-app-color) !important;
}
d-appendix h3, d-appendix li, d-appendix span {
  color: var(--global-distill-app-color) !important;
}
d-appendix a, d-appendix a.footnote-backlink {
  color: var(--global-distill-app-color) !important;
}
d-appendix a:hover, d-appendix a.footnote-backlink:hover {
  color: var(--global-hover-color) !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
img, .card, .publications li, p, h1, h2, h3, h4, h5, a, button {
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

body {
  opacity: 1;
  animation: fadeUp 0.5s ease;
}

a:hover {
  opacity: 0.8;
}

.btn:hover,
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.publications li:hover {
  background-color: rgba(0, 0, 0, 0.02);
  padding-left: 5px;
}

.navbar {
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.publications,
.publications li {
  opacity: 1 !important;
  visibility: visible !important;
}

.profile img {
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.profile img:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.social .contact-icons a:hover {
  transform: translateY(-3px);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.custom-cursor,
.cursor-follower,
.gradient-bg,
.background-particle {
  display: none !important;
}

/*# sourceMappingURL=main.css.map */