/* Global css */
body{
    font-family: 'Open Sans', sans-serif;
}
.btn-primary {
    background-color: #1e4a9a;
    border:none;
}
.btn-warning{
color: #fff !important;
border:none;
}

.btn:focus, a:focus
{
    outline: none;
    box-shadow: none !important;
}
 .form-group>select {
    outline: none !important;
    box-shadow: none !important;
}
.form-group>input {
    outline: none !important;
    box-shadow: none !important;
}

.form-group>textarea{
    outline: none !important;
    box-shadow: none !important;
}

.btn-sm{
    font-size: 12px;
}

table th {
    font-weight: 600 !important;
}
a.btn {
    font-size: 12px;
}

.font{
    font-size: 14px;
}

.form-control {
    height: calc(1.5em + .75rem + 10px);
    font-size: 0.8rem;
}

.shadow {
    box-shadow: 0 3px 5px rgba(0,0,0,.1)!important;
}

.custom-control.custom-switch.pt-3.mb-3 {
    padding-left: 0px;
}

.main button.float-right {
    font-size: 13px !important;
    padding: 10px 15px;
}

.main .btn-primary.float-right {
    font-size: 13px;
}

/* Login Page Css */

section.login {
    height: 100vh;
}

section.login .d-flex {
    height: 100vh;
}

section.login .login_frm {
    display: block;
    position: relative;
}

section.login .col-md-7 {
    height: 100vh;
    background-image: url('../images/login-bg.jpg');
    background-size: cover;
    background-position: 50%;
}

section.login .form-group {
    position: relative;
    font-size: 1em;
    width: 100%;
    display: grid;
}

section.login .form-group>input,
.form-group>label {
    width: 100%;
}

section.login .form-group>input {
    outline: none;
    order: 2;
}

section.login .form-group>label {
    position: relative;
    color: #212529;
    order:1;
}

.pagination {
    display: block;
    text-align: center;
    margin: 20px 0 30px;
}
.pagination a {
    color: inherit;
    margin: 0px 5px;
}
.pagination a:hover {
    color: #007bff;
}
.pagination a.active {
    border: 1px solid #007bff;
    padding: 0px 2px 0px 3px;
    background: #007bff;
    color: #fff;
    border-radius : 5px;
}

section.login .form-group.form-check {
    padding-left: 20px;
}

section.login .form-check-label {
    position: relative !important;
    color: #212529 !important;
    font-size: 15px;
}

section.login a {
    color: #1e4a9a;
    font-size: 14px;
    letter-spacing: 0.7px;
}

section.login a:hover {
    text-decoration: none;
}

