/* -------------------------------------------------------------------------
   Variable  Start
----------------------------------------------------------------------------*/
:root {
    --black: #000000;
    --white: #ffffff;

    /* Primary color */
    --primary-color: #35bff7;

    /* Secondary color */
    --secondary-color: #ff8f00;

    /* Danger */
    --danger-color: #e5554e;

    /* gray color */
    --light-gray: #cbd5e0;

    /* Text color */
    --text-color: #272629;

    /* Transition */
    --transition: .6s;
}

/* -------------------------------------------------------------------------
   Variable  End
----------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------
   Reset css Start
----------------------------------------------------------------------------*/
/* Gotham fonts */
/* @font-face {
    font-family: 'gotham-bold';
    src: url('../fonts/gotham-fonts/gotham-bold.eot');
    src: url('../fonts/gotham-fonts/gotham-bold.eot') format('embedded-opentype'),
        url('../fonts/gotham-fonts/gotham-bold.woff2') format('woff2'),
        url('../fonts/gotham-fonts/gotham-bold.woff') format('woff'),
        url('../fonts/gotham-fonts/gotham-bold.ttf') format('truetype'),
}

@font-face {
    font-family: 'gotham-medium';
    src: url('../fonts/gotham-fonts/gotham-medium.eot');
    src: url('../fonts/gotham-fonts/gotham-medium.eot') format('embedded-opentype'),
        url('../fonts/gotham-fonts/gotham-medium.woff2') format('woff2'),
        url('../fonts/gotham-fonts/gotham-medium.woff') format('woff'),
        url('../fonts/gotham-fonts/gotham-medium.ttf') format('truetype')
}

@font-face {
    font-family: 'gotham-regular';
    src: url('../fonts/gotham-fonts/gotham-regular.eot');
    src: url('../fonts/gotham-fonts/gotham-regular.eot') format('embedded-opentype'),
        url('../fonts/gotham-fonts/gotham-regular.woff2') format('woff2'),
        url('../fonts/gotham-fonts/gotham-regular.woff') format('woff'),
        url('../fonts/gotham-fonts/gotham-regular.ttf') format('truetype')
}

@font-face {
    font-family: 'gotham-light';
    src: url('../fonts/gotham-fonts/gotham-light.eot');
    src: url('../fonts/gotham-fonts/gotham-light.eot') format('embedded-opentype'),
        url('../fonts/gotham-fonts/gotham-light.woff2') format('woff2'),
        url('../fonts/gotham-fonts/gotham-light.woff') format('woff'),
        url('../fonts/gotham-fonts/gotham-light.ttf') format('truetype')
}

/* Playfair fonts */
/* @font-face {
    font-family: 'playfair-bold';
    src: url('../fonts/playfair-fonts/playfair-display-bold.eot');
    src: url('../fonts/playfair-fonts/playfair-display-bold.eot') format('embedded-opentype'),
        url('../fonts/playfair-fonts/playfair-display-bold.woff2') format('woff2'),
        url('../fonts/playfair-fonts/playfair-display-bold.woff') format('woff'),
        url('../fonts/playfair-fonts/playfair-display-bold.ttf') format('truetype')
}

@font-face {
    font-family: 'playfair-semibold';
    src: url('../fonts/playfair-fonts/playfair-display-semibold.eot');
    src: url('../fonts/playfair-fonts/playfair-display-semibold.eot') format('embedded-opentype'),
        url('../fonts/playfair-fonts/playfair-display-semibold.woff2') format('woff2'),
        url('../fonts/playfair-fonts/playfair-display-semibold.woff') format('woff'),
        url('../fonts/playfair-fonts/playfair-display-semibold.ttf') format('truetype')
}

@font-face {
    font-family: 'playfair-medium';
    src: url('../fonts/playfair-fonts/playfair-display-medium.eot');
    src: url('../fonts/playfair-fonts/playfair-display-medium.eot') format('embedded-opentype'),
        url('../fonts/playfair-fonts/playfair-display-medium.woff2') format('woff2'),
        url('../fonts/playfair-fonts/playfair-display-medium.woff') format('woff'),
        url('../fonts/playfair-fonts/playfair-display-medium.ttf') format('truetype')
}

@font-face {
    font-family: 'playfair-regular';
    src: url('../fonts/playfair-fonts/playfair-display-regular.eot');
    src: url('../fonts/playfair-fonts/playfair-display-regular.eot') format('embedded-opentype'),
        url('../fonts/playfair-fonts/playfair-display-regular.woff2') format('woff2'),
        url('../fonts/playfair-fonts/playfair-display-regular.woff') format('woff'),
        url('../fonts/playfair-fonts/playfair-display-regular.ttf') format('truetype')
} */

body {
    font-size: 16px;
    /* font-family: 'gotham-regular'; */
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
    padding-right: 0 !important;
    line-height: 1.65;
    overflow-y: auto !important;
    overflow-x: hidden;
    -webkit-transition: all.5s;
    -o-transition: all.5s;
    -ms-transition: all.5s;
    -moz-transition: all.5s;
    transition: all.5s;
    scroll-behavior: smooth;
    background: #fafbfd !important;
}

/* Font Size Define */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-color);
    /* font-family: 'playfair-regular'; */
    font-weight: 400;
}

h1 {
    font-size: 46px;
    margin: 0;
    line-height: 56px;
}

h2 {
    font-size: 30px;
    margin: 0;
    line-height: 40px;
}

h3 {
    font-size: 24px;
    margin: 0;
    line-height: 34px;
}

h4 {
    font-size: 18px;
    margin: 0;
    line-height: 28px;
}

h5 {
    font-size: 16px;
    margin: 0;
    line-height: 26px;
}

