.primary-color {
    background-color: var(--primary-color)
}

.secondary-color {
    background-color: var(--secondary-color)
}

.primary-font {
    font-family: var(--heading-font)
}

.dark-bg {
    background-color: var(--dark-bg)
}

.primary-bg {
    background-color: var(--primary-color)
}

.secondary-bg {
    background-color: var(--secondary-color)
}

.bg-light-grey {
    background-color: var(--bg-light-grey)
}

.bg-warning {
    background-color: #FF9914 !important
}

.purple-light-bg {
    background-color: var(--purple-light)
}

.bg-light-green {
    background-color: var(--light-green)
}

.bg-light-pink {
    background-color: var(--light-pink)
}

.bg-light-yellow {
    background-color: var(--light-yellow)
}

.default-border {
    border: 1px solid var(--border-default)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: bold !important
}

h1,
.h1 {
    font-size: 2.25rem
}

h2,
.h2 {
    font-size: 1.875rem
}

h3,
.h3 {
    font-size: 1.5rem
}

h4,
.h4 {
    font-size: 1.125rem
}

h5,
.h5 {
    font-size: 1rem
}

h6,
.h6 {
    font-size: .75rem
}

@media (min-width:1400px) {
    html {
        font-size: 1vw
    }
}

.paragraph-lg {
    font-size: var(--paragraph-lg)
}

.paragraph-sm {
    font-size: var(--paragraph-sm) !important;
    line-height: 1rem
}

.br-20 {
    border-radius: var(--border-radius-lg)
}

.br-10 {
    border-radius: var(--border-radius-sm)
}

.text-orange {
    color: var(--text-orange)
}

.text-primary {
    color: var(--primary-color) !important
}

.text-secondary {
    color: var(--secondary-color) !important
}

.text-light {
    color: var(--text-light) !important
}

.text-dark {
    color: var(--text-color) !important
}

body {
    background-color: #edeff3;
    font-family: var(--body-font);
    color: var(--text-color)
}

.btn {
    color: #fff !important;
    border-radius: 3.125rem;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.btn:not(.btn-action):before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s ease-in-out
}

.btn.btn-primary::before {
    background: var(--primary-color)
}

.btn.btn-secondary::before {
    background: var(--dark-bg)
}

.btn.btn-primary:hover:before,
.btn.btn-secondary:hover:before {
    transform: scaleY(1);
    transform-origin: bottom
}

.btn:not(.btn-sm) {
    padding-inline: .938rem;
    padding-block: 0.5rem !important
}

.btn-primary {
    background-color: var(--dark-bg) !important;
    border-color: var(--dark-bg) !important;
    color: white !important
}

.btn-primary:hover {
    border-color: var(--primary-color) !important
}

.btn-secondary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important
}

.btn-secondary:hover {
    border-color: var(--dark-bg) !important;
    color: #fff !important
}

.btn-large {
    min-width: 11.25rem
}

.btn--rounded {
    border-radius: 3.125rem
}

a:link,
.link-color {
    color: var(--text-color);
    text-decoration: none
}

.link-color:hover {
    color: var(--primary-color) !important
}

textarea {
    resize: none;
    height: 7.5rem;
    padding-top: 1.25rem !important
}

img {
    max-width: 100%
}

html,
body {
    height: 100%
}

input,
textarea,
select {
    outline: none;
    box-shadow: none !important
}

input::-ms-reveal,
input::-ms-clear {
    display: none
}

.account .col-md-7 {
    position: fixed;
    left: 0;
    top: 0;
    background: var(--dark-bg) url(../images/pattern.png) repeat
}

.account__leftside {
    background-size: contain;
    padding-inline: 5%;
    max-width: 62.5rem;
    margin: auto
}

.learning-counter {
    position: absolute;
    top: 1.875rem;
    left: 3.125rem;
    gap: .625rem
}

.course-counter {
    position: absolute;
    top: 6.25rem;
    right: 3.125rem;
    gap: .625rem
}

.counter-value {
    font-family: var(--heading-font);
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 3.75rem
}

.counter span:not(.counter-value) {
    font-size: var(--paragrapgh-lg)
}

.teacher-img {
    max-height: 90vh;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

.student-card {
    max-width: 16.625rem;
    bottom: 6.25rem;
    z-index: 9
}

.student-listing img {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 100%;
    object-fit: cover;
    margin-left: -.95rem
}

.student-listing>img:first-child {
    margin-left: 0
}

.teacher-thumb {
    border: 1px solid var(--primary-color)
}

.student-thumb {
    border: 1px solid var(--secondary-color)
}

.teacher-info {
    width: 11.25rem;
    height: 11.25rem;
    padding-inline: 1.875rem;
    border-radius: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: stretch;
    display: flex;
    flex-direction: column;
    position: relative;
    right: 5rem;
    bottom: 6.25rem;
    z-index: 9
}

.teacher-info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-shadow: -5px 0 0 var(--primary-color);
    border-radius: 100%;
    animation: round 6s ease-in infinite
}

@keyframes round {
    100% {
        transform: rotate(360deg)
    }
}

.account .col-md-5 {
    margin-left: 58.33333333%
}

.account__form {
    width: calc(100% - 8.75rem) !important
}

form label {
    font-weight: 500
}

input:not([type='checkbox']):not([type='radio']) {
    padding-block: 0.75rem !important
}

input[type="password"] {
    padding-right: 3.125rem
}

select.form-control {
    padding-block: 0.75rem !important;
    background: url(../images/arrow-down-s-fill.svg);
    background-size: 1.25rem;
    background-position: center right;
    background-repeat: no-repeat
}

.password-visiblity {
    position: absolute;
    right: .938rem;
    top: .75rem
}

#registration-modal .modal-dialog {
    max-width: 25rem
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem
}

.panel__option {
    max-width: 16.875rem;
    width: 100%;
    z-index: 99
}

.scroll_container {
    overflow-y: auto;
    height: calc(100vh - 8.125rem)
}

aside .os-theme-dark>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle {
    background: rgb(255 255 255 / .5) !important;
}

.os-theme-dark>.os-scrollbar:hover>.os-scrollbar-track>.os-scrollbar-handle {
    background: rgba(255, 255, 255, .8) !important;
}

:is(aside ul li) :is(a) {
    color: white !important;
    border-radius: var(--border-radius-sm);
    padding: .938rem .625rem;
    display: block;
    text-transform: capitalize;
    margin: .313rem 0
}

:is(aside ul li) :is(a span) {
    font-weight: 600;
    font-family: var(--heading-font);
    margin-left: .25rem
}

aside ul li .active {
    background-color: #3c3c3c;
    color: #fff
}

.panel__content {
    margin-left: 16.875rem;
    padding-top: 5rem
}

.toggle-list .dropdown {
    display: none
}

.panel__header {
    width: 100%;
    height: 5rem;
    padding-inline: 30px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9;
    background-color: #fff;
    padding-left: 18.75rem
}

.logged-user img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%
}

.panel__header__right a {
    font-size: 1.25rem;
    color: var(--text-light);
    position: relative
}

span.notification-counter {
    position: absolute;
    background: #ff00c7;
    color: #fff;
    width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: .813rem;
    font-weight: 600;
    top: 0;
    right: -.313rem
}

.account__menu {
    position: absolute;
    top: 105%;
    right: 0;
    width: 12.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all .20s ease-in-out;
    display: block
}

.logged-user:hover .account__menu {
    display: block;
    opacity: 1;
    top: 100%;
    visibility: visible
}

.logged-user .user-type {
    width: 1.25rem !important;
    height: 1.25rem !important;
    right: -.438rem;
    margin: 0 auto;
    top: 0
}

.logged-user .user-type svg {
    width: .813rem;
    height: .813rem
}

.panel__body {
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    padding: 1.875rem;
    margin: 1.875rem;
    min-height: calc(100dvh - 8.75rem);
}

.dashboard__card {
    min-height: 150px
}

.underline-tabs .tab-content>.tab-pane {
    border: none;
    outline: none
}

.underline-tabs>ul {
    overflow-x: auto;
    white-space: nowrap
}

.underline-tabs>ul::-webkit-scrollbar {
    width: 10px;
    height: 5px
}

.underline-tabs>ul::-webkit-scrollbar-track {
    background: #f1f1f1
}

.underline-tabs>ul::-webkit-scrollbar-thumb {
    background: #888
}

.underline-tabs>ul::-webkit-scrollbar-thumb:hover {
    background: #555
}

.underline-tabs ul.nav-tabs {
    gap: 3.125rem;
    margin-bottom: 1.25rem
}

.underline-tabs ul.nav-tabs li button {
    all: unset !important;
    padding-bottom: 1rem !important;
    border-bottom: 2px solid transparent !important;
    cursor: pointer !important;
    font-family: var(--heading-font) !important;
    font-weight: 600 !important;
    color: var(--text-color) !important
}

.underline-tabs ul.nav-tabs li button.active {
    border-bottom-color: var(--primary-color) !important
}

.underline-tabs .accordion-body {
    max-width: 37.5rem;
    margin: 0 auto
}

.avatar-upload {
    position: relative;
    max-width: 7.5rem;
    margin: 0 auto
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: .75rem;
    z-index: 1;
    bottom: -.625rem
}

.avatar-upload .avatar-edit input {
    display: none
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 0;
    border-radius: 100%;
    background: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s ease-in-out
}

.avatar-upload .avatar-edit input+label::after {
    content: "\efe0";
    color: #fff;
    font-family: 'remixicon' !important;
    font-size: .813rem;
    position: absolute;
    text-align: center;
    inset: .25rem
}

.avatar-upload .avatar-preview {
    width: 7.5rem;
    height: 7.5rem;
    position: relative;
    border-radius: 100%
}