section.login button {
    width: 249px;
    height: 45px;
    background: #1e4a9a 0 0 no-repeat padding-box;
    border-radius: 50px;
    margin: 2em auto;
    letter-spacing: .8px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    border: none;
    text-transform: uppercase;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

section.login a.spt_tx {
    color: #212529 !important;
    font-size: 14px;
    letter-spacing: 0.7px;
    font-weight: 600;
}



/* Dashboard css */

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.sidebar {
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0px;
    height: 100%;
    width: 70px;
    background: #1e4a9a;
    text-align: center;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    z-index: 99999999;
}

.sidebar:hover,
.sidebar.active,
.sidebar.hovered {
    width: 250px;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    display: block;
}

.sidebar ul li a {
    display: block;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    color: #caced3;
    text-align: left;
}

.sidebar ul li a i {
    display: inline-block;
    width: 70px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    text-align: center;
    -webkit-animation-duration: 0.7s;
    -moz-animation-duration: 0.7s;
    -o-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

.sidebar ul li a span {
    display: inline-block;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
}

.sidebar ul li a:hover {
    background-color: #f6f9fe;
}

.sidebar .incident_tab {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* position: fixed; */
    background: #fefefe;
    border-radius: 50%;
    /* left: 10px; */
    /* top: 560px; */
    margin-left: 12px;
    margin-bottom: 16px;
}

.sidebar .incident_tab a span{
    color: #1e4a9a;
}

.sidebar {
    overflow-y: auto;
}

.main {
    position: relative;
    display: block;
    top: 0px;
    left: 0;
    z-index: 1;
    padding: 0px 0px;
    padding-left: 70px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background: #fbfbfd;
    min-height: 100vh;
}

.main.active {
    padding-left: 275px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

nav.navbar {
    height: 90px;
    position: sticky;
    top: 0;
    border-bottom: 2px solid #f1f1f1;
    z-index: 11111;
}

nav.navbar .navbar-brand img {
    height: 40px;
}

.navbar-toggler:focus
{
         outline: none !important;
         box-shadow: none;
}

nav.navbar .nav-item a {
    font-size: 13px;
    font-weight: 600;
    color: #767e8b;
}


nav.navbar .d-flex img {
    height: 25px;
    width: 25px;
    border-radius: 50px;
    margin-right: 10px;
}

nav.navbar .d-flex .title h6 {
    font-size: 13px;
    margin-bottom: 0px;
}

nav.navbar .d-flex .title p {
    font-size: 12px;
    margin-bottom: 0px;
}

.navbar .btn {
    outline: none !important;
    box-shadow: none !important;
}
/* Dashboard content */

.main .card-body {
    padding: 15px;
}

.main .card.bg_one a:hover, .main .card.bg_two a:hover, .main .card.bg_three a:hover, .main .card.bg_four a:hover, .main .card.bg_five a:hover  {
    text-decoration:none;
	font-weight:bold;
}
.main .card.bg_one {
    background: #5473e8 0 0 no-repeat;
}

.main .card.bg_two {
    background: #36c2cf 0 0 no-repeat;
}

.main .card.bg_three {
    background: #fbbf5d 0 0 no-repeat;
}

.main .card.bg_four {
    background: #897aff 0 0 no-repeat;
}

.main .card.bg_five {
    background: #fb65ce 0 0 no-repeat;
}


.main .card .card-title {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    height: 40px;
    margin-bottom: 10px;
}

.main .card .card-text {
    color: #fff;
    font-size: 36px;
}

.main .card-body i:not(.initial_i) {
    font-size: 70px;
    color: #fff;
    opacity: 0.27;
    float: right;
    position: absolute;
    bottom: -10px;
    right: -10px;
}

.main .table-responsive th {
    border: none;
}

.main .table-responsive th,
td {
    padding: 15px !important;
    font-size: 0.8em;
    color: #212529 !important;
}

.main .table-responsive th {
    font-weight: 500;
}



/* Users css */

.main .table-responsive select.form-control {
    font-size: 13px;
    width: 100%;
}

.main button.float-right {
    font-size: 13px;
    padding: 10px 15px;
}

.main button i.fa.fa-plus:not(.initial_i) {
    font-size: 10px;
    width: 17px;
    height: 17px;
    background: #fff;
    color: #1e4a9a;
    border-radius: 50%;
    padding: 4px;
    line-height: 11px;
    margin-right: 5px;
}

.main .sear-btn {
    border: none;
    border-bottom: 1px solid #dedede;
    border-radius: 0px;
    font-size: 13px;
}

.main .table_user {
    border: 1px solid #dee2e6 !important;
}

.table_user button.btn.btn-warning {
    font-size: 13px;
    padding: 4px 15px;
    color: #fff;
}

.table_user span.fa.fa-user-edit {
    color: #533ff0;
    font-size: 1.4em;
}

/* Resources page css */

.main .nav-tabs {
    border: 1px solid #dee2e6;
}

.main .nav-tabs .nav-link {
    margin-bottom: 0px;
    border: 1px solid transparent !important;
    padding: 15px;
    font-weight: 600;
    color: #495057;
}

.main .tab-content>.active {
    display: block;
    max-width: 100%;
}


.main .d_btn {
    background: #533ff0;
    font-size: 12px;
    padding: 2px 10px;
}


/* Document Policies css */

.tabs-left {
    border-bottom: none;
    padding-top: 2px;
    border-right: 1px solid #ddd;
  }
  .tabs-left>li {
    float: none;
    margin-bottom: 2px;
    margin-right: -1px;
  }
  .tabs-left>li.active>a,
  .tabs-left>li.active>a:hover,
  .tabs-left>li.active>a:focus {
    border-bottom-color: #ddd;
    border-right-color: transparent;
  }
  .tabs-left>li>a {
    border-radius: 4px 0 0 4px;
    margin-right: 0;
    display:block;
  }


  ul.nav.flex-column.nav-tabs.tabs-left li a.active {
    height: 80px;
    background: #f6f9fe;
    border-left: 2px solid #1e61da;
    display: flex;
    align-items: center;
    color: #1e61da;
}

ul.nav.flex-column.nav-tabs.tabs-left li a{
    height: 80px;
    align-items: center;
    display: flex;
    color: #252525;
    padding-left: 54px;
    vertical-align: middle;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0;
    position: relative;
    line-height: 1em;
    text-decoration: none !important;
}

ul.nav.flex-column.nav-tabs.tabs-left li a span {
    height: 30px;
    width: 30px;
    background: #dedede;
    border-radius: 5px;
    position: absolute;
    left: 12px;
    display: flex;
    align-items: center;
    font-size: 14px;
    justify-content: center;
    text-transform: uppercase;
    color: #fff;
}

ul.nav.flex-column.nav-tabs.tabs-left li a.active span {
    background: #1e61da;
}

.table_policy {
    border: 1px solid #dedede;
    border-top: none;
}

.table_policy td button {
    font-size: 13px;
    padding: 4px 15px;
}



/* Modal css Admin */

.modal {
    z-index: 11111111;
}
.modal.fade:not(.in).right .modal-dialog {
	-webkit-transform: translate3d(25%, 0, 0);
	transform: translate3d(25%, 0, 0);
}

.modal.right .modal-dialog {
	position:absolute;
	top:0;
	right:0;
	margin:0;
}

.modal.right .modal-dialog {
    right: 0px;
    width: 550px !important;
    transform: translate3d(0%, 0, 0) !important;
}
 .modal.right .modal-content {
	min-height:100vh;
	border:0;
}

.modal-header .close {
    font-size: 45px !important;
    font-weight: 400;
}

.user_profile .col-md-3 img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50px;
}
.seemyscore{
    background-color: #1e4a9a!important;
    color: #fff;
    padding: 10px 30px;
    font-size: 15px;
}
.progress-bar{
    background-color: #1e4a9a!important;
}
.progress{
    height: 10px;
    margin: 8px 0px 0px 0px;
}
.user_data {
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    font-weight: 600;
    color: #212529;
}

.user_data td {
    padding: 15px 25px !important;
}

.user_profile .signout {
    width: 249px;
    height: 45px;
    background: #1e4a9a 0 0 no-repeat padding-box;
    border-radius: 50px;
    margin: 2em auto;
    letter-spacing: .8px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    border: none;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.add_user .form-group {
    position: relative;
    display: grid;
}


.add_user .form-group>input,
.form-group>label {
    width: 100%;
    order: 2;   
}

.add_user .form-group>input {
    outline: none;
}

  .add_user .form-group label {
    position: relative;
    color: #757575;
    font-weight: 600;
    pointer-events:none;
    order: 1;
    padding-left: 0px;
    font-size: 0.8em;
}

div#uinfoupdate .form-group label{
    position: relative;
    color: #757575;
    font-weight: 600;
    pointer-events:none;
    order: 1;
    padding-left: 0px;
    font-size: 0.8em;
}

div#uinfoupdate button {
    font-size: 14px;
    border-radius: 2px;
    padding: 8px 20px;
    box-shadow: 0px 2px 4px rgb(157 152 152 / 60%);
}

div#change_password .form-group label{
    position: relative;
    color: #757575;
    font-weight: 600;
    pointer-events:none;
    order: 1;
    padding-left: 0px;
    font-size: 0.8em;
}