h6 {
    font-size: 14px;
    margin: 0;
    line-height: 24px;
}

p {
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

a {
    color: var(--secondary-color);
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    -webkit-transition: all.5s;
    -o-transition: all.5s;
    -ms-transition: all.5s;
    -moz-transition: all.5s;
    transition: all.5s;
}

a:hover {
    color: var(--seconday-color);
    text-decoration: none;
    -webkit-transition: all.5s;
    -o-transition: all.5s;
    -ms-transition: all.5s;
    -moz-transition: all.5s;
    transition: all.5s;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none !important;
}

input:focus {
    box-shadow: none;
    outline: none;
}

figure {
    margin: 0;
}

.mtt-10 {
    margin-top: 10px;
}

.mtt-15 {
    margin-top: 15px;
}

.mtt-20 {
    margin-top: 20px;
}

.mtt-30 {
    margin-top: 30px;
}

.mtt-40 {
    margin-top: 40px;
}

/* -------------------------------------------------------------------------
   Reset css End
----------------------------------------------------------------------------*/

/* -------------------------------------------------------------------------
   Button css Start
----------------------------------------------------------------------------*/
.llms-button-action,
.llms-button-primary,
.llms-button-secondary {
    position: relative;
    padding: 17.8px 20px;
    min-width: 165px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 0;
    background-color: #00d4ff !important;
    background-image: linear-gradient(90deg, #1ec3f9 0, #1fa5f3 100%, #00d4ff 100%) !important;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    font-size: 14px;
    display: inline-block;
    font-weight: 700;
    text-align: center;
    color: var(--white) !important;
    letter-spacing: 2.5px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 25px rgb(34 86 102 / 24%);
}

.llms-button-action:before,
.llms-button-primary:before,
.llms-button-secondary:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 550px;
    height: 550px;
    margin: auto;
    background-color: #21d1f5 !important;
    z-index: -1;
    border-radius: 100%;
    transform-origin: top center;
    transform: translateX(-50%) translateY(-5%) scale(.4);
    transition: transform 0.9s;
}

.llms-button-action:hover:before,
.llms-button-primary:hover:before,
.llms-button-secondary:hover:before {
    transition: transform 1s;
    transform: translateX(-45%) translateY(0) scale(1);
    transform-origin: bottom center;
}


/* -------------------------------------------------------------------------
   Button css End
----------------------------------------------------------------------------*/

/* ------------------------------------------------------------------------- 
   Form css Start
----------------------------------------------------------------------------*/
/* Label css */
.bs_form_label,
.woocommerce-form-register label,
.lost_reset_password label {
    position: relative;
    bottom: -12px;
    z-index: 1;
    display: inline-block;
    margin-bottom: 0px;
    margin-left: 16px;
    padding-right: 4px;
    padding-left: 4px;
    background-color: #fff;
    color: #7c7885;
    font-size: 11px;
    line-height: 1.6;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'gotham-medium';
}

/* Input css */
.bs_form_input {
    display: inline-block;
    width: 100%;
    height: 58px;
    padding: 12px 20px;
    outline: none;
    font-size: 16px;
    background-color: var(--white);
    border: 1px solid rgba(190, 158, 74, 0.5);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    color: #333333;
    -webkit-transition: all.5s;
    -o-transition: all.5s;
    -ms-transition: all.5s;
    -moz-transition: all.5s;
    transition: all.5s;
}

.bs_form_input::-webkit-input-placeholder {
    color: #cfced2;
}

.bs_form_input::-moz-placeholder {
    color: #cfced2;
}

.bs_form_input:-ms-input-placeholder {
    color: #cfced2;
}

.bs_form_input:-moz-placeholder {
    color: #cfced2;
}

.bs_form_input:hover {
    outline: none;
    border: 1px solid var(--primary-color);
    -webkit-transition: all.5s;
    -o-transition: all.5s;
    -ms-transition: all.5s;
    -moz-transition: all.5s;
    transition: all.5s;
}

.bs_form_input:focus {
    border-color: #be9e4a;
    box-shadow: 0 0 0 1px #be9e4a;
}

/* Textarea css */
.bs_form_textarea {
    display: inline-block;
    width: 100%;
    height: 120px;
    padding: 12px 20px;
    font-size: 16px;
    outline: none;
    background-color: var(--white);
    border: 1px solid rgba(190, 158, 74, 0.5);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    color: #333333;
    resize: none;
    -webkit-transition: all.5s;
    -o-transition: all.5s;
    -ms-transition: all.5s;
    -moz-transition: all.5s;
    transition: all.5s;
}

.bs_form_textarea::-webkit-input-placeholder {
    color: #cfced2;
}

.bs_form_textarea::-moz-placeholder {
    color: #cfced2;
}

.bs_form_textarea:-ms-input-placeholder {
    color: #cfced2;
}

.bs_form_textarea:-moz-placeholder {
    color: #cfced2;
}

.bs_form_textarea:hover {
    outline: none;
    border: 1px solid var(--primary-color);
    -webkit-transition: all.5s;
    -o-transition: all.5s;
    -ms-transition: all.5s;
    -moz-transition: all.5s;
    transition: all.5s;
}

.bs_form_textarea:focus {
    border-color: #be9e4a;
    box-shadow: 0 0 0 1px #be9e4a;
}

select:focus,
.force_bitcot input[type="text"]:focus,
.force_bitcot input[type="email"]:focus,
.force_bitcot input[type="url"]:focus,
.force_bitcot input[type="password"]:focus,
.force_bitcot input[type="search"]:focus,
.force_bitcot input[type="number"]:focus,
.force_bitcot input[type="tel"]:focus,
.force_bitcot input[type="range"]:focus,
.force_bitcot input[type="date"]:focus,
.force_bitcot input[type="month"]:focus,
.force_bitcot input[type="week"]:focus,
.force_bitcot input[type="time"]:focus,
.force_bitcot input[type="datetime"]:focus,
.force_bitcot input[type="datetime-local"]:focus,
.force_bitcot input[type="color"]:focus,
.force_bitcot textarea:focus {
    color: var(--text-color);
    border: 1px solid var(--primary-color);
    background: var(--white);
    box-shadow: 0px 3px 10px rgb(53 191 247 / 10%);
}


.force_bitcot .llms-form-fields {
    margin: 0 -12px;
}

.force_bitcot .llms-form-field {
    padding: 0 12px;
    margin-bottom: 15px;
}

.force_bitcot .llms-form-field .select2-container .select2-selection--single {
    padding: 7px 1px;
}

.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-dropdown,
.select2-container--default .select2-selection--single {
    border-color: var(--global-gray-400);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--global-gray-400) transparent transparent transparent;
}