.avatar-preview img {
    width: 7.5rem;
    height: 7.5rem;
    object-fit: cover
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.avatar-upload .user-type {
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -.75rem
}

.social-media {
    position: absolute;
    top: .625rem;
    left: .75rem
}

.social-media+input {
    padding-left: 3.75rem
}

.select2-container {
    width: 100% !important
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: #fff0
}

.select2-selection__choice {
    background-color: var(--primary-color) !important;
    color: #fff;
    border: none !important
}

.select2-selection__choice__remove span {
    color: white !important
}

.select2-selection--multiple {
    min-height: 3.125rem !important;
    padding-top: .438rem
}

.select2-selection__rendered {
    margin-bottom: 0 !important
}

.number-wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: .75rem;
    display: flex;
    gap: .625rem
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

.drop_zone,
.upload-area .upload-area__drop-zoon {
    max-width: 100%;
    height: 12.5rem;
    padding: 1.563rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    color: var(--text-color);
    border-radius: .625rem;
    background: #F7F9FC;
    flex-direction: column;
    cursor: pointer
}

.drop_zone.dragover {
    background-color: #F5F5F5
}

.upload-input {
    opacity: 0
}

.added-subject {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    background: #f5f5f5;
    padding: 1.25rem;
    border-radius: .625rem
}

.added-subject-col {
    display: flex;
    flex-direction: column;
    width: 33.33%
}

.Edit-btn {
    background-color: var(--primary-color) !important
}

.Edit-btn:hover {
    background-color: #3e6ddd !important
}

.hidden {
    display: none
}

.select2-container {
    width: auto !important;
    display: block;
    z-index: 999
}

.select2-container .select2-selection--single {
    height: 3.125rem;
    border-color: var(--bs-border-color) !important
}

.select2-selection__rendered {
    line-height: 3.125rem !important
}

ul.select2-selection__rendered {
    line-height: inherit !important
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 3.125rem !important
}

.select2-dropdown,
.select2-container--default {
    border-color: var(--bs-border-color) !important
}

.select2-search--dropdown .select2-search__field {
    border-radius: var(--bs-border-radius);
    border-color: var(--bs-border-color) !important
}

.price-field i {
    position: absolute;
    top: .438rem;
    left: .938rem;
    font-size: 1.25rem;
    color: var(--text-light)
}

.price-field input {
    padding-left: 3.125rem
}

.dnd-file-upload-widget-upload-button {
    display: none
}

.btn-action {
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    padding: 0 !important
}

.files-container>.row,
.files-container>.file-item {
    border: 1px solid var(--bs-border-color);
    border-radius: .313rem;
    padding: .313rem;
    margin-block: .938rem;
    margin-inline: 0
}

.glyphicon-refresh-animate {
    animation: spin .7s infinite linear;
    -webkit-animation: spin2 .7s infinite linear
}

@keyframes spin {
    from {
        transform: scale(1) rotate(0deg)
    }

    to {
        transform: scale(1) rotate(360deg)
    }
}

@-webkit-keyframes spin2 {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

.notification-setting .form-switch {
    border-bottom: 1px solid var(--bs-border-color);
    display: flex;
    gap: 1.25rem;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-inline: 0
}

img.img-thumb {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 100%;
    flex-shrink: 0;
    border-width: 1px;
    border-style: solid
}

.teacher-outline {
    border-color: var(--primary-color)
}

.student-outline {
    border-color: var(--secondary-color)
}

.notification-listing__item {
    border: 1px solid var(--bs-border-color);
    border-radius: .313rem;
    padding-bottom: 1.438rem !important;
    margin-bottom: 1.875rem;
    align-items: center
}

.notification-listing__time {
    width: 7.5rem;
    border-right: 1px solid var(--bs-border-color);
    padding-right: 1.5rem;
    position: relative;
    display: flex;
    align-items: center
}

.notification-listing__time::before {
    content: "";
    transform: translateY(-50%);
    position: absolute;
    right: -.313rem;
    top: 50%;
    width: .625rem;
    height: .625rem;
    border-radius: 100%;
    background-color: var(--primary-color)
}

.notification-listing>div:last-child .notification-listing__item {
    margin-bottom: 0
}

table th {
    font-family: var(--heading-font);
    font-size: .875rem;
    text-transform: capitalize
}

table td,
table th {
    font-size: .875rem;
    text-transform: capitalize;
    word-wrap: break-word !important;
    /*--word-break: break-word !important --*/
}

.more-option {
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer
}

.dropdown-menu a {
    border-bottom: 1px solid var(--bs-border-color);
    font-size: .875rem;
    padding-block: .5rem
}

.dropdown-menu {
    box-shadow: 0 0 5px rgb(0 0 0 / .15);
    padding-block: 0;
    overflow: hidden;
    border: none;
    background-color: #fff
}

.dropdown-menu>li:last-child a {
    border: none
}

div.dt-container .dt-search input,
.dt-input {
    border-color: var(--bs-border-color) !important;
    height: 2.5rem !important
}

.dt-empty-footer>div:first-child,
.dt-empty-footer>div:last-child {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    margin: .938rem 0
}

.dt-layout-cell.dt-end {
    display: flex !important;
    flex-direction: row;
    gap: 1.25rem;
    align-items: center;
    margin-left: auto !important
}

.dt-search,
.dt-length {
    display: flex;
    align-items: center;
    gap: .625rem
}

.table-filter {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer
}

.dt-paging.paging_full_numbers {
    display: flex;
    flex-wrap: wrap
}

.ticket-status::before {
    content: "";
    width: .625rem;
    height: .625rem;
    display: inline-block;
    border-radius: 100%;
    vertical-align: middle
}

.ticket-status[data-status="pending"]::before {
    background-color: #FF9914
}

.ticket-status[data-status="resolved"]::before {
    background-color: #198754
}

img.rating-user {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: .313rem;
    object-fit: cover;
    object-position: top
}

.outline-box {
    border: 1px solid var(--bs-border-color);
    -webkit-font-smoothing: subpixel-antialiased;
    border-radius: .625rem;
    padding: 1.25rem;
    word-wrap: break-word !important;
    word-break: break-word !important;
    /* height: 100%; */
}

.row.single-review .rating-blk:not(:last-child) {
    border-bottom: 1px solid var(--bs-border-color);
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem
}

.subject-box {
    top: 6.25rem
}

.copy-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: .75rem
}

.dt-type-numeric {
    text-align: left !important
}

.calander-input {
    background: url(../images/calendar-line.svg);
    background-position: 97% 50%;
    background-repeat: no-repeat
}

.discount-input {
    background: url(/assets/images/percent-line.svg);
    background-position: 97% 50%;
    background-repeat: no-repeat
}

div.dt-top-container {
    display: grid;
    grid-template-columns: auto auto auto
}

div.dt-center-in-div {
    margin: 0 auto
}

div.dt-filter-spacer {
    margin: .625rem 0
}

.connects-counter__value {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .875rem;
    line-height: .875rem
}

.connects {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .938rem;
    transition: all .5s ease-in-out
}

.connects__blk:hover {
    background-color: var(--bg-light-grey)
}

.user-type {
    width: 1.563rem !important;
    height: 1.563rem !important;
    background: #FF9914;
    border-radius: 100%;
    position: absolute;
    right: .625rem;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}
.image-student-table {
    position: relative;
}

.connects__blk img {
    width: 3.75rem;
    height: 3.75rem;
    object-fit: cover;
    border-radius: 100%;
    border-width: 1px;
    border-style: solid
}

.filter--height {
    height: 3.125rem;
    width: 3.125rem;
    font-size: 1.5rem
}

.course-category__blk {
    border: 1px solid var(--bs-border-color);
    height: 100%
}

.course-category__blk img {
    transition: transform .3s ease
}

.course-category__blk:hover img {
    transform: scale(1.2)
}

.max-800 {
    width: 100%;
    max-width: 50rem;
    margin: auto
}

.tabs-horizontally ul:before {
    content: "";
    background-color: var(--bs-border-color);
    width: calc(100% - 3.125rem);
    height: .188rem;
    position: absolute;
    inset: 1.875rem
}

.tabs-horizontally>ul>li:nth-child(1),
.tabs-horizontally>ul>li:nth-child(2),
.tabs-horizontally>ul>li:nth-child(3) {
    width: 33.33%;
    position: relative;
    display: flex
}

.progress {
    background-color: #000;
    width: 0;
    height: .188rem;
    position: absolute !important;
    inset: 1.875rem;
    z-index: 0;
    transition: width .5s ease-in
}

.tabs-horizontally ul li button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .625rem;
    text-align: center;
    color: var(--text-color);
    padding: 0;
    font-family: var(--heading-font);
    font-weight: 700;
    position: relative;
    z-index: 1
}

.tabs-horizontally ul li button span {
    width: 3.125rem;
    height: 3.125rem;
    border: 1px solid var(--bs-border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.25rem;
    background-color: #fff;
    position: relative
}

:root {
    --clr-white: rgb(255, 255, 255);
    --clr-black: rgb(0, 0, 0);
    --clr-light: rgb(245, 248, 255);
    --clr-light-gray: rgb(196, 195, 196);
    --clr-blue: rgb(63, 134, 255);
    --clr-light-blue: rgb(171, 202, 255)
}

@keyframes slidDown {
    from {
        height: 28.125rem
    }

    to {
        height: 35rem
    }
}

.upload-area__title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: .3125rem
}

.upload-area__paragraph {
    font-size: .9375rem;
    color: var(--clr-light-gray);
    margin-top: 0
}

.upload-area__tooltip {
    position: relative;
    color: var(--clr-light-blue);
    cursor: pointer;
    transition: color 300ms ease-in-out
}

.upload-area__tooltip:hover {
    color: var(--clr-blue)
}

.upload-area__tooltip-data {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -125%);
    min-width: max-content;
    background-color: var(--clr-white);
    color: var(--clr-blue);
    border: 1px solid var(--clr-light-blue);
    padding: .625rem 1.25rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: none 300ms ease-in-out;
    transition-property: opacity, visibility
}

