/*****************  Main CSS ******************/
/* Font Including */
@font-face {
    font-family: 'Roboto', sans-serif;
    src: url('../font/Roboto/Roboto-Regular.ttf');
    src: local('Roboto', sans-serif), url('../font/Roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Roboto', sans-serif;
    src: url('../font/Roboto/Roboto-Medium.ttf');
    src: local('Roboto', sans-serif), url('../font/Roboto/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
}
@font-face {
    font-family: 'Roboto', sans-serif;
    src: url('../font/Roboto/Roboto-Bold.ttf');
    src: local('Roboto', sans-serif), url('../font/Roboto/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'Roboto', sans-serif;
    src: url('../font/Roboto/Roboto-Black.ttf');
    src: local('Roboto', sans-serif), url('../font/Roboto/Roboto-Black.ttf') format('truetype');
    font-weight: 900;
}

/* End Font Including */
/* RESET CSS */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400 !important;
    font-size: 0.875rem !important;
    line-height: 24px !important;
    color: #3D3D3D !important;
    background-color: #fff;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End RESET CSS */

/***************** Helper Class ***********************/

/* Border Styles */
.b-none {border: none;}
.br-rd-none {border-radius: 0;}
.blr-none {border-top-left-radius: 0 !important; border-bottom-left-radius: 0 !important;}
.brr-none {border-top-right-radius: 0 !important; border-bottom-right-radius: 0 !important;}
/* End Border Styles */

/* Utility styles */
.full-width {width: 100% !important;}
.caps {text-transform: uppercase;}
.text-underline {text-decoration: underline;}
.text-d-none {text-decoration: none;}


h1 {font-size: 3rem !important;}
h2 {
    font-size: 24px;
    line-height: 34px;
}
h3 {font-weight: 500 !important;}
h4,h5,h6 {font-weight: 400 !important;}

.screen-reader-text {
    overflow: hidden;
    clip: rect(0,0,0,0);
    position: absolute;
    margin: -1px;
    padding: 0;
    height: 1px;
    width: 1px;
    word-wrap: normal!important;
    border: 0;
}

/* Utility styles */

/* Placehoder styles */
input[type="text"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(25, 46, 104, 0.27);
}
input[type="text"]::-moz-placeholder, input[type="email"]::-moz-placeholder, textarea::-moz-placeholder, input[type="password"]::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(25, 46, 104, 0.27);
}
input[type="text"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, textarea:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(25, 46, 104, 0.27);
}
input[type="text"]:-moz-placeholder, input[type="email"]:-moz-placeholder, textarea:-moz-placeholder, input[type="password"]:-moz-placeholder  {
    /* Firefox 18- */
    color: rgba(25, 46, 104, 0.27);
}
select:not(:focus):invalid {
    color: rgba(25, 46, 104, 0.27);
  }
/* End placeholder styles */
button, a {
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
/* End Transition */

/* wrap section */

.wrap-section-lg {
    padding: 4.5rem 0;
}

/* End wrap section */
button:focus {
    outline: none;
}
.btn {
    padding: 12px 30px;
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
}
.btn-jaa {
    background-color: #0081FF;
    color: #fff;
    border: 1px solid #0081FF;
    box-shadow: none;
    border-radius: 7px;
    box-shadow: 0px 12px 25px #4A80FF29;
}
.btn-jaa:hover, .btn-jaa:focus {
    background-color: #0081FF;
    color: #fff;
    outline: none;
}
.btn-jaa-outline {
    background-color: transparent;
    color: #0081FF;
    border: 1px solid #0081FF;
    box-shadow: none;
    border-radius: 7px;
}
.btn-jaa-outline:hover, .btn-jaa-outline:focus {
    background-color: #0081FF;
    color: #fff;
    outline: none;
}
.btn-jaa-danger {
    background-color: #C54530;
    color: #fff;
    border: 1px solid #C54530;
    box-shadow: none;
    border-radius: 7px;
}
.btn-jaa-danger:hover, .btn-jaa-danger:focus {
    background-color: #C54530;
    color: #fff;
    outline: none;
}
.btn-jaa-danger-outline {
    background-color: transparent;
    color: #C54530;
    border: 1px solid #C54530;
    box-shadow: none;
    border-radius: 7px;
}
.btn-jaa-danger-outline:hover, .btn-jaa-danger-outline:focus {
    background-color: #C54530;
    color: #fff;
    outline: none;
}
.ft-semibold {
    font-weight: 500 !important;
}
.ft-bold {
    font-weight: 700 !important;
}
.ft-ex-bold {
    font-weight: 900 !important;
}
.btn-jaa-white {
    background-color: #fff;
    color: #192E68;
    border: 1px solid #D5D5D5;
    box-shadow: none;
    border-radius: 7px;
}
.btn-jaa-white:hover, .btn-jaa-white:focus {
    background-color: #fff;
    color: #192E68;
    outline: none;
}
/***************** End Helper Class *******************/
/* Custom styles */
.jaa__login {
    display: flex;
    flex-direction: row;
}
.jaa__login-right {
    height: 100vh;
    width: 35%;
    background-image: url("../img/login-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}
.jaa__login-left {
    width: 65%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login__form {
    width: 430px;
}
.login__form h3 {
    font-size: 22px;
    margin-bottom: 30px;
    color: #192E68;
}
.jaa-label {
    color: #192E68;
    margin: 0 0 11px 0;
    font-size: 16px;
}
.form-control {
    box-shadow: 0px 12px 25px #4A80FF29;
    border: 1px solid #E0E9FD;
    border-radius: 7px;
    height: 52px;
}
.fp-text a {
    color: #192E68;
}
.fp-text a:hover { 
    text-decoration: none;
}
/* Menu styles */
.menu-iconactive {
    display: none;
}
.body-bg {
    background: #F7F8FA;
}
.sidebar__menulist-item a {
    display: flex;
    padding: 20px 15px;
    align-items: center;
    color: #161616;
    background-color: #fff;
    border-right: 4px solid #fff;
}
.sidebar__menulist-item a:hover, .sidebar__menulist-item a:focus { 
    text-decoration: none;
    background-color: #F3F4F7;
    border-right: 4px solid #0081FF;
    color: #0081FF;
}
.sidebar__menulist-item a:hover .menu-icon, .sidebar__menulist-item a:focus .menu-icon{ 
    display: none;
}
.sidebar__menulist-item a:hover .menu-iconactive, .sidebar__menulist-item a:focus .menu-iconactive{ 
    display: inline-flex;
}
.menu-collapsed {
    margin-left: 15px;
}
.sidebar__menu-list .sidebar__menulist-item.active  .menu-iconactive {
    display: inline-flex;
}
.sidebar__menu-list .sidebar__menulist-item.active  .menu-icon {
    display: none;
}
.sidebar__menu-list .sidebar__menulist-item.active  a {
    background-color: #F3F4F7;
    border-right: 4px solid #0081FF;
    color: #0081FF;
}   
.sidebar-collapsed .sidebar__menulist-item a {
    justify-content: center;
}
.sidebar__menulist-item:first-child a:hover, .sidebar__menulist-item:first-child a:focus {
    background-color: #fff;
    border-right: 4px solid #fff;
    color: #0081FF;
}
.sidebar__menulist-item:first-child a {
    color: #0081FF;
}
.sidebar-collapsed .menu-collapsed {
    display: none;
}
.sidebar-expanded .menu-collapsed {
    display: inline-block;
}
.mio_wrapper {
    position: relative;
    width: calc(100% - 250px);
    margin-left: 250px;
}
.sidebar-collapsed .page-container {
    width: calc(100% - 99px);
    margin-left: 99px;
}
.sidebar-expanded .page-container {
    width: calc(100% - 230px);
    margin-left: 230px;
}
.jaa-warpper {
    display: flex;
}
#sidebar-container {
    min-height: 100vh;
    background-color: #fff;
    padding: 0;
    min-height: 100vh;
    background-color: #fff;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
}

/* Sidebar sizes when expanded and expanded */
.sidebar-expanded #sidebar-container {
    width: 230px;
}
.sidebar-collapsed #sidebar-container {
    width: 99px;
}
.jaa-header {
    display: flex;
    position: fixed;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #CCCCCC;
    padding: 12px 25px 12px 40px;
    align-items: center;
    background-color: #F7F8FA;
    z-index: 9;
}
.sidebar-collapsed .jaa-header {
    width: calc(100% - 99px);
    left: 99px;
}
.sidebar-expanded .jaa-header {
    width: calc(100% - 230px);
    left: 230px;
}
/* End Menu styles */
.header__title {
    font-size: 20px;
    line-height: 32px;
    color: #161616;
}
.jaa-avatar {
    width: 48px;
    height: 48px;
}
.jaa-avatar img {
    width: 100%;
}
.page-content {
    margin-top: 73px;
    padding: 20px 25px 20px 40px;
}
.pgc__header {
    display: flex;
    align-items: center;
}
.pgc__header h6 {
    font-size: 18px;
    color: #192E68;
}
.pgc__filter {
    margin-left: 20px;
}
.pgc__search {
    margin-left: 20px;
    width: 350px;
    position: relative;
}
.pgc__search:after {
    font-family: Font Awesome\ 5 Pro;
    content: "\f002";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 400;
    position: absolute;
    right: 15px;
    z-index: 1;
    top: 15px;
}
.emf__listitem {
    background-color: #fff;
    border-radius: 6px;
    padding: 15px;
}
.employee__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.employee__col-left {
    display: flex;
}
.emp__avatar {
    width: 56px;
    height: 56px;
}
.emp__avatar img {
    width: 100%;
}
.emp__details p {
    margin: 0 0 6px 0;
}
.emp__details {
    margin: 0 0 0 18px;
}
.emp__ckrow {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.emp__ck {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.emp__ck li .custom-control {
    width: 200px;
}
.emp__ck-ref {
    color: rgba(150, 150, 150, 1);
}
.emp__ck li .custom-control {
    width: 175px;
    font-weight: 600;
    color: rgba(61, 61, 61, 1);
}
.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: rgba(61, 61, 61, 1);
    background-color: rgba(61, 61, 61, 1);
}
.emp__ck li {
    display: flex;
    font-size: 12px;
    margin-bottom: 8px;
}
.emp__ckrow {
    margin-top: 20px;
}
.emp__ck-ref {
    color: rgba(150, 150, 150, 1);
    width: calc(100% - 175px);
}
.emf__listitem {
    margin-top: 18px;
}
.pgc__header {
    margin-bottom: 10px;
}
.employee__col-right .btn {
    margin-left: 15px;
}
#send-notification .emp__ck, #fr-modal .emp__ck  {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
#send-notification .emp__ck li, #fr-modal .emp__ck li {
    align-items: center;
    margin-bottom: 18px;
}
#send-notification .emp__ck-input {
    width: calc(100% - 175px);
}
.ci__row .emp__ck li .custom-control, #fr-modal .emp__ck li .custom-control  {
    width: 25px;
}
.emp__ck-inputtwo {
    flex-grow: 1;
    margin-left: 7.5px;
}
.emp__ck-inputone {
    flex-grow: 1;
    margin-right: 7.5px;
}
.ci__row {
    border-top: 1px dashed #ddd;
    padding-top: 25px;
    margin-top: 22px;
}
.jamodal__header {
    align-items: center;
}
.nss-container i {
    color: #0081FF;
    font-size: 24px;
    margin-bottom: 12px;
}
.nss-container {
    text-align: center;
    padding: 70px 0;
}
.emp__ckselect .btn-transparent {
    padding: 12px;
}
#fr-modal .emp__ck-inputtwo {
    margin-left: 15px;
    margin-right: 0px;
}
#ers-modal .nss-container i {
    color: #C54530;
    font-size: 24px;
    margin-bottom: 12px;
}
.shadeModal {
    background: rgba(0,0,0,0.8);
    z-index: 100000 !important;
}
.dataTables_wrapper > .row:first-child {
    display: none;
}
.dataTable th {
    background-color: #FFFFFF;
    color: #192E68;
    font-weight: 600;
}
.dataTable tbody tr:nth-of-type(odd) {
    background-color: #F2F3F5 ;
}
.dataTable td {
    color: #696E7D;
    font-weight: 500;
}
#ja__roles .nav-link {
    color: #192E68;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    font-size: 22px;
    border-bottom: 2px solid transparent !important;
}
#ja__roles .nav-link:hover, #ja__roles .nav-link:focus, #ja__roles .nav-link:focus-visible, #ja__roles .nav-link:focus-within, #ja__roles .nav-link:active { 
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}
#ja__roles .active {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 2px solid #0181ff !important;
    font-weight: 600;
}
#ja__roles {
    border-bottom: none;
}
#emprole, #jobrole {
    position: relative;
}
.pgc__headcontainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex: 0 0 100%;
}
.pgc__headcontainer .pgc__header {
    margin: 0;
}
.ja__rolesfilter {
    position: absolute;
    width: calc(100% - 395px);
    right: 0px;
    display: flex;
    align-items: center;
    top: -72px;
}
.pgc__headcontainer .pgc__filter {
    margin-left: 0;
}
.mobile-menu {
    display: none;
}
/* Full Fixed Modals */
.fixed-modal .modal-dialog {
	width: 100%;
	margin: 0 !important;
	height: 100%;
	position: fixed;
}
.fixed-modal .modal-content {
	border-radius: 0;
	border: none;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fixed-modal .modal-body {
	position: absolute;
	width: 100%;
	top: 67px;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: auto;
	background: #ffffff;
}
.fixed-modal .modal-footer {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	height: 66px;
	padding: 10px 20px;
	background: #ffffff;
}
#addCalender .modal-footer {
    width: 59%;
    border-right: 1px solid #ddd;
}
.no-md-footer .modal-body {
    bottom: 5px;
}
#mobile-menu .modal-header {
    height: 67px;
    border-bottom: navajowhite;
}
/* End Full Fixed Modals */
.jaa_menu-blk {
    display: flex;
    align-items: center;
}
.jaa-avatar {
    margin-right: 25px;
}
.modal-close {
    position: absolute;
    right: 0;
    font-size: 28px;
    top: 8px;
}
/* Custom styles */ 