.force_bitcot .llms-form-field input,
.force_bitcot.llms-form-field textarea,
.force_bitcot .llms-form-field select {
    margin-bottom: 0;
}

.force_bitcot label {
    margin-bottom: 5px;
    display: inline-block;
}

.force_bitcot input,
.force_bitcot select,
.force_bitcot optgroup,
.force_bitcot textarea {
    font-size: 16px;
}

.force_bitcot input[type="text"],
.force_bitcot input[type="email"],
.force_bitcot input[type="url"],
.force_bitcot input[type="password"],
.force_bitcot input[type="search"],
.force_bitcot input[type="number"],
.force_bitcot input[type="tel"],
.force_bitcot input[type="range"],
.force_bitcot input[type="date"],
.force_bitcot input[type="month"],
.force_bitcot input[type="week"],
.force_bitcot input[type="time"],
.force_bitcot input[type="datetime"],
.force_bitcot input[type="datetime-local"],
.force_bitcot input[type="color"],
.force_bitcot textarea {
    min-height: 44px;
}

/* -------------------------------------------------------------------------
   Form css End
----------------------------------------------------------------------------*/
.content-width-narrow .content-container.site-container,
.content-width-narrow .hero-container.site-container {
    max-width: 1340px;
}

.site-container {
    max-width: 1340px;
}


/* -------------------------------------------------------------------------
   Dashboard css Start
----------------------------------------------------------------------------*/
.bitlms_bg_image,
.force_bitcot .page-hero-section,
.force_bitcot .course-archive-hero-section {
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 0 30px;
    position: relative;
    overflow: hidden;
    margin-top: -81px;
}

.force_bitcot .entry-hero-container-inner {
    background: transparent;
}

.force_bitcot .page-hero-section .entry-hero-container-inner {
    background: transparent;
}

.force_bitcot .page-hero-section .hero-container {
    position: relative;
}

.bitlms_bg_image .entry-header .page-title,
.bitlms_bg_image .entry-header .entry-title,
.force_bitcot .page-hero-section .page-title h1 {
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1.5px;
    font-size: 33px;
    position: relative;
}

.force_bitcot .entry-hero-container-inner .entry-header {
    min-height: auto !important;
    position: relative;
    z-index: 1;
}

.force_bitcot .hero-section-overlay {
    background: rgba(0, 0, 0, 0.69);
}

.force_bitcot .kadence-breadcrumbs {
    color: var(--white);
    font-size: 16px;
    margin-top: 5px;
}

.force_bitcot .kadence-breadcrumb-container span a svg {
    fill: #7b7777;
}

.bc-delimiter {
    color: #7b7777 !important;
    margin: 0 5px;
}

.force_bitcot .content-area article {
    box-shadow: none;
    background: transparent;
}

.force_bitcot .llms-sd-nav {
    background: var(--white);
    border-right: 0 !important;
    /* width: 100% !important; */
    position: sticky !important;
    top: 130px;
    -webkit-box-shadow: 0 0 30px 0 rgba(82, 63, 105, 0.05);
    box-shadow: 0 0 30px 0 rgba(82, 63, 105, 0.05);
}

.force_bitcot .kadence-llms-dash-nav-left .llms-student-dashboard {
    padding-left: 0 !important;
    position: relative;
    min-height: auto !important;
    display: flex !important;
    display: -webkit-box !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
}

.force_bitcot .bit_lms_dashboard_side-custom {
    background: #e9edf2;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    padding: 15px;
}

.llms-student-dashboard .llms-sd-item a {
    padding: 0.5em 15px 0.5em 15px;
}

.force_bitcot .bit_lms_dashboard_side-custom .bitlms_dash_card_wrapper.profile {
    width: 100%;
}

.force_bitcot .bit_lms_dashboard_side-custom .bitlms_dash_card_wrapper.profile .header {
    width: 65px;
    height: 65px;
}

.force_bitcot .bitlms_dash_profile .para.username {
    font-weight: 600;
    font-size: 23px;
    line-height: 28px;
    color: var(--text-color);
    text-transform: capitalize;
}

.force_bitcot .bit_lms_dashboard_side-custom.stats {
    background: var(--white);
    padding-top: 0;
}

.force_bitcot .bit_lms_dashboard_side-custom.stats .bitlms_dash_card {
    margin-top: 15px;
}

.force_bitcot .bit_lms_dashboard_side-custom.stats .bitlms_dash_card:first-child {
    margin-top: 15px;
}