div#change_password button {
    font-size: 14px;
    border-radius: 2px;
    padding: 8px 20px;
    box-shadow: 0px 2px 4px rgb(157 152 152 / 60%);
}




.add_user .form-group.form-check {
    padding-left: 11px;
}

.add_user .form-check-label {
    position: relative !important;
    color: #212529 !important;
    font-size: 15px;
}

.add_user .form-group>select{
    font-size: 13px;
    color: #757575;
    font-weight: 600 !important;
    order: 2;
}
.add_user .form-group>textarea {
    order: 2;
}

.add_user .custom-control-label span {
    font-size: 15px !important;
    color: #757575;
}


/* upload user */

.upload_doc .form-group {
    position: relative;
    display: grid;
}


.upload_doc .form-group>input,
.form-group>label {
    width: 100%;

}

.upload_doc .form-group>input {
    outline: none;
    order: 2;
}

.upload_doc .form-group>textarea {
    outline: none;
    order: 2;
}

.upload_doc .form-group>label {
    position: relative;
    color: #757575;
    font-weight: 600;
    order: 1;
    font-size: 13px;
}



.upload_doc .form-group.form-check {
    padding-left: 11px;
}

.upload_doc .form-check-label {
    position: relative !important;
    color: #212529 !important;
    font-size: 15px;
}

