/*!
Theme Name: merohisab
Theme URI: http://underscores.me/
Author: Suman Shrestha
Author URI: https://sumanshresthaa.com.np
Description: Mero Hisab
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: merohisab
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

merohisab is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
.clearfix {
    padding: 30px;
}

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}
/*.main-navigation.sticky-head {
    background: #101010;
    position: fixed;
    width: 100%;
    z-index: 999999;
    top: 0;
    left: 0;
    right: 0;
}*/
.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 0 10px;
    font-family: 'Khand';
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.main-navigation a:hover {
    text-decoration: none;
    color: #c00;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}



body, p {font-family: Mukta;}
h1, h2, h3, h4,h5, h6{font-family: Khand;}

.site-header {
    background: #101010;
    padding: 15px 0;
    color: #fff;
}
.site-branding .site-title {
    margin: 0;
}
.site-branding .site-title a {
    color: #fff;
    font-size: 20px;
    display: block;
    font-weight: 900;
}


.site-main {
    background: #fff;
    display: block;
    clear: both;
    overflow: hidden;
    padding: 60px 0;
    min-height: 500px;
}


.recent-updates {
    display: block;
    font-size: 14px;
    margin-bottom: 40px;
}
.recent-updates h3 {
    font-size: 26px;
    font-weight: 800;
    color: #c00;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
td.cells {
    color: #fff;
	font-size: 14px;
    vertical-align: middle;
}
.post-overaly-style {
    position: relative;
    overflow: hidden;
}
.post-overaly-style:before {
    content: " ";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
    bottom: 0;
    left: 0;
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    background: -webkit-gradient(linear, left bottom, left bottom, color-stop(60%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.85)));
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
}
.post-thumb {
    max-width: 100%;
    position: relative;
    overflow: hidden;
}
.post-block-style:hover .post-thumb img, .post-overaly-style:hover .post-thumb img {
	border-radius: 4px;
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}
.post-thumb img {
	border-radius: 4px;
    display: block;
    width: 100%;
    -webkit-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}
.custom-client {
    width: 150px;
    height: auto;
    border-radius: 4px;
}
.cells a {
    color: #ccc;
    font-weight: 800;
}
.cells a:hover {
    color: #ccc;
    border-bottom: 1px solid #ccc;
    text-decoration: none;
}


h1.page-title {
    display: block;
    clear: both;
    overflow: hidden;
    text-align: center;
    color: #c00;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 40px !important;
}

.client-contents {
    display: block;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
    clear: both;
    padding: 15px;
    margin-bottom: 25px;
}
.client-contents h3 {
    font-size: 20px;
    font-weight: 800;
    color: #c00;
}
.client-contents ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.client-contents ul li {
    border-bottom: 1px solid #ccc;
    padding: 5px 0!important;
    font-size: 13px;
    letter-spacing: 0.3px;
    list-style: none;
    color: #333;
}
.client-contents ul li:last-child {
    border-bottom: none;
    padding: 5px 0 0;
}
ul.service-scroll {
    max-height: 145px;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #fff;
    padding: 15px;
    border-radius: 4px;
}
.client-service-listing h3 {
    color: #ddd;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.6px;
    margin: 20px 0;
}

.nav-next a {
    color: #c00;
    font-size: 13px;
    font-weight: 600;
}
.nav-previous a {
    color: #c00;
    font-size: 13px;
    font-weight: 600;
}


.modal-dialog {
    min-width: 1080px !important;
}
.modal-title {
    color: #c00;
    text-align: center;
    display: block;
    width: 100%;
    font-weight: 900;
    font-size: 36px;
    margin-top: 30px;
}
.invoice-logo {
    width: 300px;
    height: auto;
}
.modal-header h6 {
    color: #101010;
    font-weight: 700;
    font-size: 22px;
    text-align: right;
}
.modal-header p {
    font-size: 13px;
    color: #111;
    margin-bottom: 0;
    line-height: 1;
    padding: 1px 0;
    margin-top: 7px;
    text-align: right;
}
.modal-header span {
    text-align: center;
    display: block;
    color: #111;
    font-size: 13px;
    font-weight: 600;
}
.modal-header .close span {
    color: #c00;
    font-size: 3rem;
    z-index: 999999;
    position: absolute;
    top: -2%;
    right: 0%;
    opacity: 1;
    font-weight: 900;
}

table.tables {
    width: 100%;
    margin-bottom: 20px;
}
table.tables thead {
    background: #333;
    color: #fff;
    font-size: 13px;
}
table.tables thead th {
    padding: 8px 10px;
}
table.tables td {
    border: 1px solid #999;
    vertical-align: middle;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
table.tables td label {
    margin-bottom: 0px;
}


tr.th-head {
    background: #101010;
    color: #fff;
    font-size: 14px;
}
td.custom {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
tr.total {
    background: #101010 !important;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}
.btn-bars {
    border: 1px solid #333;
    border-radius: 4px;
    background: #333;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 20px;
}
.btn-bars:hover {
    background: #fff;
    color: #333;
}


.home-menus {
    display: block;
    position: relative;
    margin: 15px 0 40px;
}
.menu-block a {
    border: 1px solid #222;
    border-radius: 4px;
    background: var(--btn-theme);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    padding: 15px 30px;
    width: 100%;
    display: block;
}
.menu-block a:hover {
    background: var(--color-dark);
    text-decoration: none;
}
.menu-block.inline a {
    display: inline-block;
    width: auto;
}

.info-block {
    display: block;
    margin: 15px 0;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    padding: 6px 0;
    font-size: 13px;
}
.info-block h3 {
    font-size: 16px;
    margin-top: 5px;
}
.select-control {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 1px 10px;
    min-width: 20%;
    background: #444;
    color: #ccc;
}
.add-link a {
    font-size: 12px;
    font-weight: 600;
    color: #ccc;
    margin-top: 8px;
}
.source.mt-10 {
    background: #c00;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    padding: 8px;
}
.custom span {
    padding: 0px 5px;
    border: 1px solid #c00;
    text-align: center;
    background: #c00;
    color: #fff;
    margin-right: 5px;
    border-radius: 4px;
}
.ldr-down {
    padding-left: 25px;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.4;
    padding-top: 10px;
}
.mar-lt {
    margin-left: 0px !important;
    padding-left: 0px !important;
}
.mar-rt {
    margin-right: 0px !important;
    padding-right: 0px !important;
}
.right, .name-right {
    text-align: right;
}
.black-bg {
    background: #101010 !important;
}
.w40 {
    width: 80%;
    text-align: center;
}
.w10 {
    width: 20%;
    text-align: center;
}






#exTab1 ul#myTab {
    background: transparent;
    margin-bottom: 5px;
    border-radius: 4px;
    border-bottom: 4px solid #000;
}
#exTab1 .nav-link {
    background: #000;
    border: none;
    border-radius: 0px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 15px 25px;
}
#exTab1 .nav-link.active, #exTab1 .nav-link:hover {
    background: #c00;
}
.file_name {
    float: left;
    width: 50%;
}
.black {
    background: #111;
}




.footer-menu {
    display: block;
    text-align: center;
    margin: 10px 0 30px;
}
.footer-menu li {
    display: inline-block;
    border-right: 2px solid #fff;
    padding: 5px 10px;
    line-height: 5px;
}
.footer-menu li:last-child {
    border-right: none;
}
.footer-menu li a {
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-menu li a:hover {
    color: #999;
    text-decoration: none;
}


.site-footer {
    background: #101010;
    padding: 8px 0;
    color: #fff;
    font-size: 13px;
}
.site-footer a {
    color: #fff;
}
.site-footer a:hover {
    color: #C00;
    text-decoration: none;
}

/*--------------------------------------------------------------
## CUSTOM CSS SCROLL TO TOP
--------------------------------------------------------------*/
.scroll-top-wrapper {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  text-align: center;
  z-index: 99999999;
  background-color: #013567;
  color: #fff !important;
  width: 44px;
  height: 44px;
  line-height: 44px;
  right: 22px;
  bottom: 80px;
  padding-bottom: 2px;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  box-shadow: none; 
}

.scroll-top-wrapper:hover {
  opacity: 0.6 !important; 
}

.scroll-top-wrapper.show {
  visibility: visible;
  cursor: pointer;
  opacity: 1.0; 
}

.scroll-top-wrapper i.fa {
    color: #fff;
  line-height: inherit; 
}
.site-mains {
    padding-top: 150px;
}
table.tables td.custom, table.tables td label, table.tables td {
    color: #333;
}

table.tables tr.total td.custom {
    color: #fff;
}

.off-black {
    background: #555 !important;
}



.not-found{
  font-size: 6rem;
  font-weight: 900;
  color: #c00;
  text-shadow: 1px 3px 6px #000;
  text-align: center;
}


.modal-header .h7 {
    color: #101010;
    display: block;
    font-weight: 600;
    width: 250px;
}

header.header_none{height: auto !important;}