/* common setting start */
@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i");
:root {
    
    --themeColor: #343a40;
    --blackColor: #111111;
    --linkColor: #002f9d;
    --whiteColor: #ffffff;
    --borderColor: #e3e0e0;

    --blueColor: #0083cf;
    --royalBlue: #007bff;
    --redColor: #e34747;
    --greenColor: #23a741;
    --yellowColor: #ffea00;
    --orangeColor: #ffb03d;

    --layoutFont:13px;
    --fontSize: 0.7rem;
    --fontWeight: 400;
    --lineHeight: 1.5;
    --formHeight: 32px;
    --borderRadius: 3px;
}
body{
    font-family: 'Roboto', sans-serif;
    font-size: var(--layoutFont);
    font-weight: var(--fontWeight);
    color: var(--blackColor);
    line-height: var(--lineHeight);
}
ul {
    padding: 0;
    margin: 0;
}
ul li {
    font-weight: var(--fontWeight);
    list-style: none;
}
a {
    color: var(--blackColor);
    font-weight: var(--fontWeight);
    text-decoration: none;
}
p {
    font-weight: var(--fontWeight);
    margin: 0;
}
label {
    margin: 0;
}
b {
    font-weight: 500;
}
.link {
    color: var(--linkColor);
}
h4 {
    font-size: 15px;
    margin: 7px 0 6px;
}
h6 {
    font-size: 14px;
    margin: 0 0 7px;
}
.container {
    max-width: 1240px;
}
/* form control */
.form-control {
    width: 100%;
    height: var(--formHeight);
    font-size: var(--fontSize);
    padding: 2px 10px;
    font-weight: 500;
    color: var(--blackColor);
    border: 1px solid #cbcaca;
    border-radius: var(--borderRadius);
    outline: none;
    box-shadow: none;
}
.form-control:focus {
    color: var(--blackColor);
    border-color: var(--blueColor);
}
.form-select {
    font-size: var(--fontSize);
    background-position: right .3rem center;
    background-size: 12px 12px;
}
textarea {
    width: 100%;
    height: var(--formHeight);
    font-size: 12px;
    padding: 6px 10px 5px;
    border: 1px solid #cbcaca;
    border-radius: var(--borderRadius);
    resize: none;
    outline: none;
    box-shadow: none;
}
textarea.form-control {
    padding-top: 5px;
}
.input-group-text {
    height: var(--formHeight);
    background-color: #e7e7e7;
}
.input-group-text i {
    font-size: 14px;
    color: #444;
}
.form-control:disabled, .form-control[readonly] {
    background-color: #efefef;
    pointer-events: none;
}
.overflow-inherit {
    overflow-x: inherit;
}
/* form control */

/* select2 */
.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da;
    box-shadow: none;
    font-size: var(--fontSize);
    font-weight: 500;
    padding: 3px 2px;
    height: var(--formHeight);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--blackColor);
    line-height: 30px;
}
.select2-container--default .select2-selection--single:focus {
    border: 1px solid #8a8a8d;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 30px;
    right: 2px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    font-size: var(--fontSize);
    border: 1px solid #ced4da;
    box-shadow: none;
}
.select2-container--default .select2-results__option {
    padding: 3px 12px;
}
/* multi select2 */
.select2-container--default .select2-selection--multiple {
    border: 1px solid #ced4da;
    min-height: var(--formHeight);
    max-height: var(--formHeight);
    font-size: var(--fontSize);
    line-height: 14px;
    overflow-y: auto;
}
.select2-container--default .select2-selection--multiple:focus {
    border: 1px solid #8a8a8d;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    font-size: 11px;
    padding: 2px 5px;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
    max-height: 28px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--blueColor);
    border: 1px solid var(--blueColor);
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: var(--whiteColor);
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li:first-child.select2-search.select2-search--inline {
    margin-left: -6px;
    padding-left: 10px;
}
/* upload */
.custom-file {
    height: var(--formHeight);
}
.custom-file-label {
    font-size: 12px;
    height: var(--formHeight);
    padding: 7px 10px;
    margin-bottom: 0;
}
.custom-file-label::after {
    font-size: var(--fontSize);
    height: var(--formHeight);
    padding: 7px 10px;
}
/* calender */
.ui-widget.ui-widget-content {
    z-index: 9999!important;
}
.ui-datepicker .ui-datepicker-title select {
    border: 1px solid #bfbfbf;
    border-radius: 3px;
    padding: 1px;
}
.ui-datepicker td a {
    text-align: center;
}
/* common setting end */ 