.upload_doc .form-group>select{
    font-size: 13px;
    color: #757575;
    font-weight: 600 !important;
}

.upload_doc .custom-control-label span {
    font-size: 15px !important;
    color: #757575;
}


.upload_doc input:focus+.custom-file-label, input:valid+.custom-file-label {
    font-size: 0.8em;
    width: auto;
    height: 3.3em;
    padding: 0px 0.5em 0px 0.5em;
    margin: 0px;
    background: white;
    transition: 0.2s ease-in-out;
    top: 0px;
    left: 2px;
}

.upload_doc .custom-file-input:lang(en)~.custom-file-label::after {
    content: "Upload" !important;
}

/* Report An Incident */

.incident_card {
    padding: 35px 25px;
    border-radius: 15px;
}

.incident_card p {
   color: #666;

}



/* Contact Card */

.contact_card {
    padding: 45px 45px;
    border-radius: 15px;
}



.contact_card .form-group {
    position: relative;
    margin-bottom: 20px;
    display: grid;
}

.card.contact_card span a {
    color: #000;
}

.contact_card .form-group>input {
    outline: none;
    order: 2;
    width: 100%;
    order: 2;
}

.contact_card .form-group>textarea{
    outline: none;
    order: 2;
}

.contact_card .form-group>label {
    position: relative;
    color: #757575;
    font-weight: 600;
    order: 1;
    padding-left: 0px;
    font-size: 0.8em;
}




.contact_card .form-group.form-check {
    padding-left: 11px;
}

.contact_card .form-check-label {
    position: relative !important;
    color: #212529 !important;
    font-size: 15px;
}

.contact_card .form-group>select{
    font-size: 13px;
    color: #757575;
    font-weight: 600 !important;
}

.contact_card .custom-control-label span {
    font-size: 15px !important;
    color: #757575;
}


.contact_card input:focus+.custom-file-label, .contact_card input:valid+.custom-file-label {
    font-size: 0.8em;
    width: auto;
    height: 3.3em;
    padding: 0px 0.5em 0px 0.5em;
    margin: 0px;
    background: white;
    transition: 0.2s ease-in-out;
    top: 0px;
    left: 2px;
}

/* Report Incident */

.report_form label {
    font-weight: 600 !important;
    font-size: 13px !important;
    color: #000;
}

.report_form label.form-check-label {
    color: #000;
    font-weight: 400 !important;
}



.report_form .custom-file.w-75 label:first-child {
    display: none;
}


.training_tab ul.nav.nav-tabs {
    border-bottom: 1px solid #dee2e6 !important;
}

.training_tab a.nav-link {
    padding: 10px !important;
    font-weight: 400 !important;
    font-size: 12px;
}

.training_tab .tab-content p {
    font-size: 13px;
    color: #a5a5a5;
    width: 100%;
    text-align: justify;
    padding-top: .5em;
    padding-bottom: .1em;
}
.training_tab .tab-content ul li {
    list-style: none !important;
    font-size: 14px;
    color: #a5a5a5 !important;
    text-align: justify;
    padding-top: 0.5em;
    padding-bottom: .1em;
}
.training_tab p {
    list-style: none !important;
    color: #a5a5a5 !important;
}

.training_tab ul li {
    list-style: none !important;
    color: #a5a5a5 !important;
}
/* Multi step form css */

/*form styles*/
#msform {
    margin-top: 15px;
    overflow: hidden;
    position: relative;
    display: block;
    min-height: 235px;
    padding: 0px 20px;
}
#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-sizing: border-box;
    width: 95%;
    margin: 0 auto;

    /*stacking fieldsets above each other*/
    position: absolute;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#msform input, #msform textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    box-sizing: border-box;
    color: #2C3E50;
    font-size: 13px;
}