.upload-area__tooltip:hover .upload-area__tooltip-data {
    opacity: 1;
    visibility: visible
}

.upload-area__drop-zoon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer
}

.upload-area__drop-zoon:hover {
    border-color: var(--clr-blue)
}

.drop-zoon__icon {
    display: flex;
    font-size: 3.75rem;
    color: var(--clr-blue);
    transition: opacity 300ms ease-in-out
}

.drop-zoon__paragraph {
    font-size: .9375rem;
    color: var(--clr-light-gray);
    margin: 0;
    margin-top: .625rem;
    transition: opacity 300ms ease-in-out
}

.drop-zoon:hover .drop-zoon__icon,
.drop-zoon:hover .drop-zoon__paragraph {
    opacity: .7
}

.drop-zoon__loading-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    color: var(--clr-light-blue);
    z-index: 10
}

.drop-zoon__preview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .3125rem;
    border-radius: 10px;
    display: none;
    z-index: 1000;
    transition: opacity 300ms ease-in-out
}

.drop-zoon:hover .drop-zoon__preview-image {
    opacity: .8
}

.drop-zoon__file-input {
    display: none
}

.drop-zoon--over {
    border-color: var(--clr-blue)
}

.drop-zoon--over .drop-zoon__icon,
.drop-zoon--over .drop-zoon__paragraph {
    opacity: .7
}

.drop-zoon--Uploaded .drop-zoon__icon,
.drop-zoon--Uploaded .drop-zoon__paragraph {
    display: none
}

.upload-area__file-details {
    height: 0;
    visibility: hidden;
    opacity: 0;
    text-align: left;
    transition: none 500ms ease-in-out;
    transition-property: opacity, visibility;
    transition-delay: 500ms
}

.file-details--open {
    height: auto;
    visibility: visible;
    opacity: 1
}

.file-details__title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--clr-light-gray)
}

.uploaded-file {
    display: flex;
    align-items: center;
    padding: .625rem 0;
    visibility: hidden;
    opacity: 0;
    transition: none 500ms ease-in-out;
    transition-property: visibility, opacity
}

.uploaded-file--open {
    visibility: visible;
    opacity: 1
}

.uploaded-file__icon-container {
    position: relative;
    margin-right: .3125rem
}

.uploaded-file__icon {
    font-size: 3.4375rem;
    color: var(--clr-blue)
}

.uploaded-file__icon-text {
    position: absolute;
    top: 1.5625rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: .9375rem;
    font-weight: 500;
    color: var(--clr-white);
    visibility: hidden
}

.uploaded-file__info {
    position: relative;
    top: -.3125rem;
    width: 100%;
    display: flex;
    justify-content: space-between
}

.uploaded-file__info::before,
.uploaded-file__info::after {
    content: '';
    position: absolute;
    bottom: -.9375rem;
    width: 0;
    height: .5rem;
    background-color: #ebf2ff;
    border-radius: .625rem
}

.uploaded-file__info::before {
    width: 100%
}

.uploaded-file__info::after {
    width: 100%;
    background-color: var(--clr-blue)
}

.uploaded-file__info--active::after {
    animation: progressMove 800ms ease-in-out;
    animation-delay: 300ms
}

@keyframes progressMove {
    from {
        width: 0%;
        background-color: #fff0
    }

    to {
        width: 100%;
        background-color: var(--clr-blue)
    }
}

.uploaded-file__name {
    width: 100%;
    max-width: 6.25rem;
    display: inline-block;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.uploaded-file__counter {
    font-size: 1rem;
    color: var(--clr-light-gray)
}

.course-section {
    border: 1px solid var(--bs-border-color) !important;
    border-radius: var(--border-radius-sm);
    position: relative
}

.course-section label {
    font-size: 1rem;
    font-family: var(--heading-font);
    font-weight: 600
}

:is(.course-section) :is(input[type="text"], input[type="number"]) {
    border: none;
    padding: 0 !important;
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 600
}

.duration-field {
    width: 2.5rem
}

.course-section #edit-section-btn {
    position: absolute;
    top: 1.875rem;
    right: 1.875rem
}

.added-course__controls a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .313rem;
    font-size: .875rem
}

.added-course .btn-action {
    background: #DFE1E3 !important;
    color: var(--text-color) !important;
    border: none
}

.added-course .btn-action:hover {
    background-color: #dc3545 !important;
    color: white !important
}

.upload-media-controls i {
    width: 3.125rem;
    height: 3.125rem;
    border: 1px solid var(--text-color) !important;
    border-radius: 50%;
    color: var(--text-color) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto .625rem auto
}

.dashboard--block {
    margin: 1.875rem;
    padding: 0
}

.dashboard__item {
    border: 1px solid var(--bs-border-color)
}

.dashboard__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    color: #fff;
    text-align: center;
    font-size: 1.25rem;
    justify-content: center;
    align-items: center
}

.dashboard__card,
.dashboard--block__inner {
    -webkit-box-shadow: 0 0 3px rgb(0 0 0 / .1);
    -moz-box-shadow: 0 0 3px rgb(0 0 0 / .1);
    box-shadow: 0 0 3px rgb(0 0 0 / .1)
}

.course-icon {
    background-color: #3CD856
}

.notes-icon {
    background-color: #C2D83C
}

.session-icon {
    background-color: #C23CD8
}

.booking-icon {
    background-color: #FF8E3C
}

.room-icon {
    background-color: #F25042
}

.hall-icon {
    background-color: #272343
}

.event-icon {
    background-color: #3D5CFF
}

.student-icon {
    background-color: #A1BBBA
}

.dashboard__grid {
    display: grid;
    gap: .938rem;
    grid-template-columns: repeat(6, 1fr)
}

.admin-div>div:first-child {
    grid-column: 1 / span 4
}

.dashboard__item--users {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 1.25rem
}

.user-counter__blk {
    display: flex;
    flex-direction: column
}

.user-counter {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border-left: 1px solid var(--bs-border-color);
    padding-left: 1.875rem
}

.balance-count {
    font-size: 2.5rem
}

.withdrawn-charges {
    border-bottom: 1px solid var(--bs-border-color);
    padding-bottom: .625rem;
    margin-bottom: .625rem
}

.withdrawn-charges:last-child {
    border: none
}

.payment-counter {
    border-top: 1px solid #b2accd;
    border-bottom: 1px solid #b2accd
}

span.request-counter {
    display: inline-block;
    border-radius: 100%;
    width: 1.25rem;
    height: 1.25rem;
    background: var(--primary-color);
    color: #fff;
    vertical-align: middle;
    font-size: 0.75rem !important;
    align-content: center;
    text-align: center
}

@media (min-width:981px) {
    .payment-status {
        grid-column: 5 / span 2;
        grid-row: 1 / span 2
    }
}

.payment-status__control a {
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: #fff
}

.info-icon {
    background-color: #C23CD8
}

.session-icon {
    background-color: #6246EA
}

.list-icons>div>div:not(:last-child),
:is(.bundle-preview__info) {
    border-bottom: 1px solid var(--bs-border-color);
    padding-bottom: .938rem;
    margin-bottom: .938rem
}

.top-student-btn {
    width: 110px
}

.profile {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    flex-shrink: 0
}

.profile--student {
    border: 1px solid var(--secondary-color)
}

.profile--teacher {
    border: 1px solid var(--primary-color)
}

.course-thumb-small {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: cover;
    border-radius: .313rem;
    flex-shrink: 0
}

span.dashboard__card__icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0
}

.no-record-found {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    text-align: center;
    padding-inline: 1rem
}

.no-results {
    max-width: 9.625rem !important;
    background: transparent !important;
    overflow: hidden !important;
    background: transparent !important
}

.bundle-course ul li {
    margin-right: 1.125rem
}

.bundle-course ul>li button:not(.btn) {
    color: var(--bs-nav-link-disabled-color) !important;
    font-family: var(--heading-font) !important;
    display: flex;
    align-items: center;
    gap: .625rem;
    font-weight: 700;
    position: relative;
    padding-right: 3.125rem
}

.bundle-course ul>li button.active {
    color: var(--text-color) !important;
    font-family: var(--heading-font) !important;
    display: flex;
    align-items: center;
    gap: .625rem;
    font-weight: 700;
    position: relative
}

.bundle-course ul>li button.active span {
    background-color: var(--dark-bg) !important
}

.bundle-course ul>li:not(:last-child) button::after {
    content: "\ea6e";
    font-family: 'remixicon' !important;
    position: absolute;
    right: 0;
    font-size: 1.125rem
}

.bundle-course ul>li button span {
    background-color: var(--bs-nav-link-disabled-color) !important;
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    border-radius: 100%;
    text-align: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 700
}

.bundle-course__item {
    display: grid;
    grid-template-columns: 1fr 6.25rem 1rem;
    grid-gap: 3.125rem;
    place-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--bs-border-color);
    padding-bottom: .938rem;
    margin-bottom: .938rem
}

.bundle-course__item img {
    width: 3.75rem;
    height: 3.75rem;
    object-fit: cover;
    border-radius: 5px
}

.bundle-course__item p {
    max-width: 60%
}

.preview--items {
    display: grid;
    grid-template-columns: 1fr 6.25rem;
    border-bottom: none
}

.preview--items:last-child {
    margin: 0
}

.bundle-preview__info {
    padding-bottom: 1.875rem;
    margin-bottom: 1.875rem
}

.bootstrap-select.show-tick .dropdown-toggle {
    border: 1px solid var(--bs-border-color) !important;
    background: transparent !important;
    border-radius: var(--bs-border-radius) !important;
    padding: .375rem .75rem !important;
    color: var(--bs-body-color) !important;
    outline: none !important;
    padding-block: 0.75rem !important
}

