/* Frameworks: jQuery 3.3.1  */

:root {
	--skin-hover: rgba(0, 0, 0, 0.1);
	--skin-color: rgba(255, 255, 255, 0.7);
}

.default-skin {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 14px;
	font-smooth: antialiased;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	--skin: #2a2a2e;
	--skin-hover: #2098D1;
	--skin-color: rgba(255, 255, 255, 0.8);
}

.light-skin {
	--skin: #f0f0f0;
	--skin-hover: #ddd;
	--skin-color: #232323;
}

.menu-body.visibility {
	visibility: hidden;
}

.menubar {
	width: 100%;
	height: 48px;
	display: block;
	background: var(--skin);
	color: var(--skin-color);
	line-height: 48px;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.menu-trigger {
	/* position: absolute; */
	-webkit-appearance: none;
	border: 0;
	outline: 0;
	background: transparent;
	top: 10px;
	padding: 0 5px;
	color: var(--skin-color);
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, .2);
	color: #000;
}

.menu-trigger:hover {
	opacity: 0.8;
	-webkit-opacity: 0.8;
}


.menu-trigger.left {
	left: 20px;

}

.menu-trigger.right {
	right: 20px;
}

.sticky {
	position: sticky;
	top: 0;
	left: 0;
}

.menu-container {
	    font-family: 'Roboto', sans-serif;
	overflow: auto;
	display: block;
	/* top: 120px; */
   top:89px;

}

.menu-container::-webkit-scrollbar {
	width: 4px;
}

.menu-container::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.2);
}

.menu-container::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.11);
}

.menu-container::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.position-left {
	left: -270px;
}

.position-right {
	/* right: -270px; */
	right: -500px;
}

.position-left.open {
	left: 0;
}

.position-right.open {
	right: 0;
}

.menu-container,
.menu-head,
.menu-left,
.menu-left.open .menu-right,
.menu-right.open {
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;

}

.menu-container,
.menu-head {
	/* background: var(--skin);
    position: fixed;
    z-index: 1000;
    width: 400px; */
	position: fixed;
	z-index: 1000;
	background: #fafafa;
	padding: 0px;
	width: 350px;
	text-align: center;
	transition: all 0.3s ease;

}

.menu-head .layer {
	background: #fff;
	display: block;
	padding: 15px;
}


.menu-head {
	height: 90px;
	/* height: 120px; */
	box-sizing: border-box;
	margin: 0px;
	top: 0;

}

.menu-items {
	list-style: none;
	font-size: 14px;
}
.arrow-container-class {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    line-height: 69px;
    width: 45px;
    text-align: center;
    cursor: pointer;
    background: #f8f8f8;
    z-index: 9;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
}
.dropdown-heading, .menu-items li a {
    text-decoration: none;
    padding: 10px;
    display: block;
    padding-left: 25px;
    text-align: start;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.050);
    margin: 0;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    height: 50px;
    line-height: 28px;
    padding-right: 12px;
    color: #000000;
    z-index: 1;
    position: relative;
    background: #f8f8f8;
    border-top: 1px solid #ddd;
        font-family: 'Roboto', sans-serif;
}

/* Icon Style */
.menu-items li i {
	font-size: 16px;
	margin-right: 10px;
}

.dropdown-heading {
	-webkit-tap-highlight-color: transparent;
}

.dropdown-heading:hover,
.menu-items li a:hover {
	background: #fff;
    color: #002147;
}


@keyframes fadeIn {
	from {
		opacity: 0;
		-webkit-opacity: 0;
	}

	to {
		opacity: 1;
		-webkit-opacity: 1;
	}
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
		-webkit-opacity: 0;
	}

	to {
		opacity: 1;
		-webkit-opacity: 1;
	}
}

/* Dropdowns */
.has-sub ul {
	list-style: none;
	overflow: hidden;
	display: none;
	background: #f2f9f9;
}

.has-sub ul li a {
	display: block;
	padding: 12px 33px;
	border-bottom: 0;
	font-size: 13px;
	color: #444;
	transition: .1s;
	-webkit-transition: .1s;
	border-bottom: 1px dotted #e1e1e1;
	background: #fff;
}

.has-sub ul li a:hover {
	/* background: #dedede; */
	transition: .1s;
	-webkit-transition: .1s;
}

.has-sub span {
	display: block;
	box-sizing: border-box;
}
.has-sub i.d-arrow {
   float: unset;
   margin-right: 0;
   transition: 0.360s;
   font-size: 16px;
   color: #002147;
}


.has-sub .d-arrow.d-down {
	transform: rotateZ(180deg);
	-webkit-transform: rotateZ(180deg);
	-moz-transform: rotateZ(180deg);
	transition: 0.360s;
	-webkit-transition: 0.360s;
	-moz-transition: 0.360s;

}

.colflex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* .row{
   display: table-cell;
    
} */
.for-name {
	max-width: 140px;
	padding: 10px;
	color: var(--skin-color);
}

.for-pic {
	max-width: 70px;
}

.profile-pic img {
	/* width: 60px; */
	height: 60px;
	/* border-radius: 50%;
   border: 1px solid rgba(255, 255, 255, 0.01);
   object-fit: cover; */

}

.menu-head .line {
	width: 40px;
	height: 40px;
	line-height: 40px;
}

.menu-head .line span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 1px !important;
	height: 20px !important;
	background: #000;
	border: none !important;
	transition: all 0.3s ease;
}

.menu-head #nav-closen:hover {
	transform: rotate(180deg);
}
.menu-trigger span {
    height: 2px;
    width: 30px;
    display: block;
    background: #ffffff;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.menu-head #nav-closen {
	position: relative;
	float: unset;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border: unset;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #fdc800;
}

.menu-head .line span.line2 {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-head h3 {
	top: -35px;
	font-size: 13pt;
	font-weight: 400;

}

.tagline,
.menu-head h3 {
	display: block;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.tagline {
	font-size: 11px;
	bottom: 32px;
	display: block;

}

/* Dim background effect */
.dim-overlay {
	display: none;
}

.dim-overlay:before {
	content: "";
	background-color: rgba(0, 0, 0, .4);
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	overflow: hidden;
	z-index: 2;
}

.logo {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	font-size: 22px;
}

.logo img {
	width: 130px;
	margin-top: 10px;
	height: auto;

}

.logo a {
	text-decoration: none;
	color: var(--skin-color);
}

.logo a:hover {
	color: var(--skin-hover);
}