.force_bitcot .bit_lms_dashboard_side-custom.stats .bitlms_dash_card:last-child {
    border-top: 1px solid rgba(38, 38, 38, 0.07);
    border-bottom: 1px solid rgba(38, 38, 38, 0.07);
    padding: 15px 0;
}

.force_bitcot .bit_lms_dashboard_side-custom.stats .bitlms_dash_card .header p {
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.force_bitcot .bit_lms_dashboard_side-custom.stats .bitlms_dash_card .header p i {
    display: none;
}

.force_bitcot .bit_lms_dashboard_side-custom.stats .bitlms_dash_card .body .para {
    font-size: 14px;
    color: #718096;
    font-weight: 400;
    margin-top: 7px;
}

.force_bitcot .llms-sd-header {
    flex: 0 0 310px;
    display: none;
}

.force_bitcot .llms-sd-tab {
    flex: calc(100% - 310px);
    margin-left: 25px;
    max-width: calc(100% - 310px);
}

.logged-in .llms-sd-layout-columns .llms-sd-nav .llms-sd-items .llms-sd-item a {
    padding: 10px 15px !important;
}

.force_bitcot .dash_home_sec {
    width: 100%;
    max-width: 100%;
}

.force_bitcot .dash_home_sec {
    margin: 25px 0 0;
}

.force_bitcot .llms-student-dashboard .dash_home_sec:last-child {
    margin-bottom: 0px;
}

.force_bitcot .llms-student-dashboard .llms-sd-section {
    background: #fff;
    padding: 25px;
    -webkit-box-shadow: 0 0 30px 0 rgb(82 63 105 / 5%);
    box-shadow: 0 0 30px 0 rgb(82 63 105 / 5%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 0;
    margin-bottom: 0;
}

.force_bitcot .llms-student-dashboard .llms-my-memberships p {
    padding-top: 0;
}

.force_bitcot .kadence-llms-dash-nav-left .llms-student-dashboard .llms-sd-item {
    border-bottom: 1px solid #f3f6f9 !important;
}

.force_bitcot .kadence-llms-dash-nav-left .llms-student-dashboard .llms-sd-item:last-child {
    margin-bottom: 7px;
}

.force_bitcot .kadence-llms-dash-nav-left .llms-student-dashboard .llms-sd-item a {
    border: 0 !important;
    color: var(--primary-color);
    font-size: 16px;
}

.force_bitcot .kadence-llms-dash-nav-left .llms-student-dashboard .llms-sd-item a:hover {
    background-color: #00d4ff !important;
    background-image: linear-gradient(90deg, #1ec3f9 0, #1fa5f3 100%, #00d4ff 100%) !important;
    color: var(--white);
}

.force_bitcot .kadence-llms-dash-nav-left .llms-student-dashboard .llms-sd-item.current a {
    background-color: #00d4ff !important;
    background-image: linear-gradient(90deg, #1ec3f9 0, #1fa5f3 100%, #00d4ff 100%) !important;
    color: var(--white);
}

.force_bitcot .entry-content-wrap {
    padding: 0;
}

.force_bitcot .content-area {
    margin-top: 50px;
    margin-bottom: 50px;
}

.force_bitcot .llms-sd-header .llms-sd-title {
    display: none;
}

.force_bitcot .llms-sd-section-title {
    color: var(--primary-color);
    font-size: 18px;
    line-height: 20px;
    border-bottom: 1px solid rgba(38, 38, 38, 0.07);
    padding-bottom: 20px;
    position: relative;
    margin: 0 0 20px;
}

.force_bitcot .llms-sd-section-title:after {
    content: '';
    width: 90px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: -2px;
    left: 0;
}

.force_bitcot .llms-student-dashboard .llms-loop-item-content .llms-featured-image {
    height: auto;
}

.force_bitcot .grid-cols {
    row-gap: 0;
    column-gap: 24px;
}

.force_bitcot .llms-loop-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.force_bitcot .llms-loop-item-content .llms-progress {
    display: none;
}

.force_bitcot .llms-student-dashboard .llms-loop .llms-loop-item.entry {
    box-shadow: 0 4px 25px rgb(34 86 102 / 7%);
    /* margin-top: 30px; */
    position: relative;
    border: 1px solid rgba(38, 38, 38, 0.07);
    border-radius: 4px;
    margin-bottom: 24px;
}

.force_bitcot .llms-student-dashboard .llms-loop .llms-loop-item .llms-loop-link {
    overflow: hidden;
}

.bitlms_thumbnail_wrapper {
    overflow: hidden;
    max-height: 236px;
}

.llms-sd-tab.dashboard .llms-sd-section-title {
    margin-bottom: 15px;
    padding-bottom: 8px;
}
.llms-student-dashboard .llms-sd-nav .llms-sd-items .llms-sd-item {
    width: 100%;
}
.force_bitcot .llms-sd-grades .llms-button-secondary.small {
    line-height: 6px;
    position: relative;
    padding: 17.8px 20px;
    min-width: 165px;
}

.force_bitcot .llms-loop-item .bitlms_thumbnail_wrapper img,
.force_bitcot .llms-student-dashboard .llms-loop .llms-loop-item .llms-loop-link img {
    -webkit-transition: all.5s;
    -o-transition: all.5s;
    -ms-transition: all.5s;
    -moz-transition: all.5s;
    transition: all.5s;
}

.force_bitcot .llms-loop-item:hover .bitlms_thumbnail_wrapper img,
.force_bitcot .llms-student-dashboard .llms-loop .llms-loop-item:hover .llms-loop-link img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    transform: scale(1.08);
    -webkit-transition: all.5s;
    -o-transition: all.5s;
    -ms-transition: all.5s;
    -moz-transition: all.5s;
    transition: all.5s;
}

.force_bitcot .llms-student-dashboard .llms-loop .llms-loop-item:hover .llms-loop-link img.avatar {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}


.force_bitcot .llms-loop-item-content {
    position: relative;
}

.force_bitcot .llms-loop-item:after {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    background: var(--primary-color);
    left: 0;
    -webkit-transition: all.5s;
    -o-transition: all.5s;
    -ms-transition: all.5s;
    -moz-transition: all.5s;
    transition: all.5s;
    z-index: 2;
}

.force_bitcot .llms-loop-item:hover:after {
    width: 100%;
    -webkit-transition: all.5s;
    -o-transition: all.5s;
    -ms-transition: all.5s;
    -moz-transition: all.5s;
    transition: all.5s;
}

.force_bitcot .llms-loop-item-content .llms-loop-title {
    padding: 0;
    font-size: 18px;
    margin-top: 7px;
    font-weight: 700;
    border-top: 1px solid rgba(38, 38, 38, 0.07);
    padding-top: 8px;
    -webkit-transition: all.5s;
    -o-transition: all.5s;
    -ms-transition: all.5s;
    -moz-transition: all.5s;
    transition: all.5s;
}

.force_bitcot .llms-loop-item:hover .llms-loop-item-content .llms-loop-title {
    color: var(--primary-color);
    -webkit-transition: all.5s;
    -o-transition: all.5s;
    -ms-transition: all.5s;
    -moz-transition: all.5s;
    transition: all.5s;
}

.force_bitcot .bitlms-title-wrap {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    background: #fff;
    margin-top: -35px;
    position: relative;
    padding: 15px;
    box-shadow: 0 4px 25px rgba(34, 86, 102, 0.07);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.force_bitcot .llms-author {
    flex: 0 0 100%;
}

.force_bitcot .bitlms_dash_card_wrapper {
    flex-wrap: wrap;
}

.force_bitcot .bitlms_dash_card:first-child {
    order: 3;
}

.force_bitcot .bitlms_dash_card:nth-child(2) {
    order: 2;
}

.force_bitcot .bitlms_dash_card:last-child {
    order: 1;
    flex: 0 0 100%;
}

.force_bitcot div.bitlms_radial_progressbar[role="progressbar"] {
    background: radial-gradient(closest-side, white 80%, transparent 0 99.9%, white 0), conic-gradient(var(--primary-color) calc(var(--pgPercentage) * 1%), var(--bg) 0);
}

.force_bitcot .llms-progress .llms-progress-bar {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 50px;
    height: 7px !important;
    background: #e9ecef;
}

.force_bitcot .llms-sd-grades .llms-table .llms-progress .progress__indicator {
    font-size: 12px;
    right: 0;
    top: 12px;
}
.force_bitcot  .llms-sd-grades .llms-button-secondary.small {
    line-height: 6px;
}

.force_bitcot .llms-progress .progress-bar-complete {
    background-color: var(--primary-color) !important;
    border-radius: 20px;
}

.force_bitcot .bitlms_overall_progress h3 {
    color: var(--primary-color);
    font-size: 18px;
    line-height: 20px;
    border-bottom: 1px solid rgba(38, 38, 38, 0.07);
    padding-bottom: 20px;
    position: relative;
}

.force_bitcot .bitlms_overall_progress h3:after {
    content: '';
    width: 90px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: -2px;
    left: 0;
}

.force_bitcot .llms-progress {
    margin-top: 25px;
}

.force_bitcot .llms-loop-item-title_s {
    padding: 0 20px;
}

.force_bitcot .bitlms-title-wrap h4 {
    margin-bottom: 0;
    margin-top: 5px;
    font-size: 20px;
}

.force_bitcot .llms-loop-item-footer .h_text {
    color: var(--black);
    font-weight: 600;
    min-width: 80px;
    display: inline-block;
}

.force_bitcot .llms-loop-item-footer .date_text {
    display: inline-block;
    width: calc(100% - 90px);
    vertical-align: text-top;
}

.force_bitcot .llms-loop-item-footer p {
    color: #718096;
    font-weight: 400;
    font-size: 14px;
}

.force_bitcot .llms-loop-item-content .llms-loop-item-footer {
    padding: 20px;
}

.force_bitcot .llms-certificate-loop-item.certificate-item a {
    border: 8px solid #1faaf412;
    background: #f7f9fa;
    padding: 30px 15px;
    /* margin-top: 20px; */
    position: relative;
    z-index: 1;
    height: 100%;
}

.force_bitcot .llms-certificate-loop-item.certificate-item a:after {
    content: '';
    background: url('../images/pattern.jpg');
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 0.3;
}

.force_bitcot .llms-certificate-loop-item.certificate-item a h4 {
    display: none !important;
}

.force_bitcot .llms-student-dashboard .llms-sd-section .llms-sd-section-footer {
    margin-top: 10px;
}

.force_bitcot ul.llms-achievements-loop,
.force_bitcot .lifterlms ul.llms-achievements-loop,
.force_bitcot ul.llms-certificates-loop,
.force_bitcot .lifterlms ul.llms-certificates-loop {
    margin: 0 -12px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.force_bitcot ul.llms-achievements-loop li.llms-achievement-loop-item,
.force_bitcot ul.llms-achievements-loop li.llms-certificate-loop-item,
.force_bitcot .lifterlms ul.llms-achievements-loop li.llms-achievement-loop-item,
.force_bitcot .lifterlms ul.llms-achievements-loop li.llms-certificate-loop-item,
.force_bitcot ul.llms-certificates-loop li.llms-achievement-loop-item,
.force_bitcot ul.llms-certificates-loop li.llms-certificate-loop-item,
.force_bitcot .lifterlms ul.llms-certificates-loop li.llms-achievement-loop-item,
.force_bitcot .lifterlms ul.llms-certificates-loop li.llms-certificate-loop-item {
    padding: 0 12px;
    margin-bottom: 24px;
}

.force_bitcot .edit-account .llms-form-fields .type-submit {
    margin: 15px 0 0;
}

.force_bitcot .edit-account .llms-toggle-fields {
    transition: color 0.3s ease;
    color: var(--secondary-color);
    font-weight: 300;
}

.force_bitcot .edit-account .llms-toggle-fields:hover {
    color: var(--black);
}

.force_bitcot .edit-account .llms-form-field.type-html.llms-cols-12.llms-cols-last {
    margin-bottom: 0;
}

.force_bitcot .llms-password-strength-meter {
    margin-top: 0;
    padding: 10px;
    color: #83c373;
    font-size: 16px;
}

.force_bitcot .llms-password-strength-meter.strong {
    border-color: transparent;
}

.force_bitcot .llms-password-strength-meter.mismatch {
    border-color: transparent;
    color: #e35b5b;
    background: rgba(227, 91, 91, .25);
}

.force_bitcot .llms-password-strength-meter.weak {
    border-color: transparent;
    color: #f78b53;
    background: rgba(247, 139, 83, .25);
}

.force_bitcot .llms-notice.llms-success {
    background: rgba(131, 195, 115, .3);
    border-color: transparent;
    color: #69b356;
    font-size: 16px;
    font-weight: 500;
}

.force_bitcot .llms-notice.llms-error {
    background: rgba(229, 85, 78, .3);
    border-color: transparent;
    color: #e5554e;
    font-size: 16px;
    font-weight: 500;
}

/* .force_bitcot .single-content ul,
.force_bitcot .single-content ol {
    padding-left: 10px;
} */

.force_bitcot .llms-notification .llms-notification-icon {
    max-width: 50px;
    margin-top: 5px;
}

.force_bitcot .llms-sd-notification-center .llms-notification .llms-notification-aside {
    max-width: 60px;
}

.force_bitcot .llms-notification .llms-notification-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 5px;
    white-space: normal;
    padding-right: 30px;
}

.force_bitcot .llms-sd-notification-center .llms-notification .llms-notification-date {
    color: #7e8299;
    font-style: italic;
    margin-top: 0;
}

.force_bitcot .llms-notification .llms-notification-body {
    font-size: 14px;
    line-height: 1.5;
}

.force_bitcot .llms-notification .llms-notification-footer {
    font-size: 14px;
    margin-top: 0;
}

.force_bitcot .llms-notification .llms-notification-footer a {
    display: block;
}

.force_bitcot .llms-sd-notification-center .llms-notification {
    padding: 15px 0;
}

.force_bitcot .llms-sd-notification-center .llms-notification .llms-mini-cert {
    margin: 10px 0;
    max-width: 280px;
}

.force_bitcot .llms-notification .llms-notification-body p {
    word-break: break-word;
    white-space: normal;
}

.force_bitcot .llms-table {
    border-collapse: collapse;
    border: 0;
}

.force_bitcot .llms-table th,
.force_bitcot .llms-table td {
    padding: 15px;
    /* font-size: 14px; */
    text-align: left;
}

.force_bitcot .llms-table th {
    font-size: 16px !important;
    font-weight: 600;
}

.force_bitcot .llms-sd-widgets .llms-sd-widget {
    margin: 0;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 25px rgb(34 86 102 / 7%);
    min-height: 206px;
}

.force_bitcot .llms-sd-widgets .llms-sd-widget .llms-sd-widget-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    margin: 0 0 20px;
    padding: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: #00d4ff !important;
    background-image: linear-gradient(90deg, #1ec3f9 0, #1fa5f3 100%, #00d4ff 100%) !important;
    color: var(--white);
}

.force_bitcot .llms-sd-widgets .llms-sd-widget:last-child {
    margin-right: 0;
}


.force_bitcot .llms-table.llms-single-course-grades td.llms-lesson_title {
    padding-left: 15px;
}

.force_bitcot .llms-table tbody tr:nth-child(odd) td,
.force_bitcot .llms-table tbody tr:nth-child(odd) th {
    background: transparent;
}

.force_bitcot .llms-table th {
    background: #F0EFEF !important;
}

.force_bitcot .llms-sd-tab .llms-table tfoot tr {
    background: transparent;
    border: 0;
}

.force_bitcot .llms-sd-tab .llms-table tfoot tr .llms-table-navigation,
.force_bitcot .llms-sd-tab .llms-table tfoot tr .llms-table-sort {
    border: 0;
    padding: 30px 0 0;
}

.force_bitcot .llms-sd-tab .llms-table tfoot tr .llms-table-sort select {
    min-height: 44px;
    cursor: pointer;
    margin: 0 15px 0 0;
}

.force_bitcot .llms-sd-tab .llms-table tfoot tr .llms-table-sort form label {
    display: none;
}

.force_bitcot .llms-table tfoot tr .llms-pagination ul.page-numbers {
    margin: 0;
    padding: 0;
}

.force_bitcot .llms-pagination span.page-numbers,
.force_bitcot .llms-pagination a.page-numbers {
    padding: 0 10px;
    margin: 0;
    min-width: 35px;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.force_bitcot .llms-student-dashboard .llms-pagination span.page-numbers,
.force_bitcot .llms-student-dashboard .llms-pagination a.page-numbers {
    background-color: #f9f9f9;
}

.force_bitcot .llms-pagination span.page-numbers,
.force_bitcot .llms-pagination a.page-numbers,
.force_bitcot .llms-table tfoot tr .llms-pagination a.page-numbers {
    margin: 0px 10px 10px 0 !important;
}

.force_bitcot .llms-table tfoot tr .llms-table-sort form {
    margin: 0 0 10px;
}

.force_bitcot .llms-pagination span.page-numbers:hover,
.force_bitcot .llms-pagination a.page-numbers:hover,
.force_bitcot .llms-pagination span.page-numbers.current,
.force_bitcot .llms-pagination a.page-numbers.current {
    background-color: var(--primary-color);
    color: #fff;
}

.force_bitcot .llms-pagination ul.page-numbers {
    padding: 0;
    margin: 0;
}

.force_bitcot .kadence-svg-iconset.svg-baseline {
    position: relative;
    top: 3px;
}

.post-type-archive-course .llms-pagination span.page-numbers,
.post-type-archive-course .llms-pagination a.page-numbers {
    padding: 0 10px;
    margin: 0;
    min-width: 35px;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.force_bitcot .kadence-svg-iconset.svg-baseline svg {
    top: 1px;
}

/* -------employee-rule----------- */
body.single-lesson .widgettitle {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    font-weight: 600;
}

body.single-lesson .llms-widget-syllabus .section-title {
    font-size: 15px;
}

body.single-lesson .primary-sidebar.widget-area .widget {
    background: #fff;
    padding: 25px;
    -webkit-box-shadow: 0 0 30px 0 rgb(82 63 105 / 5%);
    box-shadow: 0 0 30px 0 rgb(82 63 105 / 5%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

body.single-lesson .primary-sidebar.widget-area .widget .llms-progress {
    margin: 0;
}

body.single-lesson .primary-sidebar.widget-area .widget .progress__indicator {
    font-size: 14px;
}

body.single-lesson .llms-widget-syllabus>ul ul {
    margin: 0;
    padding: 0;
}

body.single-lesson .llms-widget-syllabus>ul ul {
    margin: 0;
    padding: 0;
}

body.single-lesson .llms-widget-syllabus>ul ul:last-child li {
    line-height: 1;
    margin-bottom: 0;
}

body.single-lesson .llms-widget-syllabus .llms-lesson-complete.done,
body.single-lesson .llms-widget-syllabus .lesson-complete-placeholder.done {
    color: var(--secondary-color);
}

body.single-lesson .content-container {
    grid-gap: 25px;
}

body.single-lesson #main {
    background: #fff;
    padding: 25px;
    -webkit-box-shadow: 0 0 30px 0 rgb(82 63 105 / 5%);
    box-shadow: 0 0 30px 0 rgb(82 63 105 / 5%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

body.single-lesson #main .entry-title,
body.single-lesson #main h1,
body.single-lesson #main .h1,
body.single-lesson #main h2,
body.single-lesson #main .h2,
body.single-lesson #main h3,
body.single-lesson #main .h3,
body.single-lesson #main h4,
body.single-lesson #main .h4,
body.single-lesson #main h5,
body.single-lesson #main .h5,
body.single-lesson #main h6,
body.single-lesson #main .h6 {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
}

body.single-lesson #main .entry-title {
    font-size: 22px;
}

body.single-lesson .entry-header {
    margin-bottom: 10px;
}

body.single-lesson .single-content {
    margin: 0;
}

body.single-lesson .llms-parent-course-link {
    margin-bottom: 5px;
}

body.single-lesson .llms-lesson-button-wrapper {
    border-top: 1px solid rgba(38, 38, 38, 0.07);
    padding-top: 32px;
    font-weight: 600;
    color: var(--primary-color);
}

body.single-lesson .llms-course-nav .llms-lesson-link:hover {
    color: var(--secondary-color);
}

body.single-lesson #main .llms-lesson-preview .llms-main h5 {
    font-size: 16px;
}

body.single-lesson #main .llms-lesson-preview .llms-main h6 {
    font-size: 12px;
}

.llms-course-navigation .llms-back-to-course .llms-lesson-preview .llms-pre-text,
.llms-course-navigation .llms-back-to-course .llms-lesson-preview .llms-lesson-title,
.llms-course-navigation .llms-back-to-course .llms-lesson-preview .llms-lesson-excerpt {
    text-align: right;
}

body.single-lesson .sidebar-inner-wrap {
    position: sticky;
    top: 130px;
}

body.single-lesson .llms-widget-syllabus .llms-lesson-complete,
body.single-lesson .llms-widget-syllabus .lesson-complete-placeholder {
    color: var(--secondary-color);
}

body.single-lesson .llms-widget-syllabus .lesson-title a:hover {
    color: var(--secondary-color);
}

body.single-lesson .llms-widget-syllabus>ul li.llms-section {
    border-bottom: 1px solid rgba(38, 38, 38, 0.07);
    padding-bottom: 15px;
}

body.single-lesson .llms-widget-syllabus>ul .section-header {
    margin-top: 10px;
}

/* -------employee-rule-end---------- */

/* --------course-details------------- */
body.single-course .llms-course-wrap,
body.single-course .bit_course_main_col,
body.single-course .course .llms-meta-info,
body.single-course .wp-block-llms-course-progress,
body.single-course .llms-instructor-info {
    background: #fff;
    padding: 25px;
    -webkit-box-shadow: 0 0 30px 0 rgb(82 63 105 / 5%);
    box-shadow: 0 0 30px 0 rgb(82 63 105 / 5%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin: 0 0 25px;
}

body.single-course .llms-h3.llms-section-title,
body.single-course .llms-meta-title {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    font-weight: 600;
}

body.single-course .llms-instructor-info .llms-instructors .llms-author .avatar {
    border-color: transparent;
    background: transparent;
}

body.single-course .llms-instructor-info .llms-instructors .llms-author {
    border-color: transparent;
    background: #f3f6f9;
    margin: 35px 5px 5px;
}

body.single-course .llms-instructor-info .llms-instructors .llms-author .llms-author-info.name {
    font-size: 18px;
    text-transform: capitalize;
    margin: 0;
}

body.single-course .llms-instructor-info .llms-instructors .llms-author .llms-author-info.label {
    font-size: 14px;
    font-style: italic;
    color: var(--secondary-color);
    margin: 0;
}

body.single-course .llms-progress {
    margin: 10px 0;
}

body.single-course .single-content p {
    margin-bottom: 15px;
}

body.single-course .wp-block-llms-course-continue-button {
    margin-top: 15px;
}

body.single-course .llms-syllabus-wrapper .llms-section-title {
    padding: 10px 16px;
    border-bottom: 0;
    background: #f3f6f9;
    border-radius: 5px;
    margin: 0;
}

body.single-course .llms-syllabus-wrapper .llms-lesson-preview .llms-lesson-link .course-information {
    padding: 10px 16px;
}

body.single-course .llms-syllabus-wrapper .llms-lesson-preview .llms-lesson-title {
    font-weight: 400;
}

body.single-course .llms-lesson-preview.is-free .llms-lesson-complete,
body.single-course .llms-lesson-preview.is-complete .llms-lesson-complete,
body.single-course .llms-lesson-preview.is-incomplete .llms-lesson-complete {
    color: var(--secondary-color);
    display: inline-block;
    font-size: 15px;
}

body.single-course .llms-syllabus-wrapper .llms-lesson-preview .llms-extra .llms-lesson-counter {
    display: inline-block;
}

body.single-course .llms-syllabus-wrapper .llms-lesson-preview .llms-extra {
    min-width: 100px;
}

body.single-course .llms-syllabus-wrapper {
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    row-gap: 25px;
}

/* -----course-details-end----------- */
.bit_widgets_wrap {
    display: grid;
    row-gap: 25px;
    column-gap: 25px;
    margin-bottom: 25px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.force_bitcot .llms-sd-widgets .llms-sd-widget .llms-sd-date span {
    color: #000;
}

.force_bitcot .llms-donut {
    color: var(--black);
    font-weight: 600;
}

.force_bitcot .llms-donut .inside {
    height: 90%;
    width: 90%;
}

.llms-donut svg path {
    fill: none;
    stroke-width: 25px;
    stroke: #1eb4f6;
}

.force_bitcot .llms-sd-widgets .llms-sd-widget .llms-sd-date {
    font-size: 16px;
    opacity: 1;
    display: flex;
    flex-direction: column;
    height: calc(100% - 65px);
    justify-content: center;
}

.force_bitcot .llms-sd-widgets .llms-sd-widget .llms-sd-date span.day {
    font-size: 32px;
    font-weight: 600;
    margin: 5px 0;
}

.force_bitcot .llms-sd-widgets .llms-sd-widget .llms-sd-date span.diff {
    opacity: 1;
}

.force_bitcot .llms-sd-table,
.force_bitcot .my-grades .llms-sd-grades {
    overflow-x: auto;
    white-space: nowrap;
}

.force_bitcot .llms-notice {
    padding: 10px !important;
}
.force_bitcot .llms-notice a {
	color: #10b5ee;
}

.force_bitcot div#llms-field-toggle--email {
    margin-bottom: 7px;
}

.force_bitcot .llms-print-certificate .llms-button-secondary {
    margin: 0 10px;
}

.force_bitcot .llms-course-navigation .llms-prev-lesson:after,
.force_bitcot .llms-course-navigation .llms-back-to-course:after {
    top: 0;
    height: 100%;
}

.force_bitcot .llms-course-navigation .no_next {
    padding-right: 0;
}

.force_bitcot .llms-course-navigation .no_next:after {
    display: none;
}


.select2-container--open .select2-dropdown--below {
    border-top: 1px solid #cbd5e0;
}

.force_bitcot .llms-access-plan-title {
    background: rgb(43 108 176 / 10%);
    color: #2b6cb0;
    font-weight: 600;
}

.force_bitcot .llms-notification,
.force_bitcot .kadence-llms-dash-nav-left .llms-student-dashboard .llms-notification {
    border-top-color: #1ebff8;
    background: var(--white);
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
    padding: 15px;
    border-radius: 5px;
}

.force_bitcot .llms-notification .llms-notification-main {
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
    padding-right: 25px;
}

.force_bitcot .llms-notification .llms-notification-dismiss {
    right: 15px;
    top: 8px;
}

.force_bitcot .llms-notification-content .llms-progress {
    margin-top: 15px;
}

.force_bitcot .llms-notification .llms-notification-footer {
    padding: 10px 0px 0;
}

.force_bitcot .kadence-llms-dash-nav-left .llms-student-dashboard .llms-notification-list-item {
    margin: 0 0 25px;
}

.force_bitcot .kadence-llms-dash-nav-left .llms-student-dashboard .llms-notification-footer {
    padding: 6px 0px 0;
}

.force_bitcot .kadence-llms-dash-nav-left .llms-student-dashboard .llms-notification {
    border-top-color: transparent;
}

.force_bitcot .llms-video-wrapper .center-video {
    margin-bottom: 15px;
}
.llms-form-field label {
    text-transform: capitalize;
}

button#llms_start_quiz {
    float: left;
    margin-right: 15px;
}
.single-llms_quiz ul.llms-quiz-meta-info li.llms-quiz-meta-item {
    font-size: 14px;
}