.income-way {
    background: #1A1A1A;
    padding: 3.75rem 2.188rem;
    border-radius: 1.25rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%
}

.income-way svg {
    margin-bottom: 1.25rem
}

span.circle {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    z-index: -1;
    will-change: transform;
    transform: scale(0);
    transition: all .5s ease-in-out;
    opacity: 0;
    visibility: hidden
}

.income-way:hover span.circle {
    transform: scale(2);
    opacity: 1;
    visibility: visible
}

.modal-xl {
    max-width: 100%
}

.speakers {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    margin-bottom: .625rem
}

.speakers__items {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem
}

span.outline {
    width: 1px;
    background: var(--bs-border-color);
    display: block
}

.speakers__items__actions {
    align-self: center
}

.speakers__items__info img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%
}

.event-info__items>div {
    border-bottom: 1px solid rgb(255 255 255 / .5);
    padding-bottom: .938rem;
    margin-bottom: .938rem
}

.event-info__items>div:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0
}

.event-box-outline {
    border: 1px solid var(--bs-border-color)
}

.event-info .btn {
    background-color: white !important;
    color: var(--text-color) !important;
    border: none
}

.event-info .btn:hover {
    color: white !important
}

.user-listing {
    display: flex;
    flex-wrap: wrap;
    gap: .938rem
}

.user-listing__items {
    flex-shrink: 0
}

.user-listing__items img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%;
    object-fit: cover
}

.liveevent-grid {
    display: flex;
    align-items: flex-start;
    gap: 1.875rem
}

.liveevent-grid__left {
    width: calc(100% - 27rem)
}

.liveevent-grid__left>div:first-child {
    height: calc(100vh - 12.5rem);
    height: -moz-calc(100vh - 12.5rem);
    height: -webkit-calc(100vh - 12.5rem)
}

.liveevent-grid__right {
    width: 25rem;
    display: grid;
    grid-template-columns: 1fr
}

.live-event__topbar img {
    width: 5rem;
    height: 3.75rem;
    object-fit: cover;
    object-position: center
}

.event-box-outline .nav-pills {
    border: 1px solid var(--bs-border-color);
    border-radius: 3.125rem;
    padding: .625rem;
    display: flex;
    justify-content: center
}

.event-box-outline .nav-pills>li {
    flex: 0 0 50%
}

.event-box-outline .nav-pills>li button {
    width: 100%;
    border-radius: 3.125rem;
    color: var(--text-color)
}

.event-box-outline .nav-pills>li button.active {
    background-color: var(--dark-bg) !Important
}

.live-comment__box img {
    width: 2.188rem;
    height: 2.188rem;
    border-radius: 100%
}

.live-comment__box {
    margin-bottom: .625rem;
    word-wrap: break-word !important;
    word-break: break-word !important
}

.live-comment {
    height: calc(100vh - 19.375rem);
    height: -moz-calc(100vh - 19.375rem);
    height: -webkit-calc(100vh - 19.375rem);
    margin-bottom: 1.25rem;
    overflow-y: auto
}

.topics_data {
    height: calc(100vh - 17rem);
    height: -moz-calc(100vh - 17rem);
    height: -webkit-calc(100vh - 17rem);
    margin-bottom: 1.25rem;
    overflow-y: auto
}

.liveevent-grid__right .type-msg {
    position: static;
    width: 100%
}

.type-msg input {
    padding-right: 4.063rem
}

.event-speaker__blk>div {
    height: 100%
}

.event-speaker__blk img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: .313rem;
    max-height: 6.25rem
}

.event-speaker__blk img+div {
    position: absolute !important;
    left: 0 !important;
    z-index: 1;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    border-radius: .313rem
}

.event-speaker__blk span {
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80%
}

.event-speaker__name {
    left: .313rem;
    top: .313rem;
    padding-inline: .625rem;
    padding-block: .188rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.liveevent-grid__left {
    display: grid;
    grid-template-rows: 1fr 6.25rem
}

.liveEvent .panel__content {
    padding-top: 0;
    margin-left: 0
}

.event-speaker {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .938rem
}

.event-controls {
    position: fixed;
    left: 50%;
    z-index: 9;
    bottom: .938rem;
    margin: 0 auto;
    width: auto !important;
    text-align: center;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.attachment-heading img {
    max-width: 3.125rem;
    max-height: 3.125rem
}

.attachment-listing {
    height: calc(100vh - 26.25rem);
    height: -moz-calc(100vh - 26.25rem);
    height: -webkit-calc(100vh - 26.25rem);
    margin-bottom: 1.25rem;
    overflow-y: auto
}

:is(.course-buy) img {
    width: 1.875rem;
    height: 1.875rem;
    object-fit: cover;
    border-radius: 100%;
    margin-left: -.625rem
}

span.live-users {
    background: #fff;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 1;
    padding: .313rem .625rem;
    border-radius: .313rem;
    font-size: .875rem
}

.study-room-members__listing {
    display: flex;
    padding-left: 12px
}

.study-room-members__listing img {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 100%;
    border-width: 1px;
    border-style: solid;
    margin-left: -.75rem
}

.studyroom-blk {
    position: relative;
    transition: transform .5s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.accordion-collapse .studyroom-blk .dropdown-menu {
    right: 0px !important;
    left: inherit !important
}

.bootstrap-tagsinput {
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: none;
    display: block;
    padding: .25rem .375rem;
    color: #555;
    vertical-align: middle;
    border-radius: .25rem;
    max-width: 100%;
    line-height: 1.375rem;
    cursor: text;
    border: var(--bs-border-width) solid var(--bs-border-color)
}

.bootstrap-tagsinput .tag [data-role="remove"]:after {
    content: "x";
    padding: 0 .125rem
}

.bootstrap-tagsinput .tag [data-role="remove"] {
    margin-left: .5rem;
    cursor: pointer
}

.bootstrap-tagsinput input {
    border: none
}

.input-tags {
    width: 100%;
    padding: .625rem;
    display: block;
    margin: 0 auto
}

.use-bootstrap-tag .input-wrapper input {
    padding-block: 0px !important
}

.use-bootstrap-tag .btn {
    padding-block: 0.188rem !important
}

.label-info {
    background-color: var(--primary-color);
    padding: .188rem .625rem;
    color: #fff;
    border-radius: 3.125rem
}

.accordion {
    outline: none !important
}

.members {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: center;
    margin-bottom: .625rem
}

.members__items {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem
}

.members__items__actions {
    align-self: center
}

.members__items__info {
    display: flex;
    align-items: center;
    gap: .313rem
}

.members__items__info img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%
}

span.btn-round {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.no-data-exist {
    margin-left: -12px
}

.icon-rotate i {
    transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -webkit-transform: rotate(130deg);
    image-rendering: crisp-edges;
    backface-visibility: hidden
}

table select.form-control {
    font-size: 0.875rem !important;
    padding-inline: 5px !important;
    padding-block: 3px !important;
    text-align: center
}

.topics__items img {
    width: 70px;
    height: 70px;
    object-fit: cover
}

.topics--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px
}

.material__type {
    width: 3.375rem;
    height: 3.375rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem
}

ul.check-listing {
    margin: 0;
    padding: 0;
    list-style: none
}

.check-listing li {
    position: relative;
    margin-bottom: .625rem;
    font-weight: 500;
    padding-left: 1.875rem
}

.check-listing li::before {
    content: "\eb7b";
    font-family: 'remixicon' !important;
    font-size: 1.25rem;
    position: absolute;
    left: 0;
    top: 0
}

.course-thumbnail {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: .313rem;
    object-fit: cover
}

.studyhall-grid {
    display: grid;
    grid-template-columns: 1fr 25rem;
    gap: 1.875rem
}

.studyhall-grid__left {
    height: -webkit-calc(100vh - 3rem);
    height: -moz-calc(100vh - 3rem);
    height: calc(100vh - 3rem)
}

.whiteboard-draw {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.25rem
}

#whiteboardmain {
    border: 1px solid var(--bs-border-color)
}

.groupchat-grid__left {
    height: calc(100vh - 8.75rem);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr minmax(5rem, 7rem);
    gap: .625rem
}

#toolbar {
    position: absolute;
    bottom: .625rem;
    height: auto;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .625rem;
    border-top: 1px solid var(--bs-border-color);
    padding: 1rem
}

#toolbar button {
    border: 1px solid var(--bs-border-color);
    font-size: .875rem;
    text-transform: capitalize;
    padding: .313rem .625rem;
    border-radius: .313rem
}

.live-studyhall__instructor:hover .chat-controls {
    bottom: 0
}

.live-status {
    background: #fff;
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 1;
    padding: .313rem .625rem;
    border-radius: .313rem;
    font-size: .875rem
}

.live-status:before {
    content: "";
    width: .625rem;
    height: .625rem;
    background-color: #dc3545;
    border-radius: 100%;
    display: inline-block;
    margin-right: .313rem
}

.host-avatar {
    background: var(--dark-bg) !Important;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.host-avatar span {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 3rem;
    color: var(--dark-bg)
}

.student-feedback__thumbnail img {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 100%
}

.chat-wrapper__user,
.chat-wrapper_chatarea {
    border: var(--bs-border-width) solid var(--bs-border-color)
}

.chat__listing {
    height: calc(100vh - 18.75rem);
    overflow-y: auto;
    margin-top: .625rem;
    overflow-x: hidden;
    word-wrap: break-word;
    word-break: break-word
}

.os-scrollbar-horizontal {
    display: none
}

.chat__listing__user {
    border-bottom: var(--bs-border-width) solid var(--bs-border-color);
    cursor: pointer;
    position: relative
}

.chat__listing__user::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: .063rem;
    background: var(--primary-color);
    transform: scale(0);
    transform-origin: right;
    transition: transform .5s ease-in-out
}

