/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* header css start */
/*body.no_scroll {
	overflow: hidden;
} */
body.no_scroll:before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 112;
	background-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(1.5px);
}
h2.page_title {
	font-size: 20px;
	font-weight: 600;
	margin: 10px 0px;
}
h3.page_subtitle {
	font-size: 18px;
	font-weight: 600;
	margin: 0px 0px 10px;
}
.site_header {
	position: relative;
	padding: 10px 20px;
}
.site_header_outer {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 10px;
	text-align: center;
   /* justify-content: center; */
}

.tr-count {
	margin-left: 5px;
	border: 2px solid #fff;
	border-radius: 25px;
	padding: 5px 10px;
}
.toggle_button, .user_profile {
	flex: 0 0 50px;
	max-width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.user_avatar {
	height: 35px;
	width: 35px;
	overflow: hidden;
	border-radius: 50%;
	box-shadow: rgb(0 0 0 / 20%) 1px 1px 10px;
	position: relative;
}
.user_avatar img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	min-height: 100%;
	max-height: 100%;
	min-width: 100%;
	max-width: 100%;
	object-fit: cover;
}
.logo_image {
	flex: 0 0 calc(100% - 100px);
	max-width: calc(100% - 100px);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo_image a img {
    width: 250px;
    max-width: 100%;
}
.logo_image a h3 {
	margin: 0;
}
.navbar_toggler {
	padding: 0;
	height: 25px;
	width: 25px;
	border: none;
	outline: none !important;
	background-color: transparent;
	border-radius: 5px;
	margin: auto;
	position: relative;
	float: left;
}
.navbar_toggler .navbar_toggler_inner,
.navbar_toggler .navbar_toggler_inner:after,
.navbar_toggler .navbar_toggler_inner:before {
	width: 25px;
	height: 4px;
	transition-timing-function: ease;
	transition-duration: 0.3s;
	transition-property: transform;
	border-radius: 4px;
	background-color: var(--theme-link-initial-color);
	position: absolute;
	left: 0;
	right: 0;
}
.navbar_toggler .navbar_toggler_inner {
	transition: top 75ms ease 0.12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
	top: 0;
	bottom: 0;
	margin: auto;
}
.navbar_toggler .navbar_toggler_inner:after,
.navbar_toggler .navbar_toggler_inner:before {
	display: block;
	content: "";
}
.navbar_toggler .navbar_toggler_inner:before {
	transition: top 75ms ease 0.12s, opacity 75ms ease;
	top: -9px;
}
.navbar_toggler .navbar_toggler_inner:after {
	transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
	bottom: -9px;
}
.navbar_toggler.open_menu .navbar_toggler_inner {
	transition: top 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) 0.12s;
	transform: rotate(45deg);
	top: 0;
}
.navbar_toggler.open_menu .navbar_toggler_inner:before {
	top: 0;
	transition: top 75ms ease, opacity 75ms ease 0.12s;
	opacity: 0;
}
.navbar_toggler.open_menu .navbar_toggler_inner:after {
	bottom: 0;
	transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) 0.12s;
	transform: rotate(-90deg);
}
.custom_navbar {
	position: fixed;
	top: 0;
	bottom: 0;
	left: -320px;
	padding: 0px;
	height: 100vh;
	width: 300px;
	background-color: #fff;
	transition: all 0.5s;
	z-index: 99999;

}
.custom_navbar.navbar_animate {
	left: 0;
}

.custom_navbar ul li {
	list-style: none;
}

.custom_navbar ul li.menu_item {
	padding: 10px 15px;
	margin: 0px;
	/*border-top: 1px solid #bdbdbd;*/
}
.custom_navbar ul li.menu_item a {
	transition: all 0.4s;
	border-radius: 10px;
	
}
/* 0212
.custom_navbar ul li.menu_item.active a,
.custom_navbar ul li.menu_item a:hover {
	background-color: #ddd;	
} */
.custom_navbar ul li.menu_item a.disable_link {
	pointer-events: none;
	opacity: 0.5;
}
.custom_navbar ul li.side_menu_logo {
	padding: 20px;
	text-align: center;
	border-bottom: 1px solid #ebf2fe;
}
.custom_navbar ul li.side_menu_logo a {
	border: none;
	padding: 0px;
	max-width: 80%;
	margin: auto;
	display: table !important;
}
.custom_navbar ul li.side_menu_logo a h3 {
	margin: 0px;
}
.custom_navbar ul li a img {
	width: 100%;
	margin: auto;
}
.custom_navbar ul li a i {
	position: absolute;
    left: calc(15px / 2);
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    width: 25px;
    font-size: 18px;
}
.copy_right_text {
	padding: 5px 15px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
}
.copy_right_text p {
	font-size: 16px;
	color: #6a6a6a;
}
.copy_right_text p a {
	color: #241e20;
}
.custom_navbar .app_version {
	font-size: 10px;
	text-align: center;
	padding: 10px;
	border-top: 1px solid #ebf2fe;
	margin: 5px 0px 0px;
}
.custom_navbar  ul li a {
	background-color: #ccdefc;
    color: #005aee;
    padding: 0px 15px 0px 40px;
    line-height: 40px;
    height: 40px;
    display: block;
    margin: 10px 10px 0px;
    position: relative;
    width: auto;
    border-radius: 5px;
    font-size: 13px;
    overflow: hidden;
    transition: all 0.35s;
}
.custom_navbar ul li a:hover, .custom_navbar ul li a:focus, .custom_navbar ul li.active a {
    background-color: #005aee;
    color: #ffffff;
}

.custom_navbar ul {
    padding-inline-start: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   	box-shadow: 2px 0px 10px -6px #212529;
	border-radius: 0px 20px 20px 0px;
}

@media (max-width: 1024px) {
.navbar_toggler {
    display: block;
}
}
/* header css end */
