/*@font-face {
    font-family: 'ubuntu';
    src: url('../fonts/Ubuntu-Regular.ttf');
}

@font-face {
    font-family: 'ubuntu_medium';
    src: url('../fonts/Ubuntu-Medium.ttf');
}*/

body {
    background-color: #f8f8f8;
    height: 100vh;
    background-image: none;
    font-size: 14px;
    padding-top: 0;
    font-family: 'ubuntu';
    -webkit-font-smoothing: antialiased !important;
}

* {
    color: #767676;
    font-family: 'ubuntu';
    vertical-align: top;
    letter-spacing: -0.45px;
    box-sizing: border-box !important;
    -webkit-font-smoothing: antialiased !important;
}

img {
    vertical-align: top;
}

input:focus {
    border: 1px solid #FBAE3D !important;
}

textarea:focus {
    border: 1px solid #FBAE3D !important;
}

a:hover {
    text-decoration: none;
    color: #767676;
}

/*#region Action box*/
.action_box.active .box_body {
    border: 2px solid #FBAE3D;
}

.action_box.active .ic_box_arrow {
    transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}
/*#endregion*/

/*#region Shortcut box */
.shortcut_wrapper {
    margin-top: 12px;
    font-size: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #E8E8E8;
}

.shortcut_box {
    color: #001f2599;
    font-family: 'ubuntu_medium';
    line-height: 18px;
    padding: 8px 8px;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    -webkit-font-smoothing: antialiased !important;
}

    .shortcut_box.active {
        color: #001f25;
        background: #001f250a;
    }
/*#endregion*/

/*#region Layout*/
/*#region Left box*/
.left_box {
    position: fixed;
    left: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: 0px 6px 24px #0000000B;
    padding: 32px 40px 0px;
    overflow-y: auto;
    transition: all .5s;
    z-index: 2;
}

    .left_box.active {
        left: 0px;
    }

.left_navigation_content {
    right: 0px;
    width: max-content;
}
/*#endregion*/

/*#region Right box*/
.right_box {
    position: fixed;
    right: 0px;
    top: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    padding: 32px 32px 0px;
    transition: all .5s;
    z-index: 2;
    box-shadow: none;
}

    .right_box.active {
        right: -300px;
        box-shadow: 0px 6px 24px #0000000B;
    }
/*#endregion*/

/*#region Middle box*/
.middle_box {
    margin: 0 0 0 300px;
    width: calc(100% - 600px);
    display: block;
    padding: 40px 34px 100px 34px;
    transition: all .5s;
}

    .middle_box.has_right_box {
        width: calc(100% - 300px);
        padding: 40px 60px 100px 34px;
    }
/*#endregion*/

/*#region Country dropdown*/
.dropdown_wrapper {
    position: relative;
    width: 50%;
}

.dropdown_country_wrapper {
    cursor: pointer;
    background: #eeeeee;
    border-radius: 5px;
    display: inline-block;
    padding: 8px 16px;
    float: right;
    line-height: 16px;
}

    .dropdown_country_wrapper::after {
        border-left: 3px solid transparent;
        border-right: 3px solid transparent;
        border-top: 3px solid #001F25;
        margin: 7px 0 0 24px;
        vertical-align: top;
    }

.dropdown_country {
    color: #001F25;
    font-size: 14px;
    font-family: 'ubuntu_medium';
    display: inline-block;
    -webkit-font-smoothing: antialiased !important;
}

.dropdown_country_title_wrapper {
    margin-bottom: 12px;
}

.ic_dropdown_country {
    display: inline-block;
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

.dropdown-menu {
    background: #FFFFFF;
    box-shadow: 0px 6px 24px #00000029;
    border-radius: 8px;
    border: 0 !important;
    margin: 0 !important;
    padding: 24px 24px;
}

.dropdown_country_menu_title {
    font-size: 15px;
    color: #001F25;
    font-family: 'ubuntu_medium';
    display: inline-block;
    line-height: 16px;
    -webkit-font-smoothing: antialiased !important;
}

.dropdown_country_divider {
    border: 1px solid #707070;
    opacity: 0.1;
    width: 100%;
    margin-bottom: 18px;
}

.dropdown_country_scroll_wrapper {
    overflow-y: auto;
    max-height: 150px;
}

.dropdown_country_scroll_body {
    min-height: auto !important;
    font-size: 0;
    margin-bottom: 12px;
    padding-left: 32px;
}

.dropdown_country_checkbox {
    width: 20px;
    height: 20px;
}
/*#endregion*/
/*#endregion*/

.custom-control-label {
    font-size: 14px;
    line-height: 20px;
}

.custom-checkbox .custom-control-label::before {
    margin: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #e5e8e9;
    border: 0;
    top: 0;
    left: -32px;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
}

.custom-checkbox .custom-control-label::after {
    margin: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #e5e8e9;
    border: 0;
    top: 0;
    left: -32px;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    outline: none !important;
    box-shadow: none !important;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #FBAE3D;
    border-color: #FBAE3D;
}

.custom-checkbox .course_table_checkbox_label::before {
    left: 0;
}

.custom-checkbox .course_table_checkbox_label::after {
    left: 0;
}

.page_title {
    color: #001F25;
    font-size: 24px;
    font-family: 'ubuntu_medium';
    -webkit-font-smoothing: antialiased !important;
}

.dashboard_dropdown_wrapper {
    margin-bottom: 40px;
}

/*#region Custom Pagination*/
/*.course_table_pagination_body {
    font-size: 0;
    margin: auto;
    display: block;
    text-align: center;
}

.course_table_pagination_box {
    border: 1px solid #ECF0F5;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    line-height: 16px;
    padding: 12px 16px;
    font-family: 'ubuntu_medium';
    color: #001f2580 !important;
    margin-right: 8px;
    display: inline-block;
    -webkit-font-smoothing: antialiased !important;
}

    .course_table_pagination_box.active {
        color: #001f25 !important;
    }

    .course_table_pagination_box:last-child {
        margin-right: 0;
    }

.course_table_pagination_arrow {
    display: inline-block;
    margin-top: 5px;
}

.course_table_pagination_arrow_left {
    border-top: 5px solid transparent;
    border-right: 5px solid #b5b6c4;
    border-bottom: 5px solid transparent;
}

.course_table_pagination_arrow_right {
    border-top: 5px solid transparent;
    border-left: 5px solid #b5b6c4;
    border-bottom: 5px solid transparent;
}

.course_table_pagination_wrapper {
    margin-top: 32px;
    position: relative;
}*/

.page_limit_selected {
    font-size: 15px;
    line-height: 22px;
    font-family: 'ubuntu_medium';
    color: #001f2566;
    display: inline-block;
    -webkit-font-smoothing: antialiased !important;
}
/*#endregion*/

.modal-dialog-full {
    max-width: none;
}

.modal-dialog-update-employee-info {
    width: 700px;
    height: 500px;
}

.model-dialog-functional {
    width: 700px;
    height: 500px;
}

.modal-dialog-confirm {
    width: 600px;
    height: 300px;
    top: 25%;
}

.modal-dialog-confirm-empty {
    max-width: calc(100vw - 300px);
    height: 500px;
}

table.dataTable > thead .sorting:before,
table.dataTable > thead .sorting_asc:before,
table.dataTable > thead .sorting_desc:before,
table.dataTable > thead .sorting_asc_disabled:before,
table.dataTable > thead .sorting_desc_disabled:before {
    content: "\25B4";
}

table.dataTable > thead .sorting:after,
table.dataTable > thead .sorting_asc:after,
table.dataTable > thead .sorting_desc:after,
table.dataTable > thead .sorting_asc_disabled:after,
table.dataTable > thead .sorting_desc_disabled:after {
    content: "\25BE";
}

.select2.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    font-size: 15px;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    height: auto;
}

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #001F25;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border-color: #000000 transparent transparent transparent;
    }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #000000 transparent;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: auto;
    position: absolute;
    top: 50%;
    right: 6px;
    width: 20px;
}

.select2-dropdown {
    border: 1px solid #E8E8E8;
    font-size: 15px;
}

.select2-search--dropdown .select2-search__field {
    color: #001F25;
    outline: none !important;
}

.select2-results__option {
    color: #001F25;
}

.form-control {
    height: auto;
}

    .form-control:focus {
        color: #001F25;
        border-color: #e8e8e8;
        outline: 0;
        background-color: #fff;
        box-shadow: none;
    }

.bootstrap-tagsinput {
    font-size: 14px;
    color: #001F25;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    padding: 8px 8px;
    line-height: 32px;
    font-family: 'ubuntu_medium';
    outline: none;
    width: 100%;
    -webkit-font-smoothing: antialiased !important;
}

    .bootstrap-tagsinput .badge {
        font-size: 14px;
        color: #001F25;
        background: #e8e8e8;
        border-radius: 4px;
        padding: 8px 8px;
        line-height: 16px;
        outline: none;
        margin: 0 8px 8px 0;
    }

        .bootstrap-tagsinput .badge [data-role="remove"]:after {
            text-align: center;
            width: 16px;
            padding: 0px 0 2px !important;
            line-height: 14px;
            font-size: 16px;
            border: 0;
            display: inline-block;
        }

