@charset 'UTF-8';
html {
  -webkit-font-smoothing: antialiased;
}
body {
  color: var(--primary-high);
  font-family: 'PingHei', 'PingFang SC', Helvetica Neue, 'Work Sans', 'Hiragino Sans GB', 'Microsoft YaHei', SimSun, sans-serif;
  font-size: 15px;
  width: 100%;
  margin: 0 auto 30px auto;
  background-color: var(--secondary);
  transition: background-color 0.8s, color 0.8s;
}
p {
  line-height: 1.9em;
  font-weight: 400;
  font-size: 15px;
}
a {
  text-decoration: none;
}
a:link,
a:visited {
  opacity: 1;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
  color: var(--secondary-300);
}
a:hover,
a:active {
  color: #4786d6;
}
/* basic styles ends */
/* animation starts */
.animated {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.animated.hinge {
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  -moz-animation-name: fadeOutDown;
  -o-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}
/* animation ends */
.content {
  height: auto;
  float: right;
  width: 70%;
  margin-top: 60px;
}
.page-top {
  width: 70%;
  position: fixed;
  right: 0;
  z-index: 3;
  transition: background-color 0.8s, border 0.8s;
  background-color: var(--secondary);
  height: 60px;
  border-bottom: 1px solid var(--primary-100);
}
.page-top .nav {
  list-style: none;
  padding: 18px 30px;
  float: left;
  font-size: 14px;
}
.page-top .nav li {
  position: relative;
  display: initial;
  padding-right: 20px;
}
.page-top .nav a {
  color: var(--secondary-350);
}
.page-top .nav a:hover {
  color: #4786d6;
}
.page-top .nav a.current {
  color: var(--secondary-350);
  padding-bottom: 20px;
  border-bottom: 2px solid #4786d6;
}
.page-top .information {
  float: right;
  padding-top: 12px;
  padding-right: 20px;
}
.page-top .information .avatar {
  float: right;
}
.page-top .information .avatar img {
  width: 32px;
  height: 32px;
  border-radius: 300px;
}
.page-top .information .nav_right_btn {
  float: left;
  padding-top: 5px;
  margin-right: 0px;
}
.page-top .information .nav_right_btn li {
  display: initial;
  padding-right: 30px;
}
.sidebar {
  width: 30%;
  -webkit-background-size: cover;
  background-size: cover;
  background-color: var(--secondary);
  height: 100%;
  transition: all 0.8s;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 4;
  border-right: 1px solid var(--primary-100);
}
.sidebar .logo-title {
  text-align: center;
  margin-top: -50px;
}
.sidebar .logo-title .description {
  font-size: 14px;
  color: var(--secondary-350);
}
.sidebar .logo-title .logo {
  margin: 0 auto;
}
.sidebar .logo-title .title h3 {
  text-transform: none;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1;
  margin: 0;
}
.sidebar .logo-title .title a {
  text-decoration: none;
  color: var(--secondary-350);
  font-size: 2rem;
  font-weight: bold;
}
.sidebar .social-links {
  list-style: none;
  padding: 0;
  font-size: 14px;
  text-align: center;
}
.sidebar .social-links i {
  margin-right: 3px;
}
.sidebar .social-links li {
  display: inline;
  padding: 0 4px;
  line-height: 0;
}
.sidebar .social-links a {
  color: var(--secondary-350);
}
.sidebar .social-links a:hover {
  color: #4786d6;
}
.sidebar-top {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.sidebar-top .ltr {
  text-align: center;
}
.card {
  margin-left: 5px;
}
.post {
  transition: background-color 0.8s;
  background-color: var(--secondary);
  margin: 30px;
}
.post .post-title h1 {
  text-transform: none;
  font-size: 30px;
  letter-spacing: 5px;
  line-height: 1;
}
.post .post-title h2 {
  text-transform: none;
  letter-spacing: 1px;
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  color: var(--secondary-350);
}
.post .post-title h3 {
  text-transform: none;
  letter-spacing: 1px;
  line-height: 1;
  font-weight: 600;
  color: var(--primary-high);
  font-size: 22px;
  margin: 0;
}
.post .post-title a {
  text-decoration: none;
  letter-spacing: 1px;
  color: var(--secondary-350);
}
.post .post-title a:hover {
  text-decoration: underline;
}
.post .post-content a {
  text-decoration: none;
  letter-spacing: 1px;
  color: #4786d6;
}
.post .post-content a:hover {
  color: #2f69b3;
}
.post .post-content h1 {
  color: var(--secondary-350);
  font-size: 22px;
  font-weight: 600;
}
.post .post-content h2 {
  color: var(--secondary-350);
  font-size: 20px;
}
.post .post-content h3 {
  color: var(--secondary-350);
  font-size: 18px;
  font-weight: 600;
}
.post .post-content h4 {
  color: var(--secondary-350);
  font-size: 17px;
}
.post .post-content h5 {
  color: var(--secondary-350);
  font-size: 16px;
  font-weight: 600;
}
.post .post-content h6 {
  color: var(--secondary-350);
  font-size: 15px;
}
.post .post-footer {
  padding: 0 0 30px 0;
  border-bottom: 1px solid var(--primary-100);
  transition: border 0.8s;
}
.post .post-footer .meta {
  max-width: 100%;
  height: 25px;
  color: var(--primary-low-mid);
}
.post .post-footer .meta .info {
  float: left;
  font-size: 12px;
}
.post .post-footer .meta .info .date {
  margin-right: 10px;
}
.post .post-footer .meta a {
  text-decoration: none;
  color: var(--primary-low-mid);
  padding-right: 10px;
}
.post .post-footer .meta a:hover {
  color: #4786d6;
}
.post .post-footer .meta i {
  margin-right: 6px;
}
.post .post-footer .tags {
  padding-bottom: 15px;
  font-size: 13px;
}
.post .post-footer .tags ul {
  list-style-type: none;
  display: inline;
  margin: 0;
  padding: 0;
}
.post .post-footer .tags ul li {
  list-style-type: none;
  margin: 0;
  padding-right: 5px;
  display: inline;
}
.post .post-footer .tags a {
  text-decoration: none;
  color: rgba(var(--primary-rgb), 0.44);
  font-weight: 400;
}
.post .post-footer .tags a:hover {
  text-decoration: none;
}
.pagination {
  margin: 30px;
  padding: 0px 0 56px 0;
  border-bottom: 1px solid var(--primary-100);
  transition: border 0.8s;
}
.pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 13px;
}
.pagination ul li {
  margin: 0 2px 0 2px;
  display: inline;
  line-height: 1;
}
.pagination ul li a {
  text-decoration: none;
}
.pagination .pre {
  float: left;
}
.pagination .next {
  float: right;
}
.like-reblog-buttons {
  float: right;
}
.like-button {
  float: right;
  padding: 0 0 0 10px;
}
.reblog-button {
  float: right;
  padding: 0;
}
#install-btn {
  position: fixed;
  bottom: 0px;
  right: 6px;
}
#disqus_thread {
  margin: 30px;
  border-bottom: 1px solid var(--primary-100);
}
.footer {
  clear: both;
  text-align: center;
  font-size: 10px;
  margin: 0 auto;
  bottom: 0;
  position: absolute;
  width: 100%;
  padding-bottom: 5px;
  background-color: var(--secondary);
  transition: background-color 0.8s;
}
.footer a {
  color: var(--secondary-650);
}
.footer a:hover {
  color: #4786d6;
}
.archive {
  width: 100%;
}
.list-with-title {
  font-size: 15px;
  margin: 30px;
  padding: 0;
  line-height: 25px;
}
.list-with-title li {
  list-style-type: none;
  padding: 0;
}
.list-with-title .listing-title {
  font-size: 24px;
  color: var(--secondary-400);
  font-weight: 600;
  line-height: 2.2em;
}
.list-with-title .listing {
  padding: 0;
}
.list-with-title .listing .listing-post {
  padding-bottom: 5px;
  display: flex;
}
.list-with-title .listing .listing-post .post-time {
  flex: 0 0 50px;
  float: right;
  color: var(--secondary-800);
  transition: color 0.8s;
}
.list-with-title .listing .listing-post a {
  flex: 1 1 100%;
  color: var(--secondary-550);
}
.list-with-title .listing .listing-post a:hover {
  color: #4786d6;
}
/* share */
.share {
  margin: 0px 30px;
  display: inline-flex;
}
.share > .share-btn {
  width: 32px;
  height: 32px;
  border-radius: 300px;
  margin-right: 5px;
  background-color: var(--secondary-250);
  transition: all 0.3s;
}
.share > .share-btn a {
  color: var(--secondary);
  padding: 9px;
}
.share > .share-btn:hover {
  background-color: var(--primary);
}
.share .linkonly a {
  padding: 9px 7px;
}
.share .weibo {
  background-color: #ed6243;
}
.share .weibo:hover {
  background-color: #9c2409;
}
.share .twitter {
  background-color: #59c0fd;
}
.share .twitter:hover {
  background-color: #2b81b3;
}
.share .mastodon {
  background-color: #6d2fdf;
}
.share .mastodon:hover {
  background-color: #4003b1;
}
/* about */
.about {
  margin: 30px;
}
.about h3 {
  font-size: 22px;
}
/* links */
.links {
  margin: 30px;
}
.links h3 {
  font-size: 22px;
}
.links a {
  cursor: pointer;
}
/* Comment style */
.comment-count {
  color: var(--secondary-400);
}
.tab-community {
  color: var(--secondary-400);
}
.read_more {
  font-size: 14px;
}
.back-button {
  padding-top: 30px;
  max-width: 100px;
  padding-left: 40px;
  float: left;
}
/* 默认评论样式 */
#fb_comments_container {
  margin: 30px;
}
/* button style */
a.btn {
  color: var(--secondary-550);
  font-weight: 400;
}
.btn {
  display: inline-block;
  position: relative;
  outline: 0;
  color: var(--primary-450);
  background: transparent;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--primary-150);
  white-space: nowrap;
  font-weight: 400;
  font-style: normal;
  border-radius: 999em;
  transition: color 0.8s, border 0.8s;
}
.btn:hover {
  display: inline-block;
  position: relative;
  outline: 0px;
  color: var(--primary-650);
  background: transparent;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--secondary-250);
  white-space: nowrap;
  font-weight: 400;
  font-style: normal;
  border-radius: 999em;
}
[role='back'] {
  padding: 0.5em 1.25em;
  line-height: 1.666em;
}
[role='home'] {
  padding: 0.5em 1.25em;
  line-height: 1.666em;
}
[role='navigation'] {
  padding: 0.5em 1.25em;
  line-height: 1.666em;
}
[role='tags'] {
  padding: 6px 12px;
}
/* Menu样式 */
.menu {
  float: right;
  padding-top: 30px;
}
.menu .btn-down {
  margin: 0px;
}
.menu .btn-down li {
  list-style: none;
  width: 100px;
}
.menu .btn-down li a {
  display: inline-block;
  position: relative;
  padding: 0.5em 1.25em;
  outline: 0;
  color: rgba(var(--primary-rgb), 0.44);
  background: rgba(var(--primary-rgb), 0);
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  white-space: nowrap;
  font-weight: 400;
  font-style: normal;
  border-radius: 999em;
  margin-top: 5px;
}
.menu .btn-down li a:hover {
  position: relative;
  padding: 0.5em 1.25em;
  outline: 0;
  color: var(--secondary);
  background: #3cbd10;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  white-space: nowrap;
  font-weight: 400;
  font-style: normal;
  border-radius: 999em;
  margin-top: 5px;
}
.menu .btn-down div {
  position: absolute;
  visibility: hidden;
  width: 100px;
  float: right;
}
.page_404 {
  text-align: center;
  padding-top: 50px;
}
/* Tag style */
.tag_btn {
  align-items: center;
  border-radius: 100px;
  color: var(--secondary-250);
  display: inline-flex;
  justify-content: center;
  padding-left: 0.75em;
  padding-right: 0em;
  white-space: nowrap;
  margin: 10px;
}
.tag_btn i {
  margin: 8px;
}
.tag_btn .tag_count {
  align-items: center;
  border-radius: 100px;
  color: var(--secondary-250);
  display: inline-flex;
  font-size: 0.5rem;
  width: 15px;
  height: 15px;
  justify-content: center;
  line-height: 1.5;
  padding: 5px;
  margin: 5px;
  white-space: nowrap;
  background-color: var(--secondary-900);
  transition: background-color 0.8s;
}
/* TOC style */
.tocmenu {
  align-items: center;
  border-top: 1px solid var(--primary-100);
  text-align: center;
  font-size: 13px;
  margin: 0 auto;
  width: 100%;
  list-style: none;
  position: relative;
}
.toclist-container {
  overflow-y: auto;
  max-height: calc(100vh - 600px);
}
.toclist-container::-webkit-scrollbar-thumb {
  color: #4786d6;
  background-color: #4786d6;
}
.toclist-container::-webkit-scrollbar {
  width: 2px;
  color: #4786d6;
  height: auto;
}
.toclist {
/* width: max-content; */
  border-top: none;
  padding: 0px 30px;
  display: inline-block;
  text-align: left;
}
.in-page.toc-container {
  display: none;
}
@media screen and (max-width: 960px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    border-right: none;
    z-index: 1;
    top: auto;
  }
  .sidebar .logo-title {
    padding-top: 120px;
    margin-top: 0;
  }
  .sidebar .logo-title .title img {
    width: 100px;
  }
  .sidebar .logo-title .title h3 {
    font-size: 20px;
  }
  .page-top {
    width: 100%;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .page-top .information {
    transition: background-color 0.8s;
    background-color: var(--secondary);
    position: absolute;
    right: 0;
  }
  .page-top .information .nav_right_btn {
    display: none;
  }
  .page-top .information:hover .nav_right_btn {
    display: block;
  }
  .page-top::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 2px;
  }
  .post-title h3 {
    line-height: 1.6;
  }
  .content {
    margin-top: 0px;
    top: auto;
    width: 100%;
    z-index: 2;
/* position: absolute; */
  }
  .footer {
    display: none;
  }
  .tocmenu {
    border-bottom: 1px solid var(--primary-100);
    position: relative;
    text-align: left;
  }
  .toc-mobile .toc-button {
    position: fixed;
    z-index: 900;
    background: #4786d6;
    color: var(--secondary);
    padding: 8px 15px;
    bottom: 0;
    right: 0;
  }
  .toc-mobile:hover .in-page.toc-container {
    right: 0;
  }
  .toclist-container {
    height: auto;
    max-height: calc(100vh - 110px);
  }
  .in-sidebar.toc-container {
    display: none;
  }
  .in-page.toc-container {
    display: block;
    border-left: 1px solid v3r(--primary-100);
    position: fixed;
    bottom: 0px;
    right: -300px;
    width: 300px;
    transition: all 0.4s;
    background-color: var(--secondary);
    z-index: 999;
  }
  .in-page.toc-container .toc-toggle summary {
    background: #4786d6;
    transition: color 0.8s;
    color: var(--secondary);
    padding: 5px 10px;
  }
  .in-page.toc-container .toc-toggle[open] summary {
    color: #4786d6;
    transition: background-color 0.8s;
    background: var(--secondary);
    padding: 4px;
    text-align: center;
  }
}
.friend-link-container {
  display: inline-block;
}
.friend-link-box {
  width: 350px;
  margin: 10px;
  padding: 10px;
  border: 1px solid var(--primary-100);
  border-radius: 10px;
  display: grid;
  grid-template: auto/84px auto;
}
.friend-link-meta {
  padding: 10px;
}
.friend-link-title {
  font-weight: 700;
}
.friend-link-avatar {
  width: 64px;
  margin-right: 10px;
}
.friend-link-avatar img {
  width: 64px;
}
.float-button {
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  border: 1px solid var(--primary-300);
  right: 10px;
  border-radius: 100%;
  transition: all 0.3s;
}
.float-button:hover {
  background-color: var(--secondary-950);
}
.float-button:active {
  background-color: var(--secondary-900);
}
.float-button.hide {
  transform: translateX(100px);
}
.float-button i {
  font-size: 200%;
  color: var(--primary-500);
}
.float-button#scroll-to-top {
  bottom: 50px;
}
.modal-cover {
  display: none;
  perspective: 50em;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: rgba(0,0,0,0.7);
  transform-origin: 0%;
  perspective-origin: top center;
}
.modal-cover.show {
  display: block;
}
.modal-cover,
.modal-cover .modal-container {
  position: fixed;
  overflow: hidden;
}
.modal-cover .modal-container {
  left: 50%;
  z-index: 101;
}
.indicator {
  top: 50vh;
  transform: translate(-35px, -35px);
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.indicator i {
  font-size: 300%;
  color: var(--primary-800);
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}
@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}
@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
}
@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
}
@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
}
@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
}
@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