.chat__listing__user:hover::before,
.chat__listing__user.active::before {
    transform: scale(1);
    transform-origin: left
}

.chat__listing__user.active {
    background-color: var(--bg-light-grey)
}

.chat__listing__user p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 2;
    -webkit-box-orient: vertical
}

.thumb-circle {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: cover;
    border-radius: 100%
}

.chat-wrapper {
    display: grid;
    grid-template-columns: 22.5rem 1fr;
    gap: .938rem
}

.chat-scroll {
    height: calc(100vh - 24.775rem);
    overflow-y: auto;
    padding-top: 1.875rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.single__chat .chat-scroll {
    height: calc(100vh - 20.1rem);
}

.recipient .bg-light {
    border-radius: 0 .625rem .625rem .625rem;
    max-width: 15.625rem
}

.sender__msg {
    border-radius: .625rem .625rem .625rem 0;
    max-width: 15.625rem
}

.msg-btn {
    background-color: var(--primary-color);
    width: 1.875rem;
    height: 1.875rem;
    border-radius: var(--bs-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    position: relative;
    z-index: 1;
    transition: all .2s linear
}

.msg-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: .5;
    border-radius: var(--bs-border-radius);
    position: absolute;
    top: 0;
    left: 0;
    animation: ripple 2s linear 1s infinite;
    z-index: -1;
    visibility: hidden;
    transition: all .2s linear
}

.msg-btn::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: .5;
    border-radius: var(--bs-border-radius);
    position: absolute;
    top: 0;
    left: 0;
    animation: ripple 2s linear infinite;
    z-index: -1;
    visibility: hidden;
    transition: all .2s linear
}

.msg-btn:hover::before,
.msg-btn:hover::after {
    visibility: visible
}

.attachment-btn {
    border: none;
    font-size: 1.25rem;
    background: #fff0
}

.chat-wrapper_chatarea__header {
    border-bottom: var(--bs-border-width) solid var(--bs-border-color);
    word-wrap: break-word;
    word-break: break-word
}

.type-msg {
    position: static;
    width: -moz-calc(100% - 2rem);
    width: -webkit-calc(100% - 2rem);
    width: calc(100% - 2rem);
    bottom: 1.25rem;
    left: 0;
    right: 0;
    margin: 0 auto
}

.single__chat .type-msg {
    bottom: 0;
}

.type-msg__control {
    display: flex;
    gap: .625rem;
    position: absolute;
    right: .938rem;
    top: 50%;
    transform: translateY(-50%)
}

@keyframes ripple {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.3);
        opacity: 1
    }

    100% {
        transform: scale(1.5);
        opacity: 0
    }
}

#attachment-preview {
    margin-left: auto;
    max-width: 18.75rem
}

.sender__attachments {
    max-width: 18.75rem
}

.sender__attachments video {
    width: 100%
}

.recipient>div {
    flex-shrink: 0
}

.recipient>div+img,
.recipient>div+video {
    max-width: 18.75rem;
    width: 100%
}

.chat-wrapper_chatarea__body small {
    font-size: .75rem
}

.chat-wrapper_chatarea__body {
    position: relative
}

#attachment-preview {
    width: 18.75rem;
    position: absolute;
    bottom: 0;
    right: 1rem;
    z-index: 3;
    background: #fff;
    padding: .625rem;
    border-radius: .5rem;
    box-shadow: 0 0 .625rem rgb(0 0 0 / .1)
}

.attachment-preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .313rem
}

.attachment-preview-item img {
    width: auto;
    max-width: 100%;
    max-height: 12.5rem;
    object-fit: cover
}

.remove-preview-btn {
    position: absolute;
    right: .313rem;
    top: .313rem
}

span.unread-msg {
    width: 1.25rem;
    height: 1.25rem;
    background: var(--primary-color) !important;
    color: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem
}

.hide-sidebar {
    grid-template-columns: 1fr
}

.hide-sidebar .chat-wrapper__user {
    display: none
}

.comments-wrapper textarea {
    min-height: 3.125rem !important;
    height: auto;
    border: none
}

.course-attachment__type {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem
}

button:not(.btn-close) {
    box-shadow: none !important
}

button.btn.btn-outline-danger.w-100.unsubscribe-btn {
    color: #DC3546 !important;
}
button.btn.btn-outline-danger.w-100.unsubscribe-btn:hover {
    color: #fff !important;
}

.course-preview button::after {
    position: absolute;
    right: 0
}

.user-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
    grid-gap: 1.25rem
}

.accordion-button:not(.collapsed) {
    background: #fff
}

.payment-status:before {
    content: "";
    width: .5rem;
    height: .5rem;
    border-radius: 100%;
    margin-right: .313rem;
    display: inline-block
}

.payment-status--success:before {
    background: #29BF12 !important
}

.payment-status--failed:before {
    background: #F21B3F !important
}

.payment-status--pending:before {
    background: #FF9914 !important
}

.study-room-thumb {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 100%
}

.studyroom-members__viewers img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%;
    border-style: solid;
    border-width: 1px;
    margin-left: -1.25rem
}

.studyroom-members__viewers img:first-child {
    margin-left: 0
}

.groupchat-grid {
    display: grid;
    grid-template-columns: 1fr 25rem;
    gap: 1.875rem
}

.groupchat-grid__left {
    height: calc(100vh - 8.75rem);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr minmax(5rem, 7rem);
    gap: .625rem
}

.groupchat-member {
    overflow: hidden;
    border-radius: .313rem
}

.groupchat-member img {
    border-radius: .313rem;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center
}

.groupchat-member>span {
    position: absolute;
    left: .313rem;
    bottom: .313rem;
    font-size: .75rem
}

.instructor-member {
    grid-row: 1;
    grid-column: 1 / span 5;
    overflow: hidden
}

.instructor-member>span {
    top: .625rem;
    left: .625rem;
    bottom: inherit
}

.chat-controls {
    position: absolute;
    bottom: -5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    gap: 1.25rem;
    background: rgb(255 255 255 / .7);
    border-radius: 3.125rem 3.125rem 0 0;
    max-width: 20rem;
    justify-content: center;
    padding-block: .625rem;
    align-items: center;
    transition: all .5s
}

.instructor-member:hover .chat-controls {
    bottom: 0
}

.chat-controls span {
    width: 2.5rem;
    height: 2.5rem;
    background: #fff;
    border-radius: 100%;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all .5s
}

.chat-controls>span:first-child:hover {
    background-color: #dc3545;
    color: #fff
}

.chat-controls>span:first-child~span:hover {
    background-color: var(--primary-color);
    color: #fff
}

.video-record {
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem !important
}

.message-control span {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-color);
    border-radius: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all .5s
}