table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:before {
    bottom: auto;
    right: 2px;
    top: calc(50% - 4px);
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
    bottom: auto;
    right: 2px;
    top: calc(50% + 4px);
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > td.sorting_asc, table.dataTable thead > tr > td.sorting_desc, table.dataTable thead > tr > td.sorting {
    padding: 16px 8px;
}


.empty_th::before, .empty_th::after {
    display: none !important;
}

/* Scroll Bar */
::-webkit-scrollbar {
    width: 6px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #e5e8e9;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #5c7073;
    border: 0px solid transparent;
    border-radius: 8px;
    background-clip: padding-box;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #5c7073;
        border: 0px solid transparent;
        border-radius: 8px;
        background-clip: padding-box;
    }

.row {
    margin-right: -4px;
    margin-left: -4px;
}

.centre-vertical {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto,
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto,
.col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
    padding-right: 4px;
    padding-left: 4px;
}

.left_navigation_body {
    width: max-content;
    font-size: 0;
    margin-bottom: 32px;
    display: block;
}

.img_logo {
    display: block;
    margin-bottom: 32px;
    cursor: pointer;
}

.ic_navigation {
    display: inline-block;
    margin-right: 16px;
    width: 20px;
    height: 20px;
}

.navigation_title {
    display: inline-block;
    font-size: 16px;
    font-family: 'ubuntu_medium';
    line-height: 20px;
    width: fit-content;
    -webkit-font-smoothing: antialiased !important;
}

.left_navigation_body.active .navigation_title, .left_navigation_body:hover .navigation_title {
    color: #001F25;
}

.color_black {
    color: #001F25;
}

.navigation_divider {
    margin-bottom: 32px;
    border: 1px solid #E8E8E899;
    width: 100%;
}

.card_wrapper_margin {
    margin: 100px;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb12 {
    margin-bottom: 12px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb24 {
    margin-bottom: 24px !important;
}

.mb48 {
    margin-bottom: 48px !important;
}

.mt0 {
    margin-top: 0px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt12 {
    margin-top: 12px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt24 {
    margin-top: 24px !important;
}

.ml15 {
    margin-left: 15px !important;
}

.pr10 {
    padding-right: 10px !important;
}

.pb0 {
    padding-bottom: 0px !important;
}

.pb12 {
    padding-bottom: 12px !important;
}

.pb20 {
    padding-bottom: 20px !important;
}

.pb24 {
    padding-bottom: 24px !important;
}

.pt0 {
    padding-top: 0px !important;
}

.pt12 {
    padding-top: 12px !important;
}

.pt20 {
    padding-top: 20px !important;
}

.pt24 {
    padding-top: 24px !important;
}

.b0 {
    border: 0 !important;
}

.w-120px {
    width: 120px !important;
}

.navigation_stick_bottom_wrapper {
    position: relative;
    bottom: 0px;
    left: auto;
    width: calc(100% - 80px);
}

.right_navigation_title {
    display: inline-block;
    font-size: 18px;
    font-family: 'ubuntu_medium';
    line-height: 20px;
    margin-bottom: 24px;
    color: #001F25;
    -webkit-font-smoothing: antialiased !important;
}

.course_history_title {
    font-size: 15px;
    font-family: 'ubuntu_medium';
    line-height: 20px;
    margin-bottom: 8px;
    color: #001F25;
    -webkit-font-smoothing: antialiased !important;
}

.course_history_type {
    font-size: 14px;
    font-family: 'ubuntu_medium';
    line-height: 16px;
    margin-bottom: 20px;
    -webkit-font-smoothing: antialiased !important;
}

.course_history_body {
    position: relative;
    cursor: pointer;
}

.course_history_wrapper_arrow {
    position: absolute;
    top: 6px;
    right: 0;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 5px solid #001F25;
    border-bottom: 5px solid transparent;
}

.feedback_title {
    font-size: 15px;
    font-family: 'ubuntu_medium';
    line-height: 20px;
    margin-bottom: 20px;
    color: #001F25;
    -webkit-font-smoothing: antialiased !important;
}

.feedback_content {
    font-size: 15px;
    font-family: 'ubuntu_medium';
    line-height: 20px;
    color: #001F25;
    overflow: hidden;
    white-space: nowrap; /* Don't forget this one */
    text-overflow: ellipsis;
    -webkit-font-smoothing: antialiased !important;
}

.feedback_date {
    font-size: 14px;
    font-family: 'ubuntu_medium';
    line-height: 16px;
    margin-bottom: 20px;
    -webkit-font-smoothing: antialiased !important;
}

.feedback_body {
    position: relative;
    cursor: pointer;
}

.feedback_content_wrapper_arrow {
    position: absolute;
    top: 2px;
    right: 10px;
    width: 0;
    height: 0;
}

.feedback_notification_wrapper_arrow {
    position: absolute;
    top: 2px;
    right: 40px;
    width: 0;
    height: 0;
}

/*.btn_clear_history {
    font-size: 15px;
    font-family: 'ubuntu_medium';
    padding: 12px;
    width: 100%;
    cursor: pointer;
    color: #001F25;
    background: #f5f5f5;
    border-radius: 5px;
    text-align: center;
    position: absolute;
    bottom: 32px;
    right: 40px;
    width: calc(100% - 80px);
    -webkit-font-smoothing: antialiased !important;
}*/

.right_notification_wrapper {
    position: relative;
    display: inline-block;
    margin-right: 32px;
    margin-top: 12px;
}

.left_notification_wrapper {
    position: relative;
    display: inline-block;
    margin-right: 6px;
    margin-top: 6px;
    visibility: hidden;
    width: 24px;
    float: left;
    display: none;
}

.ic_right_notification {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.ic_left_notification {
    width: 24px;
    height: 24px;
    cursor: pointer;
    visibility: hidden;
}

.right_notification_number {
    font-family: 'ubuntu_medium';
    color: #001F25;
    background: #FBAE3D;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    position: absolute;
    top: -6px;
    left: 16px;
    line-height: 16px;
    padding: 0 4px 0 5px;
    min-width: 16px;
    min-height: 16px;
    -webkit-font-smoothing: antialiased !important;
}

.img_right_profile {
    display: inline-block;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.right_profile_notification_wrapper {
    text-align: right;
    margin-bottom: 24px;
}

.right_profile_notification_wrapper_mobile {
    display: none;
    visibility: hidden;
    text-align: right;
    margin-bottom: 24px;
    align-content: flex-end;
    width: 100%;
}

.box_arrow_wrapper {
    background: #eeeeee;
    width: 26px;
    height: 26px;
    display: none;
    cursor: pointer;
    position: fixed;
    z-index: 2;
    transition: all .5s;
    top: 50%;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

    .box_arrow_wrapper:before {
        content: '';
        position: absolute;
        bottom: -8px;
        transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
    }

.box_arrow_wrapper_left:before {
    border-top: 8px solid transparent;
    border-right: 13px solid #e6e6e6;
    border-bottom: 0 solid transparent;
    right: 0;
}

.box_arrow_wrapper_right:before {
    border-top: 8px solid transparent;
    border-left: 13px solid #e6e6e6;
    border-bottom: 0 solid transparent;
    left: 0;
}

.box_arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.box_arrow_left {
    border-top: 5px solid transparent;
    border-left: 5px solid #8f9b9e;
    border-bottom: 5px solid transparent;
}

.box_arrow_right {
    border-top: 5px solid transparent;
    border-left: 5px solid #8f9b9e;
    border-bottom: 5px solid transparent;
    border-right: 0;
}

.active .box_arrow_left {
    border-top: 5px solid transparent;
    border-right: 5px solid #8f9b9e;
    border-bottom: 5px solid transparent;
    border-left: 0;
}

.active .box_arrow_right {
    border-top: 5px solid transparent;
    border-right: 5px solid #8f9b9e;
    border-bottom: 5px solid transparent;
    border-left: 0;
}

.box_arrow_wrapper_left {
    left: 13px;
}

.box_arrow_wrapper_right {
    right: 287px;
    display: block;
}

.box_arrow_wrapper_left.active {
    left: 287px;
}

.box_arrow_wrapper_right.active {
    right: 13px;
}

/*.content_find_course {
    display: none;
}*/



.box_wrapper {
    margin-bottom: 36px;
}

.box_body {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 6px 24px #0000000b;
    border-radius: 8px;
    padding: 32px 10px 32px 32px;
    display: block;
    border: 2px solid transparent;
    margin: 4px 0;
    height: 144px;
}

.ic_box {
    margin-bottom: 16px;
    height: 20px;
}

.box_title {
    color: #001F25;
    font-family: 'ubuntu_medium';
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 20px;
    -webkit-font-smoothing: antialiased !important;
}

.box_content {
    font-size: 14px;
    line-height: 20px;
}

.ic_box_arrow {
    position: absolute;
    top: 16px;
    right: 16px;
}

.empty_course_notification_wrapper {
    margin-bottom: 40px;
}

.empty_course_notification_body {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 6px 24px #0000000b;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.img_shape1 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.img_shape2 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.empty_course_notification_close {
    position: absolute;
    right: 25px;
    top: 16px;
    cursor: pointer;
    font-size: 20px;
    color: #c7cacf;
}

.empty_course_profile_notification_wrapper {
    text-align: right;
    margin-bottom: 24px;
}

.yellow_bar {
    width: 48px;
    height: 3px;
    background: #fbae3d;
    margin-bottom: 16px;
}

.empty_bar {
    width: 48px;
    height: 3px;
    margin-bottom: 16px;
}

.empty_course_notification_title {
    color: #001F25;
    font-family: 'ubuntu_medium';
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 24px;
    position: relative;
    z-index: 1;
    -webkit-font-smoothing: antialiased !important;
}

.empty_course_notification_content {
    font-size: 14px;
    line-height: 20px;
    position: relative;
    z-index: 1;
}

.empty_course_notification_box_left {
    max-width: 322px;
    display: inline-block;
    margin: 80px 15% 80px 12%;
}

.empty_course_notification_box_right {
    display: inline-block;
    width: 100%;
    max-width: 310px;
    background: #FFFFFF;
    box-shadow: 0px 6px 24px #0000000b;
    border-radius: 8px;
    padding: 26px 32px 20px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.ic_empty_course_right_notification {
    display: inline-block;
    margin-right: 32px;
    margin-top: 12px;
}

/*.btn_add_to_fav_body {
    margin-bottom: 16px;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 0;
    display: inline-block;
    padding: 4px 5px 4px;
    transition: all .5s;
    position: relative;
    cursor: pointer;
}*/

.grey_bar {
    background: #f2f4f4;
    width: 90%;
    height: 20px;
    margin-bottom: 8px;
    border-radius: 6px;
}

.grey_bar_short {
    width: 60%;
}

.ic_fav_star {
    display: inline-block;
    margin: 2px 8px 2px 0;
    transition: all .5s;
    opacity: 1;
}

.ic_fav_star_filled {
    display: inline-block;
    margin: 0 0 0 0;
    transition: all .5s;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/*.btn_add_to_fav_title {
    color: #001f2580;
    font-family: 'ubuntu_medium';
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    transition: all .5s;
    margin-top: 1px;
    -webkit-font-smoothing: antialiased !important;
}*/

.empty_course_notification_body:hover .ic_fav_star {
    margin-right: 1px;
    color: #fff;
    transform: rotate(-73deg);
    -o-transform: rotate(-73deg);
    -moz-transform: rotate(-73deg);
    -webkit-transform: rotate(-73deg);
    opacity: 0;
}

.empty_course_notification_body:hover .ic_fav_star_filled {
    opacity: 1;
}

/*.empty_course_notification_body:hover .btn_add_to_fav_body {
    background: #fbae3d;
}

.empty_course_notification_body:hover .btn_add_to_fav_title {
    display: none;
}
*/
/*.btn_add_to_fav_body.active .ic_fav_star {
    margin-right: 1px;
    color: #fff;
    transform: rotate(-73deg);
    -o-transform: rotate(-73deg);
    -moz-transform: rotate(-73deg);
    -webkit-transform: rotate(-73deg);
    opacity: 0;
}*/

/*.btn_add_to_fav_body.active .ic_fav_star_filled {
    opacity: 1;
}

.btn_add_to_fav_body.active .btn_add_to_fav_body {
    background: #fbae3d;
}

.btn_add_to_fav_body.active .btn_add_to_fav_title {
    display: none;
}*/

/*.dropdown_company_filter_wrapper {
    font-size: 0;
    margin-bottom: 12px;
    position: relative;
}*/

/*.ic_dropdown_company_search {
    width: 16px;
    height: 16px;
    position: absolute;
    left: 16px;
    top: 13px;
}*/

/*.dropdown_company_filter {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    line-height: 16px;
    font-size: 15px;
    color: #001f2599;
    width: 100%;
    outline: none;
    padding: 13px 16px 13px 44px;
    border-radius: 8px;
}*/

/*.dropdown_company_action_wrapper {
    margin-bottom: 12px;
    font-size: 0;
}*/

/*.dropdown_company_action_title {
    font-size: 12px;
    color: #76767699;
    display: inline-block;
    line-height: 12px;
}*/

/*.dropdown_company_action_body {
    float: right;
    font-size: 0;
}*/

/*.dropdown_company_action {
    font-size: 12px;
    color: #767676;
    display: inline-block;
    text-decoration: underline;
    cursor: pointer;
    line-height: 12px;
    outline: none !important;
    border: 0 !important;
    background: none !important;
    padding: 0 !important;
}*/

/*.dropdown_company_action_divider {
    height: 12px;
    width: 1px;
    background: #707070;
    opacity: 0.1;
    margin: 0 8px;
    display: inline-block;
}*/

/*.title_default_option {
    font-size: 12px;
    color: #767676;
    opacity: 0.6;
    float: right;
    line-height: 20px;
    margin-right: 8px;
}*/

/*.box_white_bar {
    top: 0;
    width: 26px;
    height: 100%;
    position: fixed;
    background: #fff;
    box-shadow: 0px 6px 24px #0000000b;
    transition: all .5s;
    z-index: 2;
}

.box_white_bar_left {
    left: 0;
}

.box_white_bar_right {
    right: 274px;
}

.box_white_bar_left.active {
    left: 274px;
}

.box_white_bar_right.active {
    right: 0;
}

.find_course_notification_body {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 48px 48px;
}*/

/*.btn_advanced_search {
    position: relative;
    font-size: 15px;
    font-family: 'ubuntu_medium';
    line-height: 16px;
    color: #001F25;
    padding: 16px 24px;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    display: inline-block;
    float: right;
    cursor: pointer;
    -webkit-font-smoothing: antialiased !important;
}*/

/*.find_course_notification_title {
    font-size: 24px;
    font-family: 'ubuntu_medium';
    line-height: 26px;
    color: #001F25;
    display: inline-block;
    -webkit-font-smoothing: antialiased !important;
}

.ic_advanced_search {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}*/

.find_course_notification_title_body {
    display: inline-block;
}

.find_course_filter_wrapper {
    margin-top: 32px;
}

.find_course_filter_body {
    position: relative;
    font-size: 0;
}

.ic_find_course_search {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 16px;
    left: 16px;
}

.find_course_filter {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    line-height: 16px;
    font-size: 15px;
    color: #001f2599;
    width: 100%;
    outline: none;
    padding: 16px 16px 16px 40px;
    border-radius: 4px;
}

.find_employee_filter {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    line-height: 16px;
    font-size: 15px;
    color: #001f2599;
    width: 100%;
    outline: none;
    padding: 16px 16px 16px 40px;
    border-radius: 4px;
}

.find_bulk_course_filter {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    line-height: 16px;
    font-size: 15px;
    color: #001f2599;
    width: 100%;
    outline: none;
    padding: 16px 16px 16px 40px;
    border-radius: 4px;
}

.find_choosen_person_name {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    line-height: 16px;
    font-size: 15px;
    color: #001f2599;
    width: 100%;
    outline: none;
    padding: 16px 16px 16px 40px;
    border-radius: 4px;
}

.btn_search_course {
    border: 1px solid #FBAE3D;
    background: #FBAE3D;
    border-radius: 5px;
    font-size: 16px;
    color: #001f25;
    font-family: 'ubuntu_medium';
    line-height: 16px;
    cursor: pointer;
    padding: 16px 24px;
    text-align: center;
    -webkit-font-smoothing: antialiased !important;
}

.btn-large-no-border {
    display: inline-block;
    background: #fff;
    font-size: 16px;
    color: #001f25;
    font-family: 'ubuntu_medium';
    line-height: 16px;
    cursor: pointer;
    text-align: center;
    margin-right: 8px;
    -webkit-font-smoothing: antialiased !important;
}

btn-large-no-border:last-child {
    margin-right: 0;
}

.btn-no-border {
    display: inline-block;
    background: #fff;
    padding-top: 10px;
    font-size: 16px;
    color: #001f25;
    font-family: 'ubuntu_medium';
    line-height: 16px;
    cursor: pointer;
    text-align: center;
    margin-right: 8px;
    -webkit-font-smoothing: antialiased !important;
}

    .btn-no-border:last-child {
        margin-right: 0;
    }

.btn {
    border: 1px solid #e8e8e8;
    background: #fff;
    border-radius: 5px;
    font-size: 15px;
    color: #001f25;
    font-family: 'ubuntu_medium';
    line-height: 16px;
    cursor: pointer;
    padding: 16px 24px;
    text-align: center;
    margin-right: 8px;
    -webkit-font-smoothing: antialiased !important;
}

    .btn:last-child {
        margin-right: 0;
    }

.btn_notification {
    border: 1px solid #e8e8e8;
    background: #fff;
    border-radius: 5px;
    font-size: 12px;
    color: #001f25;
    font-family: 'ubuntu_medium';
    line-height: 16px;
    cursor: pointer;
    text-align: center;
    margin-right: 8px;
    -webkit-font-smoothing: antialiased !important;
    padding: .375rem .75rem;
}

.btn_notification {
    border: 1px solid #e8e8e8;
    background: #fff;
    border-radius: 5px;
    font-size: 12px;
    color: #001f25;
    font-family: 'ubuntu_medium';
    line-height: 16px;
    cursor: pointer;
    text-align: center;
    margin-right: 8px;
    -webkit-font-smoothing: antialiased !important;
    padding: .375rem .75rem;
}

.pull-right {
    float: right;
}

.btn_grey {
    background: #F5F5F5;
    border: 1px solid #F5F5F5;
}

.btn_grey_darker {
    background: #eeeeee;
    border: 1px solid #eeeeee;
}

.btn_orange {
    background: #FBAE3D;
    border: 1px solid #FBAE3D;
}

.btn_red {
    background: #FC315D;
    border: 1px solid #FC315D;
    color: #fff;
}

.btn_white {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
}

/*.find_course_filter_country_wrapper {
    position: relative;
    display: inline-block;
    margin-right: 8px;
    font-size: 15px;
    color: #001F25;
    width: 200px;
}*/

/*.find_course_filter_training_centre_wrapper {
    position: relative;
    display: inline-block;
    margin-right: 8px;
    font-size: 15px;
    color: #001F25;
    width: 300px;
}*/

.find_company {
    position: relative;
    display: inline-block;
    margin-right: 8px;
    font-size: 15px;
    color: #001F25;
    width: 300px;
}


.find_filter_company {
    position: relative;
    display: inline-block;
    margin-right: 8px;
    font-size: 15px;
    color: #001F25;
    width: 100%;
}

.find_date_of_birth {
    position: relative;
    display: inline-block;
    margin-right: 8px;
    font-size: 15px;
    color: #001F25;
    width: 200px;
}

.ic_filter_country_location {
    width: 12px;
    height: 16px;
    position: absolute;
    top: 17px;
    left: 16px;
    z-index: 1;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0 16px 0 16px;
    line-height: 48px;
}

.select2-results__option {
    padding: 6px 16px;
}

/*.find_course_filter_country_wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0 16px 0 36px;
    line-height: 48px;
}*/

.course_training_type {
    color: #001f25;
    font-family: 'ubuntu_medium';
    line-height: 18px;
    padding: 8px 8px;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    background: #001f250a;
    -webkit-font-smoothing: antialiased !important;
}

.ic_save {
    width: 15px;
    height: 16px;
    margin-right: 8px;
}

.btn_save_filter {
    font-size: 14px;
    font-family: 'ubuntu_medium';
    display: inline-block;
    float: right;
    line-height: 16px;
    padding: 9px 0;
    cursor: pointer;
    -webkit-font-smoothing: antialiased !important;
}

.find_course_shortcut_body {
    display: inline-block;
}

.course_table_checkbox_wrapper {
    display: inline-block;
    min-height: auto;
    width: 20px;
    height: 20px;
    padding: 0;
    font-size: 0;
    position: relative;
    margin-right: 12px;
    margin-top: 11px;
}

.course_table_checkbox {
    display: none;
}

.course_table_box {
    font-size: 0;
}

/*.course_option_title_th {
    display: inline-block;
    font-size: 15px;
    font-family: 'ubuntu_medium';
    color: #001f25a8;
    line-height: 20px;
    padding: 11px 0;
    -webkit-font-smoothing: antialiased !important;
}*/

.course_option_title {
    display: inline-block;
    font-size: 15px;
    font-family: 'ubuntu_medium';
    color: #001f25;
    line-height: 20px;
    padding: 11px 0;
    width: calc(100% - 48px);
    -webkit-font-smoothing: antialiased !important;
}

.table_padding_wrapper {
    padding: 12px 0;
    border-bottom: 1px solid #E8E8E8;
}

.book_now_action_wrapper {
    font-size: 0;
    text-align: right;
}

.btn_book_now {
    border: 1px solid #f5f5f5;
    color: #001F25;
    background: #f5f5f5;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    font-family: 'ubuntu_medium';
    display: inline-block;
    padding: 12px 16px;
    line-height: 16px;
    cursor: pointer;
    -webkit-font-smoothing: antialiased !important;
}

.btn_elearning_book_now {
    border: 1px solid #f5f5f5;
    color: #001F25;
    background: #f5f5f5;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    font-family: 'ubuntu_medium';
    display: inline-block;
    padding: 12px 16px;
    line-height: 16px;
    cursor: pointer;
    -webkit-font-smoothing: antialiased !important;
}



.book_now_modal_title {
    color: #001F25;
    font-family: 'ubuntu_medium';
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 24px;
    -webkit-font-smoothing: antialiased !important;
}

.book_now_modal_content {
    font-size: 16px;
    line-height: 24px;
    color: #737B87;
    margin-bottom: 24px;
}

.book_now_modal_content_small {
    font-size: 13px;
    line-height: 12px;
    font-family: 'ubuntu_medium';
    color: #001F2599;
    margin-bottom: 8px;
    -webkit-font-smoothing: antialiased !important;
}

.number_places_to_add {
    font-size: 14px;
    line-height: 16px;
    font-family: 'ubuntu_medium';
    padding: 16px 16px;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    margin-bottom: 24px;
    outline: none;
    width: 100%;
    -webkit-font-smoothing: antialiased !important;
}

.btn_add_as_reserve, .btn_ae_add_new_employee_css {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 16px;
    font-family: 'ubuntu_medium';
    color: #001F25;
    padding: 16px 0;
    text-align: center;
    border: 1px solid #f7f8fb;
    background: #f7f8fb;
    border-radius: 4px;
    cursor: pointer;
    -webkit-font-smoothing: antialiased !important;
}

.btn_add_to_basket {
    font-size: 15px;
    line-height: 16px;
    font-family: 'ubuntu_medium';
    color: #001F25;
    padding: 16px 0;
    text-align: center;
    border: 1px solid #FBAE3D;
    background: #FBAE3D;
    border-radius: 4px;
    cursor: pointer;
    -webkit-font-smoothing: antialiased !important;
}

.modal-body {
    padding: 40px 40px;
}

.ic_action_div {
    display: flex;
    align-items: center;
}



.action_dropdown_wrapper .dropdown-menu {
    min-width: 250px;
    padding: 4px 4px;
}

.ic_pages {
    width: 14px;
    height: 10px;
    display: inline-block;
    margin-right: 8px;
    margin-top: 6px;
}

.ic_csv_export {
    display: inline-block;
    margin-right: 8px;
}

.dropdown_large_page_limit_list_wrapper {
    display: inline-block;
    line-height: 10px;
    padding: 15px 16px;
    border: 1px solid #ECF0F5;
    border-radius: 4px;
    cursor: pointer;
}

    .dropdown_large_page_limit_list_wrapper::after {
        font-size: 14px;
        margin-top: 4px;
        margin-left: 8px;
        vertical-align: top;
        border-top: 4px solid;
        border-right: 4px solid transparent;
        border-bottom: 0;
        border-left: 4px solid transparent;
    }


.dropdown_page_limit_list_wrapper {
    display: inline-block;
    line-height: 10px;
    padding: 8px 16px;
    border: 1px solid #ECF0F5;
    border-radius: 4px;
    cursor: pointer;
    height: 42px;
}

    .dropdown_page_limit_list_wrapper::after {
        font-size: 14px;
        margin-top: 10px;
        margin-left: 8px;
        vertical-align: top;
        border-top: 4px solid;
        border-right: 4px solid transparent;
        border-bottom: 0;
        border-left: 4px solid transparent;
    }

.page_limit_dropdown_wrapper {
    position: relative;
    display: inline-block;
    float: right;
    right: 0;
    top: 0;
    margin-right: 0px;
    padding: 26px 0;
}

    .page_limit_dropdown_wrapper .dropdown-menu {
        padding: 4px 0;
        min-width: auto;
    }

.dropdown_calendar_list_wrapper {
    display: inline-block;
    line-height: 10px;
    padding: 8px 46px;
    border: 1px solid #ECF0F5;
    border-radius: 4px;
    cursor: pointer;
    height: 42px;
}

    .dropdown_calendar_list_wrapper::after {
        font-size: 14px;
        margin-top: 10px;
        margin-left: 8px;
        vertical-align: top;
        border-top: 4px solid;
        border-right: 4px solid transparent;
        border-bottom: 0;
        border-left: 4px solid transparent;
    }

.course_table_page_limit, .course_table_page_limit_1, .course_table_page_limit_fav, .employee_table_page_limit, .div_page_limit {
    font-size: 15px;
    line-height: 10px;
    font-family: 'ubuntu_medium';
    color: #001f2566;
    padding: 12px 16px;
    cursor: pointer;
    -webkit-font-smoothing: antialiased !important;
}

    .course_table_page_limit:hover, .course_table_page_limit_1:hover, .course_table_page_limit_fav:hover, .employee_table_page_limit:hover, .div_page_limit:hover {
        background-color: #E1E1E1;
    }

.ic_book_now_calendar {
    height: 18px;
}

.course_option_title_collapse {
    cursor: pointer;
}

/*.collapse_dashboard_table_menu {
    background: #fafafa;
    margin: 12px 0px -12px;
    padding: 0 32px;
}*/

.collapse_dashboard_table_menu table {
    width: 100%;
}

.course_option_title_collapse_arrow {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid #000;
    display: inline-block;
    margin: 8px 0 0 8px;
}

.collapsed .course_option_title_collapse_arrow {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #000;
    border-bottom: 0;
}

.btn_load_more {
    font-size: 15px;
    font-family: 'ubuntu_medium';
    color: #001f25;
    line-height: 18px;
    text-decoration: underline;
    text-align: center;
    margin-top: 20px;
    padding-bottom: 20px;
    cursor: pointer;
    -webkit-font-smoothing: antialiased !important;
}

.collapse_dashboard_table_menu th {
    font-size: 15px;
    font-family: 'ubuntu_medium';
    line-height: 20px;
    padding: 9px 8px;
    color: #001f2599;
    border-bottom: 1px solid #E8E8E8;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased !important;
}

.collapse_dashboard_table_menu td {
    font-size: 15px;
    font-family: 'ubuntu_medium';
    line-height: 20px;
    padding: 9px 8px;
    color: #001f25;
    border-bottom: 1px solid #E8E8E8;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased !important;
}

.collapse_dashboard_table_menu th:first-child {
    padding-left: 32px !important;
    width: 55px;
    max-width: 55px;
}

.collapse_dashboard_table_menu td:first-child {
    padding-left: 32px;
    font-size: 0;
    width: 55px;
    max-width: 55px;
}

.collapse_dashboard_table_content_black {
    font-size: 15px;
    font-family: 'ubuntu_medium';
    line-height: 16px;
    color: #001f25;
    margin-bottom: 8px;
    -webkit-font-smoothing: antialiased !important;
}

.collapse_dashboard_table_content_grey {
    font-size: 14px;
    line-height: 16px;
    color: #767676;
}

.td_book_now_action {
    text-align: right;
    padding-right: 0 !important;
}

.collapse_date_checkbox_wrapper {
    display: inline-block;
    min-height: auto;
    width: 20px;
    height: 20px;
    padding: 0;
    font-size: 0;
    position: relative;
    margin-right: 12px;
    margin-top: 0px;
}

.collapse_date_checkbox {
    display: none;
}

.table_wrapper {
    width: 100%;
}

    .table_wrapper th {
        font-size: 15px;
        font-family: 'ubuntu_medium';
        line-height: 12px;
        padding: 16px 8px;
        color: #001f2599;
        border-bottom: 1px solid #E8E8E8;
        vertical-align: middle;
        -webkit-font-smoothing: antialiased !important;
    }

    .table_wrapper td {
        font-size: 15px;
        font-family: 'ubuntu_medium';
        line-height: 12px;
        padding: 16px 8px;
        color: #001f25;
        border-bottom: 1px solid #E8E8E8;
        vertical-align: middle;
        -webkit-font-smoothing: antialiased !important;
    }

    .table_wrapper th:first-child {
        padding-left: 0 !important;
    }

    /*    .table_wrapper td:first-child {
        padding-left: 0 !important;
    }*/

    .table_wrapper th:last-child {
        padding-right: 0;
    }

    .table_wrapper td:last-child {
        padding-right: 10px;
        text-align: right;
    }

.table_content_black_grey_wrapper {
    font-size: 0;
}

    .table_content_black_grey_wrapper:first-child {
        margin-bottom: 8px;
    }

.table_content_black {
    font-size: 15px;
    font-family: 'ubuntu_medium';
    line-height: 16px;
    color: #001f25;
    /*margin-bottom: 8px;*/
    -webkit-font-smoothing: antialiased !important;
}

.table_content_grey {
    margin-top: 8px;
    font-size: 14px;
    line-height: 16px;
    color: #767676;
}

.table_content_black_grey_wrapper .table_content_black {
    margin-right: 4px;
}

.course_name_width {
    width: 240px;
}

    .course_name_width .table_content_black {
        line-height: 24px;
        margin-bottom: 0;
    }

.card_title_btn_wrapper {
    display: inline-block;
    float: right;
    font-size: 0;
}

.btn_advanced_search, .btn_advanced_search_course, .btn_fav_advanced_search_course {
    margin-right: 8px;
    font-size: 0;
}

.btn_advanced_search_title, .btn_advanced_search_course_title, .btn_fav_advanced_search_course_title {
    display: inline-block;
    font-size: 15px;
    color: #001f2580;
    font-family: 'ubuntu_medium';
    -webkit-font-smoothing: antialiased !important;
}

.div_export {
    position: relative;
    display: inline-block;
    float: right;
    right: 0;
    top: 0;
    padding: 26px 0;
    width: 180px;
}

    .div_export .btn_export {
        height: 42px;
        padding: 12px 16px;
    }

.btn_export_width_wrapper {
    width: max-content;
}

.btn_export {
    float: left;
    padding: 10px 16px;
    font-size: 0.8rem;
}

.btn_export_to_csv {
    display: inline-block;
    font-size: 15px;
    color: #001f25;
    font-family: 'ubuntu_medium';
    -webkit-font-smoothing: antialiased !important;
}

.employee_find_course_filter_wrapper {
    font-size: 0;
}

.employee_find_course_filter_body {
    display: inline-block;
    width: calc(100% - 100px - 8px);
}

.employee_find_course_filter_body_booking {
    display: inline-block;
    width: calc(50% - 50px - 8px);
    margin-right: 8px;
}

.employee_find_course_filter_wrapper.active .employee_find_course_filter_body {
    width: 100%;
}

.employee_find_course_filter_body_1 {
    display: inline-block;
    width: calc(100% - 300px - 8px);
    margin-right: 8px;
}

.employee_find_course_filter_body_2 {
    display: inline-block;
    width: calc(100%);
    margin-right: 8px;
}

.employee_find_company_filter_body {
    display: inline-block;
    width: 300px;
}

/*.dashboard_find_course_filter_body {
    display: inline-block;
    width: calc(100% - 200px - 8px - 300px - 8px - 100px - 8px);
    margin-right: 8px;
}*/

.dashboard_find_email_domain_body {
    display: inline-block;
    width: calc(100% - 200px - 8px - 100px - 8px);
    margin-right: 8px;
}

/*    .dashboard_find_course_filter_body.active .dashboard_find_course_filter_body {
        width: 100%;
    }*/

.btn_employee_search_course {
    float: right;
}

.btn_employee_search_course_first {
    width: 100px;
}

.employee_find_course_filter_wrapper.active .btn_employee_search_course_first {
    display: none;
}

.find_course_shortcut_body_right {
    float: right;
}

.progress_bar_wrapper {
    width: 100%;
    height: 6px;
    background: #001f251a;
    border-radius: 10px;
    position: relative;
    margin-bottom: 8px;
    max-width: 104px;
}

.progress_bar_body {
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    background: #2ECC71;
    border-radius: 10px;
}

.btn_view {
    padding: 13px 24px;
}

.simple_table_wrapper {
    border-top: 1px solid #E8E8E8;
}

    .simple_table_wrapper tr:last-child td {
        border-bottom: 0;
    }

.card_wrapper {
    margin-bottom: 40px;
}

.card_body {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 32px 32px;
}

.card_title_body {
    display: inline-block;
}

.card_title_body_right {
    display: inline-block;
    float: right;
    font-size: 0;
}

.card_title {
    font-size: 24px;
    font-family: 'ubuntu_medium';
    line-height: 26px;
    color: #001F25;
    display: inline-block;
    -webkit-font-smoothing: antialiased !important;
}

.document_title {
    font-size: 20px;
    font-family: 'ubuntu_medium';
    line-height: 26px;
    color: #001F25;
    display: inline-block;
    margin-top: 24px;
    -webkit-font-smoothing: antialiased !important;
}

.hide {
    display: none;
}

.empty_24 {
    height: 24px;
}

.empty_32 {
    height: 32px;
}

.description_width {
    width: 340px;
}

    .description_width .table_content_black {
        line-height: 24px;
        margin-bottom: 0;
    }

.simple_table_wrapper .table_content_black:last-child {
    margin-bottom: 0;
}

.color_dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-top: 4px;
    margin-right: 8px;
    border-radius: 50%;
}

.color_green {
    background: #3DCC73;
}

.color_yellow {
    background: #FBAE3D;
}

.color_red {
    background: #FC315D;
}

.color_grey {
    background: #767676;
}

.date_to_expired_width .table_content_wrapper {
    font-size: 0;
}

.date_to_expired_width .table_content_black {
    display: inline-block;
}

.custome_popup_wrapper {
    display: none;
    position: fixed;
    right: 20px;
    top: 80px;
    z-index: 3;
    width: 100%;
    max-width: 480px;
    box-shadow: 0px 6px 24px #0000000b;
    background: #fff;
    border-radius: 8px;
}

    .custome_popup_wrapper.active {
        display: block;
    }

.shopping_cart_wrapper {
    right: 186px;
}

.notification_wrapper {
    right: 130px;
}

.btn_see_all_notification {
    padding: 8px 8px;
    font-size: 12px;
    line-height: 12px;
    float: right;
    margin-top: 13px;
}

.notification_content_body {
    font-size: 0;
    padding: 20px 0 24px;
    border-top: 1px solid #7070701a;
}

.notification_content_dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: #FBAE3D;
    margin-top: 11px;
}

.notification_content_box {
    display: inline-block;
    width: calc(100% - 16px);
}

.notification_content_title_wrapper {
    font-size: 0;
    margin-bottom: 6px;
}

.notification_content_title {
    display: inline-block;
    font-size: 16px;
    font-family: 'ubuntu_medium';
    line-height: 16px;
    color: #001f25;
    margin-top: 6px;
    margin-right: 8px;
    -webkit-font-smoothing: antialiased !important;
}

.notification_content_status {
    display: inline-block;
    font-size: 12px;
    font-family: 'ubuntu_medium';
    line-height: 12px;
    color: #FBAE3D;
    background: #fbae3d0d;
    border-radius: 4px;
    padding: 8px 8px;
    -webkit-font-smoothing: antialiased !important;
}

.notification_content {
    font-size: 15px;
    line-height: 20px;
    color: #252e3f99;
    margin-bottom: 12px;
}

.notification_content_date_time {
    font-size: 12px;
    line-height: 12px;
    color: #252e3f99;
}

.notification_content_wrapper {
    overflow-y: auto;
    max-height: 480px;
}

.collapse_advanced_search_menu {
    margin-top: 8px;
    font-size: 0;
}

.advanced_search_box_width {
    display: inline-block;
    margin-right: 8px;
    font-size: 15px;
    color: #001F25;
    width: calc(22% - 8px);
}

.advanced_search_box_width_small {
    display: inline-block;
    margin-right: 0;
    width: 12%;
}

    .advanced_search_box_width_small .btn_employee_search_course {
        width: 100%;
        margin: 0;
    }

.advanced_search_calendar_wrapper {
    position: relative;
    width: 100%;
}

.ic_calendar_from {
    position: absolute;
    left: 18px;
    top: 14px;
    z-index: 1;
    width: 20px;
    height: 22px;
}

.ic_calendar_to {
    position: absolute;
    left: 18px;
    top: 14px;
    z-index: 1;
    width: 20px;
    height: 22px;
}

.ic_calendar {
    position: absolute;
    left: 18px;
    right: 18px;
    z-index: 1;
    width: 20px;
    height: 22px;
}


.advanced_search_calendar_input {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    line-height: 16px;
    font-size: 15px;
    color: #001f2599;
    width: 100%;
    outline: none;
    padding: 16px 16px 16px 46px;
    border-radius: 4px;
}

.employee_course_name {
    color: #001f25;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
    font-family: 'ubuntu_medium';
    letter-spacing: -0.45px;
    -webkit-font-smoothing: antialiased !important;
}

.employee_course_detail_wrapper .progress_bar_wrapper {
    max-width: none;
}

.employee_course_detail_body {
    padding: 16px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0;
    min-height: 60px;
    overflow: auto;
}

.employee_course_detail_body_no_line {
    padding: 16px 0;
    font-size: 0;
    min-height: 60px;
    overflow: auto;
}

.employee_course_detail_title {
    color: #001f25;
    font-size: 15px;
    font-family: 'ubuntu_medium';
    display: inline-block;
    line-height: 16px;
    letter-spacing: -0.38px;
    margin: 5px 0px 5px 0px;
    -webkit-font-smoothing: antialiased !important;
}

.employee_course_detail {
    font-size: 15px;
    display: inline-block;
    line-height: 16px;
    float: right;
    text-align: right;
    letter-spacing: -0.38px;
    margin: 5px 0px 5px 0px;
}

.employee_course_detail_left {
    font-size: 15px;
    display: inline-block;
    line-height: 16px;
    float: left;
    text-align: left;
    letter-spacing: -0.38px;
    margin: 5px 0px 5px 0px;
}

.progress_bar_status_title {
    color: #767676;
    font-size: 14px;
    font-family: 'ubuntu_medium';
    letter-spacing: -0.35px;
    -webkit-font-smoothing: antialiased !important;
}

.progress_bar_status_wrapper {
    padding-top: 0;
}

.employee_right_box_btn_wrapper .btn {
    width: 100%;
    margin-top: 8px;
}

.employee_right_box_btn_wrapper {
    margin: 30px 0;
}

.form_body {
    padding: 32px 0 20px;
    border-bottom: 1px solid #e8e8e8;
}

.form_body_grey_line_top {
    padding: 32px 0 20px;
    border-top: 1px solid #e8e8e8;
    margin-top: 32px;
}

.form_body_no_border_bottom {
    padding: 32px 0 20px;
}

.form_btn_wrapper {
    font-size: 0;
    margin-top: 32px;
}

.btn_discard_changes {
    margin-right: 8px;
}

.btn_save {
    float: right;
}

.form_title {
    font-size: 15px;
    font-family: 'ubuntu_medium';
    color: #001F25;
    margin-bottom: 8px;
    line-height: 16px;
    -webkit-font-smoothing: antialiased !important;
}

.form_content {
    line-height: 16px;
    margin-bottom: 24px;
}

.form_content_tac {
    line-height: 16px;
    margin-top: 7px;
}

.form_content_tacdigitalservices {
    line-height: 16px;
}

.form_content_font_big {
    line-height: 24px;
    margin-bottom: 32px;
    font-size: 18px;
}

.form_input_title {
    font-size: 13px;
    color: #001F2599;
    font-family: 'ubuntu_medium';
    margin-bottom: 8px;
    line-height: 14px;
    -webkit-font-smoothing: antialiased !important;
}

.form_title_type {
    color: black;
    font-family: 'ubuntu_medium';
    -webkit-font-smoothing: antialiased !important;
}

.form_input_title_big {
    font-size: 15px;
    color: black;
    font-family: 'ubuntu_medium';
    margin-bottom: 8px;
    line-height: 14px;
    -webkit-font-smoothing: antialiased !important;
}

.form_input {
    font-size: 14px;
    color: #001F25;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    padding: 16px;
    line-height: 16px;
    font-family: 'ubuntu_medium';
    outline: none;
    width: 100%;
    -webkit-font-smoothing: antialiased !important;
}

.form_input_body {
    margin-bottom: 12px;
}

/* Custom Radio Button */
.form_input_radio_button {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-top: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .form_input_radio_button input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
.checkmark_point {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.form_input_radio_button:hover input ~ .checkmark_point {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.form_input_radio_button input:checked ~ .checkmark_point {
    background-color: #FBAE3D;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark_point:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.form_input_radio_button input:checked ~ .checkmark_point:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.form_input_radio_button .checkmark_point:after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

/* The container */
.form_input_checkbox {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-top: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .form_input_checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark_check {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
}

.checkmark_check_disabled {
    opacity: 50%;
}

/* On mouse-over, add a grey background color */
.form_input_checkbox:hover input ~ .checkmark_check {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.form_input_checkbox input:checked ~ .checkmark_check {
    background-color: #FBAE3D;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark_check:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.form_input_checkbox input:checked ~ .checkmark_check:after {
    display: block;
}

/* Style the checkmark/indicator */
.form_input_checkbox .checkmark_check:after {
    width: 5px;
    height: 9px;
    border: solid #2a2a2a;
    border-width: 0px 2px 2px 0;
    top: 50%;
    left: calc(50% - 4px);
    transform: rotate(45deg) translate(-50%, -50%);
    -o-transform: rotate(45deg) translate(-50%, -50%);
    -moz-transform: rotate(45deg) translate(-50%, -50%);
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
}

.form_title_wrapper .form_title {
    display: inline-block;
}

.form_btn_edit_underline {
    font-size: 14px;
    line-height: 16px;
    text-decoration: underline;
    color: #001F2599;
    float: right;
    display: inline-block;
    font-family: 'ubuntu_medium';
    cursor: pointer;
    -webkit-font-smoothing: antialiased !important;
}

.form_input_icon_wrapper {
    position: relative;
}

.form_input_icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 14px;
    right: 14px;
    background: #e5e8e9;
    font-size: 10px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
}

.form_input_icon_1 {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 5px;
    margin-top: -2px;
    background: #e5e8e9;
    font-size: 10px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
}

.fixed_top_info {
    position: fixed;
    top: 0;
    left: 300px;
    width: calc(100% - 300px - 26px);
    line-height: 16px;
    font-size: 15px;
    color: #fff;
    padding: 12px;
    font-family: 'ubuntu_medium';
    z-index: 3;
    text-align: center;
    transition: all .5s;
    -webkit-font-smoothing: antialiased !important;
}

    .fixed_top_info.has_right_box {
        width: calc(100% - 600px);
    }

.fixed_top_info_red {
    background: #FC315D;
}

.fixed_top_info_orange {
    background: #FBAE3D;
    color: #001F25;
}

.fixed_top_info_green {
    background: #2ECC71;
}

.certificate_history_shortcut_wrapper {
    border-bottom: 0;
}

.no_dataTables_length .dataTables_length {
    display: none;
}

.no_dataTables_filter .dataTables_filter {
    display: none;
}

.no_dataTables_info .dataTables_info {
    display: none;
}

.no_dataTables_paginate .dataTables_paginate {
    display: none;
}

.name_width_360 {
    width: 360px;
}

.name_width_240 {
    width: 240px;
}

.name_width_120 {
    width: 120px;
}

.name_width_60 {
    width: 60px;
}

.name_width_max_30px {
    max-width: 30px !important;
}

.name_width_min_120 {
    min-width: 120px;
}

.name_width_min_140 {
    min-width: 140px;
}

.name_width_min_160 {
    min-width: 160px;
}

.name_width_min_240 {
    min-width: 240px;
}

.name_width_min_220 {
    min-width: 220px;
}

.name_width_min_80 {
    min-width: 80px;
}

.name_width_min_60 {
    min-width: 60px;
}

.paginate_button {
    border: 1px solid #ECF0F5;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    line-height: 16px;
    padding: 12px 16px;
    font-family: 'ubuntu_medium';
    color: #001f2580 !important;
    margin-right: 8px;
    display: inline-block;
    margin-bottom: 8px;
    cursor: pointer;
    -webkit-font-smoothing: antialiased !important;
}

    .paginate_button.next {
        margin-right: 0;
    }

    .paginate_button.current {
        color: #001f25 !important;
    }

div.dataTables_wrapper div.dataTables_paginate {
    text-align: center;
    padding: 26px 0;
}

div.pagination, div.pagination_course_instances, div.pagination_course_fav_instances {
    text-align: center;
    padding: 26px 0;
}

.pagination {
    display: inline-block;
}

.page-item {
    float: left;
}

    .page-item.first, .page-item.last {
        display: none;
    }

.page-link {
    border: 1px solid #ECF0F5;
    border-radius: 4px;
    font-size: 16px !important;
    text-align: center;
    line-height: 16px !important;
    padding: 12px 16px !important;
    font-family: 'ubuntu_medium';
    color: #001f2580 !important;
    margin-right: 8px;
    display: inline-block;
    margin-bottom: 8px;
    cursor: pointer;
    -webkit-font-smoothing: antialiased !important;
}

/*.page-item.active .page-link {
    z-index: 3;
    color: #001f25 !important;
    border-color: #ECF0F5;
    background-color: transparent;
}*/

.screen_overlay_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 99999;
    display: none;
}

.loading_gif {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 999;
    margin: -30px 0 0 -30px;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #666;
    width: 60px;
    height: 60px;
    transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    animation: spin .5s linear infinite;
    -o-animation: spin .5s linear infinite;
    -moz-animation: spin .5s linear infinite;
    -webkit-animation: spin .5s linear infinite;
}

.account_detail_title {
    color: #001f25;
    font-size: 15px;
    font-family: 'ubuntu_medium';
    display: inline-block;
    line-height: 20px;
    letter-spacing: -0.38px;
    margin-top: 5px;
    margin-bottom: 5px;
    -webkit-font-smoothing: antialiased !important;
}

.account_detail {
    font-size: 15px;
    display: inline-block;
    line-height: 20px;
    letter-spacing: -0.38px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.account_detail_input {
    /*margin-top: 15px;*/
    margin-bottom: 15px;
}

.tnc_subtitle {
    font-size: 18px;
    line-height: 12px;
    margin-bottom: 20px;
    color: #8f9b9e;
}

.tnc_body {
    font-size: 15px;
    color: #767676;
    font-family: 'ubuntu';
    margin-bottom: 10px;
    line-height: 14px;
    -webkit-font-smoothing: antialiased !important;
}

.tnc_item {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 18px;
    width: 100%;
}

.tnc_item_text {
    display: inline-block;
    font-size: 20px;
    font-family: 'ubuntu_medium';
    color: #001f25;
    line-height: 20px;
    padding: 11px 0;
    -webkit-font-smoothing: antialiased !important;
}

.tnc_item .tnc_item_read_more {
    float: right;
    display: inline-block;
}

.btn_add_custom_fields {
    text-align: center;
    border: 1px dashed #8f9b9e;
    height: 50px;
    font-size: 18px;
    width: 100%;
    line-height: 50px;
    cursor: pointer;
}

.required {
    font-size: 1.2rem;
    color: red;
    margin-left: 5px;
}

.right_navigation_basket_title {
    display: inline-block;
    font-size: 22px;
    font-family: 'ubuntu_medium';
    line-height: 20px;
    color: #001F25;
    -webkit-font-smoothing: antialiased !important;
}

.right_navigation_basket_detail_body {
    padding: 14px 0;
    border-bottom: 1px solid #e8e8e899;
    font-size: 0;
    font-family: 'ubuntu_medium';
    -webkit-font-smoothing: antialiased !important;
}

.right_navigation_basket_detail_title_grey {
    color: #767676;
    font-size: 16px;
    font-family: 'ubuntu_medium';
    display: inline-block;
    line-height: 16px;
    letter-spacing: -0.38px;
    -webkit-font-smoothing: antialiased !important;
}

.right_navigation_basket_detail_title_black {
    color: #001f25;
    font-size: 16px;
    font-family: 'ubuntu_medium';
    display: inline-block;
    line-height: 16px;
    letter-spacing: -0.38px;
    -webkit-font-smoothing: antialiased !important;
}

.right_navigation_basket_detail_content_grey {
    font-size: 16px;
    display: inline-block;
    line-height: 16px;
    float: right;
    text-align: right;
    letter-spacing: -0.38px;
    font-family: 'ubuntu_medium';
    -webkit-font-smoothing: antialiased !important;
}

.right_navigation_basket_detail_content_black {
    font-size: 16px;
    display: inline-block;
    line-height: 16px;
    float: right;
    text-align: right;
    letter-spacing: -0.38px;
    font-family: 'ubuntu_medium';
    color: #001f25;
    -webkit-font-smoothing: antialiased !important;
}

.right_navigation_basket_btn_wrapper .btn {
    width: 100%;
    margin-top: 8px;
}

.right_navigation_basket_btn_wrapper {
    position: absolute;
    bottom: 32px;
    left: 50%;
    width: calc(100% - 64px);
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.right_navigation_basket_input_title {
    font-size: 14px;
    color: #767676;
    font-family: 'ubuntu_medium';
    margin-bottom: 8px;
    line-height: 14px;
    -webkit-font-smoothing: antialiased !important;
}

.right_navigation_basket_input_box {
    margin-bottom: 10px;
    margin-top: 10px;
}

.right_navigation_basket_detail_note {
    font-size: 13px;
    font-style: italic;
    line-height: 20px;
}

.employee_record {
    cursor: pointer;
}

.datepicker[readonly] {
    background-color: white;
}

.float_left {
    float: left !important;
}

.float_right {
    float: right !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-o-keyframes spin {
    0% {
        -o-transform: rotate(0deg);
    }

    100% {
        -o-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.basket_title_wrapper {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
    margin-top: 26px;
}

/*.basket_title {
    line-height: 20px;
    font-size: 15px;
    font-family: 'ubuntu_medium';
    color: #001f2599;
    -webkit-font-smoothing: antialiased !important;
    padding: 16px 0;
    margin-top: 26px;
}*/

/*.basket_course_title {
    margin: 0;
    line-height: 20px;
    padding: 20px 0;
}*/

.btn_add_student_to_basket {
    padding: 11px 24px;
    margin-top: 10px;
}

    .btn_add_student_to_basket .spinIcon {
        color: #001f25;
        font-family: 'ubuntu_medium';
        -webkit-font-smoothing: antialiased !important;
    }

.btn_add_student_to_basket_sm {
    padding: 10px 16px;
    margin-top: 10px;
    font-size: 0.8rem;
}

/*.basket_student_details_wrapper {
    background: #F8F8F8;
    border-radius: 5px;
    padding: 0 24px;
    margin-bottom: 24px;
    margin-top: 15px;
    width: 100%;
}*/

.basket_student_details_body {
    border-bottom: 1px solid #E8E8E8;
}

    .basket_student_details_body:last-child {
        border: 0;
    }

.basket_student_details_header {
    /*border-top: 1px solid #ddd;*/
    padding: 16px 0;
    margin-top: 26px;
    border-bottom: 1px solid #E8E8E8;
}

.basket_student_details_footer {
    padding: 16px 0;
}

.basket_student_details_footer_remove_employee {
    line-height: 20px;
    font-size: 15px;
    font-family: 'ubuntu_medium';
    color: #001f2599;
    -webkit-font-smoothing: antialiased !important;
}

.basket_student_details_footer_total_price {
    line-height: 20px;
    font-size: 15px;
    font-family: 'ubuntu_medium';
    color: #001f25;
    float: right;
    -webkit-font-smoothing: antialiased !important;
    text-decoration-line: underline;
}

/*.student_details_title {
    line-height: 20px;
    font-size: 15px;
    font-family: 'ubuntu_medium';
    color: #001f2599;
    -webkit-font-smoothing: antialiased !important;
    padding: 16px;
}*/

.btn_student_additional_services {
    padding: 11px 0;
    width: 100%;
}

.btn_payer_info {
    padding: 11px 0;
    width: 100%;
    margin-bottom: 5px;
}

.btn_confirm_order_course {
    float: right;
    margin-top: 24px;
}

.basket_student_details_col {
    display: flex;
    align-items: center;
}

.basket_student_details_box {
    padding: 12px 0;
    font-size: 15px;
    color: #001F25;
    font-family: 'ubuntu_medium';
    width: 100%;
    -webkit-font-smoothing: antialiased !important;
}

.basket_student_details_input_body .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
}

.basket_student_reference_input input {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    line-height: 16px;
    font-size: 15px;
    color: #001f2599;
    width: 100%;
    outline: none;
    padding: 11px 16px;
    border-radius: 4px;
}

.basket_student_details_input_box {
    margin-bottom: 8px;
}

.basket_student_no {
    width: 30px;
    display: inline-block;
    vertical-align: top;
    line-height: 20px;
    font-size: 15px;
    color: #001F25;
    font-family: 'ubuntu_medium';
    -webkit-font-smoothing: antialiased !important;
}

.basket_student_name_wrapper {
    line-height: 20px;
    vertical-align: top;
    display: inline-block;
    width: calc(100% - 40px);
}

/*.basket_student_content_main {
    font-size: 15px;
    color: #001F25;
    font-family: 'ubuntu_medium';
    margin-bottom: 5px;
    -webkit-font-smoothing: antialiased !important;
    margin-left: 10px;
}*/

.basket_student_content_sub {
    font-size: 14px;
    color: #767676;
    font-family: 'ubuntu';
    -webkit-font-smoothing: antialiased !important;
}

.basket_student_content_sub_underline {
    font-size: 14px;
    color: #767676;
    font-family: 'ubuntu';
    text-decoration: underline;
    cursor: pointer;
    -webkit-font-smoothing: antialiased !important;
}

    .basket_student_content_sub_underline:hover .div_customize_tooltip {
        display: inline-block;
    }

.btn_all_basket_item_place_remove {
    font-size: 15px;
    color: #767676;
    font-family: 'ubuntu_medium';
    cursor: pointer;
    -webkit-font-smoothing: antialiased !important;
}

    .btn_all_basket_item_place_remove:hover {
        text-decoration: underline;
    }

.txt_license_quantity {
    margin-top: 15px;
    width: 80%;
}

.btn_payer_info:hover .div_customize_tooltip {
    display: inline-block;
}

.div_customize_tooltip {
    z-index: 100;
    display: none;
    position: absolute;
    border: 1px groove #8f9b9e;
    background-color: white;
    min-width: 300px;
    margin-left: 10px;
    border-radius: 5px;
}

.div_customize_tooltip_long {
    z-index: 100;
    display: none;
    position: absolute;
    border: 1px groove #8f9b9e;
    background-color: white;
    min-width: 450px;
    margin-left: 10px;
    border-radius: 5px;
}

.div_customize_tooltip_short {
    z-index: 100;
    display: none;
    position: absolute;
    border: 1px groove #8f9b9e;
    background-color: white;
    min-width: 300px;
    margin-left: 10px;
    border-radius: 5px;
}

.flexi-icon {
    display: inline-block;
}

    .flexi-icon:hover .div_customize_tooltip_long, .flexi-icon:hover .div_customize_tooltip_short {
        display: inline-block;
    }

.div_customize_tooltip_box {
    padding: 12px 0;
    border-bottom: 1px solid #E8E8E8;
    margin: 3px;
}

    .div_customize_tooltip_box:last-child {
        border: 0;
    }

.div_customize_tooltip_content_title {
    font-size: 14px;
    color: #767676;
    font-family: 'ubuntu';
    -webkit-font-smoothing: antialiased !important;
}

.div_customize_tooltip_content_value {
    font-size: 14px;
    color: #767676;
    font-family: 'ubuntu_medium';
    float: right;
    -webkit-font-smoothing: antialiased !important;
}

.div_customize_tooltip_content_value_flex {
    font-size: 14px;
    color: #767676;
    font-family: 'ubuntu_medium';
    text-align: left !important;
    line-height: 20px;
    -webkit-font-smoothing: antialiased !important;
}

.div_customize_tooltip_summary_title {
    font-size: 14px;
    color: #001F25;
    font-family: 'ubuntu_medium';
    -webkit-font-smoothing: antialiased !important;
}

.div_customize_tooltip_summary_title_bold {
    font-size: 14px;
    color: #001F25;
    font-family: 'ubuntu_medium';
    font-weight: bold;
    -webkit-font-smoothing: antialiased !important;
}

.div_customize_tooltip_summary_value {
    font-size: 14px;
    color: #001F25;
    font-family: 'ubuntu_medium';
    float: right;
    -webkit-font-smoothing: antialiased !important;
}

.basket_student_details_box_remove {
}

.basket_student_details_box ul {
    padding-left: 18px;
    margin-bottom: 2px;
    line-height: 20px;
}

.priceTypeContainer {
    font-size: 15px;
    color: #001F25;
    font-family: 'ubuntu_medium';
    -webkit-font-smoothing: antialiased !important;
}

.priceContainer {
    font-size: 15px;
    color: #001F25;
    font-family: 'ubuntu_medium';
    -webkit-font-smoothing: antialiased !important;
}

.expensesContainer {
    font-size: 15px;
    color: #001F25;
    font-family: 'ubuntu_medium';
    -webkit-font-smoothing: antialiased !important;
}

    .expensesContainer div {
        font-size: 15px;
        color: #001F25;
        font-family: 'ubuntu_medium';
        -webkit-font-smoothing: antialiased !important;
    }

    .expensesContainer li {
        font-size: 15px;
        color: #001F25;
        font-family: 'ubuntu_medium';
        -webkit-font-smoothing: antialiased !important;
    }

.totalPriceContainer {
    font-size: 15px;
    color: #001F25;
    font-family: 'ubuntu_medium';
    -webkit-font-smoothing: antialiased !important;
}

.vatMsgContainer {
    font-size: 15px;
    color: #001F25;
    font-family: 'ubuntu_medium';
    -webkit-font-smoothing: antialiased !important;
}

.text-left {
    text-align: left;
}

.middle_box_header {
    margin: 0 0 0 300px;
    width: calc(100% - 300px);
    padding: 10px 60px 10px 34px;
    transition: all .5s;
}

.error {
    color: red;
}

.basket_remove_course_add_student_wrapper {
    float: right;
}

.basket_remove_course {
}



.modal_table_wrapper .modal-dialog {
    width: 80%;
}

.modal_table_wrapper .modal-footer {
    justify-content: normal;
    display: block;
    padding: 12px 36px;
}

.modal_table_wrapper th {
    font-size: 15px;
    font-family: 'ubuntu_medium';
    line-height: 20px;
    padding: 12px 8px;
    color: #001f2599;
    border-bottom: 1px solid #E8E8E8;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased !important;
}

.modal_table_wrapper td {
    font-size: 15px;
    font-family: 'ubuntu_medium';
    line-height: 20px;
    padding: 12px 8px;
    color: #001f25;
    border-bottom: 1px solid #E8E8E8;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased !important;
}

    .modal_table_wrapper td input[type='checkbox'] {
        width: 14px;
        height: 20px;
    }

.modal_table_wrapper_close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2rem;
}

.basket_modal_table_filter_input_wrapper {
    padding-bottom: 16px;
    border-bottom: 1px solid #E8E8E8;
    margin: 0 -4px 0;
}

.basket_modal_table_filter_input {
    width: calc(25% - 8px);
    display: inline-block;
    vertical-align: top;
    margin: 0 4px 8px;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    line-height: 16px;
    font-size: 15px;
    color: #001f2599;
    outline: none;
    padding: 16px 16px;
    border-radius: 5px;
}

.basket_modal_table_filter_select_wrapper {
    width: calc(25% - 8px);
    display: inline-block;
    vertical-align: top;
    margin: 0 4px 8px;
}

.btn_modal_table_filter_search {
    width: calc(25% - 8px);
    display: inline-block;
    vertical-align: top;
    margin: 0 4px 8px;
}

.btn_modal_table_close {
    float: right;
    margin: 5px;
}

.btn_modal_functional {
    float: right;
    margin: 5px;
}

.modal_table_wrapper .dataTables_filter label {
    display: block;
}

    .modal_table_wrapper .dataTables_filter label input[type="search"] {
        background: #FFFFFF;
        border: 1px solid #E8E8E8;
        line-height: 16px;
        font-size: 15px;
        color: #001f2599;
        outline: none;
        padding: 16px 16px;
        border-radius: 5px;
        display: block;
        margin: 24px 0 0;
        width: 100%;
    }

.field_error, .duplicate_db_email_error, .duplicate_email_error, .duplicate_db_ad_email_error, .invalid_ad_email_error {
    border: 1.5px solid red !important;
}

.booking_record {
    cursor: pointer;
}

.textarea_big {
    resize: none;
    height: 300px !important;
}

.hdn_secondary_service_file_input, .hdn_file_input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.custom_file_upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    width: 100%;
    height: 100px;
    text-align: center;
}

    .custom_file_upload.dragged_over {
        border: 1.5px solid #FBAE3D !important;
    }

/* Toggle button start */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 50%;
    }

.btn_toggle:checked + .slider {
    background-color: green;
}

.btn_toggle:focus + .slider {
    box-shadow: 0 0 1px green;
}

.btn_toggle:checked + .slider:before {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
}

.toggle_text {
    font-size: 15px;
    color: #001F25;
    font-family: 'ubuntu_medium';
    margin-top: 5px;
    margin-left: 10px;
    -webkit-font-smoothing: antialiased !important;
}

.toggle_info_image_small {
    margin-top: 0px;
    margin-left: 0px;
    height: 15px;
    width: 15px;
    cursor: pointer;
}

.toggle_info_image_big {
    width: 20px;
    height: 20px;
    margin-left: 1px;
    margin-top: 11px;
    cursor: pointer;
}

.toggle_info_image {
    margin-top: 3px;
    margin-left: 0px;
    height: 20px;
    width: 20px;
    cursor: pointer;
}
/* Toggle button end */

/* Slim Toggle button start */
.switch-small {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

    .switch-small input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider-small {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

    .slider-small:before {
        position: absolute;
        content: "";
        height: 12px;
        width: 12px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 50%;
    }

.btn_toggle:checked + .slider-small {
    background-color: green;
}

.btn_toggle:focus + .slider-small {
    box-shadow: 0 0 1px green;
}

.btn_toggle:checked + .slider-small:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

.toggle_text {
    font-size: 15px;
    color: #001F25;
    font-family: 'ubuntu_medium';
    margin-top: 5px;
    margin-left: 10px;
    -webkit-font-smoothing: antialiased !important;
}

/* Slim Toggle button end */

.margin_top_20 {
    margin-top: 20px;
}

.margin_top_55 {
    margin-top: 55px;
}

.margin_bottom_5 {
    margin-bottom: 5px;
}

.margin_bottom_10 {
    margin-bottom: 10px;
}

.margin_left_10 {
    margin-left: 10px;
}

.height_50 {
    height: 50px;
}

.btn_purchase_license_library_modal_purchase_license {
    float: right;
}

.course_detail_card_wrapper {
    margin-bottom: 20px;
}

.course_detail_card_body {
    background: #FFFFFF;
    padding: 32px 32px 24px 32px;
}

.course_detail_shortcut_wrapper {
    margin-top: 12px;
    font-size: 0;
    padding-bottom: 16px;
}

.course_detail_card_body_grey {
    background-color: #F2F2F2;
    font-family: 'ubuntu_medium';
    line-height: 18px;
    padding: 24px 32px 24px 32px;
    display: inline-block;
    font-size: 14px;
    border-radius: 0 0 8px 8px;
    width: 100%;
    display: block;
    -webkit-font-smoothing: antialiased !important;
}

.course_detail_card_body_item {
    display: inline-block;
    padding-right: 32px;
    margin-right: 32px;
    border-right: 1px solid #7676761a;
    font-size: 0;
}

.course_detail_card_body_item_title {
    color: #001F2599;
    font-size: 15px;
    font-family: 'ubuntu_medium';
    line-height: 18px;
    display: inline-block;
    vertical-align: top;
    margin-right: 4px;
    -webkit-font-smoothing: antialiased !important;
}

.course_detail_card_body_item_content {
    color: #001F25;
    font-size: 15px;
    font-family: 'ubuntu_medium';
    line-height: 18px;
    display: inline-block;
    vertical-align: top;
    -webkit-font-smoothing: antialiased !important;
}

.btn_course_detail_download_pdf {
    display: inline-block;
    font-size: 16px;
    background: #F5F5F5;
    border: 1px solid #F5F5F5;
    font-family: 'ubuntu_medium';
    -webkit-font-smoothing: antialiased !important;
}

.on_demand_message {
    line-height: 30px;
    font-size: 18px;
}

.course_table_overflow_wrapper {
    overflow-x: auto;
    width: 100%;
}

.btn_employee_search_course_dashboard {
    width: 100px;
}

/* Feedback Model Start */
.feedback_modal_row {
    margin-top: 15px;
}

.feedback_modal_row_title {
    font-size: 16px;
    color: #001F25;
    font-family: 'ubuntu_medium';
    -webkit-font-smoothing: antialiased !important;
}

.feedback_modal_row_content {
    line-height: 24px;
    font-size: 16px;
}
/* Feedback Mdoel End */

.showdocumentation_modal_row {
    margin-top: 15px;
}

.showdocumentation_modal_row_title {
    font-size: 16px;
    color: #001F25;
    font-family: 'ubuntu_medium';
    -webkit-font-smoothing: antialiased !important;
}

.showdocumentation_modal_row_content {
    line-height: 24px;
    font-size: 16px;
}

.dataTables_paginate span .ellipsis {
    margin-right: 8px;
    display: inline-block;
    vertical-align: top;
    line-height: 42px;
}

.license_management_table_overflow_wrapper {
    overflow: visible;
}

.dashboard_course_table_overflow_wrapper {
    overflow: visible;
}

.ajaxSpinnerLoader {
    height: 100%;
    position: absolute;
    background-color: #FFF;
    opacity: 0.5;
    width: 60%;
    z-index: 999;
}

img.imgAjaxLoader {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.studentPanelError {
    border: 2px solid red !important;
}

.studentPanelWarning {
    border: 2px solid;
    border-color: #FBAE3D;
}

.studentCellError {
    background-color: #d9534f;
    color: white;
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
}

.ic_box_lg {
    height: 40px
}

.inline {
    display: inline-block;
}

tr.selected, .onlineCourse.selected {
    background-color: #f5f5f5;
}

.basket_remove_course_reserve {
}

.nav_template_wrapper {
    font-size: 0;
}

.nav_template_body {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 10px);
    padding-right: 6px;
}

.nav_template_name {
    font-size: 15px;
    line-height: 20px;
}

.nav_template_name_small {
    font-size: 14px;
    line-height: 16px;
    font-family: 'ubuntu_medium';
    color: #001F2599;
    margin-top: 6px;
    -webkit-font-smoothing: antialiased !important;
}

.btn_x_nav_remove_employee, .btn_x_nav_remove_course {
    line-height: 16px;
    font-size: 18px;
    width: 10px;
    text-align: right;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
}

.right_navigation_basket_detail_body_total {
    border-top: 1px solid #e8e8e899;
}

.course_detail_page_card_title_wrapper {
    font-size: 0;
}

    .course_detail_page_card_title_wrapper .card_title_body {
        width: calc(100% - 350px);
    }

    .course_detail_page_card_title_wrapper .card_title_body_right {
        width: 350px;
        text-align: right;
    }

.course_detail_page_card_right_title_small {
    font-size: 14px;
    color: #767676;
    line-height: 16px;
    margin-top: 6px;
}

.about_the_course_content {
    font-size: 14px;
    line-height: 25px;
    color: #001F25cc;
}

.course_detail_card_body_grey_img_wrapper {
    float: right;
    margin-top: -3px;
    font-size: 0;
}

.course_detail_card_body_grey_img {
    margin-right: 16px;
    display: inline-block;
    vertical-align: top;
}

    .course_detail_card_body_grey_img:last-child {
        margin-right: 0;
    }

.report_option_wrapper {
    width: 300px;
    display: block;
    vertical-align: top;
}

.report_dropdown_wrapper {
    font-size: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #7070701a;
    margin: 0 -4px 24px;
}

.report_dropdown_body_long {
    display: inline-block;
    vertical-align: top;
    width: 300px;
    margin: 4px 0px;
}

.report_dropdown_body_short {
    display: inline-block;
    vertical-align: top;
    margin: 4px 4px;
}

.report_dropdown_button {
    display: inline-block;
    vertical-align: top;
    margin: 4px 4px;
    float: right;
}

    .report_dropdown_button .btn {
        width: 100%;
    }

.report_info_wrapper {
    padding-bottom: 24px;
    border-bottom: 1px solid #7070701a;
    /*max-width: 50%;*/
}

.report_info_title {
    font-size: 15px;
    font-family: 'ubuntu_medium';
    color: #001F25;
    line-height: 18px;
    margin-bottom: 10px;
    -webkit-font-smoothing: antialiased !important;
}

.report_info_content {
    font-size: 12px;
    font-family: 'ubuntu_medium';
    color: #001f25cc;
    line-height: 18px;
    -webkit-font-smoothing: antialiased !important;
}

.dataTables_filter {
    display: none;
}

.about_the_course_btn {
    float: right;
    display: inline-block;
    vertical-align: top;
}

.about_the_course_title {
    font-size: 15px;
    /*line-height: 50px;*/
    display: inline-block;
    vertical-align: top;
    font-family: 'ubuntu_medium';
    color: #001F25;
    -webkit-font-smoothing: antialiased !important;
}

/*.find_available_dates_title {
    font-size: 16px;
    line-height: 50px;
    display: inline-block;
    vertical-align: top;
    font-family: 'ubuntu_medium';
    color: #001F25;
    -webkit-font-smoothing: antialiased !important;
}*/

.about_the_course_datepicker_wrapper {
    display: inline-block;
    vertical-align: top;
    float: right;
    text-align: right;
}

    .about_the_course_datepicker_wrapper .advanced_search_box_width {
        width: 180px;
    }

        .about_the_course_datepicker_wrapper .advanced_search_box_width:last-child {
            margin-right: 0;
        }

.report_card_title_dropdown_wrapper {
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.right_navigation_basket_content_wrapper {
    height: calc(100vh - 380px);
    overflow-y: auto;
    margin-right: -10px;
    padding-right: 10px;
}

.right_navigation_employee_content_wrapper {
    height: calc(100vh - 400px);
    overflow-y: auto;
    margin-right: -10px;
    padding-right: 10px;
}

.right_navigation_5_button_content_wrapper {
    height: calc(100vh - 455px);
    overflow-y: auto;
    margin-right: -10px;
    padding-right: 10px;
}

.right_navigation_4_button_content_wrapper {
    height: calc(100vh - 205px);
    overflow-y: auto;
    margin-right: -10px;
    padding-right: 10px;
}

.right_navigation_3_button_content_wrapper {
    height: calc(100vh - 365px);
    overflow-y: auto;
    margin-right: -10px;
    padding-right: 10px;
}

.right_navigation_2_button_content_wrapper {
    height: calc(100vh - 310px);
    overflow-y: auto;
    margin-right: -10px;
    padding-right: 10px;
}

.right_navigation_1_button_content_wrapper {
    height: calc(100vh - 250px);
    overflow-y: auto;
    margin-right: -10px;
    padding-right: 10px;
}

.right_navigation_employee_content_error {
    color: red;
    margin-top: 50px;
    font-size: 20px;
    text-align: center;
}

.course_detail_find_employee_filter_body {
    display: inline-block;
    width: calc(100% - 30% - 8px);
    margin-right: 8px;
}

.course_detail_find_employee_filter_company_body {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: #001F25;
    width: calc(30%);
}

.btn_assign_licence_to_employee {
    float: right;
}

.txt_org_search_short {
    display: inline-block;
    margin-right: 8px;
    width: calc(100% - 50px - 8px - 50px - 8px - 50px - 8px - 50px - 8px);
}

.txt_org_search {
    display: inline-block;
    margin-right: 8px;
    width: calc(100% - 50px - 8px);
}

.btn_org_action {
    width: 50px;
    height: 50px;
}

.img_org_action_plus {
    margin-top: 1px;
    margin-left: -7.5px;
}

.img_org_action_pencil {
    margin-left: -8px;
}

.img_org_action_trash {
    margin-top: -1.5px;
    margin-left: -7px;
}

.img_org_action_cross {
    margin-top: 3px;
    margin-left: -6px;
}

.div_org_content_hidden {
    display: none;
}

.div_org_content {
    font-size: 0;
    padding: 16px 16px;
    border-top: 1px solid #E8E8E8;
    cursor: pointer;
}

    .div_org_content:last-child {
        border-bottom: 1px solid #E8E8E8;
    }

.div_org_content_wrapper {
    display: inline-block;
}

.div_org_content_title {
    font-size: 16px;
    line-height: 20px;
    font-family: 'ubuntu_medium';
    color: #001F25;
    -webkit-font-smoothing: antialiased !important;
}

.div_org_content_desc {
    font-size: 14px;
    line-height: 20px;
    font-family: 'ubuntu_medium';
    color: #001F2580;
    -webkit-font-smoothing: antialiased !important;
}

.div_org_content.active {
    background-color: #E8E8E8;
}

.employee_record.active {
    background-color: #f5f5f5;
}

.btn_org_add, .btn_org_remove {
    height: 40px;
    padding: 10px 24px;
}

.div_org_right_desc {
    color: #001F25;
    margin-bottom: 8px;
    font-weight: bold;
    line-height: 20px;
    font-family: 'ubuntu_medium';
    -webkit-font-smoothing: antialiased !important;
}

.tab_container:after, .tab_container:before, .tab_row:after, .tab_row:before {
    content: "";
    display: table;
    clear: both;
}

.tab_full {
    float: left;
    width: 100%;
    border-bottom: 2px solid #ccc !important;
    padding: 8px 16px !important;
}

.tab_half {
    float: left;
    width: 49.99999%;
    border-bottom: 2px solid #ccc !important;
    padding: 8px 16px !important;
    font-weight: bold
}

    .tab_half:hover, .tab_full:hover {
        color: #000 !important;
        background-color: #f1f1f1 !important;
    }

    .tab_half.active, .tab_full.active {
        border-color: #FBAE3D !important;
    }

.tr_employee {
    cursor: pointer;
}

    .tr_employee.active {
        background-color: #E8E8E8;
    }

.txt_bulk_digital_booking_search {
    display: inline-block;
    margin-right: 8px;
    width: calc(100% - 100px - 8px);
}

.txt_bulk_digital_notification_search {
    display: inline-block;
    margin-right: 8px;
    width: 100%;
}

.btn_bulk_digital_booking_search {
    float: right;
    width: 100px;
}

.dashboard_title {
    width: 50%;
    float: left;
    display: inline-block
}


@media (max-width: 1600px) {
    /*.left_notification_wrapper{
        visibility:visible;
    }

    .ic_left_notification {        
        visibility: visible;
    }*/

    /*.left_notification_wrapper {
        width: 3%;        
        float: left;
        display: inline-block;
    }*/

    .left_box {
        visibility: visible;
    }

    .navigation_stick_bottom_wrapper {
        position: relative;
        bottom: 0px;
        width: calc(100% - 80px);
        left: auto;
    }

    .btn_clear_history {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-bottom: 32px;
    }

    .empty_course_notification_box_left {
        margin: 80px 8% 80px 10%;
    }

    .loading_gif {
        top: 50%;
    }
}

@media (max-width: 1400px) {
    .left_box {
        visibility: visible;
    }

    .ic_left_notification {
        width: 24px;
        height: 24px;
        cursor: pointer;
        visibility: visible;
    }

    .right_profile_notification_wrapper_mobile {
        display: unset;
        visibility: visible;
        text-align: right;
        margin-bottom: 24px;
        align-content: flex-end;
        width: 50%;
    }

    .box_white_bar_left {
        visibility: hidden;
    }

    .box_white_bar_right {
        visibility: hidden;
    }

    .left_box.active {
        box-shadow: 0px 6px 24px #0000000B;
    }

    .box_arrow_left {
        visibility: hidden;
    }

    .box_arrow_wrapper_left {
        visibility: hidden;
    }

    .box_arrow_wrapper_right {
        visibility: hidden;
    }

    .box_arrow_right {
        visibility: hidden;
    }

    .right_box {
        visibility: hidden;
    }

    .box_arrow_wrapper {
        display: block;
    }

    .middle_box {
        width: 100%;
        margin-left: 0px;
    }

        .middle_box.has_right_box {
            width: 100%;
            padding: 40px 34px 100px 34px;
        }

    .empty_course_notification_box_left {
        margin: 80px 10% 80px 12%;
    }

    .fixed_top_info {
        width: 100%;
        left: 0;
    }

        .fixed_top_info.has_right_box {
            width: 100%;
        }

    .box_white_bar_right {
        right: 0;
    }

        .box_white_bar_right.active {
            right: 274px;
        }

    .right_box {
        right: -300px;
    }

        .right_box.active {
            right: 0px;
        }

    /*    .box_arrow_wrapper_right {
        right: 13px;
    }*/

    .box_arrow_wrapper_right.active {
        right: 287px;
    }

    .active .box_arrow_right {
        border-top: 5px solid transparent;
        border-left: 5px solid #8f9b9e;
        border-bottom: 5px solid transparent;
        border-right: 0;
    }

    .box_arrow_right {
        border-top: 5px solid transparent;
        border-right: 5px solid #8f9b9e;
        border-bottom: 5px solid transparent;
        border-left: 0;
    }

    .navigation_stick_bottom_wrapper {
        position: relative;
        bottom: 0px;
        width: calc(100% - 80px);
        left: auto;
    }

    .register_box {
        width: 100%;
        margin-left: 0px;
    }

    .left_notification_wrapper {
        display: inline-block;
    }

    .dropdown_wrapper {
        width: 100%;
    }

    .dashboard_title {
        width: calc(50% - 30px);
        float: left;
        display: inline-block
    }
}

@media (max-width: 1366px) {
}

@media (max-width: 1199px) {
    .ic_left_notification {
        width: 24px;
        height: 24px;
        cursor: pointer;
        visibility: visible;
    }

    .box_white_bar_right {
        visibility: hidden;
    }


    .box_arrow_wrapper_right {
        visibility: hidden;
    }

    .box_arrow_right {
        visibility: hidden;
    }

    .right_box {
        visibility: hidden;
    }

    .basket_overflow_wrapper {
        overflow-x: auto;
        width: 100%;
        margin-top: 26px;
    }

    .basket_overflow_body {
        width: 1200px;
    }

    .modal_table_wrapper .modal-dialog {
        width: calc(100% - 16px);
    }

    .license_management_table_overflow_wrapper {
        overflow: auto;
    }

    .dashboard_course_table_overflow_wrapper {
        overflow: auto;
    }

    .dashboard_course_table_wrapper {
        min-width: 1100px;
    }

    .loading_gif {
        top: 55%;
    }
}

@media (max-width: 991px) {
    .ic_left_notification {
        width: 24px;
        height: 24px;
        cursor: pointer;
        visibility: visible;
    }

    .box_white_bar_right {
        visibility: hidden;
    }


    .box_arrow_wrapper_right {
        visibility: hidden;
    }

    .box_arrow_right {
        visibility: hidden;
    }

    .right_box {
        visibility: hidden;
    }

    .dashboard_employee_action_box {
        max-width: 100% !important;
        flex: 0 0 100%;
        margin-bottom: 8px;
    }

    .empty_course_notification_box_left {
        margin: 0px auto;
        padding: 16px;
        display: block;
    }

    .empty_course_notification_box_right {
        margin: 0px auto;
        padding: 16px;
        display: block;
    }

    .box_body {
        padding: 16px;
    }

    .find_course_notification_body {
        padding: 16px;
    }

    .col_find_course_filter_body {
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 8px;
    }

    .col_find_course_filter_country_wrapper {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .course_table_wrapper {
        min-width: 991px;
        /*min-height: 400px;*/
    }

    .course_table_pagination_body {
        text-align: left;
    }

    .course_table_pagination_box {
        padding: 8px 10px;
    }

    .course_table_pagination_arrow {
        margin-top: 3px;
    }

    .dropdown_page_limit_list_wrapper {
        padding: 11px 12px;
    }

    .collapse_dashboard_table_menu {
        background: #fafafa;
        margin: 12px -16px -12px;
        padding: 0 16px;
    }

    .find_course_shortcut_body_right {
        float: none;
        display: block;
        margin-top: 8px;
    }

    .card_body {
        padding: 16px;
    }

    .collapse_advanced_search_menu {
        margin-left: -4px;
        margin-right: -4px;
    }

    .advanced_search_box_width {
        width: 50%;
        margin: 0 0px 8px;
        padding: 0 4px 0;
    }

    /*    .dashboard_find_course_filter_body {
        width: 100%;
        margin-bottom: 8px;
    }*/

    .dashboard_find_email_domain_body {
        width: 100%;
        margin-bottom: 8px;
    }

    .btn_employee_search_course {
        width: calc(50% - 4px);
    }

    .signin_page_container {
        top: auto;
        transform: none;
        position: relative;
    }

        .signin_page_container .col-md-6 {
            max-width: 100%;
            flex: 0 0 100%;
        }

    .signin_page_logo {
        transform: none;
        position: relative;
        top: auto;
        left: auto;
        text-align: center;
        display: block;
        margin: 60px auto 30px;
    }

    .signin_page_body {
        margin: auto;
        padding: 30px 30px;
    }

    .basket_modal_table_filter_input {
        width: calc(50% - 8px);
    }

    .basket_modal_table_filter_select_wrapper {
        width: calc(50% - 8px);
    }

    .btn_modal_table_filter_search {
        width: calc(50% - 8px);
    }

    .modal_table_wrapper .modal-body {
        padding: 16px 16px;
    }

    .modal_table_wrapper .modal-footer {
        padding: 12px 12px;
    }

    .employee_find_course_filter_body {
        width: calc(50% - 4px);
    }

    .course_detail_card_body_grey_img_wrapper {
        float: none;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .ic_left_notification {
        width: 24px;
        height: 24px;
        cursor: pointer;
        visibility: visible;
    }

    /*.left_notification_wrapper {
        width: 4%;
        float: left;
        display: inline-block;
    }*/

    /*    .right_profile_notification_wrapper_mobile {
        visibility: visible;
        text-align: right;
        margin-bottom: 24px;
        align-content: flex-end;
        width: 58%;
    }*/

    .box_white_bar_right {
        visibility: hidden;
    }


    .box_arrow_wrapper_right {
        visibility: hidden;
    }

    .box_arrow_right {
        visibility: hidden;
    }

    .right_box {
        visibility: hidden;
    }

    .btn_save_filter {
        float: none;
        text-align: right;
        display: block;
    }

    .card_title_btn_wrapper {
        float: none;
        display: block;
        margin-top: 8px;
    }

    .custome_popup_wrapper {
        width: calc(100% - 32px);
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
    }

    .signin_page_logo {
        margin: 30px auto 30px;
    }

    .signin_page_body {
        padding: 20px 20px;
    }

    .signin_page_title {
        font-size: 28px;
        line-height: 30px;
    }

    .signin_page_content {
        line-height: 20px;
        margin-bottom: 20px;
    }

    .course_detail_card_body_item {
        display: block;
        margin-bottom: 4px;
        border: 0;
        margin-right: 0;
        padding: 0;
    }

    .about_the_course_datepicker_wrapper {
        float: none;
        text-align: left;
        display: block;
        margin-top: 8px;
    }
}

@media (max-width: 575px) {
    /*    .right_profile_notification_wrapper_mobile {
        visibility: visible;
        text-align: right;
        margin-bottom: 24px;
        align-content: flex-end;
        float:left;
        width: 100%;
    }*/
    /*.left_notification_wrapper {
        width: 5%;
        float: left;
        display: inline-block;
    }*/

    .ic_left_notification {
        width: 24px;
        height: 24px;
        cursor: pointer;
        visibility: visible;
    }

    .box_white_bar_right {
        visibility: hidden;
    }


    .box_arrow_wrapper_right {
        visibility: hidden;
    }

    .box_arrow_right {
        visibility: hidden;
    }

    .right_box {
        visibility: hidden;
    }

    .dropdown_company_wrapper {
        float: none;
    }

    /*.dashboard_dropdown_wrapper .dropdown-menu {
        left: 0 !important;
        right: auto !important;
        padding: 16px;
    }*/

    .btn_advanced_search {
        float: none;
        margin-top: 8px;
    }

    .btn_search_course {
        margin-top: 8px;
    }

    .course_table_body .table_fixed_col.col-sm-11 {
        max-width: 91.66667%;
        flex: 0 0 91.66667%;
    }

    .course_table_body .table_fixed_col.col-sm-10 {
        max-width: 83.33333%;
        flex: 0 0 83.33333%;
    }

    .course_table_body .table_fixed_col.col-sm-9 {
        max-width: 75%;
        flex: 0 0 75%;
    }

    .course_table_body .table_fixed_col.col-sm-8 {
        max-width: 66.66667%;
        flex: 0 0 66.66667%;
    }

    .course_table_body .table_fixed_col.col-sm-7 {
        max-width: 58.33333%;
        flex: 0 0 58.33333%;
    }

    .course_table_body .table_fixed_col.col-sm-6 {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .course_table_body .table_fixed_col.col-sm-5 {
        max-width: 41.66667%;
        flex: 0 0 41.66667%;
    }

    .course_table_body .table_fixed_col.col-sm-4 {
        max-width: 33.33333%;
        flex: 0 0 33.33333%;
    }

    .course_table_body .table_fixed_col.col-sm-3 {
        max-width: 25%;
        flex: 0 0 25%;
    }

    .course_table_body .table_fixed_col.col-sm-2 {
        max-width: 16.66667%;
        flex: 0 0 16.66667%;
    }

    .course_table_body .table_fixed_col.col-sm-1 {
        max-width: 8.33333%;
        flex: 0 0 8.33333%;
    }

    .page_limit_dropdown_wrapper {
        position: relative;
        margin-top: 8px;
        text-align: right;
    }

    .form_btn_wrapper .btn {
        float: none;
        margin: 0 auto 8px;
        width: 100%;
    }

    .basket_overflow_wrapper .col-sm-11 {
        max-width: 91.66667%;
        flex: 0 0 91.66667%;
    }

    .basket_overflow_wrapper .col-sm-10 {
        max-width: 83.33333%;
        flex: 0 0 83.33333%;
    }

    .basket_overflow_wrapper .col-sm-9 {
        max-width: 75%;
        flex: 0 0 75%;
    }

    .basket_overflow_wrapper .col-sm-8 {
        max-width: 66.66667%;
        flex: 0 0 66.66667%;
    }

    .basket_overflow_wrapper .col-sm-7 {
        max-width: 58.33333%;
        flex: 0 0 58.33333%;
    }

    .basket_overflow_wrapper .col-sm-6 {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .basket_overflow_wrapper .col-sm-5 {
        max-width: 41.66667%;
        flex: 0 0 41.66667%;
    }

    .basket_overflow_wrapper .col-sm-4 {
        /*max-width: 33.33333%;*/
        flex: 0 0 33.33333%;
    }

    .basket_overflow_wrapper .col-sm-3 {
        max-width: 25%;
        flex: 0 0 25%;
    }

    .basket_overflow_wrapper .col-sm-2 {
        /*max-width: 16.66667%;*/
        flex: 0 0 16.66667%;
    }

    .basket_overflow_wrapper .col-sm-1 {
        /*max-width: 8.33333%;*/
        flex: 0 0 8.33333%;
    }

    .basket_modal_table_filter_input {
        width: calc(100% - 8px);
    }

    .basket_modal_table_filter_select_wrapper {
        width: calc(100% - 8px);
    }

    .btn_modal_table_filter_search {
        width: calc(100% - 8px);
    }

    .course_detail_page_card_title_wrapper .card_title_body_right {
        text-align: left;
        float: none;
        display: block;
        width: auto;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
}

.w-20px {
    width: 20px;
}

.w-30px {
    width: 30px;
}

.w-40px {
    width: 40px;
}

.w-350px {
    width: 350px;
}

.w-full {
    width: 100% !important;
}

.h-500px {
    height: 500px !important;
}

.h-600px {
    height: 600px !important;
}

.h-325px {
    height: 325px !important;
}

.overflow-custom-field {
    overflow-y: scroll;
    overflow-x: hidden;
}

.p-top-10px {
    padding-top: 10px !important;
}

.overflow-y-scroll {
    overflow-y: scroll;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.btn_small {
    padding: 10px 16px;
    margin-top: 10px;
    font-size: 0.8rem;
}

.feedback_notification {
    position: relative;
    cursor: pointer;
}

.custom_sorting {
    margin-left: 5px;
    margin-top: 3px;
    cursor: pointer;
}

.dropdown-menu_transform {
    transform: translate3d(0px, 60px, 0px) !important;
}

.h:hover {
    background-color: #ddd;
}

.handPointer {
    cursor: pointer;
}

.fa-sort {
    opacity: 0.3;
}

table.dataTable thead th {
    background: transparent !important;
    white-space: nowrap;
}

table.dataTable thead span.sort-icon {
    display: inline-block;
    margin-left: 5px;
    width: 16px;
    height: 16px;
    color: black;
}

table.dataTable thead .sorting span {
    background: url('../../../images/dataTable/sort_both.png') no-repeat center right;
}

table.dataTable thead .sorting_asc span {
    background: url('../../../images/dataTable/sort_asc.png') no-repeat center right !important;
}

table.dataTable thead .sorting_desc span {
    background: url('../../../images/dataTable/sort_desc.png') no-repeat center right !important;
}

table.dataTable thead .sorting_asc_disabled span {
    background: url('../../../images/dataTable/sort_asc_disabled.png') no-repeat center right;
}

table.dataTable thead .sorting_desc_disabled span {
    background: url('../../../images/dataTable/sort_desc_disabled.png') no-repeat center right;
}

table.dataTable thead .sorting::before,
table.dataTable thead .sorting_asc::before,
table.dataTable thead .sorting_desc::before,
table.dataTable thead .sorting_asc_disabled::before,
table.dataTable thead .sorting_desc_disabled::before {
    content: "";
}

table.dataTable thead .sorting::after,
table.dataTable thead .sorting_asc::after,
table.dataTable thead .sorting_desc::after,
table.dataTable thead .sorting_asc_disabled::after,
table.dataTable thead .sorting_desc_disabled::after {
    content: "";
}

.btn_small_fixed {
    width: 135px;
}

.btn_fixed {
    /*width: 155px;*/
    margin-right: 20px !important;
    /*max-height:38px;*/
}

.btn_text_fixed {
    white-space: normal;
    height: 38px;
    padding: 0px;
    text-align: center;
}

.addToCartAll_Reserve {
    width: 135px;
    margin-right: 20px !important;
}

.btn_auto {
    width: 100%;
}

.btn_text {
    color: black;
}

.btn_text_wrapper {
    white-space: normal;
    height: 50px;
    padding: 5px;
}

.btn_height {
    height: 50px;
    text-wrap: normal;
    white-space: nowrap;
}

.hidden_footer {
    border-top: 0px;
}

.btn_dotted {
    border: 2px dashed grey !important;
    color: grey;
}

.btn_download {
    border: 1px solid #e8e8e8;
    background: #fff;
    border-radius: 5px;
    font-size: 16px;
    color: #001f25;
    font-family: 'ubuntu_medium';
    line-height: 16px;
    cursor: pointer;
    padding: 16px 24px;
    text-align: left;
    margin-right: 8px;
    -webkit-font-smoothing: antialiased !important;
}

.tableFixHead {
    overflow: auto;
    height: 500px;
}

    .tableFixHead thead th {
        position: sticky;
        top: 0;
        z-index: 1;
        background: white;
    }


        .tableFixHead thead th:first-child {
            position: sticky;
            left: 0;
            z-index: 2;
        }

    .tableFixHead tbody th {
        position: sticky;
        left: 0;
        background: white;
        z-index: 1;
    }


.calendar_month_box_width {
    display: inline-block;
    margin-right: 8px;
    font-size: 15px;
    color: #001F25;
}

.course_calender_view_card_body {
    background: #FFFFFF;
    padding: 0px 32px 0px 32px;
}

.btn_view_course_calendar {
    position: relative;
    display: inline-block;
    margin-top: 7px;
}

.div_employee_search_field_text {
    display: inline-block;
    width: calc(100% - 300px - 8px);
    margin-right: 8px;
}

.div_employee_search_field_ddl {
    display: inline-block;
    width: 300px;
}

.img_right_pane_logo {
    max-height: 200px;
    max-width: 200px;
}

.no_space_break {
    white-space: nowrap;
}

.ic_box_no_height {
    height: unset;
}

.course_table_checkbox_wrapper_no_margin_top {
    margin-top: unset;
}

.bulk_bold_black {
    color: black !important;
    font-weight: bold !important;
}

.basket_error {
    background: #FC315D;
    color: #FFF;
    text-align: center;
    padding: 5px;
}

.basket_warning {
    background: #FBAE3D;
    color: #001F25;
    text-align: center;
    padding: 5px;
}

.checkbox_size {
    padding-left: 30px;
}

.margin_top_80 {
    margin-top: 80px !important;
}

.txt_client_company_search {
    display: inline-block;
    margin-right: 8px;
    width: calc(100% - 50px - 8px);
}

.img_action_link, .img_action_unlink {
    height: 25px;
    width: 25px;
    margin-left: -12px;
    margin-top: -5px;
}

.wordwrap_breakword {
    word-wrap: break-word;
}

.btn_reporting {
    padding: 10px 16px;
    margin-top: 10px;
    font-size: 0.8rem;
}

.panel_report {
    overflow: auto;
    min-height: 350px;
    max-height: 700px;
}

.div_vertical_center {
    display: flex;
    align-items: center;
}

.div_length_style_1 {
    width: CALC(100% - 50px);
}

.register_box {
    margin: 0 0 0 0;
    width: 100%;
    display: block;
    padding: 40px 34px 5px 34px;
    transition: all .5s;
}