#msform label{
    font-weight: 600;
    font-size: 13px;
}
#msform .form-check label{
    font-weight: 400;
    color: #000;
}



#msform input:focus{
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #1e4a9a;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button {
    width: 100px;
    background: #1e4a9a;
    font-weight: bold;
    color: rgb(255, 255, 255);
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #1e4a9a;
}

#msform .action-button-previous {
    width: 100px;
    background: #1e4a9a;
    font-weight: bold;
    color: rgb(255, 255, 255);
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #1e4a9a;
}

/*form styles*/
#quizform {
    margin-top: 15px;
    overflow: hidden;
    position: relative;
    display: block;
    min-height: 235px;
    padding: 0px 20px;
}
#quizform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-sizing: border-box;
    width: 95%;
    margin: 0 auto;

    /*stacking fieldsets above each other*/
    position: absolute;
}

/*Hide all except first fieldset*/
#quizform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#quizform input, #quizform textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    box-sizing: border-box;
    color: #2C3E50;
    font-size: 13px;
}

#quizform label{
    font-weight: 600;
    font-size: 13px;
}
#quizform .form-check label{
    font-weight: 400;
    color: #000;
    cursor: pointer;
}

#quizform .form-check label.error {
    position: absolute;
    left: 2%;
    top: 80px;
    color: red;
}


#quizform input:focus{
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #1e4a9a;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#quizform .action-button {
    width: 100px;
    background: #1e4a9a;
    font-weight: bold;
    color: rgb(255, 255, 255);
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#quizform .action-button:hover, #quizform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #1e4a9a;
}

#quizform .action-button-previous {
    width: 100px;
    background: #1e4a9a;
    font-weight: bold;
    color: rgb(255, 255, 255);
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#quizform .action-button-previous:hover, #quizform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #1e4a9a;
}

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}



.dme_link {
    margin-top: 30px;
    text-align: center;
}
.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: #1e4a9a;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
    background: #C5C5F1;
    text-decoration: none;
}

.ans_txt i.wrong-ans {
    color: rgb(245, 0, 0) !important;
}

.ans_txt p {
    font-size: 12px !important;
    margin-bottom: 0px !important;
}

#form_one{
    display:none;
}
#form_two{
    display:none;
}
#form_three{
    display:none;
}
#form_four{
    display:none;
}
#form_five{
    display:none;
}
#form_six{
    display:none;
}

.mob_btn{
    display:none!important;
}


@media only screen and (max-width: 767px){
    .mob_btn{
        display:block!important;
    }
    .navbar .my-2.my-lg-0 {
        display: none;
    }
    .navbar-nav.mr-auto {
        padding-top: 15px;
    }
    nav.navbar {
        height: auto;
    }
    .doc_policies button {
        display: block;
        width: 100%;
        margin: 10px 0px !important;
    }
    .user_profile.modal.right  .modal-dialog {
        right: 0px;
        width: 310px !important;
        transform: translate3d(0%, 0, 0) !important;
        text-align: center;
    }
    .user_profile .row .col-md-3{
        text-align: center!important;
    }
    .main .table-responsive select.form-control {
        font-size: 13px;
        width: 100px;
    }
    section.login.container-fluid .col-md-7 {
        display: none;
    }
    .main .card.bg_one {
        background: #5473e8 0 0 no-repeat;
        margin-bottom: 15px;
    }
    .main .card.bg_three {
        background: #fbbf5d 0 0 no-repeat;
        margin-bottom: 15px;
    }
    .table_policy td button {
        width: 100%;
        margin-bottom: 5px;
    }
    .modal.right .modal-dialog {
        width: 305px !important;
    }
    section.dashboard_content {
        width: 100% !important;
    }
    .security_doc {
        text-align: left !important;
    }
    .security_doc button{
        margin-top: 5px;
    }
    .table_user button {
        width: 180px;
    }
    .user_btn button {
        float: left !important;
        width: 100%;
        margin-top: 15px;
    }
    .m-auto.rpt_incident {
        width: 100% !important;
    }
    .rpt_incident .col-md-3 button {
        float: left !important;
        width: 100%;
        margin-top: 15px;
    }
    .emp_log .col-md-2 .form-group {
        width: 100% !important;
        margin: 15px 0px !important;
    }
    div#menu1 {
        padding: 0px;
    }
    div#menu1 iframe {
        width: 100%;
        height: 200px;
    }
    .cnt_us {
        width: 100% !important;
    }
    .contact_card {
        padding: 45px 15px;
        border-radius: 15px;
    }
    .contact_us {
        width: 100% !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px){
    nav.navbar {
        height: auto;
    }
}

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}
.custom-control-input {
	position: relative;
    z-index: 99;
    width: 2rem;
    height: 2.25rem;
    margin: -14px 0px 0px 8px;
}
table .custom-control-input {
	position: relative;
    z-index: 99;
    width: 2rem;
    height: 2.25rem;
    margin: -14px 0px 0px -10px;
}
#download_csv{
	display:none;
}
#employee_form{
	width:100%;
}
#squarespaceModal .modal-dialog {
    max-width: 80%;
}
#myModaldocument .modal-dialog {
    max-width: 60%;
}
#squarespaceModal .modal-dialog table {
    width: 100%;
    margin-bottom: 0px;
}
.hide{
	display:none;
}