.text-chat {
    height: calc(100vh - 9.375rem) !important;
    overflow-y: auto;
    padding-top: 1.875rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.availability-row__label {
    min-width: 7.5rem;
    position: relative
}

.time-pickable,
.timepickers {
    background: url(../images/ph_clock-light.svg);
    background-position: 97% 50%;
    background-repeat: no-repeat;
    border-radius: var(--bs-border-radius) !important
}

.gj-timepicker .btn {
    all: unset;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    height: 100%
}

.gj-timepicker .btn:active {
    background: transparent !important
}

.gj-timepicker .btn i {
    display: none
}

.organizations-block__logo {
    max-height: 7.5rem
}

.student-inputs {
    display: grid;
    grid-template-columns: repeat(5, 1fr)
}

.student-inputs>div {
    width: 100% !important
}

.student-inputs .del-data {
    margin-top: 2.5rem;
    position: absolute;
    right: 1.25rem
}

.profile-size {
    width: 9.375rem;
    height: 9.375rem
}

.active-subscription {
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    position: absolute;
    bottom: .938rem;
    right: -.938rem
}

.performance-report {
    max-width: 21.875rem;
    justify-content: space-between;
    margin: auto;
    padding: 1.25rem
}

.performance-report [type="range"] {
    width: 12.5rem;
    visibility: hidden
}

.performance-report svg text {
    font-weight: 600;
    letter-spacing: -1px
}

.coursebar {
    width: 100%;
    height: .625rem;
    background: #edeff3;
    display: block;
    border-radius: .625rem
}

.coursebar__compelete {
    border-radius: .625rem;
    background: #2667ff;
    background: -moz-linear-gradient(90deg, rgb(38 103 255) 0%, rgb(255 0 199) 100%);
    background: -webkit-linear-gradient(90deg, rgb(38 103 255) 0%, rgb(255 0 199) 100%);
    background: linear-gradient(90deg, rgb(38 103 255) 0%, rgb(255 0 199) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2667ff", endColorstr="#ff00c7", GradientType=1)
}

.coursebar__compelete::before {
    content: attr(data-course);
    right: 0;
    position: absolute;
    top: -23px;
    font-weight: 600;
    font-size: 14px
}

.reports-filter form input {
    max-width: 11.25rem;
    height: 2.5rem
}

span.earn-logo.bg-primary {
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    border-radius: 100%;
    padding: .938rem;
    align-items: center;
    justify-content: center
}

.earn-row {
    counter-reset: section
}

.earn-row .outline-box::before {
    content: "hello";
    counter-increment: section;
    content: counter(section);
    font-size: 6.25rem;
    position: absolute;
    right: 1.875rem;
    font-weight: 700;
    top: -.938rem;
    background: #0D6EFD;
    background: linear-gradient(to bottom, #0d6efd3b 49%, #FFFFFF 84%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

.institute__type__control {
    right: .625rem;
    top: .313rem;
    cursor: pointer;
    color: #dc3545
}

.qr-code {
    max-width: 5rem
}

.qr-code img {
    max-width: 5rem
}

.qr-code a {
    position: absolute;
    right: .313rem;
    bottom: .313rem;
    background: #2667ff;
    width: 1.563rem;
    height: 1.563rem;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .875rem
}

.table-img-col img {
    width: 3.125rem;
    height: 3.125rem;
    object-fit: cover;
    border-radius: .313rem
}

.true-answer>input {
    border-color: green
}

.tutoring-live .guest-2 {
    position: absolute;
    right: 1.875rem;
    bottom: 1.875rem;
    width: 9.375rem;
    height: 9.375rem;
    overflow: hidden;
    border-radius: .5rem
}

.tutoring-live .guest-2 img {
    width: 9.375rem !important;
    height: 9.375rem !important
}

.tutoring__student {
    position: absolute;
    bottom: .313rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%
}

.tutoring-live .guest-2 div[id^="agora"] {
    position: absolute !important;
    top: 0
}

.panel__body__header,
p {
    word-wrap: break-word !important;
    word-break: break-word !important
}

div.dt-container.dt-empty-footer tbody>tr:last-child>* {
    border-bottom: 1px solid #dee2e6 !important
}

.accordion-button::after {
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e") !important;
    transition: transform 0.2s ease-in-out
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e") !important;
    transform: rotate(-180deg) !important
}

.earing-panel-box {
    background-color: #9788e1
}

.single-panel-box {
    background-color: #fff;
    width: 8.75rem;
    flex-shrink: 0
}

.panel__boxes__content {
    display: flex;
    flex-wrap: wrap;
    gap: .625rem
}

.single-panel-box h5 {
    min-height: 2.125rem
}

.page-loader {
    width: calc(100% - 16.875rem);
    width: -moz-calc(100% - 16.875rem);
    width: -webkit-calc(100% - 16.875rem);
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0
}

.table-user-thumb {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .313rem;
    object-fit: cover;
    object-position: top;
    border-radius: 100%;
    margin-right: .313rem
}

.text-trim {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 200px
}

.plans__block {
    border-right: 1px solid #dee2e6;
    padding-right: 24px;
    height: 100%
}

.plans-wrap:last-child .plans__block {
    border-right: 0;
    padding-right: 0
}

.plan-duration {
    font-size: 1.5rem;
    line-height: 3rem
}

.plan-duration sub {
    font-size: .875rem;
    bottom: 0;
    font-weight: 600
}

.plans__block li {
    padding-left: 1.938rem;
    position: relative;
    margin-bottom: .625rem;
    font-size: .875rem;
    line-height: 1.25rem
}

.plans__block li:before {
    width: 1.563rem;
    height: 1.625rem;
    position: absolute;
    content: "";
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(38,103,255,1)'%3E%3Cpath d='M9.9997 15.1709L19.1921 5.97852L20.6063 7.39273L9.9997 17.9993L3.63574 11.6354L5.04996 10.2212L9.9997 15.1709Z'%3E%3C/path%3E%3C/svg%3E")
}

#card-element>div {
    height: 36px;
    align-content: center
}

.link-report {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 1.625rem !important;
    height: 1.625rem !important;
    border-radius: 100%;
    padding: 0px !important;
    font-size: 1rem
}

.institute-details>div {
    padding-right: 1.5rem;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
    border-right: 1px solid var(--bs-border-color)
}

#admin_profile_form {
    max-width: 37.5rem;
    margin: 0 auto
}

.text-md-nowrap {
    white-space: nowrap
}

.dt-layout-table>.dt-layout-cell {
    overflow-x: auto;
    scrollbar-width: thin
}

.dt-layout-table>.dt-layout-cell::-webkit-scrollbar {
    width: 10px;
    height: 5px
}

.dt-layout-table>.dt-layout-cell::-webkit-scrollbar-track {
    background: #f1f1f1
}

.dt-layout-table>.dt-layout-cell::-webkit-scrollbar-thumb {
    background: #888
}

.dt-layout-table>.dt-layout-cell::-webkit-scrollbar-thumb:hover {
    background: #555
}

.single__chat .input-group-append {
    position: absolute;
    right: .625rem;
    top: 50%;
    transform: translateY(-50%);
}

@media(min-width:1200px) {
    .chat-width {
        max-width: 68.75rem;
        margin: 0 auto
    }
}

@media(max-width:1200px) {
    .account__leftside .teacher-img {
        max-height: 70vh
    }
}

@media (max-width:1080px) {
    body {
        overflow-x: hidden
    }

    .panel__option {
        max-width: 16.875rem;
        width: 100%;
        z-index: 999;
        left: -18.75rem !important;
        transition: all .5s ease-in .5s
    }

    body::before {
        width: 100%;
        height: 100%;
        content: "";
        background: rgb(0 0 0 / .2);
        position: fixed;
        top: 0;
        left: -18.75rem;
        visibility: hidden;
        opacity: 0;
        z-index: 99;
        transition: all .5s ease-in
    }

    .sidebar-open {
        left: 0 !important
    }

    .overlay:before {
        visibility: visible;
        opacity: 1;
        left: 0
    }

    .panel__header {
        padding-inline: .938rem
    }

    .panel__content {
        margin-left: 0
    }

    .panel__body {
        margin: .938rem;
        padding: 1.875rem .938rem
    }

    .mob-menu {
        display: block !important;
        cursor: pointer
    }

    .dashboard--block {
        margin-inline: .938rem
    }
}

@media (max-width:1024px) {
    .counter-value {
        font-size: 2.75rem;
        line-height: 2.75rem
    }

    .student-card {
        bottom: 1.25rem
    }

    .teacher-info {
        width: 9.375rem;
        height: 9.375rem;
        padding-inline: 1.25rem;
        right: 1.875rem
    }

    .account__form {
        width: calc(100% - 2.5rem) !important
    }

    #login-form a,
    #login-form input[type="checkbox"]+span {
        font-size: .875rem
    }

    .liveevent-grid {
        flex-wrap: wrap
    }

    .liveevent-grid__left,
    .liveevent-grid__right {
        width: 100%
    }

    button#chat-btn {
        width: 3rem;
        height: 3rem;
        text-align: center;
        align-content: center;
        padding: 0 !important;
        font-size: 2rem;
        position: fixed;
        bottom: 100px;
        right: 30px;
        transition: all .2s ease
    }

    .liveevent-grid__right {
        transition: all .2s ease;
        position: fixed;
        bottom: -100%;
        background: #fff;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: calc(100% - 1rem);
        border-radius: 10px 10px 0 0;
        z-index: 9
    }

    .chat-open {
        bottom: 0px !important
    }

    .chat-open-btn {
        bottom: calc(100% - 4rem) !important
    }

    .live-event__topbar.mb-3 {
        display: none
    }

    #chat-btn {
        display: block !important
    }

    .studyhall-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width:991px) {
    .tab-content.mobile-tabs>.tab-pane {
        display: block;
        opacity: 1
    }

    .connects {
        grid-template-columns: repeat(4, 1fr)
    }

    .chat-wrapper {
        display: flex;
        gap: 0;
        flex-wrap: nowrap;
        overflow: hidden
    }

    .chat-wrapper>div {
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
        flex-shrink: 0;
        transition: transform .2s linear
    }

    .chat-active,
    .chat-active+div {
        transform: translateX(-100%)
    }

    .responsive-table,
    .responsive-table thead,
    .responsive-table tbody,
    .responsive-table th,
    .responsive-table td,
    .responsive-table tr {
        display: block
    }

    .responsive-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px
    }

    .responsive-table tr {
        border: 1px solid #dee2e6;
        margin: 0 0 1rem 0;
        padding: .625rem
    }

    .responsive-table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50% !important
    }

    .responsive-table td:before {
        content: attr(data-label);
        position: absolute;
        top: .375rem;
        left: .375rem;
        width: 45%;
        padding-right: .625rem;
        white-space: nowrap
    }

    .dt-layout-row {
        flex-direction: column;
        align-items: flex-start !important
    }

    .dt-search {
        display: flex;
        flex-direction: column;
        align-items: flex-start
    }

    .dt-layout-cell.dt-end {
        margin: 0 !important
    }

    .steps .accordion-header .accordion-button {
        border: 1px solid #dee2e6;
        margin-bottom: .625rem;
        border-radius: 0.313rem !important;
        background: transparent !important;
        box-shadow: none !important;
        color: var(--text-color) !important;
        padding: 1rem
    }

    .course-preview .accordion-button {
        border: none !important;
        margin: 0 !important
    }

    .modal-dialog {
        max-width: 95%
    }

    .plans-wrap:nth-child(even)>.plans__block {
        border-right: 0;
        padding-right: 0
    }
}

@media (max-width:980px) {
    .dashboard__grid {
        display: grid;
        gap: .938rem;
        grid-template-columns: repeat(4, 1fr)
    }

    .payment-status {
        grid-column: 1 / span 4
    }

    #module-tabs.underline-tabs button {
        font-size: 0.875rem !important
    }

    .underline-tabs ul.nav-tabs {
        gap: 1.563rem
    }
}

@media (max-width:767px) {
    .account .col-md-5 {
        margin-left: 0
    }

    .connects {
        grid-template-columns: repeat(3, 1fr)
    }

    .members {
        grid-template-columns: repeat(2, 1fr)
    }

    .added-course {
        flex-direction: column;
        gap: 1.875rem !important
    }

    .student-inputs .del-data {
        margin-top: .625rem;
        margin-left: .5rem
    }

    .student-inputs {
        grid-template-columns: repeat(1, 1fr);
        padding-right: 50px !important
    }

    .plans__block {
        border-right: none !important;
        border-bottom: 1px solid #dee2e6;
        padding-right: 0;
        height: auto;
        padding-bottom: 3rem
    }

    .plans-wrap:last-child>div {
        border-bottom: none;
        margin-bottom: 0 !important
    }

    .notification-listing__time {
        border-right: none
    }

    .notification-listing__time:before {
        display: none
    }

    .groupchat__topbar {
        flex-direction: column
    }

    .groupchat__topbar__right {
        margin-bottom: 15px !important
    }

    .institute-details>div {
        padding-right: 1.5rem;
        border-right: 1px solid var(--bs-border-color);
        flex: 0 0 calc(50% - 1.5rem)
    }

    .institute-details>div:nth-child(even) {
        border-right: 0;
        padding-right: 0;
        margin-right: 0
    }

    .text-trim {
        max-width: 100%
    }
}