/* button start */
.btn {
    color: var(--whiteColor);
    display: inline-block;
    font-size: 12px;
    line-height: 12px;
    background-color: var(--blueColor);
    border: 1px solid var(--blueColor);
    padding: 9px 10px;
    border-radius: 3px;
}
.button {
    color: var(--whiteColor);
    display: inline-block;
    font-size: 12px;
    line-height: 12px;
    background-color: var(--royalBlue);
    border: 1px solid var(--royalBlue);
    padding: 9px 10px;
    border-radius: 3px;
}
.button i {
    padding-right: 3px;
}
.button:hover {
    opacity: .9;
    color: var(--whiteColor);
}
.button.red {
    background-color: var(--redColor);
    border: 1px solid var(--redColor);
}
.button.export {
    background-color: #047ac4;
    border: 1px solid #047ac4;
}
.button.edit {
    background-color: #6868f9;
    border: 1px solid #6868f9;
}
.button.view {
    background-color: #16a085;
    border: 1px solid #16a085;
}
.button.delete {
    background-color: #df2d34;
    border: 1px solid #df2d34;
}
.button.add {
    background-color: #047ac4;
    border: 1px solid #047ac4;
}
.button.closed {
    background-color: #df2d34;
    border: 1px solid #df2d34;
}
.button.cancel {
    background-color: #df2d34;
    border: 1px solid #df2d34;
}
.button.back {
    background-color: #047ac4;
    border: 1px solid #047ac4;
}
.button.active {
    background-color: var(--greenColor);
    border: 1px solid var(--greenColor);
}
.button.inactive {
    background-color: var(--redColor);
    border: 1px solid var(--redColor);
}
/* button end */

/* status layout start */
.status {
    display: block;
    width: fit-content;
    text-align: center;
    padding: 2px 8px;
    color: var(--whiteColor);
    border-radius: 20px;
}
.status.active {
    background-color: var(--greenColor);
}
.status.paid {
    background-color: var(--greenColor);
}
.status.pending {
    background-color:#ffc107;
}
.status.inactive {
    background-color: var(--redColor);
}
.status.cancelled {
    background-color: var(--redColor);
}
.status.failed {
    background-color: var(--redColor);
}
/* status layout end */

/* common width start */
.width60 {
    width: 60px;
}
.width80 {
    width: 80px;
}
.width100 {
    width: 100px;
}
/* common width end */

/* common scroll start */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background-color: #f7f7f7;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #aaa9a9;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 4px;
    background-color: #f7f7f7;
}
/* common scroll end */

/* layout setting start */
.layout-navbar-fixed .wrapper .content-wrapper {
    margin-top: 44px;
    max-height: calc(100% - 79.1px);
}
.content-wrapper {
    background-color: #f8f9fa;
}
.content-wrapper > .content {
    padding: 0 0.2rem;
}
/* header start */
.navbar-dark {
    background-color: var(--themeColor);
    border-color: var(--borderColor);
}
.main-header.navbar {
    padding: 0.11rem 0.5rem;
}
.main-header .nav-link {
    height: auto;
}
/* brand logo start */
.brand-logo .brand-link {
    padding: 9px 8px 3px;
}
.brand-logo .brand-image {
    max-height: 30px;
    border-radius: 3px;
}
/* brand logo end */

/* toggle button start */
.toggle-button .nav-link {
    padding-left: 7px !important;
}
.toggle-button li a i {
    font-size: 16px;
    color: var(--blackColor);
    padding-top: 4px;
}
/* toggle button end */

/* navbar start */
.main-header .navbar-nav .nav-link .fa-user {
    font-size: 12px;
    float: left;
    margin-top: -2px;
    margin-right: 5px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 100px;
    color: #fff;
    background-color: #047ac4;
}
.main-header .navbar-nav .dropdown-item {
    font-size: 13px;
}
.main-header .navbar-nav .dropdown-item i {
    padding-right: 2px;
}
/* navbar end */