div#uinfoupdate ,div#change_password {
    margin: 20px 0;
}
div#uinfoupdate form, div#change_password form{
    border: 1px solid #dedede;
    padding: 20px;
    border-left: none;
    border-right: none;
}



/* New css 16-02-2021 */

.doc_policies a.btn {
    padding: 10px 15px;
    font-size: 13px;
}
div#squarespaceModal .modal-title {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
}

div#squarespaceModal .modal-header .close {
    font-size: 28px !important;
    font-weight: 400;
    position: absolute;
    right: 15px;
}

div#squarespaceModal .table_datac {
    font-size: 12px !important;
    padding-bottom: 15px;
}

div#squarespaceModal td.box_head h3 {
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0px;
    margin-bottom:0px;
}

#squarespaceModal .modal-dialog table th {
    padding: 15px 13px;
    font-size: 14px;
}

div#squarespaceModal .table.table-sm.doc_table td {
    vertical-align: middle;
}

div#squarespaceModal .modal-footer {
    display: none;
}

div#squarespaceModal .cf td {
    font-size: 13px;
    vertical-align: middle;
}

div#squarespaceModal .cf td button {
    font-size: 12px;
    margin-top: 5px;
}


table#employee_table tr td:nth-child(3) p {
    font-size: 13px !important;
    margin-bottom: 0px;
    line-height: 22px !important;
}

.custom-file-label {
    position: absolute !important;
    padding: 9px 10px !important;
    height: 40px;
    font-size: 0.8em;
    font-weight: 500;
}

.custom-file-label::after {
    height: auto;
    line-height: 2;
}

.custom-file {
    order: 2;
}


.custom-file p {
    display: block;
    font-size: 13px;
}

.bus_ass_modal .form-group {
    position: relative;
    margin-bottom: 20px;
    display: grid;
}

.bus_ass_modal .form-group>input {
    outline: none;
    order: 2;
    width: 100%;
    order: 2;
}

.bus_ass_modal .form-group>textarea{
    outline: none;
    order: 2;
}

.bus_ass_modal .form-group>label {
    position: relative;
    color: #757575;
    font-weight: 600;
    order: 1;
    padding-left: 0px;
    font-size: 0.8em;
}

.bus_ass_modal button.close {
    right: 15px;
    z-index: 1111;
}
.ui-datepicker td {
border: 0;
padding: 1px!important;
}

.bus_ass_modal .form-group>select{
    order:2;
}

.bus_ass_modal button.close span {
 font-size: 34px;
}
.cust_border{
    border: 1px solid #f2f2f2;
    box-sizing: border-box;
    padding: 50px 20px;
}
.risk_req h3{
    font-size: 16px;
    margin: 12px 0px;
    color: #1e4a9a;
    font-weight: bold;
}
form#send_email h6 {
    font-size: 13px;
    font-weight: 500;
}
form#send_email p {
    font-size: 13px;
}