@media (max-width:567px) {
    .connects {
        grid-template-columns: repeat(2, 1fr)
    }

    .dashboard__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .payment-status {
        grid-column: 1 / span 2
    }

    .admin-div>div:first-child {
        grid-column: 1 / span 2
    }

    .response-inner .rating-blk {
        width: 100% !important
    }

    .exit-live-btn {
        position: fixed;
        right: -87px;
        width: 120px !important;
        min-width: auto;
        padding-inline: 10px !important;
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0;
        transition: all .2s ease-in
    }

    .exit-live-btn:hover {
        right: 0
    }

    .studyroom-members__viewers img {
        width: 1.875rem;
        height: 1.875rem
    }
}

@media (max-width:480px) {
    .marketplace-tabs>li>button {
        font-size: .875rem;
        padding-inline: 0.313rem !important;
        word-break: break-all
    }

    .added-subject__grid {
        flex-direction: column;
        gap: 1rem !important
    }
}

@media (max-width:479px) {
    .members {
        grid-template-columns: repeat(1, 1fr)
    }

    .payment-counter {
        flex-direction: column
    }

    .dashboard__item--users {
        grid-template-columns: repeat(2, 1fr)
    }

    .dashboard__item--users>div:first-child {
        grid-column: 1 / span 2
    }

    .dashboard__item--users>div:nth-child(2) {
        border-left: 0;
        padding-left: 0
    }

    .comments__item .custom-delete-comment {
        width: 1.563rem;
        height: 1.563rem;
        bottom: .938rem;
        top: calc(100% - 3rem) !important;
        font-size: .875rem
    }

    .live-studyhall__toolbar {
        position: absolute;
        left: 10px;
        top: 10px
    }

    :is(.live-studyhall__instructor) :is(.live-status, .live-users) {
        position: static !important
    }

    .institute-details>div {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--bs-border-color);
        flex: 0 0 100%
    }
}

@media (max-width:360px) {
    .connects {
        grid-template-columns: repeat(1, 1fr)
    }
}

.thumb-size {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: cover;
    border-radius: 5px
}

table.dataTable th.dt-type-numeric,
table.dataTable th.dt-type-date,
table.dataTable td.dt-type-numeric,
table.dataTable td.dt-type-date {
    text-align: left !important
}

.ck-editor__editable {
    min-height: 9.375rem !important
}

.spinner-border {
    width: 1.25rem !important;
    height: 1.25rem !important
}

.modal-confirm {
    color: #636363;
    width: 25rem
}

.modal-confirm .modal-content {
    padding: 1.25rem;
    border-radius: .313rem;
    border: none;
    text-align: center;
    font-size: .875rem
}

.modal-confirm .modal-header {
    border-bottom: none;
    position: relative
}

.modal-confirm h4 {
    text-align: center;
    font-size: 1.625rem;
    margin: 1.875rem 0 -.625rem
}

.modal-confirm .close {
    position: absolute;
    top: -.313rem;
    right: -.125rem
}

.modal-confirm .modal-body {
    color: #999
}

.modal-confirm .modal-footer {
    border: none;
    text-align: center;
    border-radius: .313rem;
    font-size: .813rem;
    padding: .625rem .938rem 1.563rem
}

.modal-confirm .modal-footer a {
    color: #999
}

.modal-confirm .icon-box {
    width: 5rem;
    height: 5rem;
    margin: 0 auto;
    border-radius: 50%;
    z-index: 9;
    text-align: center;
    border: 3px solid #f15e5e
}

.modal-confirm .icon-box i {
    color: #f15e5e;
    font-size: 2.875rem;
    display: inline-block;
    margin-top: 13px
}

.modal-confirm .btn,
.modal-confirm .btn:active {
    color: #fff;
    border-radius: .25rem;
    background: #60c7c1;
    text-decoration: none;
    transition: all 0.4s;
    line-height: normal;
    min-width: 7.5rem;
    border: none;
    min-height: 2.5rem;
    border-radius: 3px;
    margin: 0 .313rem
}

.modal-confirm .btn-secondary {
    background: #c1c1c1
}

.modal-confirm .btn-secondary:hover,
.modal-confirm .btn-secondary:focus {
    background: #a8a8a8
}

.modal-confirm .btn-danger {
    background: #f15e5e
}

.modal-confirm .btn-danger:hover,
.modal-confirm .btn-danger:focus {
    background: #ee3535
}

.trigger-btn {
    display: inline-block;
    margin: 6.25rem auto
}

.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 1.25rem;
    height: 1.25rem;
    animation: spin 2s linear infinite;
    display: inline-block
}

.custom-card-header h4 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.loading {
    cursor: not-allowed;
    opacity: .6
}

.chat-wrapper_chatarea .type-msg span.text-danger {
    text-align: center;
    width: 100%;
    display: inline-block
}

.chat-scroll.custom-scrollbar.live-comment::-webkit-scrollbar-track,
.chat__listing::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / .3);
    border-radius: .625rem;
    background-color: rgb(0 0 0 / .1)
}

.chat-scroll.custom-scrollbar.live-comment::-webkit-scrollbar,
.chat__listing::-webkit-scrollbar {
    width: 6px;
    background-color: rgb(0 0 0 / .1);
    border-radius: 50px
}

.chat-scroll.custom-scrollbar.live-comment::-webkit-scrollbar-thumb,
.chat__listing::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / .3);
    background-color: rgb(0 0 0 / .5)
}

.chat-scroll {
    padding-right: 10px
}

.chat__listing__info>div span {
    width: 80px;
    flex-shrink: 0;
    text-align: right
}

.chat__listing__info>div span:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 14px;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    align-items: center;
    background: #2667ff;
    color: white;
    right: 20px;
    bottom: 10px;
}

.chat__listing__info.flex-fill>div h5 {
    white-space: nowrap;
    max-width: calc(100% - 80px);
    flex: 0 0 calc(100% - 80px);
    overflow: hidden;
    text-overflow: ellipsis
}

.chat__listing__info.flex-fill {
    max-width: calc(100% - 4.5rem);
    flex: 0 0 calc(100% - 4.5rem) !important
}

.chat__listing__user {
    border: hidden;
    background: #f4f4f4;
    border-radius: .438rem;
    margin-bottom: .625rem
}

.chat__listing__user:hover,
.chat__listing__user.active {
    background-color: #ddd
}

.chat__listing__user::before {
    display: none
}

.select-box-noti select {
    width: 100%;
    height: 3.125rem;
    border: 1px solid var(--bs-border-color);
    border-radius: .25rem;
    padding: 0 .938rem
}

.text-area-noti label {
    display: inline-block;
    width: 100%;
    margin-bottom: .375rem;
    font-size: 1rem
}

.select-box-noti label {
    font-size: 1rem;
    display: inline-block;
    width: 100%;
    margin-bottom: .375rem
}

.text-area-noti textarea {
    width: 100%;
    height: 150px;
    border-radius: .375rem;
    border: 1px solid var(--bs-border-color);
    padding: .625rem 0.938rem !important
}

.box-select-and-textarea {
    max-width: 500px;
    width: 100%
}

.response-inner {
    background-color: #eee;
    border-radius: 10px;
    padding: 20px 20px
}

.response-inner .rating-blk {
    border: hidden;
    padding: 10px 20px;
    background: #fff;
    border-radius: 0 20px 20px 20px;
    width: 70%
}

.response-input input {
    padding: 0 90px 0 20px
}

.response-input {
    position: sticky;
    background: #b3b0b0;
    padding: 10px 10px;
    bottom: 0;
    border-radius: 10px
}

.response button {
    line-height: 1;
    right: 0
}

.response-inner img.rating-user {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%
}

.response-inner span.text-light.small {
    font-size: .75rem
}

.response-inner .rating-blk.adminClass {
    margin-left: auto;
    border-radius: 20px 20px 0 20px;
    background-color: #d1d1d1
}

.custom-comment-wrapper textarea {
    width: 100%;
    border: 1px solid #d5d5d5;
    padding: 10px 15px !important;
    height: 100px;
    resize: none
}

.custom-input-file input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0
}

.custom-btn-and-file {
    display: flex;
    flex-flow: row-reverse;
    justify-content: flex-end;
    align-items: center;
    column-gap: 20px
}

.comments__item {
    background-color: #f3f3f3;
    border-radius: 10px;
    padding: 20px 20px;
    position: relative
}

.rating-blk__thumb img {
    border: hidden;
    border-radius: 100%
}

div#file_preview {
    display: flex;
    align-items: flex-start;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 20px
}

.file-preview-item {
    width: 55px;
    height: 55px;
    padding: .313rem;
    border: 1px solid #d5d5d5;
    border-radius: .25rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.file-preview-item>a {
    width: 100%;
    height: 100%;
    text-align: center;
    align-content: center
}

.file-preview-item button {
    position: absolute;
    top: -5px;
    right: -5px;
    padding: 0;
    line-height: 1;
    cursor: pointer
}

.file-preview-item img {
    width: auto;
    height: auto;
    max-height: 100%;
    border: hidden;
    object-fit: cover
}

.custom-input-file {
    position: relative
}

.attached-files-preview .file-preview-item span {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / .5);
    left: 0;
    top: 0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease
}

.attached-files-preview .file-preview-item:hover span {
    opacity: 1
}

.custom-delete-comment {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    background: #d10000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%
}

.custom-delete-comment i {
    color: #fff
}

.attached-files-preview h6 {
    width: 100%;
    margin: 0 0 -15px
}