/* user menu start */
.user-menu-toggle {
    position: relative;
    padding-top: 5px;
}
.user-menu-toggle .nav-link {
    display: flex;
    gap: 4px;
    color: var(--blackColor) !important;
    padding: .1rem 1rem;
    padding-right: 5px !important;
}
.user-menu-toggle .nav-link i {
    font-size: 20px;
    color: #047ac4;
}
.user-menu-toggle .nav-link span {
    font-weight: 500;
    text-transform: capitalize;
}
.user-menu:before {
    position: absolute;
    top: -11px;
    right: 0px;
    content: "";
    display: block;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 11px solid #eaeaea;
}
.user-menu {
    position: absolute;
    top: 37px;
    right: 3px;
    width: 240px;
    padding: 10px;
    background: var(--whiteColor);
    border-radius: 0px 0px 3px 3px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all .5s ease;
    display: none;
}
.user-menu.active {
    display: block;
}
.user-menu .profile {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--grayTest);
    padding: 5px 0;
}
.user-menu .profile .icon i {
    font-size: 30px;
    color: var(--blueColor);
}
.user-menu .profile .name h4 {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    margin: 0;
    text-transform: capitalize;
}
.user-menu .profile .name p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
}
.user-menu .action-button {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    padding-top: 5px;
}
/* user menu end */
/* header end */

/* footer start */
.main-footer {
    background-color: var(--themeColor);
    border-top: 1px solid var(--borderColor);
    padding: 9px 0 6px;
    text-align: right;
}
.main-footer p {
    font-size: 12px;
    color: var(--whiteColor);
    margin-bottom: 0;
    padding-right: 7px;
}
/* footer end */

/* siderbar start */
.os-theme-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
    background: var(--borderColor);
}
.layout-navbar-fixed .wrapper .sidebar-dark-primary .brand-link:not([class*="navbar"]) {
    background-color: var(--themeColor);
    border-bottom: 1px solid var(--borderColor);
    border-right: 1px solid var(--borderColor);
    height: auto;
}
[class*=sidebar-dark-] .sidebar a {
    color: var(--whiteColor) !important;
}
[class*="sidebar-dark-"] {
    background-color: var(--themeColor);
}
.main-sidebar .nav-pills .nav-link:hover {
    color: var(--whiteColor) !important;
}
.main-sidebar .nav-pills .nav-link:not(.active):hover {
    color: var(--whiteColor);
}
[class*="sidebar-dark-"] .nav-treeview > .nav-item > .nav-link {
    color: var(--whiteColor);
}
.main-sidebar .nav-sidebar .has-treeview {
    margin-bottom: 7px;
}
.nav-sidebar .nav-link p {
    font-weight: var(--fontWeight);
}
.main-sidebar .nav-sidebar .nav-item .nav-link.active {
    color: var(--whiteColor);
    background-color: var(--themeColor);
}
.nav-sidebar .menu-is-opening>.nav-link i.right {
    transform: rotate(90deg);
}
.nav-sidebar .nav-item>.nav-link {
    margin-bottom: .4rem;
}
/* siderbar end */
/* layout setting end */

/* breadcrumbs start */
.breadcrumbs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 36px;
    padding: 5px 0 4px;
}
.breadcrumbs h2 {
    font-size: 15px;
    margin-bottom: 0;
}
.breadcrumbs .button {
    padding: 7px 10px;
}
/* breadcrumbs end */

