@import url("https://fonts.googleapis.com/css2?family=Jost&display=swap");
:root {
  --heading-color: #363636;
  --bg-color: #f6f9fc;
  --font-color: #7a7a7a;
  --box-color: #ffffff;
  --hr-color: #e7e4e4;
  --button-color: #ffffff;
  --card-shadow: rgba(0,0,0,0.1);
  --notif-bg: #eef3fc;
  --notif-col: #2160c4;
  --fav-shadow: rgba(0, 0, 0, 0.137);
  --recent-shadow: rgba(0, 0, 0, 0.137);
  --watch-shadow: rgba(0, 0, 0, 0.137);
  --img-opacity: 1;
  --imghoverday-opacity: 0.95;
  --vid-opacity: 1;
  --text-opacity: 1;
  --switch: #f5deb3;
  --last-title: #d39898;
  --last-subs: #f2f2ff;
  --theme-bg: #fff;
}

[data-theme="dark"] {
  --heading-color: #aebbe4;
  --bg-color: #1F2023;
  --font-color: #f2f2ff;
  --box-color: #27292D;
  --hr-color: #7e7474;
  --button-color: #3b3b3b;
  --card-shadow: rgba(255, 255, 255, 0.021);
  --notif-bg: #215fc456;
  --notif-col: #c6c6ff;
  --fav-shadow: rgba(246, 255, 166, 0.034);
  --recent-shadow: rgba(0, 195, 255, 0.034);
  --watch-shadow: rgba(255, 255, 255, 0.041);
  --img-opacity: 0.9;
  --imghoverday-opacity: 0.9;
  --imghover-opacity: 1;
  --vid-opacity: 0.9;
  --text-opacity: 0.9;
  --switch: #ff95b5;
  --last-title: #aebbe4;
  --last-subs: #f2f2ff;
  --theme-bg: #4b4b4b;
}

html, body {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 14px;
  margin: 0;
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  overflow-x: hidden;
}

img {
  opacity: var(--img-opacity);
}

/*  navbar */
.navbar {
  background-color: transparent;
}

.navbar-item {
  padding: .5rem .75rem 0 0;
}

.navbar-end {
  float: right;
}

.navbar.is-fixed-top {
  top: 0;
  left: 94%;
  border-radius: 0 0 0 15px;
}

@media screen and (max-width: 1023px) {
  .navbar.is-fixed-top {
    position: absolute;
  }
  .is-small {
    padding: 1.5rem 1.5rem;
  }
}

/*  scrollbar */
::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: var(--bg-color);
}

::-webkit-scrollbar {
  width: 4px;
  background-color: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #555;
}

/*  texts   */
.title {
  -webkit-transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  color: var(--heading-color);
  opacity: var(--text-opacity);
}

.title.is-4 {
  margin-bottom: 0;
}

.subtitle {
  -webkit-transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  color: var(--font-color);
  opacity: var(--text-opacity);
}

span {
  opacity: var(--text-opacity);
}

/*  hr  */
hr {
  background-color: var(--hr-color);
  width: 20%;
  margin: 10px 0px 10px 0px;
}

/*      card    */
.card {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  background-color: var(--bg-color);
  border-radius: 15px;
}

.card .media:not(:last-child) {
  margin-bottom: 0;
}

#fav:hover {
  -webkit-box-shadow: var(--fav-shadow) 0 27px 55px 0;
          box-shadow: var(--fav-shadow) 0 27px 55px 0;
}

#recent:hover {
  -webkit-box-shadow: var(--recent-shadow) 0 27px 55px 0;
          box-shadow: var(--recent-shadow) 0 27px 55px 0;
}

.marginy {
  margin: 0;
}

iframe {
  border-radius: 15px;
}

/*      Dark Mode Toogle Switch     */
.theme-switch-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  float: right;
}

.theme-switch-wrapper em {
  margin-left: 10px;
  font-size: 1rem;
}

