@charset "utf-8";

/* Placeholder styling for dark theme */
body.dark ::-webkit-input-placeholder {
    color: #fff;
}
body.dark :-moz-placeholder {
    color: #fff;
    opacity: 1;
}
body.dark ::-moz-placeholder {
    color: #fff;
    opacity: 1;
}
body.dark :-ms-input-placeholder {
    color: #fff;
}
body.dark ::-ms-input-placeholder {
    color: #fff;
}
body.dark ::placeholder {
    color: #fff;
}

/* Preloader styling for dark theme */
body.dark #preloader:before,
body.dark #preloader:after {
    background-color: #fff;
}
body.dark .loader_line:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #000;
    -webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
    -o-animation: lineheight 1000ms ease-in-out 0s forwards;
    animation: lineheight 1000ms ease-in-out 0s forwards;
}
body.dark .loader_line:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #ccc;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-animation: lineround 1200ms linear 0s infinite;
    -o-animation: lineround 1200ms linear 0s infinite;
    animation: lineround 1200ms linear 0s infinite;
    animation-delay: 2000ms;
}

/* Body styling for dark theme */
body.dark {
    background-color: #34353a;
    color: #bbb;
}

/* Heading styling for dark theme */
body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark h5,
body.dark h6 {
    color: #fff;
}

/* Leftpart styling for dark theme */
body.dark .tokyo_tm_all_wrap .leftpart {
    background-color: #494b50;
}

/* Leftpart menu item styling for dark theme */
body.dark .tokyo_tm_all_wrap .leftpart .menu ul li a {
    color: #bbb;
}
body.dark .tokyo_tm_all_wrap .leftpart .menu ul li a:hover {
    color: #fff;
}
body.dark .tokyo_tm_all_wrap .leftpart .menu ul li.active a {
    color: #fff;
}

/* Copyright text styling for dark theme */
body.dark .tokyo_tm_all_wrap .leftpart .copyright p {
    color: #bbb;
}
body.dark .tokyo_tm_all_wrap .leftpart .copyright a {
    color: #bbb;
}
body.dark .tokyo_tm_all_wrap .leftpart .copyright a:hover {
    color: #fff;
}

/* Rightpart styling for dark theme */
body.dark .tokyo_tm_all_wrap .rightpart {
    background-color: #34353a;
}
body.dark .tokyo_tm_all_wrap .rightpart_in {
    border-left: none;
}

/* Social icon styling for dark theme */
body.dark .tokyo_tm_home .social ul li a {
    color: #fff;
}

/* Cursor styling for dark theme */
body.dark .cursor-inner {
    margin-left: -3px;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    z-index: 50;
    background-color: #fff;
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
body.dark .cursor-inner.cursor-hover {
    margin-left: -40px;
    margin-top: -40px;
    width: 80px;
    height: 80px;
    background-color: #fff;
    opacity: 0.3;
}
body.dark .cursor-outer {
    margin-left: -15px;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 50;
    opacity: 0.5;
    -webkit-transition: all 0.08s ease-out;
    transition: all 0.08s ease-out;
}
body.dark .cursor-outer.cursor-hover {
    opacity: 0;
}

/* Topbar styling for dark theme */
body.dark .tokyo_tm_topbar {
    background-color: #494b50;
}

/* Hamburger menu styling for dark theme */
body.dark .hamburger-inner,
body.dark .hamburger-inner:after,
body.dark .hamburger-inner:before {
    background-color: #fff;
}
body.dark .hamburger.is-active .hamburger-inner,
body.dark .hamburger.is-active .hamburger-inner:after,
body.dark .hamburger.is-active .hamburger-inner:before {
    background-color: #fff;
}

/* Mobile menu styling for dark theme */
body.dark .tokyo_tm_mobile_menu {
    background-color: #494b50;
}
body.dark .tokyo_tm_mobile_menu .menu_list ul li a {
    color: #fff;
}

/* Button styling for dark theme */
body.dark .tokyo_tm_button a {
    background-color: #fff;
    color: #000;
}

/* About section styling for dark theme */
body.dark .tokyo_tm_about .description .right>ul>li a {
    color: #bbb;
}
body.dark .tokyo_tm_about .description .right>ul>li a:hover {
    color: #fff;
}
body.dark .tokyo_tm_about .description .right>ul>li span {
    color: #fff;
}

/* Modalbox about section styling for dark theme */
body.dark .tokyo_tm_modalbox_about .counter ul li .name {
    color: #bbb;
}

/* Title span styling for dark theme */
body.dark .tokyo_tm_title span {
    background-color: rgba(255, 255, 255, 0.04);
    color: #959595;
}

/* Portfolio filter styling for dark theme */
body.dark .tokyo_tm_portfolio .portfolio_filter ul li a {
    color: #bbb;
}
body.dark .tokyo_tm_portfolio .portfolio_filter ul li a:hover {
    color: #fff;
}

/* News section styling for dark theme */
body.dark .tokyo_tm_news ul li .details .title a {
    color: #fff;
}
body.dark .tokyo_tm_news ul li .details .date {
    color: #bbb;
}
body.dark .tokyo_tm_news ul li .details .date a {
    color: #bbb;
}
body.dark .tokyo_tm_news ul li .details .date a:hover {
    color: #fff;
}