div#content-model .modal-body {
    padding: 0px !important;
}

div#content-model .padding_ryt_none {
    padding-right: 0px;
    font-size: 13px;
    font-weight: 600;
    color: #757575;
}

div#content-model .row {
    padding: 10px 0px;
}
.always_sel{
    overflow: hidden;
}
.ass_ques {
    opacity: 0.6 !important;
    padding: 15px; 
    margin: 0 0 15px; 
}
.ass_contact {
    background-color: #277cd3;
    padding: 1px 60px;
    margin-top: 35px;
}
.table_policy td:nth-child(2) {
	width:150px;
}

label.error {
    color: red !important;
}
.animationload {
    background-color: #222;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    opacity: 0.9;
}


.osahanloading {
    animation: 1.5s linear 0s normal none infinite running osahanloading;
    background: #fed37f none repeat scroll 0 0;
    border-radius: 50px;
    height: 50px;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    position: absolute;
    top: 50%;
    width: 50px;
}
.osahanloading::after {
    animation: 1.5s linear 0s normal none infinite running osahanloading_after;
    border-color: #85d6de transparent;
    border-radius: 80px;
    border-style: solid;
    border-width: 10px;
    content: "";
    height: 80px;
    left: -15px;
    position: absolute;
    top: -15px;
    width: 80px;
}
@keyframes osahanloading {
0% {
    transform: rotate(0deg);
}
50% {
    background: #85d6de none repeat scroll 0 0;
    transform: rotate(180deg);
}
100% {
    transform: rotate(360deg);
}
}
.fnt_20{
	font-size:20px !important;
	font-weight:bold !important;
}

.fnt_15{
	font-size:15px;
}
.w3-green, .w3-hover-green:hover{
	background-color:#4CAF50!important;
	color:#fff!important;
}
.w3-light-grey, .w3-hover-light-grey:hover, .w3-light-gray, .w3-hover-light-gray:hover{  
  color: #000!important;
  background-color: #f1f1f1!important;
}
.practice_anchor {
	color : #1e4a9a;
}
.active_anchor{
	font-weight:bold;
}

.folder-tree-wrapper { background-color: #fff; width: 220px; min-height: 260px; padding: 20px; margin: 35px auto; border-radius: 3px; box-shadow: 1px 1px 1px 0 rgba(0,0,0,.11); }
.folder-tree { list-style: none; cursor: pointer; padding-left: 20px; }
.folder-tree li { margin-bottom: 10px; font-size: 16px; transition: all .4s ease; position: relative; }
.folder-tree li:hover {  }
.folder-tree li i { color: rgb(242, 176, 53); }
.folder-tree li ul { padding-left: 10px; padding-top: 8px; }
.folder-tree ul { display: none; position: relative; }
.folder-tree ul:before { position: absolute; content: ''; left: -10px; top: 0; width: 2px; height: 100%; background-color: transparent; border-left: dashed 1px #c2c2c2; border-bottom: dashed 1px #c2c2c2; }
.folder-tree li ul li { display: block; margin-bottom: 8px; }
.folder-tree .arrow { position: absolute; top: 4px; left: -14px; width: 8px; height: 8px; transition: all .4s ease; transform: rotate(-90deg); }
.folder-tree .arrow i { color: #595959; transition: all .4s ease; }
.folder-tree .arrow:hover i { color: #292929; }
.folder-tree li.expanded > ul { display: block; }
.folder-tree li.expanded > .arrow { transform: rotate(0deg); }
.mar_10{margin-bottom:10px;margin-top:10px;}
.reporting_divs{height:30px;width:36px;border:1px solid #ccc;margin-right:3px;float:left;padding:3px 5px  3px 5px;}
.folder-tree{max-width:550px;}
.black_color{color:#000;}
.font13{font-size: 13px !important;}

.main-menu > li {
  margin-bottom: 10px;
}

.main-menu .arrow {
  transition: transform 0.3s ease;
}

.menu-open > a .arrow i {
  transform: rotate(90deg); /* Rotate down when open */
}

.submenu {
  display: none;
}

.submenu li a {
  padding-left: 88px;
  white-space: nowrap;
}

.nav-tabs .nav-link {
    border-radius: 0;
}