:root {
    --sidebar: #3c096c;
    --link: #3F37C9;
    --primary: #560BAD;
    --secondary: #240046;
    --danger: #cc0055;
    --success: #0cbaba;
    --warning: #f6af12;
    --info: #78c0e0;
    --text: #1b1b1b;
    --light: #F5F5FF;
  --animate-duration: 300ms !important;
}

[x-cloak] { display: none !important; }

body {
    font-size: 14px;
    font-family: 'Jost', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    color: var(--text);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--link);
}

.sidebar {
    background-color: var(--sidebar);
    width: 100px;
    border-radius: 10px;
    position: fixed;
    top: 30px;
    left: 30px;
    bottom: 30px;
    box-shadow: 8px 8px 15px rgba(90, 24, 154, 0.29);
    color: #fff;
    padding: 10px;
    z-index: 100;
    transition: margin-left .15s cubic-bezier(.9,0,.3,.7);
}

.sidebar .menu-item:hover {
    border: #fff solid 1px;
    border-radius: 5px;
}

.sidebar .menu-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100%;
    padding: 5px;
    border: var(--sidebar) solid 1px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
}

.sidebar .menu-item.active {
    border: #fff solid 1px;
    border-radius: 5px;
    background-color: #fff;
    color: var(--sidebar);
}

.sidebar .menu-item .title {
    text-transform: uppercase;
    font-size: 10px;
}

#sidebar-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
}

.submenu {
    z-index: 90;
    position: fixed;
    top: 30px;
    bottom: 30px;
    left: -120px;
    width: 250px;
    background-color: #fff;
    border: #efefef solid 1px;
    border-radius: 0 10px 10px 0;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 30px;
    transition-property: left;
    transition-duration: .1s;
    transition-timing-function: cubic-bezier(0, 0, 1, 1);
    transition-delay: 100ms;
}

.submenu div {
    width: 100%;
    height: 100%;
}

.submenu .item {
    border-bottom: #efefef solid 1px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.submenu .counter {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1rem;
    margin-right: 1rem;
    color: #fff;
}

.submenu .item:hover {
    background-color: #F5F5FF;
    cursor: pointer;
}

.submenu .item:first-child:hover {
    border-top-right-radius: 10px;
}

.submenu .item > .text {
    padding-left: 35px;
    margin-top: auto;
    margin-bottom: auto;
    height: auto;
}

.submenu.active {
    left: 116px !important;
}

.empty-sidebar-el {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 95;
    width: 110px;
    background-color: #fff;
}

.main-wrapper {
    margin-top: 15px;
    margin-left: 150px;
    height: 100px;
    width: calc(100% - 150px);
    position: relative;
}

.burger-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    transition: left .15s cubic-bezier(.9,0,.3,.7);
}



.page-wrapper {
    min-height: calc(100vh - 250px);
    border-radius: 10px;
    padding: 20px 20px;
    position: relative;
    height: 100%;
}

main {
    margin-top: 10px;
}

nav, main {
    width: 100%;
}

nav > div {
    padding: 10px 15px;
}

#account-name {
    font-size: 18px;
}

.nav-bubble {
    background-color: #F5F5FF;
    border-radius: 5px;
    padding: 3px 5px;
}

.subscription {
    font-weight: 300;
    margin-right: 15px;
}

#user-info .user-avatar {
    background-size: cover;
    border-radius: 5px 0px 0px 5px;
    width: 24px;
    height: 24px;
}

#user-info .user-name {
    background-color: #F5F5FF;
    height: 24px;
    border-radius: 0px 5px 5px 0px;
}

#user-info .user-name a {
    color: var(--text);
    text-decoration: none;
}

#user-info .user-name a:hover {
    color: var(--text);
    text-decoration: none;
}

.dropdown-menu {
    font-size: inherit;
    border: 1px solid #EAEAFF;
    font-weight: 300;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 30px;
}

#user-info .dropdown-menu {
    margin-top: 6px !important;
}

.dropdown-item {
    font-weight: 400;
}
.dropdown-item:hover {
    background-color: #F5F5FF;
}

.dropdown-divider {
    border-top-color: #EAEAFF !important;
}

.dropdown-delete {
    cursor: pointer;
}

.breadcrumb {
    font-size: 12px;
    margin-bottom: 0;
}

.page-wrapper .content:not(.fb3 .content):not(.fb4 .content) {
    margin-top: 0;
    margin-bottom: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
}

.content-wrapper {
    margin-left: 15px;
    margin-right: 15px;
}