/* card layout start */
.card-layout {
    border-radius: 6px;
}
.card-layout.center {
    margin: 0 27rem;
}
.card-layout .card-head {
    display: flex;
    justify-content: space-between;
    background-color: var(--blueColor);
    border: 1px solid var(--blueColor);
    padding: 4px 10px;
    border-radius: 6px 6px 0 0;
}
.card-layout .card-head .button {
    padding: 4px 6px;
    margin: -2px -6px;
}
.card-layout .card-head h3 {
    font-size: 12px;
    color: var(--whiteColor);
    line-height: var(--lineHeight);
    letter-spacing: .3px;
    margin-bottom: 0;
}
.card-layout .card-head a {
    font-size: 12px;
    color: var(--whiteColor);
    font-weight: 500;
    line-height: var(--lineHeight);
    letter-spacing: .3px;
    margin-bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.card-layout .card-body {
    background-color: var(--whiteColor);
    padding: 15px 10px 10px;
    border: 1px solid #d9d9d9;
    border-top: 0;
    border-radius: 0 0 6px 6px;
}
.card-layout.notitle .card-body {
    padding: 4px 6px 10px;
    border-top: 1px solid #d9d9d9;
    border-radius: 6px;
}
/* card layout end */

/* form layout start */
.form-layout.card-body {
    padding: 20px 12px 0;
}
.form-layout .card-body {
    padding: 15px 10px 10px;
}
.form-layout.panel-body {
    padding: 15px 12px 0;
}
.form-layout .card-body.center .row {
    display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.form-layout .form-group {
    position: relative;
    margin-bottom: 15px;
}
.form-layout .form-group label {
    position: absolute;
    top: -6px;
    left: 10px;
    z-index: 9;
    font-size: 11px;
    line-height: 11px;
    color: #111111;
    font-weight: 400;
    padding: 0 1px;
    background-color: var(--whiteColor);
    margin-bottom: 0;
}
.form-layout .form-group label sup {
    font-size: 13px;
    top: 0;
    color: #ff131c;
}
.form-layout .form-group .fa-circle-info {
    color: var(--redColor);
    padding-left: 3px; 
    cursor: pointer;
}
.form-layout .action-button {
    display: flex;
    gap: 4px;
}
/* form layout end */

/* modal popup layout start */
.modal-backdrop.show {
    opacity: 0.6;
}
.modal-popup-layout .modal-dialog {
    max-width: 30%;
    margin: .7rem auto;
}
.modal-popup-layout .modal-dialog.short {
    max-width: 40%;
}
.modal-popup-layout .modal-dialog.middle {
    max-width: 60%;
}
.modal-popup-layout .modal-dialog.full {
    max-width: 90%;
}
.modal-popup-layout .modal-content {
    border: none;
    border-bottom: 4px solid var(--blueColor);
    border-radius: 8px;
}
.modal-popup-layout .modal-header {
    padding: 5px 12px;
    background-color: var(--blueColor);
    border-radius: 5px 5px 0px 0px;
    border-bottom: 0;
}
.modal-popup-layout .modal-header h4 { 
    font-size: 13px;
    color: var(--whiteColor);
    font-weight: var(--fontWeight);
    padding: 4px 0 0;
    margin: 0;
}
.modal-popup-layout .modal-header h4 i {
    padding-right: 4px;
}
.modal-popup-layout .modal-header button {
    display: flex;
    justify-content: center;
    width: 22px;
    height: 22px;
    text-align: center;
    align-items: center;
    margin-right: -2px;
    background-color: #ffffff;
    border: 1px solid #787878;
    border-radius: 30px;
}
.modal-popup-layout .modal-header button:hover {
    opacity: .9;
}
.modal-popup-layout .modal-body {
    padding: 16px 12px 0;
}
.modal-popup-layout .modal-body object {
    width: 100%;
    height: 100%;
}
.modal-popup-layout .modal-body .select2-container {
	width: 100%!important;
}
.modal-popup-layout .modal-footer {
    display: flex;
    justify-content: end;
    gap: 6px;
    padding: 6px 12px;
    border-top: 1px solid #d9dadb;
}
.modal-popup-layout .modal-footer .button {
    padding: 8px 10px;
    margin: 0;
}
/* modal popup layout end */

/* table layout start */
.table-layout {
    background-color: var(--whiteColor);
}
.table-layout.top-border {
    border-top: 1px solid #e9e9e9;
    padding: 4px 0 0;
}
.table-layout .table {
    margin-bottom: 0px;
}
.table-layout .table thead tr th {
    font-size: var(--fontSize);
    font-weight: 500;
    color: var(--whiteColor);
    padding: 4px 7px;
    background-color: var(--blueColor);
    border: 1px solid #548ce0;
    vertical-align: middle;
    white-space: nowrap;
}
.table-layout .table tbody tr td {
    font-size: var(--fontSize);
    color: var(--blackColor);
    padding: 5px 7px;
    vertical-align: middle;
}
.table-layout .table tbody tr td img {
    width: 30px;
}
.table-layout .table tbody .action-button {
    display: flex;
    gap: 3px;
}
.table-layout .table tbody .action-button .button {
    padding: 5px 7px;
    text-align: center;
}
.table-layout .table tbody .action-buttons {
    display: flex;
    gap: 3px;
}
.table-layout .table tbody .action-buttons .button {
    width: 22px;
    height: 22px;
    line-height: 20px;
    text-align: center;
    padding: 0;
    color: var(--whiteColor);
    border-radius: 4px;
}
.table-layout .table tbody .action-buttons i {
    padding-right: 0;
}
/* table layout end */

/* datatable layout start */
.datatable-layout {
    position: relative;
}
.datatable-layout .table {
    min-width: 100% !important;
}
.datatable-layout .export-buttons {
    position: absolute;
    top: 4px;
    left: 11rem;
    z-index: 9;
}
.datatable-layout .export-buttons .button {
    padding: 7px 10px;
}
.datatable-layout .dt-scroll-headInner {
    min-width: 100% !important;
}
table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order, 
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order {
    right: 1px;
}
.datatable-layout.min-height .dt-scroll-body {
    min-height: 19.5rem;
}
.datatable-layout .top {
    padding-bottom: 3px;
}
.datatable-layout .dt-length {
    float: left;
    margin-right: 10px;
}
.datatable-layout .dt-length select {
    font-size: var(--fontSize);
    height: 26px;
    outline: none;
    box-shadow: none;
}
.datatable-layout .dt-type-numeric {
    text-align: left !important;
}
.datatable-layout .dt-buttons button {
    padding: 3px 10px;
    margin: 1px 0 0;
}
.datatable-layout .dt-search {
    font-size: 12px;
}
.datatable-layout .dt-search input {
    height: 28px;
}
.datatable-layout .bottom {
    display: flex;
    justify-content: space-between;
}
.datatable-layout .dt-info {
    font-size: 12px;
    font-weight: 500;
    padding-top: .4em !important;
}
.datatable-layout .dt-paging {
    padding-top: 4px;
}
.datatable-layout .page-link {
    font-size: var(--fontSize);
    padding: .25rem .75rem;
    font-weight: 500;
    line-height: 16px;
}
.datatable-layout .page-link:focus {
    box-shadow: none;
}
.datatable-layout .page-item.disabled .page-link, .page-link.previous, 
.page-link.next, .page-link.first, .page-link.last {
    font-size: 16px;
}
/* datatable layout end */

/* login start */
.login {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/login-background2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.login .login-wrap {
    width: 375px;
    background-color: #fffffff2;
    box-shadow: rgb(0 0 0 / 24%) 0px 5px 15px;
    padding: 40px 30px;
    border-radius: 15px;
}
.login .login-wrap .login-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}
.login .login-wrap .login-header h3 {
    font-size: 21px;
    color: #222222;
    font-weight: 600;
    margin-bottom: 0;
}
.login .login-wrap .login-header img {
    width: 150px;
    border-radius: 2px;
}
.login .login-wrap .login-form {
    padding: 20px 0 0;
}
.login .login-wrap .login-form .form-group {
    position: relative;
    margin-bottom: 25px;
}
.login .login-wrap .login-form .form-group label {
    position: absolute;
    top: -5px;
    left: 12px;
    z-index: 999;
    font-size: 12px;
    line-height: 11px;
    font-weight: 500;
    padding: 0 4px;
    background-color: #fff;
}
.login .login-wrap .login-form .form-group input {
    height: 36px;
    padding: 12px;
    border: 1px solid #bec0dd;
}
.login .login-wrap .login-form .form-group input:focus {
    border: 1px solid #666666;
}
.login .login-wrap .login-button {
    text-align: right;
}
.login .login-wrap .login-button .btn-login {
    font-size: 13px;
    color: #fff;
    padding: 6px 20px;
    border-radius: 2px;
    background-color: #336aea;
    border: 1px solid #336aea;
}
.login .login-wrap .login-button .btn-login:hover {
    opacity: .9;
}
.login .login-wrap .home {
    border-top: 1px solid #bec0dd;
    margin-top: 20px;
    padding-top: 10px;
}
.login .login-wrap .home p {
    font-size: 13px;
    margin-bottom: 0px;
}
.login .login-wrap .home a {
    font-size: 13px;
    color: #0850f7;
    text-decoration: underline;
}
/* login end */

/* dashboard start */
.small-box h3 {
    font-size: 2rem !important;
    margin: 0 0 5px;
}
.small-box p {
    font-size: 0.9rem;
}
.small-box>.small-box-footer {
    padding: 2px 0;
}
/* dashboard end */

/* trainer profile list start */
.trainer-profile-list .export-buttons .disabled-link {
    opacity: .6;
    pointer-events: none;
    cursor: not-allowed;
    text-decoration: none;
}
/* trainer profile list end */

/* trainer profile details start */
.trainer-profile-details .table tr th {
    font-size: var(--fontSize);
    font-weight: 500;
    padding: 8px 7px;
    vertical-align: middle;
    white-space: nowrap;
}
/* trainer profile details end */

/* assessment test result details start */
.assessment-test-result-details p {
    line-height: 24px;
    border: 1px solid #dddddd;
    padding: 6px 10px 4px;
    border-radius: 3px;
    margin: 0 0 8px;
    text-align: center;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.assessment-test-result-details p span {
    font-weight: 600;
    padding-left: 5px;
}
.assessment-test-result-details .correct i {
    font-size: 16px;
    color: var(--greenColor);
}
.assessment-test-result-details .incorrect i {
    font-size: 16px;
    color: var(--redColor);
}
/* assessment test result details end */

/* reports print start */
.reports-print .container {
    max-width: 1080px;
}
/* banner start */
.reports-print .banner {
    width: 100%;
    height: 400px;
    background-image: url(../images/print-background.jpg);
    background-size: cover;
}
.reports-print .banner {
    padding: 4rem 0 0;
    margin: 0 0 2px;
}
.reports-print .banner img {
    width: 210px;
    margin: 0 0 2rem;
}
.reports-print .banner h2 {
    font-size: 36px;
    color: var(--linkColor);
}
.reports-print .banner h3 {
    font-size: 26px;
    line-height: 34px;
    color: #002f9d;
}
.reports-print .banner hr {
    margin: 8px 0;
    border: 0;
    border-top: 1px solid #8b8b8b;
    width: 25rem;
}
.reports-print .banner h4 {
    font-size: 26px;
    font-weight: 500;
}
.reports-print .banner p {
    font-size: 14px;
    line-height: 24px;
}
/* banner end */

/* common card start */
.reports-print .card-layout {
    margin: 0 0 2rem;
}
.reports-print .card-layout .card-head {
    padding: 4px 10px;
}
.reports-print .card-layout .card-head h3 {
    font-size: 16px;
}
.reports-print .card-layout .card-body {
    padding: 10px;
}
.reports-print .card-layout .card-body h2 {
    font-size: 16px;
    margin: 0 0 7px;
}
.reports-print .card-layout .card-body h3 {
    font-size: 16px;
    margin: 0 0 5px;
}
.reports-print .card-layout .card-body p {
    margin: 0 0 10px;
}
.reports-print .card-layout .card-body p:last-child {
    margin-bottom: 0;
}
.reports-print .card-layout .card-body ul {
    margin: 0 0 10px;
}
.reports-print .card-layout .card-body ul li {
    margin: 0 0 7px;

}
.reports-print .card-layout .card-body ul li:last-child {
    margin: 0;
}
/* common card end */

/* trainer feedback start */
.reports-print .card-layout .card-body .trainer-feedback {
    background-color: #f3f3f3;
    border: 1px solid #ebebeb;
    padding: 15px 15px 5px;
    margin: 1rem 0 0;
    border-radius: 5px;
}
.reports-print .card-layout .card-body .trainer-feedback p {
    margin: 0 0 5px;
}
/* trainer feedback end */

/* customer feedbacks start */
.reports-print .customer-feedbacks h3 {
    margin: 0 0 10px !important;
}
.reports-print .customer-feedbacks ul li {
    border: 1px solid #23a741;
    color: #00791c;
    border-radius: 3px;
    padding: 3px 7px;
}
.reports-print .customer-feedbacks ul li {
    margin: 0 0 10px !important;
}
/* customer feedbacks end */

/* trainer profile start */
.reports-print .trainer-profile {
    display: flex;
}
.reports-print .trainer-profile h3 {
    font-size: 17px !important;
    font-weight: 700;
    margin: 0 0 8px !important;
}
.reports-print .trainer-profile hr {
    margin: 0 0 10px;
    border-top: 1px solid #7c7a7a;
}
/* left side start */
.reports-print .trainer-profile .left-side {
    width: 75%;
}
/* summary education start */
.reports-print .trainer-profile .left-side .summary-education {
    display: flex;
    gap: 5px;
}
.reports-print .trainer-profile .left-side .summary {
    width: 60%;
}
.reports-print .trainer-profile .left-side .summary p {
    padding: 0 0 7px;
}
.reports-print .trainer-profile .left-side .education {
    width: 40%;
}
.reports-print .trainer-profile .left-side .education ul li {
    line-height: 15px;
    margin: 0 0 10px !important;
}
.reports-print .trainer-profile .left-side .education ul li i {
    float: left;
    font-size: 18px;
    color: #444444;
    margin: -2px 5px 0 0;
}
/* summary education end */

/* experiences projects start */
.reports-print .trainer-profile .left-side .experiences-projects {
    display: flex;
    gap: 20px;
}
.reports-print .trainer-profile .left-side .experiences {
    width: 60%;
}
.reports-print .trainer-profile .left-side .projects {
    width: 40%;
}
.reports-print .trainer-profile .left-side .project-list {
    margin: 0 0 10px;
    padding: 0 0 10px;
    border-bottom: 1px solid #e7e7e7;
}
.reports-print .trainer-profile .left-side .project-list:last-child {
    border-bottom: 0;
}
.reports-print .trainer-profile .left-side .project-list h5 {
    font-size: 14px;
}
.reports-print .trainer-profile .left-side .project-list p {
    margin: 0 0 4px;
    line-height: 16px;
}
/* experiences projects end */

/* experiences start */
.reports-print .trainer-profile .left-side .experiences ul li {
    line-height: 24px;
    margin: 0 0 15px !important;
}
.reports-print .trainer-profile .left-side .experiences ul li i {
    float: left;
    font-size: 18px;
    color: #444444;
    margin: 2px 5px 0 0;
}
/* experiences end */
/* left side end */

/* right side start */
.reports-print .trainer-profile .right-side {
    width: 25%;
}
.reports-print .trainer-profile .right-side .profile-image {
    text-align: center;
    margin: 2px 0 20px;
}
.reports-print .trainer-profile .right-side .profile-image img {
    width: 82%;
    padding: 7px;
    background-color: #f8f4f3;
    border: 1px solid #ebe4e4;
    border-radius: 100%;
}
.reports-print .trainer-profile .right-side {
    padding: 0 15px;
    border-left: 15px solid transparent;
    border-image: url(../images/profile-border.png) 10 stretch;
}
.reports-print .trainer-profile .right-side .profile-list {
    margin: 0 0 15px;
    padding: 0 0 10px;
    border-bottom: 1px solid #e7e7e7;
}
.reports-print .trainer-profile .right-side .profile-list:last-child {
    border-bottom: 0;
}
.reports-print .trainer-profile .right-side .profile-list h5 {
    font-size: 16px !important;
    font-weight: 700;
    margin: 0 0 12px !important;
}
.reports-print .trainer-profile .right-side .profile-list ul li i {
    float: left;
    font-size: 18px;
    color: #444444;
    margin: 0px 5px 0 0;   
}
/* right side end */

/* accomplishments start */
.reports-print .trainer-profile .left-side .accomplishments ul li {
    line-height: 24px;
    margin: 0 !important;
}
.reports-print .trainer-profile .left-side .accomplishments ul li i {
    float: left;
    font-size: 18px;
    color: #444444;
    margin: 2px 5px 0 0;
}
/* accomplishments end */
/* trainer profile end */

/* table of contents start */
.reports-print .table-contents h2 {
    margin: 0 0 10px !important;
}
.reports-print .table-contents .table-content-list {
    margin: 0 0 10px;
    border-bottom: 1px solid #dddddd;
}
.reports-print .table-contents .table-content-list:last-child {
    margin: 0;
    border-bottom: none;
}
.reports-print .table-contents .table-content-list:last-child ul {
    margin: 0;
}
/* table of contents end */
/* reports print end */