@font-face {
    font-family: "Reader Pro Regular";
    src:url("../../fonts/readerpro/ReaderProRegular.woff2?v=3.6.95") format("woff2");
}

@font-face{
	font-family: "Reader Pro Medium";
    src:url("../../fonts/readerpro/ReaderProMedium.woff2?v=3.6.95") format("woff2");
}

html {
    scroll-behavior: smooth
}

body {
    font-family: spartan,sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #050505;
    overflow-x: hidden;
    font-size: 14px
}

.text-gradient-blue{
	background: linear-gradient(to right, #004AAD 0, #1379BE 51%, #004AAD 100%);
     background: -webkit-linear-gradient(to right, #004AAD 0, #1379BE 51%, #004AAD 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
}

/* ::-webkit-scrollbar {
    width: 12px!important;
    height: 12px!important;
    background: #99cc00!important;
} */

/* html, body{
	font-family: "Reader Pro Regular";
}

body{
	background-color: rgb(255, 255, 255);
	line-height: 1;
    font-size: 16px;
} */

.bg-main-grey{
	background-color: #f4f5f6;
}

.bg-fn-grey{
	background-color: #e2e7ec;
}

.bg-gradient-blue{
	background: linear-gradient(to right, #004AAD 0, #1379BE 51%, #004AAD 100%);
     background: -webkit-linear-gradient(to right, #004AAD 0, #1379BE 51%, #004AAD 100%);
}

.fh-40px{
	min-height: 40px!important;
}

.fs-14px{
	font-size: 14px!important;
}

.fs-18px{
	font-size: 18px;
}

.fs-32px{
	font-size: 32px!important;
}

.header-full-width{
	padding-left: 224px;
}

.icon-pack{
	height: 40px;
	width: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
}

.jump-anim {
    animation-name: fetureanimate;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: fetureanimate;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: fetureanimate;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: fetureanimate;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: fetureanimate;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear
}

@keyframes fetureanimate {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px)
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px)
    }
}

.blink-anim{
	animation: blink 1s linear infinite;
}

@keyframes blink{
	0%{opacity: 0;}
	50%{opacity: .5;}
	100%{opacity: 1;}
}

.wrap{
	position: relative;
	width: 100%;
}

.main-content{
	position: relative;
	display: flex;
	flex-direction: column;
	z-index: 30;
	min-height: calc(100vh - 2rem);
}

/* Left Sidebar Section */
.left-sidebar{
	display: flex;
    flex-direction: column;
    position: fixed;
    padding-top: 64px;
    left: 0px;
    top: 0px;
    height: -webkit-fill-available;
    z-index: 30;
    overflow: initial;
    transition: padding-top 0.2s ease 0s, width 0.2s ease 0s;
}

.content-left-sidebar{
	padding-top: 17px;
	top: 0px;
	height: 100%;
	border-right: 1px solid rgba(222, 226, 230, 1);
	background-color: #f4f5f6;
	overflow: hidden auto;
}

.logo-left-sidebar{
	display: block;
	padding: 0px 22px;
	transitioin: padding 0.2s ease 0s;
}

.nav-left-sidebar{
	display: flex;
	flex-direction: column;
	overflow: hidden auto;
	-webkit-box-flex: 1;
	flex-grow: 1;
	padding: 0px 16px;
	transition: padding-left 0.4s ease 0s, padding-right 0.4s ease 0s;
}

.left-logo{
	display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 32px;
}

.left-navlink{
	position: relative;
    cursor: pointer;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 0px 12px;
    font-size: 14px;
    color: #818ea3;
    border-radius: 8px;
    background: transparent;
    height: 48px;
    flex-shrink: 0;
}

.left-navlink a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.left-text-link{
	color: inherit;
	transition: color 0.4s ease 0s;
	-webkit-box-flex: 1;
	flex-grow: 1;
}

/* Right sidebar section */
.right-sidebar{
	margin-left: 224px;
    max-width: calc(100% - 224px);
}

.content-right-sidebar{
	padding-top: 0px;
    transition: padding-top 0.3s ease 0s;
}

.page-toolbar{
	background: #f4f5f6;
	position: relative;
	overflow: hidden;
	height: 3.75em;
	padding: 0 0.75rem;
}

.page-title{
	font-size: 21px;
	font-weight: 600;
	margin-bottom: 0!important;
}

.page-content{
	background: rgb(255, 255, 255);
	padding-top: 16px;
	padding-bottom: 16px;
}

.footer-right-sidebar{
	color: rgb(255, 255, 255);
    background: rgb(12, 31, 60);
    padding: 32px 16px;
    transition: padding-left 0.2s ease 0s;
    z-index: 10;
}

@media (max-width: 991.98px) {
	.left-sidebar{
		padding-top: 0px;
		width: 74px;
	}

	.left-logo>.text-logo{
		display: none;
	}

	.content-left-sidebar{
		width: 74px;
	}

	.left-text-link{
		display: none;
	}

	.right-sidebar{
		margin-left: 74px;
	    max-width: calc(100% - 74px);
	}
}

@media (min-width: 992px) {
	.left-sidebar{
		padding-top: 0px;
		overflow: visible;
		height: 100vh;
		width: 224px;
	}

	.left-sidebar{
		/* padding-top: 17px; */
		top: 0px;
		height: 100%;
	}

	.content-left-sidebar{
		width: 224px;
	}
}