footer {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.bg-inner {
    background-color: #F5F5FF;
}


.course-card {
    border-radius: 12px !important;
    border: 0;
    min-height: 150px;
    position: relative;
    transition: box-shadow .15s ease, transform .15s ease;
}

.course-card h5 {
    font-size: 1.1rem;
}

.course-card:hover {
    box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    z-index: 50;
}

.course-card__info {
    position: absolute;
    bottom: 70px;
    display: flex;
    left: 10px;
    right: 10px;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    justify-content: space-around;
}

.course-card__empty {
    width: 70px;
    height: 80px;
}

.course-card__footer {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 50px;
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-card__footer a:not(.dropdown-item) {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.course-card__footer .btn-submenu {
    padding: .25rem .3rem !important;
    color: #363636;

}


.account-card {
    border-radius: 8px !important;
    border: 0 !important;
    min-height: 150px;
    position: relative;
}

.account-card h5 {
    font-size: 1.1rem;
}

.account-card__empty {
    width: 70px;
    height: 45px;
}

.account-card__footer {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 50px;
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account-card__footer a:not(.dropdown-item) {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.account-card__footer .btn-submenu {
    padding: .25rem .3rem !important;
    color: #363636;
}



.btn {
    font-size: 14px;
    border-radius: 8px;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

div.card.sortable-page {
    border: 1px solid #EAEAFF;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.04);
    width: 80%;
}

div.sortable-page .draggable-block {
    color: #D9D9D9;
}

.course-module .module-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

.course-module .module-heading h5 {
    font-weight: 500;
}

.course-module {
    padding-left: 15px;
    border-left: var(--sidebar) solid 3px;
    margin-bottom: 35px;
}

.module-tools {
    display: flex;
    align-items: center;
    justify-content: end;
}

.module-edit {
    margin-right: .5rem;
    cursor: pointer;
}

.module-delete {
    cursor: pointer;
}

.page-tools {
    margin-bottom: 1.3rem;
}

.course-modules {
    min-height: calc(100vh - 260px);
}

.page-submenu .item {
    padding: .5rem 1.5rem;
    cursor: pointer;
    font-weight: 400;
}

.page-submenu .item.active {
    background-color: var(--light);
    border-bottom: #DCBEFF solid 2px;
    border-radius: 8px;
}

aside.active, .sidebar.active {
    margin-left: 0px;
    transition: margin-left .15s cubic-bezier(.9,0,.3,.7);
}

.rename-module {
    font-size: 1.25rem;
    font-weight: 500;
    border-color: #E4E4FF;
    padding: .5rem 1rem;
}

.lesson-edit {
    cursor: pointer;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    margin-bottom: 6px;
}

.form-control:not([type=file]):not(.rename-module) {
    font-size: 14px;
    padding: .7rem 1rem;
    border-color: #E4E4FF;

}

.form-control:focus {
    box-shadow: none;
    background-color: #fff;
}

.form-check-label {
    font-size: 1rem;
    font-weight: 400;
}

.form-check-input {
    border-color: #E4E4FF;
    width: 1rem;
    height: 1rem;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
  }

.form-control[type=file] {
    border-color: #E4E4FF;
    font-size: 14px;
    font-weight: 300;
}

.form-select {
    border-color: #E4E4FF;
    font-size: 14px;
}

.text-danger {
    color: var(--danger) !important;
}

.enrollment-table tr td {
    vertical-align: middle;
}

.enrollment-table .form-control {
    padding: .375rem .5rem !important;
}

.btn-secondary  {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

.table-wrapper {
    border: #efefef solid 1px;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05),0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

th {
    font-weight: 400;
color: #808080;
}

.table {
    border-color: #efefef;
}

.table thead th {
    background-color: #f8f8f8;
    border-bottom-color: #efefef !important;
    text-transform: uppercase;
    text-align: center;

}

.table thead th:first-child {
    border-radius: 8px 0 0 0 !important;
}

.table thead th:last-child {
    border-radius: 0 8px 0 0 !important;
}

.table tr td {
    vertical-align: middle;
}

.bg-success {
    background-color: var(--success) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-danger {
    background-color: var(--danger) !important;
}

.btn-light {
    background-color: var(--light) !important;
    border-color: var(--light) !important;
}

.form-select {
    padding: .7rem 1rem;
}

.assignment-wrapper {
    height: calc(100% - 82px);
}

.card {
    border-color: #eaeaff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.04);
    border-radius: 8px;
}

.assignment-card {
    border-color: #eaeaff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.04);
    border-radius: 5px;
    word-wrap: break-word;

    padding: 0;
}

.assignment-card__header {
    padding: 15px;
    background-color: #f9f9f9;
}

.assignment-card__user {
    display: flex;
    align-items: center;
}

.assignment-card__user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: .75rem;
}

.assignment-card__body {
    padding: 15px;
    border-top: #eaeaff solid 1px;
}

.btn-danger, .btn-danger:hover {
    background-color: var(--danger);
    border-color: var(--danger);
}

.btn-success, .btn-success:hover {
    background-color: var(--success);
    border-color: var(--success);
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.message-box {
    position: relative;
}

.message-box button {
    position: absolute;
    right: 5px;
    top: 4px;

}

.message-box form input {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important;
    padding-left: 1rem !important;
    padding-right: 4rem !important;
    border-color: #fff !important;
}

.call-button {
    margin-left: .5rem;
    margin-top: 6px;
}

.chat-message {
    display: flex;
    margin-bottom: 1rem;
}

.chat-left {
    justify-content: start;
}

.chat-right {
    flex-direction: row-reverse;
}

.chat-message > .avatar {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
}

.chat-message .avatar img{
    width: 45px;
    height: 45px;
    border-radius: 50%;

}

.chat-left .avatar {
    margin-right: .5rem;
}

.chat-right .avatar {
    margin-left: .5rem;
}

.chat-message__content {
    border-radius: 5px;
    padding: 5px 10px;
}

.chat-left .chat-message__content {
    background-color: #d7e3ff;
}

.chat-right .chat-message__content {
    background-color: #dfe2eb;
}

.chat-message__datetime small {
    font-size: .6rem !important;
}

.chat-info {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-info h6 {
    font-weight: 400;
}

.conversation-user-status {
    margin-right: 5px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.conversation {
    background-color: #fff;
    border-bottom: #eaeaff solid 1px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.conversation:hover {
    background-color: #f5f5ff;
}

.conversation > .avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.conversation > .avatar {
    position: relative;
}

.conversation > .avatar .user-status {
    position: absolute;
    width: 8px;
    height: 8px;
    bottom: 3px;
    left: 35px;
    border-radius: 50%;
}

.conversation-data {
    margin-left: 10px;
    width: calc(100% - 65px);
}

.conversation-data .user-name {
    font-weight: 500;
}

.lesson-card-accepted {
    border: none;
    background-color: var(--success);
    color: #fff;
}

.lesson-card-accepted a {
    color: #fff;
}
.lesson-card-accepted a:hover {
    color: #fff;
}

.lesson-card-rejected a {
    color: #fff;
}
.lesson-card-rejected a:hover {
    color: #fff;
}

.lesson-card-rejected {
    border: none;
    background-color: var(--danger);
    color: #fff;
}

.lesson-card {
    border: none;
    font-weight: 400;
}

.lesson-card .icon {
    margin-right: 8px;
}

.lesson-card-current {
    border: #eaeaff solid 2px;
}

.rounded-circle {
    border-radius: 50% !important;
}

.btn-outline-secondary {
    border: var(--secondary) solid 1px;
    color: var(--secondary);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary);
    color: #fff;
}

.disc-messages {
    margin-top: 1rem;
}

.discussion-message {
    display: flex;
    border-radius: 8px;
    margin-bottom: 1rem;
    background-color: #f8f8ff;
}

.discussion-message.even {
    background-color: #f4faff;
}

.discussion-message__avatar {
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 10px;
}

.discussion-message__avatar .user-status {
    position: absolute;
    width: 8px;
    height: 8px;
    bottom: 3px;
    left: 35px;
    border-radius: 50%;
}

.discussion-message__avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.discussion-message__body {
    padding: 10px;
}

.discussion-message__body .header {
    display: flex;
    justify-content: space-between;
    font-weight: 400;
}


.btn svg, a svg, .dropdown-item svg, .icon-mt {
    margin-top: -3px;
}

.sortable-page .lesson-edit a, .sortable-page .lesson-edit a:hover{
    color: var(--text);
}

.modal-content {
    border: 0;
    border-radius: 10px;
}

.modal-header {
    border-bottom: 0;
}
.modal-footer {
    border-top: 0;
}

.modal .card {
    box-shadow: none;
    border-radius: 8px;
}

#newLessonModal .card {
    cursor: pointer;
    transition: all .35s ease;
}

#newLessonModal .card:hover {
    border-color: #dadaff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

#newLessonModal .card svg {
    color: var(--primary);
}

#newLessonModal p {
    margin-bottom: 0;
}

.mfp-iframe {
    border-radius: 10px;
}

.text-red {
    color: var(--danger);
}

.select2-container--default .select2-selection--single {
    border-color: #E4E4FF !important;
}

.select2-container .select2-selection--single {
    height: auto !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
    padding-left: 1rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--text) !important;
    font-weight: 400;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    margin-top: .5rem;
}

.btn-outline-info {
    color: var(--info);
    border-color: var(--info);
}

.btn-outline-info:hover {
    background-color: var(--info);
    color: #fff;
    border-color: var(--info);
}

/* list-group */

.list-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}

.list-group .list-group-item + .list-group-item {
    border-top-width: 1px;
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit;
}

.list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
}


.list-group-item:first-child {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.page-link {
    border-color: #EAEAFF;
    color: var(--link);
}

.page-item.disabled .page-link {
    border-color: #EAEAFF;
}

.page-link:hover {
    z-index: 2;
    color: var(--link);
    background-color: #f4f3f3;
    border-color: #eaeaff;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--link);
    border-color: var(--link);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    color: #fff;
    border-color: var(--primary);
    background-color: var(--primary);
}

.status-online {
    background-color: var(--success) !important;
}

.status-offline {
    background-color: var(--danger) !important;
}

.conversation-status {
    display: flex;
    justify-content: center;
    align-items: center;
}

.conversation-status .unread {
    width: 8px;
    height: 8px;
    background-color: var(--link);
    border-radius: 50%;
}

.page-submenu a.item {
    color: var(--text) !important;
}

.page-submenu a.item:hover {
    color: var(--text) !important;
}

/* /list-group */

/* 3.4 Alert */
.alert {
    color: #fff;
    border: none;
    padding: 15px 20px;
}
.alert .alert-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
.alert code {
    background-color: #fff;
    border-radius: 3px;
    padding: 1px 4px;
}
.alert p {
    margin-bottom: 0;
}
.alert.alert-has-icon {
    display: flex;
}
.alert.alert-has-icon .alert-icon {
    margin-top: 4px;
    width: 30px;
}
.alert.alert-has-icon .alert-icon .ion, .alert.alert-has-icon .alert-icon .fas, .alert.alert-has-icon .alert-icon .far, .alert.alert-has-icon .alert-icon .fab, .alert.alert-has-icon .alert-icon .fal {
    font-size: 20px;
}
.alert.alert-has-icon .alert-body {
    flex: 1;
}
.alert:not(.alert-light) a {
    color: #fff;
}
.alert.alert-primary {
    background-color: var(--primary);
}
.alert.alert-secondary {
    background-color: var(--secondary);
    color: #fff;
}
.alert.alert-success {
    background-color: var(--success);
}
.alert.alert-info {
    background-color: var(--info);
}
.alert.alert-warning {
    background-color: var(--warning);
}
.alert.alert-danger {
    background-color: var(--danger);
}
.alert.alert-light {
    background-color: #e3eaef;
    color: #191d21;
}
.alert.alert-dark {
    background-color: #191d21;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: .75rem 1.25rem;
    color: inherit;
}
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.sr-only {
    border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
/* /Alert */


.badge-primary {
    background-color: var(--primary);
}

.badge-info {
    background-color: var(--info);
}

.badge {
    font-weight: 500;
}


.empty-sidebar-el.active {
    left: 0;
}

.submenu.manual {
    left: -120px;
}

.main-wrapper.active {
    margin-left: 150px;
    width: calc(100% - 150px);
}

.burger-wrapper.active {
    left: 130px;
    transition: left .15s cubic-bezier(.9,0,.3,.7);
}

.topic-unread {
    font-weight: 600;
}

.input-group-text {
    border-color: #E4E4FF !important;
}

.badge-success {
    background-color: var(--success) !important;
}

.badge-warning {
    background-color: var(--warning);
}

.users-list-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.users-list-avatar .user-status {
    position: absolute;
    width: 8px;
    height: 8px;
    bottom: 3px;
    left: 35px;
    border-radius: 50%;
}

.profile-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.profile-user-data {
    display: flex;
    align-items: center;
}

.profile-user-data h5 {
    font-weight: 400;
    margin-bottom: 0;
}

.user-inline-status {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

hr {
    background-color: #babaf0;
}

.support-right-message {
    border-top: #256683 2px solid;
}

.support-left-message {
    border-top: var(--info) 2px solid;
}

.card-stat-icon {
    position: absolute;
    top: 7px;
    right: 10px;
    z-index: 0;
    color: #E5E4FF;
}

.dash-card {
    min-height: 265px;
    border-radius: 10px;
    padding: 15px;
}

.bg-warning {
    background-color: var(--warning) !important;
}

.bg-courses {
    background-color: #37327F;
}

.dash-card .list {
    min-height: 200px;
    background-color: #fff;
    border-radius: 10px;
}

.dash-card .action {
    padding: 15px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.dash-card .list > .course {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: #eaeaff solid 1px;
    padding: 10px;
}

.dash-card .list > .course:last-child {
    border-bottom: none;
}

.bg-info {
    background-color: var(--info);
}

.plan-card {
    padding: 0;
}

.plan-card .card-body  {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.plan-card .card-body .features {
    text-align: left;
    display: inline-block;
}

.plan-card .card-body .features .feature {
    display: flex;
    margin-bottom: 15px;
}
.plan-card .card-body .features .feature-label {
    font-size: 1rem;
    font-weight: 400;
    margin-left: 5px;
}


.plan-card .card-footer {
    width: 100%;
    background-color: #fff;
    border-top: none;
    display: flex;
    justify-content: center;
    border-radius: 0 0 8px 8px;
}

.plan-card .badge {
    font-size: 16px;
    background-color: #2b2c5a;
    margin-bottom: 2rem;
}

.plan-card .plan-price {
    font-size: 36px;
    font-weight: 500;
    color: #4c4949;
    margin-bottom: 2rem;
}
.plan-card .plan-price .period {
    font-size: 1rem;
    font-weight: 400;
}

.text-success {
    color: var(--success) !important;
}

.lf-card {
    padding: 0 !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 55px;
}

.lf-card .cover {
    border-radius: 8px 0 0 8px;
}

.lf-card .row {
    width: 100%;
    margin-left: 0;
    min-height: 55px;
}

.lf-card .info {
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lf-card h6 {
    font-weight: 400;
    margin-bottom: 0;
}

.card-success {
    border-top: var(--success) solid 2px;
}

.card-danger {
    border-top: var(--danger) solid 2px;
}

.form-control, .form-select, .input-group-text {
    border-radius: 8px;

}

.pay-card {
    box-shadow: none;
    height: 150px;
    cursor: pointer;
}

.pay-card img {
    max-width: 150px;
}

.pay-card:hover {
    border-color: #acacac;
}

.course-title-card {
    background-color: var(--sidebar);
    width: 100%;
    border-radius: 10px;
    box-shadow: 2px 9px 15px rgba(90, 24, 154, 0.29);
    color: #fff;
    padding: 10px;
}

.cursor-pointer {
    cursor: pointer;
}

div.CodeMirror {
    border-radius: 8px;
}

.homework-text img {
    width: 100%;
    height: auto;
}

.course-bundle__item {
    width: 100%;
    background-color: #f8f4fc;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.course-bundle__item label {
  font-size: 14px;
}

.ts-control {
  border-radius: 8px !important;
  border-color: #E4E4FF !important;
}

.card-footer {
  background-color: #fff;
  border-top: none;
  border-bottom-right-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
  padding: 1rem 1rem;
}

.new-group__button {
  width: 100%;
  padding: .2rem .5rem;
  background-color: #fff;
  color: #3e3e3e;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 8px;
}

.space-group__space {
  width: 100%;
  padding: .2rem .5rem;
  background-color: #fff;
  color: #3e3e3e;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 8px;
}

.space-group__header {
  width: 100%;
  padding: .2rem .7rem;
  background-color: #F5F5FF;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 8px;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.new-group__button:hover {
  background-color: #f3f3f3;
}

.space-type {
  cursor: pointer;
  border-radius: 8px;
  border: #FFFFFF solid 1px;
  padding: 1rem;
}

.space-type:hover {
  border: #b1b1d7 solid 1px;
}

.club-post-list {
  width: 100%;
  max-width: 750px;
}

.space-header__settings-btn {
  padding: .2rem .5rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  border-radius: 8px;
  border: none;
}

.space-header__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.space-header__image-wrapper {
  width: 100%;
  height: 30vh;
}

.editorjs-wrapper {
  width: 100%;
  max-width: 750px;
  padding-left: 70px;
}

.new-post-title__textarea {
  width: 100%;
  resize: none;
  border: none;
  font-size: 20px;
  font-weight: 700;
  outline: none;
}

.space-cover__preview {

}

.display-7 {
  font-size: 2rem;
}

.display-8 {
  font-size: 1.5rem;
}

.selected-spaces {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.selected-spaces__space {
  display: flex;
  align-items: center;
  padding: .2rem .7rem;
  background-color: #F5F5FF;
  border: none;
  border-radius: 8px;
}

.selected-spaces__delete-btn {
  margin-left: 5px;
  border: none;
  padding: 2px;
  background-color: transparent;
}

.checkout-wrapper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  --bs-gutter-x: 0 !important;
}

.club-checkout__info {
  background-color: #FBFBFF;
  padding: 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.club-checkout__data {
  background-color: #fff;
  padding: 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.club-checkout__info > .content {
  display: flex;
  flex-direction: column;
  width: 70%;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding-right: 20px;
}

.club-checkout__data > .content {
  display: flex;
  flex-direction: column;
  width: 70%;
}

.club-checkout-user__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  border: #eaeaff 1px solid;
  border-radius: 8px;
  padding: .75rem .75rem;
}

.club-checkout-user__avatar {
  border-radius: 6px;
  width: 50px;
  height: 50px;
  flex: none;
}

.club-checkout__order-button {
  font-size: 18px;
}

.wrapped-plan-checkout_subtitle {
  font-size: 16px;
}

.wrapped-plan-checkout_title {
  font-size: 24px;
  font-weight: 500;
}

.wrapped-plan-checkout_cover {
  margin-left: -1rem;
  margin-right: -1rem;
  height: 200px;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.wrapped-plan-checkout_description {
  font-size: 16px;
}

/* --------Editor.js---------*/
.editor-doc__render {
  font-size: 16px;

}
.reply-quote {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  border-left: solid 4px rgb(129 140 248);
}

.reply-quote__text {
  font-size: 14px;
}

.reply-quote__text:focus-visible {
  outline: none;
}

.edjs-warning {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background-color: #fffbeb;
  font-size: 14px;
}

.edjs-warning__text {
  font-size: 14px;
}

.edjs-warning__text:focus-visible {
  outline: none;
}

.tc-row {
  grid-template-columns: repeat(auto-fit,minmax(10px,1fr)) !important;
}

.ce-delimiter {
  line-height: 1.6em;
  width: 100%;
  text-align: center;
}

.ce-delimiter::before {
  display: inline-block;
  content: "***";
  font-size: 30px;
  line-height: 65px;
  height: 30px;
  letter-spacing: 0.2em;
}

.cdx-nested-list {
  margin: 0;
  padding: 0;
  outline: none;
  counter-reset: item;
  list-style: none;
}

.cdx-nested-list__item {
  line-height: 1.6em;
  display: flex;
  margin: 2px 0;
}

.cdx-nested-list--ordered > .cdx-nested-list__item::before {
  content: counters(item, ".") ". ";
}

.cdx-nested-list__item-body {
  flex-grow: 2;
}

.cdx-nested-list__item-content {
  word-break: break-word;
  white-space: pre-wrap;
}

.cdx-nested-list__item-content, .cdx-nested-list__item-children {
  flex-basis: 100%;
}

.cdx-nested-list__item::before {
  counter-increment: item;
  margin-right: 5px;
  white-space: nowrap;
}

.cdx-nested-list--unordered > .cdx-nested-list__item::before {
  content: "•";
}

.edjs-image {
  display: block;
  max-width: 100%;
}

.edjs-image__caption {
  max-width: 500px;
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.edjs-attaches {
  display: flex;
  align-items: center;
}

.edjs-attaches__block {
  border-radius: 8px;
  background-color: #fff;
  border: #efefef solid 1px;
  padding: .75rem;
}

.edjs-attaches__file-icon {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  background-color: rgb(219, 47, 47);
  border-radius: 6px;
  padding: .375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
  font-size: 12px;
  width: 40px;
  height: 40px;
}

.edjs-attaches__file-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  font-size: 14px;
}

.edjs-table__wrapper {
  font-size: 14px;
  width: 100%;
  overflow-x: auto;
}

.edjs-table__table {
  table-layout: auto;
  border-collapse: collapse;
  width: 100%;
}


.edjs-table__table thead tr,  .edjs-table__table tbody tr{
  border-bottom: #efefef solid 1px;
  border-top: #efefef solid 1px;
}
.edjs-table__table thead tr th {
  padding: 5px;
  font-weight: 700;
}

.edjs-table__table thead tr > * + * {
  border-right-width: 0px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #efefef;
}

.edjs-table__table tbody tr td {
  padding: 5px 10px;
}

.edjs-table__table tbody tr > * + * {
  border-right-width: 0px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #efefef;
}

.edjs-code__wrapper {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: #4e4e4e;
  background-color: #efefef;
  border-radius: 8px;
  padding: 10px;
  white-space: pre;
  overflow-x: auto;
  word-wrap: normal;
  font-size: 13px;
  line-height: 1.7em;
}

.edjs-embed__caption {
  max-width: 500px;
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.edjs-paragraph p {
  margin-bottom: 0;
}

.editor-doc__render > * + * {
  margin-top: 12px;
}

.club-space__title-wrapper {
  background-color: #fff;
  z-index: 10;
}

  /* ------------------ */
.builder-card {
  border-radius: 5px;
  border: 1px solid #e7e7e7;
  background-color: #fff;
  margin-top: 1rem;
  min-height: calc(100vh - 110px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

.builder-card__header {
  position: relative;
  height: 35px;
  background: #f4f4f4;
  border-bottom: 1px solid #e7e7e7;
  border-radius: 5px 5px 0 0;
}

.builder-card__header .dot-red {
  position: absolute;
  width: 13px;
  height: 13px;
  background: #F26C6F;
  border-radius: 50%;
  top:11px;
  left: 30px;
}

.builder-card__header .dot-yellow {
  position: absolute;
  width: 13px;
  height: 13px;
  background: #FFC554;
  border-radius: 50%;
  top:11px;
  left: 60px;
}

.builder-card__header .dot-green {
  position: absolute;
  width: 13px;
  height: 13px;
  background: #5DCE91;
  border-radius: 50%;
  top:11px;
  left: 90px;
}

.builder-card__body {
  width: 100%;
  height: 100%;
}

.empty-page {
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.empty-page .btn {
  background-color: #3F37C9;
  color: #fff;
}

.empty-page .btn:hover {
  background-color: #322baa;
}

#blocksModal h3 {
  margin-bottom: 0;
  margin-top: 1.7rem;
  font-size: 18px;
  font-weight: 600;
}

.btn-block {
  border: 0;
  background-color: #fff;
  transition: transform .25s ease;
}

.btn-block:hover {
  transform: translateY(-4px);
}

.btn-block img {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  border-radius: 8px;
  border: #e7e7e7 1px solid;
  max-width: 350px;
}

.is-block {
  position: relative;
}

.is-block:hover {
  border-bottom: #00ABFF 3px dashed;
  /*border: #00ABFF 3px dashed;*/
}


.block-editor-tools {
  position: absolute;
  top:5px;
  right: 20px;
  display: flex;
  align-items: center;
  font-family: 'Jost', sans-serif;
}

.add-block-under {
  position: absolute;
  left: 50%;
  transform: translate(-50%,-50%);
  bottom: -32px;
  z-index: 5;
  height: 33px;
}

.add-block-under .btn {
  background-color: var(--primary) !important;
  color: #fff !important;
  padding: 5px 18px !important;
  font-size: 14px !important;
}

.block-editor-tools .btn {
  padding: 5px 7px !important;
  font-size: 14px !important;
  background-color: #fff !important;
  border-radius: 5px;
  box-shadow: rgba(17, 17, 26, 0.15) 0px 1px 0px, rgba(17, 17, 26, 0.3) 0px 0px 8px;
}

.block-editor-tools  .btn-edit-block {
  border-color: #3400a3 !important;
  background-color: #3400a3 !important;
  color: #fff !important;
  font-weight: 400 !important;
}

.dropdown-menu {
  border-radius: 8px;
}

.block-editor-tools .dropdown-menu {
  border: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.block-editor-tools .dropdown-menu .btn{
  background-color: var(--primary) !important;
  color: #fff !important;
  box-shadow: none !important;
  padding: 5px 1rem !important;
}

.block-editor-tools .dropdown-menu .btn-delete{
  background-color: var(--danger) !important;
  color: #fff !important;
}

.right-sidebar {
  z-index: 10;
  width: 500px !important;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
  margin-right: -100%;
  transition: margin-right .3s cubic-bezier(.645,.045,.355,1);
}

.right-sidebar .close-button {
  cursor: pointer;
}

.right-sidebar.active {
  margin-right: 0%;

}

.sidebar__content {
  overflow-y: auto;
  height: calc(100vh - 51px);
}

#sidebarFrame {
  height: calc(100% - 8px);
}

.sidebar__header {
  background-color: #e4ebf3;
}

.sidebar__header .badge {
  background-color: #fff;
  color: inherit;
  font-size: 14px;
}

.dashboard-pages-list {
  font-size: 1rem;
  max-width: 950px;
}

.dashboard-pages-list a {
  color: inherit;
  text-decoration: none;
}

.dashboard-pages-list ul {
  list-style: none;
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
}

.dashboard-pages-list li a svg {
  margin-top: -3px;
}

.dashboard-pages-list ul > li:not(:last-child) {
  margin-right: 25px;
}

.dashboard-pages-list  .row {
  /*margin-top: 1rem;*/
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.dashboard-pages-list  .row:not(:last-child) {
  border-bottom: #e7e7e7 solid 1px;
}

.dashboard-heading {

}

.page-tools .btn-outline-light {
  border-color: #EAEAFF;
  color: #000;
  background-color: #fff;
}
.page-tools .btn-outline-light:hover {
  border-color: #EAEAFF;
  background-color: #EAEAFF;
}

.settings-card {
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 230px);
}

.settings-wrapper {
  width: 100%;
  /*max-width: 750px;*/
  font-size: 1rem;
}

.settings-wrapper ul {
  list-style: none;
}

.settings-wrapper ul > li {
  padding: .75rem;
  cursor: pointer;
}

.settings-wrapper ul > li:hover {
  border-bottom: 3px solid #5A189A;
  padding-bottom: calc(.75rem - 3px);
}

.settings-wrapper ul > li.active {
  border-bottom: 3px solid #5A189A;
  padding-bottom: calc(.75rem - 3px);
}

.og-preview, .seo-preview {
  border: #E4E4FF solid 1px;
  border-radius: 5px;
}

.og-preview .content-wrapper {
  padding: 12px;
}

.og-preview__image {
  height: 250px;
  width: 100%;
  background-size: cover;
}

.og-preview__title {
  font-family: Georgia, Tahoma, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.og-preview__description {
  font-size: 14px;
  font-family: arial, sans-serif;
  margin-top: 10px;
}

.og-preview__link {
  font-size: 14px;
  font-family: Arial, sans-serif;
  margin-top: 10px;
  color: #777777;
}

.seo-preview__title {
  color: #1a0dab;
  font-size: 20px;
  line-height: 28px;
  font-family: arial,sans-serif;
}

.seo-preview__link {
  color: #5f6368;
  font-size: 14px;
  letter-spacing: 0.25px;
  line-height: 1.3;
  font-family: arial,sans-serif;
  margin-bottom: 6px;
}

.seo-preview__description {
  font-family: arial,sans-serif;
  font-size: 14px;
  color: #4d5156;
  letter-spacing: 0.25px;
}

div.CodeMirror {
  border-radius: 5px;
}

div.builder-tools-container {
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.wizard-steps__item {
  padding: .5rem 1.5rem;
  cursor: pointer;
  font-weight: 400;
  background-color: var(--light);
  border-bottom: #DCBEFF solid 2px;
  border-radius: 8px;
}
.wizard-steps__item.active {
  background-color: #E4E4F6;
}

.note-editor.note-airframe .note-statusbar, .note-editor.note-frame .note-statusbar {
  border-top: 1px solid #E4E4FF !important;
}

.note-btn-group .note-btn {
  border-color: #E4E4FF !important;
  border-radius: 4px !important;
}

.note-toolbar {
  background: transparent !important;
}

.note-toolbar.card-header {
  border-bottom: 1px solid #E4E4FF !important;
}

.note-editor.note-airframe, .note-editor.note-frame {
  border: 1px solid #E4E4FF !important;
}

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

.btn-clean {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
}
.automarathon__webinars > *:not(:last-child) {
  margin-bottom: .5rem;
}

.automarathon__webinar-card {
  border: solid 1px #eee;
  border-radius: 8px;
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.divide-slate-50 > :not([hidden]) ~ :not([hidden]) {
  border-color: rgb(226 232 240);
}

.divide-solid > :not([hidden]) ~ :not([hidden]) {
  border-style: solid;
}

.border-x-0 {
  border-right: 0;
  border-left: 0;
}

.badge-danger {
  background-color: var(--danger);
}

.badge-secondary {
  background-color: var(--secondary);
}
/* -------------------*/


.vservice-player__wrapper {
  position: relative; 
  display: block; 
  height: 0; 
  padding: 0; 
  overflow: hidden; 
  margin-top: 1.4em; 
  margin-bottom: 1em; 
  padding-bottom: 56.25%; 
  width: 100%;
}

.vservice-player__player {
  width: 100%;
  height:100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

table.orders-list .query-params ul {
  list-style: none;
}

.segment-condition {
  position: relative;
  border-color: #E4E4FF;
  border-radius: 8px;
  padding: 5px;
  border-width: 1px;
  border-style: solid;
}

.segment-condition > .delete-condition {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #6c757d;
  border: 0;
  background-color: transparent;
}

.air-datepicker-nav--action {
  width: auto !important;
}

.dropdown-menu {
  z-index: 9999;
}

.air-datepicker-global-container {
  z-index: 9999;
}

@media screen and (max-width: 768px) {
    aside, .sidebar {
        margin-left: -150px;
    }

    .submenu, .empty-sidebar-el {
        left: -250px;
    }

    .content-wrapper {
        margin-left: 0;
    }

    .main-wrapper {
        margin-left: 15px;
        width: calc(100% - 15px);
    }

    #account-name {
        width: 100%;
    }

    .page-wrapper {
        min-height: calc(100vh - 220px);
        height: 100%;
    }

    div.card.sortable-page {
        width: 100% !important;
    }

    .sortable-page .lesson-title {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 150px;
    }

    .course-module .module-heading {
        width: 100%;
    }

    .assignment-wrapper {
        height: calc(100% - 164px);
    }

  .club-checkout__info > .content {
    width: 100%;
    max-height: none;
  }

  .club-checkout__data > .content {
    width: 100%;
  }

  .club-checkout__info {
    align-items: start;
    padding: .75rem 1rem;
  }

  .club-checkout__data {
    align-items: start;
    padding: .75rem 1rem;
  }

  .checkout-wrapper {
    overflow: auto;
  }

}