.theme-switch {
  display: inline-block;
  height: 32px;
  position: relative;
  width: 32px;
  background-color: var(--theme-bg);
  border-radius: 32px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 7px 25px 0;
          box-shadow: rgba(0, 0, 0, 0.1) 0 7px 25px 0;
}

.theme-switch input {
  display: none;
}

.slider {
  width: 50%;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  bottom: 4px;
  content: '';
  -webkit-mask: url(../img/sun.svg);
          mask: url(../img/sun.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: #b6b600;
  height: 24px;
  position: absolute;
  -webkit-transition: .4s;
  transition: .4s;
  width: 24px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  left: 4px;
}

input:checked + .slider:before {
  content: '';
  -webkit-mask: url(../img/moon.svg);
          mask: url(../img/moon.svg);
  background-color: #c6c1ff;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

/*  Button  */
.button,
.button:hover::before {
  color: var(--font-color);
  background-color: var(--button-color);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  border: none;
  border-radius: 290486px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 7px 25px 0;
          box-shadow: rgba(0, 0, 0, 0.1) 0 7px 25px 0;
}

.button:hover,
.button:focus,
.button::after {
  color: var(--font-color);
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 27px 55px 0;
          box-shadow: rgba(0, 0, 0, 0.1) 0 27px 55px 0;
  -webkit-transform: translateY(-0.25rem);
          transform: translateY(-0.25rem);
}

#youtube {
  -webkit-box-shadow: rgba(255, 56, 56, 0.25) 0 7px 25px 0;
          box-shadow: rgba(255, 56, 56, 0.25) 0 7px 25px 0;
}

#youtube:hover {
  -webkit-box-shadow: rgba(255, 56, 56, 0.25) 0 27px 55px 0;
          box-shadow: rgba(255, 56, 56, 0.25) 0 27px 55px 0;
}

.tooltip-yellow {
  --balloon-color: rgb(255, 237, 134);
}

.tag.fav {
  background-color: yellow;
}

.youtube {
  width: 720px;
  height: 440px;
  opacity: var(--vid-opacity);
  -webkit-transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.youtube:hover {
  -webkit-transform: translateY(-0.15rem);
          transform: translateY(-0.15rem);
  -webkit-box-shadow: rgba(0, 0, 0, 0.137) 0 27px 55px 0;
          box-shadow: rgba(0, 0, 0, 0.137) 0 27px 55px 0;
}

@media screen and (max-width: 1023px) {
  .youtube {
    width: 100%;
    height: 270px;
  }
  .last {
    padding: 18rem 1.5rem;
  }
}

.watch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.watch-inside {
  height: 262.5px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  width: 25%;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition-duration: 294ms;
          transition-duration: 294ms;
}

.watch-other {
  position: absolute;
  width: 420px;
}

.watch-inside img {
  border-radius: 6px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.watch-hover {
  -webkit-transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  opacity: var(--imghoverday-opacity);
}

.watch-hover:hover {
  opacity: var(--imghover-opacity);
  -webkit-transform: translateY(-0.35rem);
          transform: translateY(-0.35rem);
  -webkit-box-shadow: var(--watch-shadow) 0 27px 55px 0;
          box-shadow: var(--watch-shadow) 0 27px 55px 0;
}

.media-content {
  overflow-y: hidden;
  margin: auto;
}

.last-tag {
  -webkit-transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.last-tag:hover {
  background-color: #944454 !important;
  -webkit-box-shadow: #f146688c 0 7px 25px 0;
          box-shadow: #f146688c 0 7px 25px 0;
}

.last {
  background-image: url("../img/farewell edits.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.last-title {
  color: var(--last-title);
}

.last-title:hover {
  color: #f5deb3;
}

.last-subs {
  color: var(--last-subs);
}

.last-subs:hover {
  color: #f5deb3;
}
/*# sourceMappingURL=editswiley.css.map */