:is(.notify__wrap, a#checkNotification) span {
    position: absolute;
    right: -5px;
    top: 2px;
    font-size: 10px;
    background: var(--primary-color);
    line-height: 1;
    color: #fff;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 2px
}

#time_limit-error {
    color: red !important
}

.scroll_container::-webkit-scrollbar {
    width: 6px;
}

.scroll_container::-webkit-scrollbar-track {
    background: transparent;
}

.scroll_container::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}

.select2-container--open {
    z-index: 99999;
}

.date-header {
    background: #f1eeee;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: #5e5e5e;
}

.chat-time {
    font-size: 14px;
    color: #959595;
}

.recipient .sender__msg p,
.recipient .bg-light {
    background-color: #e3e3e3 !important;
}

.sender a {
    max-width: 360px;
    display: flex;
    align-items: center;
}

.iti {
    width: 100%;
}

.iti__dropdown-content {
    position: absolute !important;
    bottom: 100%;
}

.members-list-wrap {
    height: calc(100dvh - 275px);
    overflow: auto;
}

.form-check-input {
    background-color: #eee;
    border: 1px solid #ccc;
}

.class-field {
    display: flex;
    flex-direction: column;
}

.class-field .invalid-feedback.class.d-block {
    order: 4;
}

@media (min-width: 768px) {
    .font-xs {
        font-size: 0.9vw;
    }
}

/* recording design */
.recording-wrap {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
}

.recording-wrap :is(img, video) {
    width: 100%;
    height: 160%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.recording-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
    padding: 1.875rem;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
}

.recording-wrap:hover .recording-info {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.recording-sub {
    background-color: rgba(136, 136, 136, 1);
}

.recording-info::before {
    content: '';
    background: linear-gradient(0deg, black, transparent);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.rating-list .rating-user {
    height: 4rem;
    width: 4rem;
    border-radius: 3.125rem;
    object-fit: cover;

}

.organizations-block .outline-box {
    height: 100%;
}

.course-section__header input[name="section_name"] {
    border: 1px solid #d5d5d5 !important;
    height: 50px; 
    padding: 0 20px !important;
    font-size: 1rem;
}
.add-subject + .select2-container .select2-search--inline .select2-search__field {
	padding:0 !important;
}

th[aria-label="Action: Activate to remove sorting"] span.dt-column-order, th[aria-label="Action: Activate to sort"] span.dt-column-order, th[aria-label="Action: Activate to invert sorting"] span.dt-column-order, th[aria-label="Approval: Activate to sort"] span.dt-column-order, th[aria-label="Approval: Activate to invert sorting"] span.dt-column-order, th[aria-label="Approval: Activate to remove sorting"] span.dt-column-order, th[aria-label="Status: Activate to sort"] span.dt-column-order, th[aria-label="Status: Activate to invert sorting"] span.dt-column-order, th[aria-label="Status: Activate to remove sorting"] span.dt-column-order,
th[aria-label="Actions: Activate to remove sorting"] span.dt-column-order, th[aria-label="Actions: Activate to sort"] span.dt-column-order, th[aria-label="Actions: Activate to invert sorting"] span.dt-column-order{
    display: none;
}
th[aria-label="Action: Activate to remove sorting"], th[aria-label="Action: Activate to sort"], th[aria-label="Action: Activate to invert sorting"], th[aria-label="Approval: Activate to sort"], th[aria-label="Approval: Activate to invert sorting"], th[aria-label="Approval: Activate to remove sorting"], th[aria-label="Status: Activate to sort"], th[aria-label="Status: Activate to invert sorting"], th[aria-label="Status: Activate to remove sorting"], th[aria-label="Actions: Activate to remove sorting"], th[aria-label="Actions: Activate to sort"], th[aria-label="Actions: Activate to invert sorting"] {
	pointer-events:none;
}
aside.panel__option ul li a {
    font-size: 0.95rem;
}
.select2-container--default .select2-search--inline .select2-search__field {
    padding: 0 !important;
}
.avatar-upload .user-type {
    position: absolute;
    left: 50%;
    z-index: 1;
    bottom: -0.5rem;
    top: auto;
    right: auto;
    transform: translateX(-50%);
}
.logged-user .avatar-admin-head .user-type {
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -7px;
}
td.dt-type-numeric img {
    max-width: 80px;
}

.members__items__info span.h5 {
    overflow: hidden;
    text-overflow: ellipsis;
}
.select2-container {
    z-index: 8;
}
.modal-backdrop.show + .select2-container {
    z-index: 9999;
}
.connects__blk .user-type {
    left: 10px;
    top: 10px;
    transform: none;
}
.course-preview > img {
    max-height: 200px;
    width: auto !important;
}


.single-date-filter input {
    border-color: var(--bs-border-color) !important;
    height: 2.5rem;
    border: 1px solid;
    border-radius: 5px;
    width: 100%;
    font-size: 14px;
    padding: 0 10px;
}
.date-filter-attendence {
    background: #f7f7f7;
    border-radius: 5px;
    padding: 10px;
}
.date-filter-block {
    display: flex;
    column-gap: 20px;
}
.single-date-filter label {
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    opacity: 0.6;
}

.month-attendence {
    display: flex;
    flex-flow: column;
    background: var(--primary-color);
    color: #fff;
    padding: 20px 20px;
    border-radius: 5px;
    max-width: 200px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
.month-attendence span {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-top: 6px;
}

.course-section .remove-section {
    position: absolute;
    top: -10px;
    right: -10px;
}

.gj-modal + .select2-container {
    z-index: 9999;
}

.members {
    display: flex;
    flex-wrap: wrap;
}
p.info-text {
    font-weight: 500;
    font-size: 14px;
    opacity: 0.7;
}
.panel__body__content {
    overflow: hidden;
}
.course-section input.form-control {
    border: 1px solid #d5d5d5;
    padding: 10px 15px !important;
    font-size: 16px;
}
.course-section input.form-control.duration-field {
    min-width: 60px;
    padding: 10px 0 !important;
    text-align: center;
}
label#time_limit_input-error {
    color: rgb(220, 53, 69);
    font-weight: 400;
}
.drop-zoon__preview-image {
    z-index: 8;
}
.delete-lessons a {
    background: #cf0000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
}

div#add-class .modal-dialog {
    max-width: 700px;
}
div#subject-container > div {
    padding: 0 50px 0 0;
    position: relative;
}
div#subject-container > div.subject-group button {
    position: absolute;
    right: 15px;
    top: 50%;
    height: 35px;
    width: 35px;
    padding: 0 !important;
    transform: translateY(-50%);
}

.usertype-and-delete span.delete-usertype {
    width: 25px;
    height: 25px;
    display: flex;
    image-rendering: -webkit-optimize-contrast;
    align-items: center;
    justify-content: center;
    background-color: #dc3545;
    border-radius: 100%;
    color: #fff;
	cursor: pointer;
}

.usertype-and-delete {
    display: flex;
    align-items: center;
    column-gap: 5px;
    position: absolute;
    right: 20px;
    top: 20px;
}
.header-block-df {
    padding: 0 65px 0 0;
}

.usertype-and-delete span {
    position: static;
    transform: none;
}
td[data-label="Email"] {
    word-break: break-all;
}
td[data-label="Name"] img + span {
    word-break: break-all;
}

/* recording design ends */
@media (max-width: 767px) {
    .recording-info {
        position: static;
        background-color: var(--clr-black);
        padding: 1.25rem;
        font-size: .875rem;
    }

    .font-xs {
        font-size: .8125rem;
    }
	.date-filter-attendence {
    margin-top: 15px;
}
div#subject-container > div > div {
    margin: 5px 0;
}
}

.forum-blk a.read-more {
    color: rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));
}


/* crop image  */
/* Crop modal styles */
.crop-container {
    position: relative;
    overflow: hidden;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.controls {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

/* Upload area styling */
.drop-zoon {
    border: 2px dashed #ced4da;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.drop-zoon.dragover {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}

.drop-zoon:hover {
    border-color: #0d6efd;
}

.drop-zoon__file-input {
    display: none;
}



/* File details styling */
.uploaded-file {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.uploaded-file__icon-container {
    margin-right: 15px;
    font-size: 24px;
    color: #6c757d;
}

.uploaded-file__info {
    flex: 1;
}

.uploaded-file__name {
    display: block;
    font-weight: 500;
    color: #212529;
}

.uploaded-file__counter {
    color: #0d6efd;
    font-weight: 600;
}

.file-details__title {
    font-size: 16px;
    margin-bottom: 10px;
    color: #495057;
}



#cropImage {
    max-width: 100%;
    max-height: 100%;
    display: block;
}



.cropper-container {
    direction: ltr;
    font-size: 0;
    line-height: 0;
    position: relative;
    touch-action: none;
    user-select: none;
}

.cropper-modal {
    background-color: #000;
    opacity: 0.5;
}

/* //dfmdsf */

/* Static crop box styling */
.cropper-crop-box {
    border: 3px dashed #0d6efd !important;
    cursor: default !important;
}

.cropper-line,
.cropper-point {
    display: none !important;
}

.cropper-canvas {
    cursor: move !important;
}

/* Modal styling */
#cropContainer {
    min-height: 400px;
    background-color: #f8f9fa;
    position: relative;
}

#cropImage {
    max-width: 100%;
    max-height: 400px;
    display: block;
    margin: 0 auto;
}

/* Preview styling */
#preview {
    background-color: #f8f9fa;
    background-image: 
        linear-gradient(45deg, #e9ecef 25%, transparent 25%),
        linear-gradient(-45deg, #e9ecef 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #e9ecef 75%),
        linear-gradient(-45deg, transparent 75%, #e9ecef 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.event-speaker__badge {
    bottom: 4px;
    left: 4px;
}

.forum-time {
        position: absolute;
    bottom: 16px;
    right: 20px;
}

