@import url("https://fonts.googleapis.com/css2?family=Rajdhani&display=swap");

.primary-color {
    color: var(--text-blue2);
}

* {
    font-family: "Rajdhani", sans-serif;
}

:root {
    --border-blue1: #055e6e;
    --text-blue1: #4fa8e3;
    --text-blue2: #03cadf;
    --shadow-blue: #00ffea;
    --text-color-cyan: #1ce5df;
    --transparent: transparent;
}

.red-color {
    color: #d8808a;
    background: #2b1d2c;
    transition: 0.2s;
}
.red-color:hover,
.red-color:active,
.red-color:focus {
    color: #d8808a;
    text-shadow: 0 0 5px #d8808a;
    background: #2b1d2ca1;
}
.blue-color {
    color: var(--text-blue1);
    background: #0b2f53;
    transition: 0.2s;
}
.blue-color:hover,
.blue-color:active,
.blue-color:focus {
    color: var(--text-blue1);
    text-shadow: 0 0 5px var(--text-blue1);
    background: #2b1d2ca1;
}

.grey-color {
    color: var(--text-blue1);
    background: #2a3134;
    transition: 0.2s;
}
.grey-color:hover,
.grey-color:active,
.grey-color:focus {
    color: var(--text-blue1);
    text-shadow: 0 0 5px var(--text-blue1);
    background: #242525;
}

.purple-color {
    color: #da70ed;
    background: #1e1a3b;
    transition: 0.2s;
}
.purple-color:hover,
.purple-color:active,
.purple-color:focus {
    color: #da70ed;
    text-shadow: 0 0 5px #da70ed;
    background: #2b1d2ca1;
}

.rc_gradient_bg {
    background-color: #170e3b72;
}

* {
    margin: 0px;
    padding: 0px;
}

body {
    background-color: black;
    color: white;
    font-family: "helvetica" !important;
    /* font-family: 'Rajdhani', sans-serif !important; */
    /*background-image: url(/img/admin/bg_dashboard.jpg);*/
    background-image: url("/img/admin/steps-bg-particle.png");
    overflow-x: hidden;
    background-size: cover; /* Cover the entire background */
    background-attachment: fixed; /* Make the background fixed */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the background image */
}

body::-webkit-scrollbar-track {
    background-color: #1e1445;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #5136bc;
}

body::-webkit-scrollbar-thumb {
    background-color: #5136bc;
}
a {
    text-decoration: none;
    color: white;
}

main {
    padding-left: 0 !important;
}

.form-select,
.form-control {
    border: none;
    outline: none;
    background-color: #10214c;
    color: #60f7fd;
    transition: border-color 0.3s, box-shadow 0.3s;

    padding: 0.5rem !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    border-radius: 0px !important ;
}
h3.signup-h1.pt-1 {
    font-family: "Rajdhani";
}
.signup-input {
    background-color: #c92f2f2e;
    border: none;
    outline: none;
    color: #04fefe;
    width: 90%;
    /* height: 36px; */
    font-size: calc(10px + 0.5vw);
    padding: 5px 10px !important;
}

.signup-top-div {
    gap: 5px;
    overflow: hidden;
    position: relative;
    max-width: 100%;
    transition: 1.5s;
    transition-behavior: normal;
    transition-duration: 1.5s;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-property: all;
    font-size: 1.4rem;
}

input:-webkit-autofill {
    border: none !important;
    outline: none !important;
    background-color: #10214c !important;
    color: #60f7fd !important;
    transition: border-color 0.3s, box-shadow 0.3s !important;

    padding: 0.5rem !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    border-radius: 0px !important ;
}

/* Loader styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-image: linear-gradient(
        120deg,
        rgba(10, 15, 20, 0.9),
        rgba(10, 15, 20, 0.8)
    );
    z-index: 9999;
    text-transform: uppercase;
}

.cyber-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
}

.loader-text {
    font-size: 2rem;
    color: var(--shadow-blue);
    margin-bottom: 20px;
    font-family: "Rajdhani", sans-serif;
    letter-spacing: 5px;
    text-shadow: 0 0 15px var(--shadow-blue);
    animation: glow 1.5s infinite alternate;
}

/* Animation for text glow */
@keyframes glow {
    from {
        text-shadow: 0 0 10px var(--shadow-blue), 0 0 20px var(--shadow-blue),
            0 0 30px var(--shadow-blue);
    }
    to {
        text-shadow: 0 0 20px var(--shadow-blue), 0 0 40px var(--shadow-blue),
            0 0 60px var(--shadow-blue);
    }
}

/* Loader bars animation */
.loader-bars {
    display: flex;
    justify-content: space-between;
    width: 100px;
}

.bar {
    width: 15px;
    height: 40px;
    background: var(--shadow-blue);
    margin: 0 5px;
    animation: pulse 1s infinite ease-in-out;
    box-shadow: 0 0 15px var(--shadow-blue);
}

/* Animation for bar pulse effect */
@keyframes pulse {
    0% {
        height: 20px;
    }
    50% {
        height: 50px;
    }
    100% {
        height: 20px;
    }
}

/* Hide scrollbar during loading */
body.loading {
    overflow: hidden;
}

.form-control:focus {
    color: #60f7fd;
    background-color: #10214c;
    border-color: #60f7fd;
    box-shadow: 0 0 5px #60f7fd;
}

.form-select:focus {
    color: #60f7fd;
    background-color: #10214c;
    border-color: #60f7fd;
    box-shadow: 0 0 5px #60f7fd;
}

.form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2360f7fd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;

    padding-right: 30px !important;
}

.centralize_container {
    width: 90%;
    margin: 0 auto;
}
.logo {
    background: rgb(51 13 84 / 80%);
    min-height: 110px;
}

#sidebar-nav {
    width: 220px !important;
    background-color: var(--transparent);
    height: 100vh !important;
    padding-top: 30px;
}
#sidebar {
    background: rgb(19, 5, 31);
    background: linear-gradient(
        90deg,
        rgb(49, 14, 78, 0.3) 0%,
        rgba(49, 14, 78, 0.4) 50%,
        rgba(49, 14, 78, 0.5) 100%
    );
    /* linear-gradient(90deg, rgba(19, 5, 31, 0.5) 0%, rgba(22, 12, 47, 0.4) 50%, rgba(17, 3, 26, 0.5) 100%) */
    height: 100% !important;
    width: 260px;
    text-align: right;
    text-align: -webkit-right;
}

.top-header {
    min-height: 110px;
    color: white;
    display: flex;
}

.top-header ul {
    min-height: 110px;
}

.top-header ul.list-group .dropdown-toggle::after {
    display: none;
}

.top-header .d-header-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}

ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.top_menu_item {
    position: relative; /* Ensure the badge is positioned relative to the parent link */
}

.chat-notification-badge {
    position: absolute;
    top: -4px; /* Adjust based on the exact position you'd like */
    right: -3px; /* Adjust based on the exact position you'd like */
    background-color: #c53736;
    color: white;
    padding: 0px 5px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    min-height: 20px;
    text-align: center;
    line-height: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.top_menu_item {
    color: white;
    font-family: "Rajdhani";
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    line-height: normal;
}

.top_menu_item:hover {
    color: var(--text-color-cyan);
    border-bottom: 3px solid var(--text-color-cyan);
    transform: scale(1.15);
}
.top_menu_item_active {
    color: var(--text-color-cyan);
    text-shadow: 0 0 5px var(--text-color-cyan);
}

.fa-bars {
    color: white;
    transition: 0.3s;
}

.fa-bars:hover {
    color: var(--text-blue2);
    text-shadow: 0 0 5px var(--text-color-cyan);
    transition: 0.3s;
}

#sidebar .list-group-item {
    background: var(--transparent);
    color: white;
    margin-left: 4rem;
    padding: 0px;
    margin: 0.5rem 0rem;
    padding-left: 0.5rem;
    border: none;
    font-size: 14px;
}

#sidebar .list-group-label {
    background: var(--transparent);
    color: grey;
    padding: 0px;
    margin: 0.5rem;
    border: none;
    font-size: 14px;
    cursor: default;
    border-left: 5px solid var(--transparent);
}

#sidebar a.list-group-item.border-end-0.d-inline-block {
    transition: 0.3s;
    border-left: 5px solid var(--transparent);
}
#sidebar a.list-group-item.border-end-0.d-inline-block:hover {
    color: var(--text-blue2);
    text-shadow: 0 0 5px var(--text-color-cyan);
    border-left: 5px solid #2ccbdd;
}
#sidebar a.list-group-item.border-end-0.d-inline-block:active {
    border-left: 5px solid #2ccbdd;
}

#sidebar .active-menu {
    border-left: 5px solid #2ccbdd !important;
}

.translate-middle {
    transform: translate(-50%, -30%) !important;
}

.special_btn {
    background-color: #370d4c;
    color: white;
    cursor: pointer;
    text-align: left;
    cursor: pointer;
    padding: 3px 0px;
    margin-top: 5px;
    font-size: 14px;
    transition: 0.3s;
}

.special_dropdown {
    background-color: #03081e;
    color: white;
    border-bottom: 1px solid #191e3a;
    cursor: pointer;
    text-align: left;
    cursor: pointer;
    margin-top: 5px;
    font-size: 14px;
    transition: 0.3s;
    padding: 16px 15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: 200px;
}

.special_dropdown .dropdown-item a:hover,
.special_dropdown .dropdown-item:hover,
.special_dropdown .drodpown-title:hover,
.special_dropdown .notification-scroll:hover {
    background-color: #0e1726;
}

.special_dropdown svg {
    width: 30%;
}
.special_dropdown .drodpown-title,
.special_dropdown .notification-scroll {
    padding: 2px 2px;
}
.special_dropdown .user {
    border: solid 1px #68a3e3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #68a3e3;
    padding: 10px 0px;
    position: relative;
    font-size: medium;
    line-height: 17px;
}
.bg {
    background-image: linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    );
    background-size: 1rem 1rem;
}
.special_dropdown .user .ac_type {
    color: #ffffff;
}
.special_dropdown .menus {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 7px 0px;
}
.special_dropdown .menus a {
    text-transform: none;
    color: #68a3e3;
    line-height: 17px;
    margin: 0px;
}
.logout-btn {
    display: inline-flex;
    gap: 7px;
}
.logout-btn .logout {
    background-color: #68a3e3;
    color: #000000;
}
.special_btn:hover {
    background-color: #821dab;
    color: #2ccbdd;
}
.special_btn:active {
    background-color: #821dab;
    color: #2ccbdd;
}

.active-btn {
    background-color: #821dab;
    color: #2ccbdd;
}
.special_btn span {
    margin-left: 12px;
}
.breadcrumb-top {
    color: grey;
}

.page_heading {
    margin-left: 5px;
    margin-bottom: 0px;
}
.breadcrumb-main {
    margin-top: 25px;
}
.copyright {
    bottom: 0;
    padding: 10px; /* Adjust padding as needed */
    text-align: left; /* Adjust text alignment as needed */
    font-size: 14px; /* Adjust font size as needed */
    margin-top: 6%;
}

.menu_items_right {
    text-align: right !important;
}
.footer_menu:hover {
    color: var(--text-blue2);
    text-shadow: 0 0 5px var(--text-color-cyan);
    transition: 0.3s;
}

.special_btn_long_menu {
    background-color: #370d4c;
    color: white;
    cursor: pointer;
    text-align: left;
    cursor: pointer;
    padding: 3px 0px;
    margin-left: 20px;
    margin-top: 5px;
    margin-left: 0;
    font-size: 14px;
    transition: 0.3s;
}

.top_menu_item_long_menu:hover {
    color: rgb(3, 202, 223);
    border-bottom: 3px solid var(--text-color-cyan);
    transform: scale(1.15);
}

.top_menu_item_long_menu_active {
    transition: 0.2s;
    color: rgb(3, 202, 223);
    border-bottom: 3px solid var(--text-color-cyan) !important;
}

.rc-btn {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
    font-weight: bold;
    font-size: 18px;
}

.submit-button {
    background-image: url(/img/admin/button.png);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    width: 130px;
    height: 33px;
    color: var(--text-color-cyan);
}

.submit-button:hover {
    text-shadow: 0 0 5px var(--text-color-cyan);
    transition: 0.2s;
}

.enable-button {
    background-image: url(/img/admin/enable.png);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    width: 145px;
    height: 52px;
    color: #38bd48;
    padding-right: 35px !important;
}

.enable-button:hover {
    text-shadow: 0 0 5px var(--text-color-cyan);
    transition: 0.2s;
}

.disable-button {
    background-image: url(/img/admin/disable.png);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    width: 145px;
    height: 52px;
    color: #e21d1e;
    padding-left: 35px !important;
}

.disable-button:hover {
    text-shadow: 0 0 5px var(--text-color-cyan);
    transition: 0.2s;
}

.bg-purple {
    background-color: #5602c4;
}
.bg-light-blue {
    background-color: #0296c6;
}
.bg-teal {
    background-color: #04c188;
}
.bg-green {
    background-color: #92c30d;
}
.bg-brown {
    background-color: #c1920c;
}
.bg-orange {
    background-color: #bf6805;
}

.button-green {
    background-image: url(/img/admin/btn_green.png);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    width: 150px;
    height: 35px;
    color: #36ce34;
}

.button-green:hover {
    text-shadow: 0 0 5px #36ce34;
    transition: 0.2s;
}

.button-primary {
    background-image: url(/img/admin/button_primary.png);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    color: var(--text-color-cyan);
    min-height: 38px;
    min-width: 90px;
}

.button-primary:hover {
    text-shadow: 0 0 5px var(--text-color-cyan);
    transition: 0.2s;
}

.button-warning {
    background-image: url(/img/admin/button_warning.png);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    width: 88px;
    height: 32px;
    color: #c79908;
}

.button-warning:hover {
    text-shadow: 0 0 5px #c79908;
    transition: 0.2s;
}

.button-danger {
    background-image: url(/img/admin/button_danger.png);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    width: 130px;
    height: 32px;
    color: #ae5b65;
}

.button-danger:hover {
    text-shadow: 0 0 5px #ae5b65;
    transition: 0.2s;
}

.button-danger-reset {
    background-image: url(/img/admin/button_danger_reset.png);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    width: 204px;
    height: 43px;
    color: white;
    font-weight: bold;
}

.button-danger-reset:hover {
    text-shadow: 0 0 5px #ae5b65;
    transition: 0.2s;
}

/*Announcement page */

button.ck.ck-button.ck-off {
    color: #fefffc;
}

.ck.ck-toolbar.ck-toolbar_grouping {
    background: #1b1950e0 !important;
    opacity: 0.6;
}
.ck.ck-toolbar {
    background: var(--transparent) !important;
    border: none !important;
    padding: 0 !important;
}
.ck.ck-button:not(.ck-disabled):hover,
a.ck.ck-button:not(.ck-disabled):hover {
    background: var(--transparent) !important;
    color: var(--text-color-cyan);
    cursor: pointer;
}
.editor_accouncement {
    background: #241d6185;
    width: 100%;
    color: #918eae;
    padding: 5px 10px;
    text-align: left;
    margin-top: 1px;
    margin-bottom: 1px;
}
.rc_dash_heading {
    text-align: center;
    background: #241d6185;
    padding: 5px 60px 2px 60px;
    color: white;
    margin: 0 auto;
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 1px;
}

.rc_dash_heading_danger {
    background: #5f212e;
    padding: 5px 43px 2px 43px;
    color: white;
    border: 1px solid #ff6161;
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 1px;
}

.main-container {
    display: flex;
    justify-content: center; /* horizontally centers the content */
    align-items: center; /* vertically centers the content */
}
.textarea_announcement {
    background: #151136;
    border: 1px solid #251a57;
}

.ck.ck-editor__main > .ck-editor__editable:not(.ck-focused) {
    border-color: #251a57 !important;
    border-radius: 0px !important;
}

.ck.ck-editor__main > .ck-editor__editable {
    background: #151136 !important;
}

.ck.ck-content.ck-editor__editable {
    min-height: 200px;
}
.ck-voice-label {
    display: none !important;
}
/*Announcement page */

.cyber_range_bg {
    background: /*#122955bf*/ linear-gradient(
        120deg,
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5)
    );
    width: 100%;
    color: white;
    padding: 5px 10px;
    text-align: left;
    margin-top: 1px;
    border: 1px solid #154279;
}
.cyber_range_heading_bg {
    background: /*#122955bf*/ linear-gradient(
        120deg,
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5)
    );
    text-align: center;
    padding: 5px 60px 2px 60px;
    color: white;
    margin: 0 auto;
    border-radius: 10px 10px 0px 0px;
}
/* Special Data Table */

table {
    /*background: /*#122955bf linear-gradient(120deg, rgba(31, 24, 84, 0.5), rgba(31, 24, 84, 0.5)) !important;*/
    color: white !important;
}

div#rc_table_wrapper {
    background: /*#122955bf*/ linear-gradient(
        120deg,
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5)
    ) !important;
    border: 1px solid #154279;
    margin-bottom: 0px;
}
th {
    color: white !important ;
}
td {
    color: white !important;
}
#rc_table_wrapper td {
    color: white !important;
    align-content: center;
}

tr {
    border-top: 2px #154279 outset;
    border-bottom: 2px inset #154279;
    border-left: 0;
    border-right: 0;
    transition: 0.3s;
    margin-top: 1px;
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.2)
    );
}

#rc_table {
    border: 1px solid #154279;
    vertical-align: baseline;
    --bs-table-bg: var(--transparent) !important;
}

tbody tr:hover {
    background: #154279 !important;
}

div#rc_table_info {
    border: 1px solid #3a3a89;
    border-radius: 5px;
    padding: 5px 0px;
    text-align: center;
    margin: 10px;
    background: #282c7aad;
    display: inline-block;
    padding: 5px 10px;
}

div#rc_table_paginate {
    display: flex;
    justify-content: right;
    gap: 5px;
}
/* new working pagination css */

ul.pagination {
    border: 1px solid #3a3a89;
    border-radius: 5px;
    padding: 5px 8px;
    margin: 10px 40px;
    background: #282c7aad;
    display: inline-flex;
}

ul.pagination li.page-item {
    padding: 0px 1px;
    background: var(--transparent);
    border: none;
    color: white;
}
li.page-item:hover {
    color: black;
    background: var(--text-blue2);
}
li.page-item.active > .page-link,
li.page-item.active {
    color: var(--text-blue2);
    background: transparent;
}

li.page-item.previous {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%20200%20200%22%3E%3Cpath%20d%3D%22M100%2020%20L180%20160%20L20%20160%20Z%22%20fill%3D%22%23282c7aad%22%20stroke%3D%22%23aaaaaaaa%22%20stroke-width%3D%2210%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 20px;
    height: 20px;
    content-visibility: hidden;
    transform: rotate(-90deg);
    cursor: pointer;
    position: relative;
    left: -35px;
}
li.page-item.next {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%20200%20200%22%3E%3Cpath%20d%3D%22M100%2020%20L180%20160%20L20%20160%20Z%22%20fill%3D%22%23282c7aad%22%20stroke%3D%22%23aaaaaaaa%22%20stroke-width%3D%2210%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E") !important;
    transform: rotate(90deg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 20px;
    height: 20px;
    content-visibility: hidden;
    cursor: pointer;
    position: relative;
    right: -35px;
}
li.page-item.disabled {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%20200%20200%22%3E%3Cpath%20d%3D%22M100%2020%20L180%20160%20L20%20160%20Z%22%20fill%3D%22%23444444%22%20stroke%3D%22%23aaaaaaaa%22%20stroke-width%3D%2210%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E") !important;
}

li.page-item.next:hover {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%20200%20200%22%3E%3Cpath%20d%3D%22M100%2020%20L180%20160%20L20%20160%20Z%22%20fill%3D%22%2300e4ff%22%20stroke%3D%22%23aaaaaaaa%22%20stroke-width%3D%2210%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E") !important;
    color: var(--text-blue2);
}
li.page-item.previous:hover {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%20200%20200%22%3E%3Cpath%20d%3D%22M100%2020%20L180%20160%20L20%20160%20Z%22%20fill%3D%22%2300e4ff%22%20stroke%3D%22%23aaaaaaaa%22%20stroke-width%3D%2210%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E") !important;
    color: var(--text-blue2);
}
li.page-item.disabled:hover {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%20200%20200%22%3E%3Cpath%20d%3D%22M100%2020%20L180%20160%20L20%20160%20Z%22%20fill%3D%22%23444444%22%20stroke%3D%22%23aaaaaaaa%22%20stroke-width%3D%2210%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E") !important;
}

/* end new working pagination css */

.new-pagination {
    border: 1px solid #3a3a89;
    border-radius: 5px;
    padding: 5px 8px;
    margin: 10px;
    background: #282c7aad;
    display: inline-flex;
}
.paginate_button.previous svg {
    transform: rotate(-90deg);
}
.paginate_button.next svg {
    transform: rotate(90deg);
}

a.page-link {
    padding: 0px 1px;
    background: var(--transparent);
    border: none;
    color: white;
}

.page-item:first-child .page-link {
    padding: 0px 5px;
    background: var(--transparent);
    border: none;
    color: white;
}
.active > .page-link,
.page-link.active {
    color: var(--text-blue2);
}
.table-footer {
    position: relative;
    min-height: 100px;
}
.table-footer img {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}
.page-link:hover {
    color: black;
    background: var(--text-blue2);
}

input.form-control.form-control-sm {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 5px;
    outline: none;
    margin-left: 10px;
    background-color: #021e2ac2;
    color: white;
    border: 1px solid var(--text-blue2);
}

label {
    display: inline-flex !important;
    align-items: center;
    font-size: 12px;
}
.form-label {
    margin-left: 0.5rem;
}

div#rc_table_filter {
    text-align: right;
    /* margin: 5px 10px 5px 5px; */
    padding: 10px 10px;
}
select.form-select.form-select-sm {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 5px;
    outline: none;
    margin-left: 10px;
    margin-right: 10px;
    background-color: #021e2ac2;
    color: white;
    border: 1px solid var(--text-blue2);
}
div#rc_table_length {
    margin: 15px 5px 10px 10px;
}

/* Special Data Table */

/* Root Capture Tabs */

ul#pills-tab {
    background: #150f33;
    padding: 2px 0px;
    border: 1px solid #2a1c60;
    margin-bottom: 4px;
}

.nav-pills .nav-link {
    border-bottom: solid var(--transparent) 3px;
    background: var(--transparent) !important;
    color: white;
    padding: 0px 20px;
    border-radius: 0px;
    font-size: 18px;
    transition: 0.3s;
    margin-bottom: -9px;
}
li.nav-item {
    padding: 3px;
}
button#pills-home-tab {
    padding-bottom: 4px;
}

.nav-link:hover {
    text-shadow: 0 0 5px var(--text-color-cyan);
    transition: 0.3s;
    color: white !important;
}

.nav-link.active,
.nav-pills .show > .nav-link {
    cursor: pointer;
    transition: 0.4s;

    color: var(--text-blue2) !important ;
    border-bottom: solid #6541d5 3px !important;
}
.tab-content > .active {
    width: 100%;
}

div#pills-tabContent {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.tab_footer {
    background-color: #150f33;
    max-height: 55px;
    min-height: 50px;
}

/* Root Capture Tabs */

/*Ticket Page */

.ticket_list a.list-group-item.list-group-item-action {
    background: var(--transparent);
    color: white;
    border: 0px;
    border-bottom: 1px solid #3a2985;
}

.ticket_list h6 {
    color: #ffcb05;
}
.ticket_list h6:hover {
    color: #f37021;
}

.list_background {
    background: #151136 !important;
}
.list_background:hover {
    background: #251a57 !important;
}

.ticket_list {
    margin-left: -35px;
    border: 1px solid #251a57 !important;
    border-radius: 0px 0px 0px 0px !important;
    height: 330px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: thin; /* Width of the scrollbar */
    scrollbar-color: #5138ba #1d1649; /* Color scheme for the scrollbar */
}

.container::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
    height: 80%; /* Set the height to 80% of the container's height */
}

.row.list_background {
    padding: 10px 20px 10px 20px;
}

/*Ticket Page */

/* RC Cards*/
.rc_card_heading {
    text-align: center;
    background: #150f33;
    padding: 2px 0px;
    border: 1px solid #2a1c60;
    margin-bottom: 4px;
    color: white;
}

.rc_card_body {
    text-align: center;
    background-color: #170e3b72;
}

.heading_danger {
    color: #db3046 !important;
    font-weight: bold;
    font-size: 22px;
}
.card_body_text {
    color: white;
}

.btn_factory_reset {
    background-image: url(/img/admin/btn_factory_reset.png);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    width: 250px;
    height: 46px;
    color: var(--text-color-cyan);
    font-size: 15px;
    font-weight: 100;
}

.add_tenant {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
}

.btn_factory_reset:hover {
    text-shadow: 0 0 5px var(--text-color-cyan);
    transition: 0.2s;
}

.btn_user_reset {
    background-image: url(/img/admin/btn_user_reset.png);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    width: 250px;
    height: 46px;
    color: white;
    font-size: 15px;
    font-weight: 100;
}

.btn_user_reset:hover {
    text-shadow: 0 0 5px var(--text-color-cyan);
    transition: 0.2s;
}

/* RC Cards*/

/* NEW CHANGES */

/* COURSES PAGE STARTS */

.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

/*form styles*/
#msform {
    /* text-align: center; xxx */
    position: relative;
    margin-top: 30px;
}

#msform fieldset,
.courses fieldset {
    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#msform input,
#msform textarea,
.courses.centralize_container input,
.courses.centralize_container textarea {
    padding: 15px;
    border-radius: 0px;
    width: 100%;
    box-sizing: border-box;
}

#msform input[type="button"]:hover,
.courses.centralize_container input[type="button"] {
    /* text-shadow: 0 0 5px var(--text-color-cyan); */
    transition: 0.2s;
}
#msform input[type="button"],
.courses.centralize_container input[type="button"] {
    font-weight: bold !important;
}

#msform input:focus,
#msform textarea:focus,
.courses.centralize_container input:focus,
.courses.centralize_container textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    /* border: 1px solid #ee0979; */
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button,
.courses.centralize_container .action-button {
    background-image: url(/img/course-btn-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    width: 185px;
    height: 46px;
    color: var(--text-color-cyan);
    font-size: 15px;
    font-weight: bold !important;
    padding: 0px;
    margin: 10px 5px;
    padding-top: 2px;
}
.action-button:hover,
.action-button-previous:hover {
    color: #ffffff !important;
    text-shadow: 0 0 5px #ffffff !important;
    transition: 0.2s;
}

.btn-student {
    background-image: url(/img/admin/btn_factory_reset.png);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    width: 250px;
    height: 46px;
    color: var(--text-color-cyan);
    font-size: 15px;
    font-weight: bold !important;
    padding: 0px;
    margin: 10px 5px;
    margin-bottom: 0px;
}

.btn-grey-student {
    background-image: url(/img/admin/btn_factory_reset.png);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    width: 250px;
    height: 46px;
    filter: grayscale(1.2);
    color: var(--text-color-cyan);
    font-size: 15px;
    font-weight: bold !important;
    padding: 0px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 10px !important;
}

#msform .action-button-previous,
.courses.centralize_container .action-button-previous {
    background-image: url(/img/course-btn-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    width: 185px;
    height: 46px;
    color: var(--text-color-cyan);
    font-size: 15px;
    font-weight: 100;
    padding: 0px;
    margin: 10px 5px;
    padding-top: 2px;
}

/* #msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
} */

/*headings*/
.fs-title {
    font-size: 14px;
    text-align: left;
    color: var(--text-color-cyan);
    margin-bottom: 16px;
    letter-spacing: 2px;
    font-weight: 500;
}

.fs-subtitle {
    font-weight: normal;
    text-align: left;
    font-size: 16px;
    color: white;
    margin-bottom: 12px;
    margin-top: 18px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 18px;
    width: 20%;
    font-family: "Rajdhani";
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    /* content: counter(step); */
    content: " \25CF";
    font-size: 200px;
    /* counter-increment: step; */
    width: 20px;
    height: 20px;
    line-height: 20px;
    display: block;
    font-size: 22px;
    color: #939090;
    background: rgba(147, 144, 144, 0.3);
    border-radius: 25px;
    margin: 0 auto 10px auto;
    margin-top: 0px;
}

/*progressbar connectors*/
#progressbar li:after {
    content: "";
    width: 100%;
    height: 4px;
    background: rgba(147, 144, 144, 0.5);
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
    background: rgba(15, 248, 250, 0.5);
    color: var(--text-color-cyan);
}

/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}
.dme_link a {
    background: #fff;
    font-weight: bold;
    color: #ee0979;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 12px;
}

.dme_link a:hover,
.dme_link a:focus {
    background: #c5c5f1;
    text-decoration: none;
}

span.note-icon-caret:before {
    display: none !important;
}

.basicInfo .note-editable {
    background-color: #161137;
    color: var(--text-color-cyan);
    border: 1px solid #353572;
}

.basicInfo .note-editor.note-frame.panel.panel-default {
    background-color: var(--transparent);
}

.basicInfo .panel-heading.note-toolbar {
    padding: 10px 0px !important;
}

.basicInfo .panel-heading.note-toolbar,
.basicInfo .panel-heading.note-toolbar button {
    background: rgb(48 48 129 / 50%) !important;
    color: rgb(255 255 255);
    border: 1px;
}

/* COURSES PAGE END */

/* STATISTIC Cards STARTS */

.color-cyan {
    color: var(--text-color-cyan);
    margin-right: 12px;
}

.color-cyan-2 {
    color: var(--text-color-cyan);
}

.st_card_heading {
    background: #054f75;
    padding: 2px 0px;
    border: 1px solid #054f75;
    /* background: #150f33;
    padding: 2px 0px;
    border: 1px solid #2a1c60; */
    margin-bottom: 4px;
    color: white;
}

.st_card_body {
    background-color: #170e3b0e;
    /* background-color: transparent; */
    height: 460px;
    overflow: hidden;
    overflow-y: auto;
}

.pie-card-title {
    background-color: #1adbda;
    font-weight: bold;
}

.st_card_body::-webkit-scrollbar-track {
    background-color: #1e1445;
}

.st_card_body::-webkit-scrollbar {
    width: 10px;
    background-color: #5136bc;
}

.st_card_body::-webkit-scrollbar-thumb {
    background-color: #5136bc;
}

/* Custom CSS for the Morris.js Donut Chart */
#donut-chart-yellow,
#donut-chart-red,
#donut-chart-green {
    position: relative;
}

#donut-chart-yellow text,
#donut-chart-red text,
#donut-chart-green text {
    font-size: 12px !important; /* Customize the font size of the labels */
    fill: white; /* Customize the font color of the labels */
    font-weight: 100 !important;
    font-family: "Rajdhani" !important;
}

/* Remove the stroke (border) of the donut chart segments */
#donut-chart-yellow svg path,
#donut-chart-red svg path,
#donut-chart-green svg path {
    stroke: none !important;
    stroke-width: 15px !important; /* Set the width of the donut bars */
}

/* Custom background effect for the donut chart */
#donut-chart-yellow:before,
#donut-chart-red:before,
#donut-chart-green:before {
    content: "";
    padding: 70px;
    display: block;
    position: absolute;
    border-radius: 20rem;
    top: 54px;
    left: 80px;
    display: none;
}

/* Specific background color for the yellow chart */
#donut-chart-yellow:before {
    background: rgba(198, 179, 58, 0.2);
}

/* Specific background color for the red chart */
#donut-chart-red:before {
    background: rgba(255, 0, 0, 0.2);
}

/* Specific background color for the green chart */
#donut-chart-green:before {
    background: rgba(0, 128, 0, 0.2);
}

/* Styles for the legend */
.st_card_body.custom-legend {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-right: 9px;
}

.legend-color {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.morris-hover.morris-default-style {
    font-size: 14px; /* Customize the font size of the hover text */
    color: white; /* Customize the font color of the hover text */
    background-color: #f9f9f9; /* Customize the background color of the hover text */
    border: 1px solid #ccc; /* Customize the border color of the hover text */
}

svg {
    width: 100%;
}

/* STATISTIC Cards ENDS */
/* COURSES STARTS */

.courses {
    height: 1500px;
}

.courses #sidebar {
    height: 1500px !important;
}

.multiField {
    background-image: -webkit-linear-gradient(
        to right,
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.2)
    ) !important;
    background-image: -moz-linear-gradient(
        to right,
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.2)
    ) !important;
    background-image: -o-linear-gradient(
        to right,
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.2)
    ) !important;
    background-image: linear-gradient(
        to right,
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.5)
    ) !important;
    color: var(--text-color-cyan) !important;
    border: 1px solid #353572 !important;
    background-color: var(--transparent) !important;
    background-repeat: no-repeat;
    background-size: cover;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

option {
    background: rgb(31 24 84) !important;
}

.multiField:focus,
select.multiField:focus {
    border: 1px solid #343433 !important;
}

select.multiField:focus {
    box-shadow: unset;
}

.selectContainer i {
    position: absolute;
    right: 30px;
    top: 75%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-color-cyan);
    font-size: 12px;
}

select.multiField {
    font-size: 14px;
    height: 42px;
}

/* curriculum STARTS */
.fs-card {
    padding-left: 20px !important;
    padding-right: 45px !important;
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.2)
    );
    border: 1px ridge var(--border-blue1);
    border-radius: 0;
}

.fs-card .fs-subtitle {
    margin: 0px;
    padding: 0px;
}

.courses #progressbar li {
    width: 13%;
    text-align: center;
}

.courses .multiForm:before {
    content: "";
    opacity: 0.2;
    background: #18b2ef;
    height: 1200px;
    width: 1px;
    position: absolute;
    left: 0px;
    top: 18px;
}
.courses .multiForm:after {
    content: "";
    opacity: 0.2;
    background: #18b2ef;
    height: 1200px;
    width: 1px;
    position: absolute;
    right: 0px;
    top: 18px;
}

::placeholder,
::-ms-input-placeholder {
    color: red !important;
    opacity: 1; /* Firefox */
}

.courses h2.fs-title:before {
    display: block;
    content: "";
    background: var(--text-color-cyan);
    width: 12px;
    height: 12px;
    margin-right: 10px;
}

.multiForm {
    position: relative;
}

.fs-title {
    align-items: center;
    display: flex;
    top: -80px;
    position: absolute;
}

.cirr-btn {
    background-color: var(--transparent);
    background-position: center;
    color: var(--text-color-cyan);
    border: 1px solid #0e7679;
    transition: 0.5s;
    font-size: 16px;
    font-weight: 500;
    padding: 9px 24px;
}

.cirr-btn:hover {
    border: 1px solid var(--text-color-cyan);
    background-color: var(--text-color-cyan);
    /* width: 160px; */
    height: -webkit-fill-available;
    color: black;
    transition: 0.5s;
}

.introduction div:nth-child(2) {
    place-self: center;
}
.curriculum div:nth-child(1),
.introduction div:nth-child(1) {
    place-self: center;
    font-size: 16px;
}

.cursor-pointer {
    cursor: pointer;
}

.target-row .card {
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.2)
    );
    border: 1px ridge var(--border-blue1);
    border-radius: 0;
    color: white;
}

.target-row .card-body {
    font-size: 16px;
    padding: 10px 20px;
}

.lecture-outer-card .card {
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.2)
    );
    border: 1px ridge var(--border-blue1);
    border-radius: 0;
    color: white;
}

.lecture-outer-card .card-body {
    font-size: 16px;
    padding: 10px 20px;
}

.quiz-btns {
    background: #125f71;
    border: 1px solid #125f71;
    padding: 8px 15px;
    color: var(--text-color-cyan);
    border-radius: 0px;
}

.quiz-btns:hover {
    background: var(--text-color-cyan) !important;
    color: black !important;
    box-shadow: 0px 0px 8px 1px var(--shadow-blue) !important;
}

.quiz-btns:active,
.btn-check:checked + .quiz-btns {
    border: 1px solid var(--text-color-cyan);
    background-color: var(--text-color-cyan);
    padding: 8px 15px;
    color: black;
}

.modal .save {
    background-image: url(/img/admin/enable.png);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    width: 145px;
    height: 52px;
    color: #38bd48;
    padding-right: 35px !important;
}
.modal .exit {
    background-image: url(/img/admin/disable.png);
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    width: 145px;
    height: 52px;
    color: #c62020;
}
.modal .exit:hover {
    color: #ff9797;
    text-shadow: 0px 0px 8px #ffd8d8;
}
.modal .save:hover {
    color: #93ffa0;
    text-shadow: 0px 0px 8px #d4ffd9;
}
.cirBtn {
    color: white !important;
}

.lectureModal .tab-pane.active,
.quizModal .tab-pane.active {
    opacity: inherit;
}

.lectureModal .lecVidBtn {
    background: #125f71;
    border: 1px solid #125f71;
    padding: 8px 15px;
    color: var(--text-color-cyan);
    border-radius: 0px;
}

.lectureModal .lecVidBtn:hover,
label.btn.lecVidBtn:hover {
    background: var(--text-color-cyan) !important;
    color: black !important;
}

.quiz-btns:active,
.lectureModal .btn-check:checked + .lecVidBtn {
    border: 1px solid var(--text-color-cyan);
    background-color: var(--text-color-cyan);
    padding: 8px 15px;
    color: black;
    box-shadow: 0px 0px 8px 1px var(--shadow-blue);
}

.courses .modal-content .custom-inner-style {
    background-image: -webkit-linear-gradient(
        to right,
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5)
    ) !important;
    background-image: -moz-linear-gradient(
        to right,
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5)
    ) !important;
    background-image: -o-linear-gradient(
        to right,
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5)
    ) !important;
    background-image: linear-gradient(
        to right,
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5)
    ) !important;
    color: var(--text-color-cyan) !important;
    border: 1px solid #353572 !important;
    background-color: var(--transparent) !important;
    background-repeat: no-repeat;
    background-size: cover;
}

.courses .modal-content .note-toolbar,
.courses button.note-btn.btn.btn-default.btn-sm {
    color: white;
    background: #150f33;
}
.courses .modal-content .close {
    margin-left: auto;
    width: 38px;
    color: #dee2e6;
    background: var(--transparent);
    border: 0px;
}

.courses .modal-content ul#pills-tab {
    background: var(--transparent) !important;
    padding: 0px 0px !important;
    border: 0px !important;
    margin-bottom: 4px;
}

.courses .modal-content button#pills-setting-tab.active,
.courses .modal-content button#pills-basic-quiz-tab.active,
.courses .modal-content button#pills-video-tab.active,
.courses .modal-content button#pills-attachment-tab.active,
.courses .modal-content button#pills-question-tab.active,
.courses .modal-content button#pills-basic-tab.active {
    border: 1px solid var(--text-color-cyan) !important;
    background-color: var(--text-color-cyan) !important;
    padding: 8px 15px;
    color: black !important;
}

.courses .modal-content button#pills-setting-tab,
.courses .modal-content button#pills-basic-quiz-tab,
.courses .modal-content button#pills-video-tab,
.courses .modal-content button#pills-attachment-tab,
.courses .modal-content button#pills-question-tab,
.courses .modal-content button#pills-basic-tab {
    background: #125f71 !important;
    border: 1px solid #125f71 !important;
    padding: 8px 15px;
    margin: 0px 15px;
    color: var(--text-color-cyan);
}

.courses .modal-content button#pills-setting-tab:hover,
.courses .modal-content button#pills-basic-quiz-tab:hover,
.courses .modal-content button#pills-video-tab:hover,
.courses .modal-content button#pills-attachment-tab:hover,
.courses .modal-content button#pills-question-tab:hover,
.courses .modal-content button#pills-basic-tab:hover {
    background: var(--text-color-cyan) !important;
    color: black !important;
}

/* MEDIA TAB CSS */
label.btn.MediaBtn,
.courses.centralize_container .btn-nav-media,
.coursesWizard .btn-nav-media {
    background: #125f71;
    border: 1px solid #125f71 !important;
    padding: 10px 25px;
    color: var(--text-color-cyan);
    border-radius: 0px;
    margin: 0px 15px;
}
input[name="media-outlined"]:checked + label.MediaBtn,
label.MediaBtn:hover,
.courses.centralize_container .btn-nav-media.active,
.courses.centralize_container .btn-nav-media:hover,
.coursesWizard .btn-nav-media:hover,
.coursesWizard .btn-nav-media.active {
    background: var(--text-color-cyan) !important;
    border: 1px solid var(--text-color-cyan) !important;
    padding: 10px 25px;
    color: black !important;
    border-radius: 0px;
    margin: 0px 15px;
}
.courses.centralize_container li.nav-item.MediaBtn,
.courses.centralize_container li.nav-item.MediaBtn:active,
.coursesWizard li.nav-item.MediaBtn:active,
.coursesWizard li.nav-item.MediaBtn {
    border: 0px !important;
    border-color: transparent !important;
    outline: none;
}
.courses.centralize_container .mediaUpload-border {
    border: 1px solid #09404e;
    padding: 15px 0px;
    background: rgba(31, 24, 84, 0.5);
    text-align: center;
}

.hidden-file-input {
    display: none; /* Hide the input */
}

.custom-file-upload-button {
    background-image: -webkit-linear-gradient(
        to right,
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5)
    ) !important;
    background-image: -moz-linear-gradient(
        to right,
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5)
    ) !important;
    background-image: -o-linear-gradient(
        to right,
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5)
    ) !important;
    background-image: linear-gradient(
        to right,
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5)
    ) !important;
    color: var(--text-color-cyan) !important;
    border: 1px solid #353572 !important;
    background-color: var(--transparent) !important;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #125f71 !important;
    padding: 10px 25px;
    font-size: 18px;
}

.custom-file-upload-button:hover {
    background-color: #0056b3;
}

/* PUBLISH TAB CSS */
.publish-div {
    text-align: center;
    border: 1px solid #09404e;
    background-image: -webkit-linear-gradient(
        to right,
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5)
    ) !important;
    background-image: -moz-linear-gradient(
        to right,
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5)
    ) !important;
    background-image: -o-linear-gradient(
        to right,
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5)
    ) !important;
    background-image: linear-gradient(
        to right,
        rgba(31, 24, 84, 0.3),
        rgba(31, 24, 84, 0.3),
        rgba(31, 24, 84, 0.3)
    ) !important;
    color: var(--text-color-cyan) !important;
    border: 1px solid #353572 !important;
    background-color: var(--transparent) !important;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 200px !important;
}

.publish-div p {
    text-align: center;
    line-height: 1.5;
}

.submit-icon {
    font-size: 90px;
    margin-bottom: 35px;
    color: #5b596e;
}

/* webkit palceholder */
/* Webkit browsers (Chrome, Safari, Opera) */
::-webkit-input-placeholder {
    color: grey !important;
    font-style: italic;
    font-size: 14px;
    opacity: 1;
}

/* Firefox */
::-moz-placeholder {
    color: grey !important;
    font-style: italic;
    font-size: 14px;
    opacity: 1;
}

/* Internet Explorer 10+ */
:-ms-input-placeholder {
    color: grey !important;
    font-style: italic;
    font-size: 14px;
    opacity: 1;
}

/* Edge */
::-ms-input-placeholder {
    color: grey !important;
    font-style: italic;
    font-size: 14px;
    opacity: 1;
}

/* chorme autofill testing  */
/* Base styles for input fields */
/* Autofill styles */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px rgba(31, 24, 84, 0.5) inset !important;
    -webkit-text-fill-color: var(--text-color-cyan) !important;
    background-image: -webkit-linear-gradient(
        to right,
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5)
    ) !important;
    background-color: var(--transparent) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* Autofill focus styles */
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #fafafa inset !important;
    -webkit-text-fill-color: var(--text-color-cyan) !important;
    background-image: -webkit-linear-gradient(
        to right,
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5),
        rgba(31, 24, 84, 0.5)
    ) !important;
    background-color: var(--transparent) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* Focus styles */
input:focus {
    border-color: #666 !important;
    background-color: #c92f2f2e !important;
}

/* curriculum ENDS */

.fa-caret-down {
    margin-right: 10px;
}

.dark-small-text {
    text-align: left;
    opacity: 0.3;
    font-size: 0.75rem;
    padding-left: 1rem !important;
}

.introduction .dark-small-text,
.lecture-outer-card .dark-small-text {
    opacity: 1;
}

.dark-small-text.fa-trash {
    color: #dc3545;
}

.dark-small-text.fa-pen-to-square {
    color: white;
}

.note-statusbar {
    display: none;
}

.modal-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.5)
    );
    border: 1px ridge var(--border-blue1);
    border-radius: 0;
}

.modal {
    background: #000000f0;
}

h4#lectureModalLabel {
    font-size: 16px;
    font-weight: 100 !important;
}

.modal-header {
    border-color: var(--border-blue1);
}
.modal-footer {
    border-color: var(--border-blue1);
}
.note-editable {
    background: #161137;
    border: 1px solid #353572;
}

/* DASHBOARD - COURSE INNER PAGE */
.crs-title {
    font-size: 26px;
    text-align: left;
    color: var(--text-color-cyan);
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: 0px !important;
}

.color_default {
    color: var(--text-color-cyan);
}

.c_small_text {
    font-size: smaller;
}

.c-image {
    background-image: url(/img/admin/istockphoto-1386162662-612x612.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid var(--text-color-cyan);
    overflow: hidden;
    height: 123px;
}
.c-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
}
.c-image:before {
    content: "";
    position: absolute;
    background-image: url(/img/admin/Untitled-1.png);
    padding: 142px;
    background-position: center;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
    top: -75px;
    left: -10px;
}

.course_header {
    align-items: center;
    padding: 15px 0px;
}

.course_content {
    font-family: "Rajdhani", sans-serif !important;
    border: 1px solid var(--text-color-cyan);
    background: rgba(31, 24, 84, 0.5);
}

.course_content p {
    font-size: 18px;
    line-height: 1;
}

.course-nav-btn {
    color: white;
    border: 0px solid var(--transparent);
    font-family: "Rajdhani", sans-serif !important;
}

.course-input-btn:checked + .course-nav-btn {
    color: var(--text-color-cyan);
    border: 0px solid var(--transparent);
}
.course-input-btn:hover + .course-nav-btn {
    color: var(--text-color-cyan);
}

.course-outer-card .accordion-item,
.accordion-button {
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.2)
    );
    color: var(--text-color-cyan) !important;
}
.course-outer-card .accordion-item {
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.2)
    );
    border: 1px solid var(--border-blue1);
    border-radius: 0;
    color: var(--text-color-cyan) !important;
    font-family: "Rajdhani", sans-serif !important;
}

.course-outer-card .accordion-collapse {
    font-size: 16px;
    color: white;
    text-align: left;
}

.course-outer-card .accordion-button:not(.collapsed)::after,
.course-outer-card .accordion-button::after {
    filter: invert(1);
}

.courseDetailSection {
    background: #150f33;
    padding: 20px;
}

.course-outer-card .accordion-button:focus,
.course-outer-card .accordion-button:not(.collapsed) {
    box-shadow: none !important;
    border: 0px solid var(--transparent) !important;
}

.courseContainer:before {
    content: "";
    padding: 340px 1px;
    position: absolute;
    background: #1a2435;
    z-index: -1;
}

.courseContainer:after {
    content: "";
    padding: 340px 1px;
    position: absolute;
    right: 11px;
    top: 39px;
    background: #1a2435;
    z-index: -1;
}

.course-outer-card .card:nth-child(1) {
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(31, 24, 84, 0.4),
        rgba(31, 24, 84, 0.4)
    );
    border: 1px solid var(--border-blue1);
    border-radius: 0;
    color: var(--text-color-cyan) !important;
}
.course-outer-card .card {
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.2)
    );
    border: 1px solid var(--border-blue1);
    border-radius: 0;
    color: var(--text-color-cyan) !important;
}

.course-outer-card .card-body {
    font-size: 16px;
    color: white;
    text-align: left;
}

.content-content {
    font-family: "Rajdhani", sans-serif !important;
    margin-left: 0px;
    margin-right: 0px;
}

#courseDetailSection span {
    font-weight: bold;
    font-size: 18px;
}
#courseDetailSection .card-body.text-start.row {
    padding: 7px;
}

#courseDetailSection .text-secondary {
    color: #a7a7a7 !important ;
}

#courseDetailSection i {
    margin-right: 8px;
}

.super-big {
    font-size: 3rem;
    padding-bottom: 10px;
}

.cyan_card_general {
    height: 185px;
    align-content: center;
    overflow: hidden;
    border: 1px solid var(--border-blue1);
    text-align: center;
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(28, 229, 223, 0.2),
        rgba(28, 229, 223, 0.2)
    );
    color: var(--text-color-cyan);
    font-family: "Rajdhani";
}
.cyan_card_general div {
    line-height: 1;
    padding: 2px 0px;
}

.dataTables_filter .dropdown-toggle::after,
.odd .dropdown-toggle::after {
    display: none;
}

.dropdown-menu.dropdown-menu-right.shadow.bg-transparent.animated--fade-in.show {
    background-color: rgb(17 20 61) !important;
}

.dropdown-menu.dropdown-menu-right.shadow.bg-transparent.animated--fade-in.show
    a:hover {
    background: #154279;
}
.dropdown-menu.dropdown-menu-right.shadow.bg-transparent.animated--fade-in.show
    a {
    color: white;
}

a#dropdownMenuLink {
    padding: 10px;
    background: #071a2d;
    border: 1px solid var(--text-blue2);
}

#quizform button.btn-default,
.lectureModal button.btn-default {
    color: white;
}

#quizform .note-editable,
.lectureModal .note-editable {
    background: #10214c;
    color: #60f7fd;
}

.custom-checkbox input[type="checkbox"] {
    display: none; /* Hide the actual checkbox */
}

.custom-checkbox label {
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.custom-checkbox input[type="checkbox"]:checked + label {
    color: var(--text-blue1);
    text-shadow: 0 0 5px var(--text-blue1);
    background: #2b1d2ca1;
    border-color: var(--bs-btn-active-border-color);
}

.quizModal div#pills-tabContent {
    background-color: var(--transparent);
}

.nav-item.active .nav-link {
    cursor: pointer;
    transition: 0.4s;
    color: var(--text-blue2) !important;
    border-bottom: solid #6541d5 3px !important;
}

.modal button.close {
    background: var(--transparent);
    color: white;
    border: 0px solid;
    font-size: 22px;
}

/* STUDENTS */
.upper-course-img {
    height: auto;
}

.embed-responsive-item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid var(--text-color-cyan);
    height: 100%;
}
/* .embed-responsive-item:before {
    content: "";
    position: absolute;
    background-image: url(/img/admin/Untitled-1.png);
    padding: 149px;
    background-position: center;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
    top: -75px;
    left: -10px;
} */

.container-fluid {
    padding-right: 0px;
}

/* LABS PAGE */

.labs_bg-animation {
    position: relative;
    width: 100%;
}
.labs_bg-animation video {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.card-stat {
    text-align: center;
    font-family: "Rajdhani";
    margin: 0;
    border: none;
    border-radius: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    margin-right: 1px;
}

.card-stat:hover {
    transform: scale(1.05);
    cursor: pointer;
    transition: 0.3s;
    z-index: 1;
}

.card-stat p {
    font-weight: bold;
    margin-bottom: 0px;
}
.card-stat h6 {
    background: #00000075;
    padding: 10px;
}
.card-stat .card-title {
    margin-bottom: 0px;
}

.card-stat .card-body {
    padding: 0px;
}
.bg-purple {
    background-color: #5602c4;
}
.bg-light-blue {
    background-color: #0296c6;
}
.bg-teal {
    background-color: #04c188;
}
.bg-green {
    background-color: #92c30d;
}
.bg-brown {
    background-color: #c1920c;
}
.bg-orange {
    background-color: #bf6805;
}

.labs_top_stats {
    height: 100vh;
}

/* LABS PAGE */

table .dropdown-toggle::after {
    display: none;
}

.progress {
    padding: 0;
}

.progress-bar {
    color: #1ce5d5 !important;
    background-color: #133d5d !important;
    border: 1px solid var(--border-blue1);
}

.course_detail_content_menu .progress {
    background: #555;
}

.jqte_editor {
    border: none;
    outline: none;
    background-color: #10214c;
    color: #60f7fd;
    transition: border-color 0.3s, box-shadow 0.3s;
    padding: 0.5rem !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    border-radius: 0px !important;
}

.jqte_toolbar.unselectable {
    background-color: var(--text-color-cyan);
    transition: border-color 0.3s, box-shadow 0.3s;
    border-bottom: 1px solid;
}

.jqte_toolbar .unselectable,
.jqte_toolbar div.unselectable a {
    border: none;
}

.jqte_tool.jqte_tool_1 .jqte_tool_label {
    height: 25px;
}

.top-header ul li a {
    text-transform: uppercase;
}

.radio-answer .del-btn {
    background: #711228;
    border: 1px solid #711212;
    color: white;
    padding: 8px 15px;
    border-radius: 0px;
}

.radio-answer .del-btn:hover {
    background: #893e4f !important;
    color: #fbfbfb !important;
    border: 1px solid #893e4f;
}

.course_detail_content_menu,
.course_detail_content_column {
    /* background-color: var(--transparent);
    background-image: linear-gradient(120deg, rgba(177, 0, 255, 0.3), rgba(140, 0, 255, 0.2)); */
    padding: 25px;
}

.course_detail_content_column .quiz-btns:hover {
    box-shadow: 0px 0px 8px 1px var(--shadow-blue) !important;
}

.edit-btn {
    padding: 0px 5px;
}

/* LABS - LISTING */
.LabStudent .col-sm-12 .dataTables_wrapper row:nth-child(1),
.LabStudent .col-sm-12 .dataTables_wrapper row:nth-child(3) {
    display: none !important;
}
.LabStudent .modal-content {
    background-color: #0f0c2a;
    color: #ffffff;
}

.LabStudent .nav-pills .nav-link {
    color: #ffffff;
    background-color: #343a40;
    border-radius: 0.25rem;
}

.LabStudent .nav-pills .nav-link.active {
    color: #ffffff;
    background-color: #007bff;
}

.LabStudent .table-dark {
    background-color: #1c1c3d;
    color: #ffffff;
}

.LabStudent .table-cyber {
    border: 1px solid #154279;
    vertical-align: baseline;
    --bs-table-bg: transparent !important;
}
.LabStudent .table-cyber tr {
    border-top: 2px #154279 outset;
    border-bottom: 2px inset #154279;
    border-left: 0;
    border-right: 0;
    transition: 0.3s;
    margin-top: 1px;
    background-color: transparent !important;
    background-image: linear-gradient(
        120deg,
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.2)
    );
}
.LabStudent .quiz-btns:active,
.LabStudent .quiz-btns:focus-visible {
    background: #1ce5df !important;
    color: black !important;
}
.LabStudent .modal {
    display: none;
}

/* lABS - ASSIGN SERVERS */
.lab-servers .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.lab-servers .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.lab-servers .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #444;
    transition: 0.4s;
    border-radius: 34px;
    box-shadow: 0px 0px 8px #18ffff; /* Cyber-like neon glow */
}

.lab-servers .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: #0f0c2a;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0px 0px 6px #18ffff;
}

.lab-servers input:checked + .slider {
    background-color: #18ffff;
}

.lab-servers input:checked + .slider:before {
    transform: translateX(26px);
}

/* BUTTON STANDOUT */
/* Pulse effect for the span text */
.btn-container span {
    display: inline-block;
    animation: pulseText 1.5s ease-in-out infinite;
}

/* Keyframe animation for text pulsing */
@keyframes pulseText {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1); /* Slightly increase the text size */
        opacity: 0.7; /* Reduce opacity at peak */
    }
}

/* TOPICS / DISCUSSION */
.discussion .discussion-board {
    max-width: 95%;
    position: relative;
    left: 5%;
}

.discussion .discussion-header {
    background-color: #150f33;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    font-family: "Rajdhani";
    align-items: center;
}

.discussion .discussion-header h3 {
    color: #07f9e2;
    margin: 0;
}

.discussion .discussion-header .btn,
.discussion .reply-card .btn-reply {
    background-color: #4e00c2;
    font-family: "Rajdhani";
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 0px;
}

.discussion .question-box {
    background-color: transparent;
    background: linear-gradient(
        90deg,
        rgb(49, 14, 78, 0.3) 0%,
        rgba(49, 14, 78, 0.4) 50%,
        rgba(49, 14, 78, 0.5) 100%
    );
    padding: 20px;
    margin-top: 10px;
    font-family: "Rajdhani";
}

.discussion .question-box .professor {
    font-weight: bold;
    font-size: 1.2rem;
    color: #07f9e2;
    font-family: "Rajdhani";
}

.discussion .question-box p {
    color: #f2f2f2;
    font-family: "Rajdhani";
}

.discussion .question-box .meta {
    font-size: 0.85rem;
    color: #888;
}

.discussion .status-tag {
    background-color: #07f9e2;
    color: black;
    padding: 3px 8px;
    font-family: "Rajdhani";
    margin-left: 10px;
}

.discussion .discussion-replies {
    margin-top: 20px;
}

.discussion .reply-card {
    background-color: transparent;
    background: linear-gradient(
        90deg,
        rgb(49, 14, 78, 0.3) 0%,
        rgba(49, 14, 78, 0.4) 50%,
        rgba(49, 14, 78, 0.5) 100%
    );
    padding: 20px;
    margin-bottom: 20px;
    font-family: "Rajdhani";
}

.discussion .reply-card .student-meta {
    display: flex;
    align-items: center;
    font-family: "Rajdhani";
    margin-bottom: 10px;
}

.discussion .reply-card .student-meta img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.discussion .reply-card .student-meta .student-name {
    font-weight: bold;
    font-family: "Rajdhani";
    color: #07f9e2;
}

/* Main container for the reply box */
.discussion .add-reply {
    background-color: transparent;
    font-family: "Rajdhani";
    background: linear-gradient(
        90deg,
        rgb(49, 14, 78, 0.3) 0%,
        rgba(49, 14, 78, 0.4) 50%,
        rgba(49, 14, 78, 0.5) 100%
    );
    padding: 20px;
}

/* Heading style */
.discussion .add-reply h4 {
    font-family: "Rajdhani";
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #07f9e2;
    padding-bottom: 10px;
}

/* Textarea styling */
.discussion .add-reply textarea {
    color: #ffffff; /* Text color */
    border: 2px solid #07f9e2; /* Neon border */
    border-radius: 5px;
    padding: 10px;
    font-family: "Rajdhani";
    resize: none;
    width: 100%;
    outline: none;
}

.discussion .btn-container {
    display: flex;
    gap: 20px;
    right: 20px;
}

.discussion .cyber-btn {
    font-family: "Rajdhani";
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.discussion .cyber-btn:active {
    transform: scale(0.95);
}

.discussion .btn-yes {
    color: #585858;
    font-family: "Rajdhani";
    background: transparent;
}

.discussion .btn-yes.check {
    color: #ffffff;
}

.discussion .btn-no {
    color: #585858;
    font-family: "Rajdhani";
    background: transparent;
}

.discussion .btn-no.check {
    color: #ffffff;
}

/* Custom styles for the TinyMCE editor */
.tox-editor-header,
.tox-toolbar__primary,
.tox-statusbar {
    background-color: #0d1e3f !important; /* Toolbar background */
}

.tox-statusbar__path-item,
.tox-statusbar__path-divider {
    color: #00ffea !important;
}

.tox-icon svg {
    fill: #60f7fd !important; /* Button text color */
    background-color: #10214c !important; /* Button background color */
    border: none !important; /* Remove borders */
    transition: background-color 0.3s !important; /* Transition for hover effect */
}

.tox-icon:hover svg {
    background-color: #243e68 !important; /* Hover color */
}

.tox-edit-area iframe {
    background-color: #10214c !important; /* Content area background */
    color: #60f7fd !important; /* Content text color */
    font-family: "Rajdhani", sans-serif !important; /* Font family */
}

/* LABS - CONNNECT */
.connect {
    height: 50dvh;
}
.connect video {
    position: absolute;
    top: 0;
    z-index: -9;
}
.connect .widget {
    position: absolute;
    top: 50%;
    background: #07ffff3b;
    border-top: 1px solid #0bfffe;
    border-right: 1px solid #0bfffe;
    border-bottom: 1px solid #0bfffe;
    border-radius: 0px 30px 30px 0px;
    padding: 20px 3px;
}
/* CONNECT - INNER SECTION */
.connect .connect-area {
    position: absolute;
    top: 49%;
    left: 40%;
}
.connect .connect-logo {
    width: 400px;
    margin-left: 45px;
    margin-bottom: 10px;
}
.connect .connect-btn {
    width: 250px;
    cursor: pointer;
}
.connect .connect-scat {
    width: 150px;
    margin-left: 12%;
    transform: translateY(20px); /* Initial position */
    animation: none; /* Apply the new animation */
    z-index: -1;
    cursor: pointer;
}
@keyframes plugIn {
    0% {
        transform: translateY(20px);
    }
    20% {
        transform: translateY(10px); /* Slightly up */
    }
    40% {
        transform: translateY(0px); /* Move to original position */
    }
    60% {
        transform: translateY(-5px); /* Jitter back down */
    }
    80% {
        transform: translateY(5px); /* Jitter up */
    }
    100% {
        transform: translateY(-75px); /* Settle at original position */
    }
}
/* CONNECT SETTINGS */
.connect .setting {
    position: absolute;
    top: 49%;
    background: #07ffff3b;
    border-radius: 20px 20px 20px 20px;
    left: 7%;
    overflow: hidden;
    border: 1px solid #0bfffe;
}
.connect .widget i {
    font-size: 38px;
    color: #08ffff;
}
.connect .widget img {
    width: 55px;
}
.connect .setting h3 {
    font-size: 24px;
    color: #08ffff;
    font-family: "Rajdhani";
    margin: 0px;
}
.connect .setting i {
    font-size: 24px;
    color: #08ffff;
}
.connect .setting label {
    color: #08ffff;
    font-family: "Rajdhani";
    font-size: 18px;
}
.connect .setting .heading {
    background: #075757;
    place-content: center;
    padding: 10px 10px 10px 10px;
}
.connect .setting .form-check,
.setting hr,
.setting .content-inner,
.setting .content-inner > label {
    margin: 0px 15px;
}
.connect .setting select,
.setting option {
    width: 135px;
    height: 28px;
    font-size: 12px;
    padding: 4px 10px !important;
    font-family: "Rajdhani";
    color: #08ffff;
    background-color: #13f2f1 !important;
    color: #000000 !important;
    font-weight: 900 !important;
    border-radius: 5px !important;
}

/* Custom checkbox style */
.connect .setting .custom-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #00fff5; /* Border color matching the image */
    border-radius: 4px; /* Slightly rounded corners */
    appearance: none; /* Remove default appearance */
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    background-color: transparent !important;
}

.connect .setting .custom-checkbox:checked {
    background-color: #00fff5 !important; /* Fill color matching the image */
}

.connect .setting .custom-checkbox:checked::before {
    content: "" !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    background-color: transparent !important; /* Make the inner check transparent */
}

.connect .setting .custom-checkbox:hover {
    border-color: #00e0d4 !important; /* Slightly darker color on hover */
}

body .setting .content-inner .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}
.connect .cog-image {
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.connect .cog-image.rotate {
    transform: rotate(360deg);
}
.connect .setting .accordion-button:focus {
    border: 0px !important;
    border-radius: 0px !important;
    box-shadow: none !important;
}
.connect .setting .accordion-button {
    background: transparent !important;
    box-shadow: none !important;
}
.connect .setting .accordion-collapse {
    width: 160px;
    font-size: 12px;
    padding: 0px;
    color: #13f2f1;
}

.connect .setting .accordion-button::after {
    content: "\f078"; /* Unicode for FontAwesome down arrow */
    font-family: "Font Awesome 5 Free"; /* Ensure you're using the correct FontAwesome font family */
    font-weight: 900; /* Use this if you're using solid icons */
    color: #13f2f1; /* Adjust the icon color */
    transform: rotate(0deg) !important; /* Default rotation for down arrow */
    transition: transform 0.3s ease;
}

.connect .setting .accordion-button:not(.collapsed)::after {
    content: "\f077"; /* Unicode for FontAwesome up arrow */
    font-family: "Font Awesome 5 Free"; /* Ensure you're using the correct FontAwesome font family */
    font-weight: 900; /* Use this if you're using solid icons */
    color: #13f2f1; /* Adjust the icon color */
    transform: rotate(180deg); /* No rotation when expanded */
    transition: transform 0.3s ease;
}
.connect .setting {
    animation: cyberPopup 0.5s ease-out;
}

@keyframes cyberPopup {
    0% {
        opacity: 0;
        transform: scale(0.8) rotateX(20deg) translateX(-100px);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05) rotateX(10deg) translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateX(0deg) translateX(0px);
    }
}
/* IFRAME */
.connect .display-iframe {
    display: none;
    width: 100dvh;
    margin: 0px auto;
    position: relative;
    top: 80px;
    border: 1px solid #00ffea;
}

/* RANGE */
.range-index .video-overlay {
    display: none;
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.9);
    background: black;
}

.range-index .video-overlay video {
    width: 100%;
    height: 500px;
    background: black;
    object-fit: cover;
}

.range-index .table-container {
    position: relative;
}

.range-index .hidden-table {
    display: none;
}

.range-index .rc-btn {
    position: relative;
    z-index: 20;
}

/* LAB CSS */
.window-wrapper {
    border: 1px solid #30add4;
}
.window {
    font-family: "Rajdhani";
    height: 70dvh;
    overflow: hidden;
}
.window .top-sidebar {
    background: #014d75;
    border-bottom: 1px solid #30add4;
    border-right: 1px solid #30add4;
}
.window .top-window-header {
    background: #0a2a5b;
    border-bottom: 1px solid #30add4;
}
.window h4 {
    color: #58e9ff;
    font-size: 22px;
}
.window .color-code {
    color: #56a190;
    text-align: left;
}
.window p,
.window .iconColor {
    color: #4ff6fc;
}

.window .btn-sm {
    border: 1px solid #154279;
}
.window .icon-section {
    background: #063d6c;
    border-right: 1px solid #30add4;
    border-bottom: 1px solid #30add4;
}
.window .inner-sidebar-section {
    background: #07274f;
    border-right: 1px solid #30add4;
    border-bottom: 1px solid #30add4;
    /* height: 61dvh; */
}
.window .terminal-background {
    background: radial-gradient(circle, #0f1047, #020310);
    font-family: Consolas, "Courier New", monospace; /* Monospace font for terminal look */
}
.window-card-wrapper .card-stat:hover,
.window-wrapper .card-stat:hover {
    scale: 0.95;
}

/* Terminal window styling */
.window-wrapper .terminal-window {
    background-color: #002b36;
    border-radius: 5px;
    width: 100%;
    height: 48dvh;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    max-height: 100%;
}

.expand .terminal-window {
    height: 78dvh;
}

/* Terminal text */
.window-wrapper .command-line,
.window-wrapper .instructions {
    font-size: 14px;
    line-height: 1.5;
}

/* Highlight colors */
.window-wrapper .highlight {
    color: #268bd2;
}

.window-wrapper .path {
    color: #859900;
}

.window-wrapper .error {
    color: #dc322f;
}

/* Prompt and user input styling */
.window-wrapper .prompt {
    color: #2aa198;
}

.window-wrapper .password {
    color: #f1f1f1;
    font-style: italic;
}

/* Background highlight styles */
.window-card-wrapper .bg-blue,
.window-wrapper .bg-blue {
    background-color: #073642;
    padding: 2px 4px;
    border-radius: 3px;
}

.window-card-wrapper .bg-green,
.window-wrapper .bg-green {
    background-color: #586e75;
    padding: 0;
    border-radius: 3px;
}

.window-card-wrapper .bg-red,
.window-wrapper .bg-red {
    background-color: #dc322f;
    color: #ffffff;
    padding: 2px 4px;
    border-radius: 3px;
}
.window-wrapper a.iconColor {
    font-size: 22px;
}
/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.window-wrapper .terminal-sidebar::-webkit-scrollbar-thumb:hover,
.window-wrapper .terminal-window::-webkit-scrollbar-thumb:hover {
    background: #6272a4 !important;
}
.window-wrapper .terminal-sidebar::-webkit-scrollbar-thumb,
.window-wrapper .terminal-window::-webkit-scrollbar-thumb {
    background: #30add4 !important;
}

.window-wrapper .terminal-sidebar::-webkit-scrollbar-track,
.window-wrapper .terminal-window::-webkit-scrollbar-track {
    background: #282a36 !important;
}

.window-wrapper .terminal-sidebar {
    height: 66vh;
    overflow-y: hidden;
    background: #07274f;
    transition: all 0.3s ease;
}

.window-wrapper .ls-IP {
    letter-spacing: 5px;
}
.window-wrapper .bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

.expand {
    align-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh !important;
    z-index: 999;
}

.expand .terminal-sidebar {
    height: 96vh !important;
}

.sidebar.shrunk {
    width: 50px; /* Shrunk width */
}
.sidebar.shrunk + .terminal-background {
    width: 66dvw;
}

.sidebar.shrunk .fa-download,
.sidebar.shrunk .fa-arrow-up-right-from-square {
    display: none;
}

.sidebar.shrunk
    .terminal-sidebar
    .inner-sidebar-section.bg-blue.py-4.align-self-center
    h4,
.sidebar.shrunk
    .terminal-sidebar
    .inner-sidebar-section.bg-blue.py-4.align-self-center
    input,
.sidebar.shrunk
    .terminal-sidebar
    .inner-sidebar-section.bg-blue.py-4.align-self-center
    a {
    opacity: 0;
}
.sidebar.shrunk .iconColor,
.sidebar.shrunk .icon-section > div {
    margin-left: 0px !important;
    padding-left: 0px !important;
}

/* Form Styling */
.window-wrapper .cyber-form {
    position: relative;
    top: 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    width: 100%;
}
/* Arrows Indicating Upload */
.window-wrapper .button-green::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #00fff0;
    transform: rotate(45deg);
    animation: pulse-arrows 1.5s infinite;
}

/* Arrow above the button */
.window-wrapper .button-green::before {
    top: 8px;
    left: 40%;
    transform: translateX(-50%) rotate(135deg);
    border-right: none;
    border-bottom: none;
}
/* Keyframes for pulsing effect */
@keyframes pulse-arrows {
    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) rotate(135deg) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) rotate(135deg) scale(1.2);
    }
}

/* Labs Slider */
#myCarousel {
    margin-top: 50px;
}

/* Create Course Styling */
.alert-primary-success {
    background: #1ce5df66;
    color: #1ce5df;
    margin: 20px;
}
.alert-primary-success button {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #1ce5df;
    padding-top: 1px;
}
.logout-modal {
    background-color: #03081e !important;
    color: white;
    border: 3px solid #191e3ac8;
    font-size: 14px;
    padding: 16px 100px !important;
    border-radius: 8px;
    background-image: radial-gradient(#68a3e332 1px, transparent 0) !important;
    background-size: 27px 30px;
    background-position: -10px -10px;
}
.logout-modal .user {
    border: solid 1px #68a3e3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #68a3e3;
    padding: 10px 0px;
    position: relative;
    font-size: 20px;
    line-height: 20px;
}
.logout-modal .user .bg {
    position: absolute;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.logout-modal .user .ac_type {
    color: #ffffff;
}
.bg {
    background-image: linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.05) 75%,
        transparent 75%,
        transparent
    );
    background-size: 2rem 2rem;
}
.logout-modal .user .dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #68a3e3;
}
.tl {
    top: 0px;
    left: -18px;
}
.tr {
    top: 0px;
    right: -18px;
}
.br {
    bottom: 0px;
    right: -18px;
}
.bl {
    bottom: 0px;
    left: -18px;
}
.logout-modal .menus {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    padding: 15px 0px;
    font-size: 27px;
    gap: 5px;
    height: 135px;
}
.logout-modal .menus a {
    text-transform: none;
    color: #68a3e3;
    line-height: 18px;
    margin: 0px;
}
.logout-btn {
    display: inline-flex;
    gap: 7px;
}
.logout-btn .logout {
    background-color: #68a3e3;
    color: #000000;
    padding: 4px 5px;
}
.logout-btn .cross {
    height: 100%;
    width: 27px;
    background-color: #68a3e3;
    position: relative;
}
.cross::after {
    content: "";
    display: inline-block;
    height: 90%;
    width: 1px;
    background-color: #000000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.cross::before {
    content: "";
    display: inline-block;
    height: 90%;
    width: 1px;
    background-color: #000000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.active-btn {
    background-color: #821dab;
    color: #2ccbdd;
}
.menu-right-graphics {
    width: 13%;
}
.menu-right-graphics .first {
    width: 100%;
    height: 35px;
    border: solid 1px #88888842;
    position: relative;
}
.menu-right-graphics .second {
    background-color: #68a3e346;
    height: 54px;
}
.menu-right-graphics .third {
    background-color: #68a3e346;
    height: 5px;
}
.logout-modal .menu-right-graphics .dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: #ffffff8f;
}
.logout-modal .menu-right-graphics .dot.tl {
    top: -3px;
    left: -3px;
}
.logout-modal .menu-right-graphics .dot.tr {
    top: -3px;
    right: -3px;
}
.logout-modal .menu-right-graphics .dot.br {
    bottom: -3px;
    right: -3px;
}
.logout-modal .menu-right-graphics .dot.bl {
    bottom: -3px;
    left: -3px;
}
.menu-right-graphics .cross::before,
.menu-right-graphics .cross::after {
    background-color: #888888;
    height: 30%;
    width: 2px;
}
.menu-bottom-square {
    width: 13%;
    height: 30px;
    border: solid 1px #68a3e392;
    position: relative;
}
.menu-bottom-square::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #68a3e3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#card-element {
    background-color: #ffffffee;
    padding: 11px;
    border: 1px solid #353572 !important;
}
@media (max-width: 768px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }

    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    h2 {
        font-size: 16px !important;
    }
    h3 {
        font-size: 13px !important;
    }
    #progressbar li {
        font-size: 12px;
    }
    .top_menu_item {
        font-size: 15px;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-start,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

@media (min-width: 768px) {
    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next,
    .carousel-item-next:not(.carousel-item-start) {
        transform: translateX(25%) !important;
    }

    .carousel-inner .carousel-item-left.active,
    .carousel-item-prev:not(.carousel-item-end),
    .active.carousel-item-start,
    .carousel-item-prev:not(.carousel-item-end) {
        transform: translateX(-25%) !important;
    }

    .carousel-item-next.carousel-item-start,
    .active.carousel-item-end {
        transform: translateX(0) !important;
    }

    .carousel-inner .carousel-item-prev,
    .carousel-item-prev:not(.carousel-item-end) {
        transform: translateX(-25%) !important;
    }
}

.carousel-control-next,
.carousel-control-prev {
    width: 2% !important;
}

/* Labs Slider */

/* Courses Steps Styling */
#create-basic-step .fs-title,
#create-curriculum-step .fs-title,
#create-media-step .fs-title {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}
#create-basic-step #progressbar li,
#create-curriculum-step #progressbar li,
#create-media-step #progressbar li {
    color: rgb(147, 147, 147);
}
#create-basic-step #progressbar li.active,
#create-curriculum-step #progressbar li.active,
#create-media-step #progressbar li.active {
    color: rgb(0, 245, 246);
}
#create-basic-step,
#create-curriculum-step,
#create-media-step {
    height: 100%;
    min-height: 705px;
}
#create-basic-step .multiForm:before,
#create-curriculum-step .multiForm:before,
#create-media-step .multiForm:before {
    height: 100%;
    background: rgb(24, 178, 239);
}
#create-basic-step .multiForm:after,
#create-curriculum-step .multiForm:after,
#create-media-step .multiForm:after {
    height: 100%;
    background: rgb(24, 178, 239);
}
#create-basic-step .fs-subtitle {
    font-size: 20px;
    font-family: "Helvetica", "Arial", sans-serif;
}
#create-basic-step select.multiField {
    font-size: 20px;
    height: 50px;
    font-weight: 500;
    font-family: "Helvetica", "Arial", sans-serif;
}
#create-basic-step .dropdown-icon {
    transform: rotate(90deg);
    margin-top: -4px;
}
#create-basic-step #msform .action-button,
#create-curriculum-step #msform .action-button,
#create-media-step #msform .action-button,
#create-basic-step .base-element-image-wrapper,
#create-curriculum-step .base-element-image-wrapper,
#create-media-step .base-element-image-wrapper {
    position: relative;
    text-align: center;
}
#create-basic-step .base-element-image,
#create-curriculum-step .base-element-image,
#create-media-step .base-element-image {
    width: 100%;
    margin-top: 5px;
    display: block;
}
#create-basic-step .base-element-image-wrapper::before,
#create-curriculum-step .base-element-image-wrapper::before,
#create-media-step .base-element-image-wrapper::before {
    content: "";
    position: absolute;
    left: -110px;
    width: 120%;
    height: 1px;
    opacity: 0.4;
    background-color: #18b2ef;
    top: 0;
}

#create-basic-step .base-element-image-wrapper::after,
#create-curriculum-step .base-element-image-wrapper::after,
#create-media-step .base-element-image-wrapper::after {
    content: "";
    position: absolute;
    left: -110px;
    width: 110%;
    height: 1px;
    opacity: 0.4;
    background-color: #18b2ef;
    bottom: 0;
}
#create-curriculum-step .curriculum-text {
    font-family: "Helvetica", "Arial", sans-serif;
}
#create-curriculum-step .curriculum-text img {
    margin-right: 10px;
}
#create-curriculum-step .intro-sec img {
    margin-left: 7px;
}
#create-curriculum-step .introduction .edit-icon {
    margin-right: 10px;
}
#create-curriculum-step .cirr-btn {
    background-color: #18eadf;
    color: #000;
    font-size: 23px;
    font-weight: 600;
    padding: 12px 24px;
}
/*MultiForm Left & Right Line */
#create-basic-step .multiForm:before,
#create-basic-step .multiForm:after {
    top: -55px;
    height: 112%;
    min-height: 772px;
}
#create-media-step .multiForm:before,
#create-media-step .multiForm:after {
    top: -55px;
    height: 112%;
}

#create-basic-step .dot-top-left,
.dot-top-right,
.dot-bottom-left,
.dot-bottom-right {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: #1ce5df;
    border-radius: 50%;
    transform: translate(50%, -50%);
}
#create-curriculum-step .dot-top-left,
.dot-top-right,
.dot-bottom-left,
.dot-bottom-right {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: #1ce5df;
    border-radius: 50%;
    transform: translate(50%, -50%);
}
#create-media-step .dot-top-left,
.dot-top-right,
.dot-bottom-left,
.dot-bottom-right {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: #1ce5df;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

#create-basic-step .dot-top-left,
#create-basic-step .dot-top-right {
    top: -55px;
}
#create-curriculum-step .dot-top-left,
#create-curriculum-step .dot-top-right {
    top: 28px;
}

#create-basic-step .dot-bottom-left,
#create-basic-step .dot-bottom-right {
    bottom: -33px;
}
#create-curriculum-step .dot-bottom-left,
#create-curriculum-step .dot-bottom-right {
    bottom: -23px;
}

#create-media-step .dot-bottom-left,
#create-media-step .dot-bottom-right {
    bottom: -23px;
}
#create-media-step .dot-top-left,
#create-media-step .dot-top-right {
    top: 17px;
}

#create-basic-step .dot-bottom-left,
#create-curriculum-step .dot-bottom-left,
#create-basic-step .dot-top-left,
#create-curriculum-step .dot-top-left,
#create-media-step .dot-top-left,
#create-media-step .dot-bottom-left {
    left: -2px;
}
#create-basic-step .dot-bottom-right,
#create-curriculum-step .dot-bottom-right,
#create-basic-step .dot-top-right,
#create-curriculum-step .dot-top-right,
#create-media-step .dot-top-right,
#create-media-step .dot-bottom-right {
    right: 0;
}
/* End of MultiForm Left & Right Line */

#create-basic-step .basicInfo input::placeholder {
    font-family: Helvetica, Arial, sans-serif;
}

/* Media Step Styling Start */
#create-media-step .mediaUpload-border li.nav-item {
    padding: 0px;
}
#create-media-step .mediaUpload-border li.nav-item button {
    font-size: 20px;
    font-weight: 600;
    padding: 10px 0px;
    min-width: 170px;
}
#create-media-step.courses.centralize_container .mediaUpload-border {
    padding-top: 18px;
    padding-bottom: 8px;
}
#create-media-step.courses.centralize_container .thumbnail-box {
    padding-bottom: 13px;
}
#create-media-step .file-upload > label {
    background: transparent !important;
    font-size: 20px !important;
    font-family: Helvetica, Arial, sans-serif !important;
}
#create-media-step .file-upload > p {
    font-size: 19px !important;
    font-family: Helvetica, Arial, sans-serif !important;
    margin-top: 10px;
}
#create-media-step #intro-subtitle {
    font-size: 18px !important;
    font-family: Helvetica, Arial, sans-serif !important;
    margin-top: 10px;
    text-align: center;
    color: grey;
    margin-bottom: 6px;
}
#create-media-step .fs-subtitle {
    font-size: 20px;
    font-family: "Helvetica", "Arial", sans-serif;
}

/* Media Step Styling Start */
.dark-small-text {
    font-size: 15px;
    font-family: "Helvetica", "Arial", sans-serif;
}

/* FRONTEND - COURSE PAGE */
.move-parent {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.move-image {
    animation: scrollUp 10s linear infinite;
    will-change: transform;
    position: absolute;
    top: 0;
    left: 0;
    height: 200%;
    width: 100%;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.move-image img {
    margin: 0px;
    padding: 0px;
    border: none;
    display: block;
    width: 100%;
    backface-visibility: hidden;
    height: 50%;
    object-fit: cover;
    transform: translateZ(0);
}

@keyframes scrollUp {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(0, -50%, 0);
    }
}

.homeBorder {
    border: 1px solid var(--border-blue1);
}
.homeHeading {
    color: var(--text-color-cyan);
    font-family: "Rajdhani";
}
.course_cyan {
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(28, 229, 223, 0.2),
        rgba(28, 229, 223, 0.2)
    );
    color: var(--text-color-cyan);
    font-family: "Rajdhani";
}
.course_cyan h4 {
    border: 1px solid var(--border-blue1);
    border: 1px solid var(--border-blue1);
}
.course_cyan .iconColor,
.homeBorder .iconColor {
    color: var(--text-color-cyan);
}
.course_cyan img {
    border: 0px solid var(--border-blue1);
}
.course_cyan div {
    line-height: 1;
    color: var(--border-blue1);
}

.course_green {
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(65, 229, 28, 0.2),
        rgba(65, 229, 28, 0.2)
    );
    color: #9dcd79;
    font-family: "Rajdhani";
    border: 1px solid #2c521c;
}

.course_green img {
    border: 0px solid #2c521c;
}

.course_green .iconColor {
    color: #9dcd79;
}
.text-justify {
    text-align: justify !important;
}
.course_green div {
    line-height: 1;
    color: #9dcd79;
}
.course_green h4 {
    border-top: 1px solid #2c521c;
    border-bottom: 1px solid #2c521c;
}
.cc_card_body_text {
    font-size: 13px;
    font-weight: 600;
    padding: 5px 0px;
    display: block;
}
#courses .subtitle {
    font-size: 14px;
    font-weight: 600;
}
#courses .course_desc {
    height: 42px;
    overflow-y: hidden;
}
.course_red {
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(229, 28, 65, 0.2),
        rgba(229, 28, 65, 0.2)
    );
    color: #e97c8b;
    font-family: "Rajdhani";
    border: 1px solid #5a172d;
}

.course_red .iconColor {
    color: #bb7382;
}
.course_red img {
    border: 0px solid #521c24;
}
.course_red div {
    line-height: 1;
    color: #e97c8b;
}
.course_red h4 {
    border-top: 1px solid #5a172d;
    border-bottom: 1px solid #5a172d;
}
.course_yellow {
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(229, 209, 28, 0.2),
        rgba(229, 209, 28, 0.2)
    );
    color: #bea860;
    font-family: "Rajdhani";
    border: 1px solid #645826;
}

.course_yellow .iconColor {
    color: #bea860;
}
.course_yellow img {
    border: 0px solid #52481c;
}
.course_yellow div {
    line-height: 1;
    color: #ddb032;
}
.course_yellow h4 {
    border-top: 1px solid #645826;
    border-bottom: 1px solid #645826;
}
.course_blue {
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(28, 199, 229, 0.2),
        rgba(28, 199, 229, 0.2)
    );
    color: #47b0c5;
    font-family: "Rajdhani";
    border: 1px solid #0c4d6c;
}
.course_blue .iconColor {
    color: #47b0c5;
}
.course_blue img {
    border: 0px solid #1c4b52;
}
.course_blue div {
    line-height: 1;
    color: #47b0c5;
}
.course_blue h4 {
    border-top: 1px solid #0c4d6c;
    border-bottom: 1px solid #0c4d6c;
}
.course_orange {
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(229, 142, 28, 0.2),
        rgba(229, 142, 28, 0.2)
    );
    color: #c8794f;
    font-family: "Rajdhani";
    border: 1px solid #c8794f;
}

.course_orange h4 {
    border-top: 1px solid #c8794f;
    border-bottom: 1px solid #c8794f;
}

.course_orange .iconColor {
    color: #c8794f;
}
.course_orange img {
    border: 0px solid #523a1c;
}
.course_orange div {
    line-height: 1;
    color: #523a1c;
}
.course_pink {
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(195, 28, 229, 0.2),
        rgba(195, 28, 229, 0.2)
    );
    color: #c164d5;
    font-family: "Rajdhani";
    border: 1px solid #5c127b;
}

.course_pink .iconColor {
    color: #c164d5;
}

.course_pink div {
    line-height: 1;
    color: #c164d5;
}
.course_pink h4 {
    border-top: 1px solid #5c127b;
    border-bottom: 1px solid #5c127b;
}
.course_dBlue {
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(28, 45, 229, 0.2),
        rgba(28, 45, 229, 0.2)
    );
    color: #b6b9e2;
    font-family: "Rajdhani";
    border-bottom: 1px solid #b6b9e2;
}

.course_dBlue .iconColor {
    color: #b6b9e2;
}
.course_dBlue img {
    border: 0px solid #1c2152;
}
.course_dBlue div {
    line-height: 1;
    color: #1c2152;
}
.course_dBlue h4 {
    border-top: 1px solid #1c2152;
    border-bottom: 1px solid #1c2152;
}

.cc_card_heading h4 {
    font-size: 1.2rem;
    text-align: center;
}

.course_card_width {
    min-width: 230px;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.course_card_width:hover {
    transform: scale(1.08);
    cursor: pointer;
}

.course_card_width i:hover {
    text-shadow: 0 0 10px black;
}

.cc_card_body p {
    text-align: center;
}

#student-page-top .container-fluid {
    padding: 0px 110px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.top-header-only .logo {
    background: rgb(51 13 84 / 80%);
    min-height: 110px;
    width: 82%;
}

#content {
    min-height: 460px;
}

#wrapper {
    display: flex;
}

#content-wrapper {
    width: 100%;
    overflow-x: hidden;
}

#content {
    flex: 1 0 auto;
}

.top-header-only .chat-notification-badge {
    position: absolute;
    top: -5px;
    right: -7px;
    background-color: #c53736;
    color: white;
    padding: 0px 5px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    min-height: 20px;
    text-align: center;
    line-height: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.copyright {
    color: white;
    display: flex;
}

.copyright .copyright-text {
    font-size: 1em !important;
}

#student-page-top .homeBorder {
    border: 1px solid var(--border-blue1);
    border-bottom: 0px;
}

#student-page-top .base-element-image-wrapper {
    position: relative;
    text-align: center;
}
#student-page-top .base-element-image {
    width: 100%;
    margin-top: 5px;
    display: block;
}
#student-page-top .base-element-image-wrapper::before {
    content: "";
    position: absolute;
    left: -110px;
    width: 120%;
    height: 1px;
    opacity: 0.4;
    background-color: #18b2ef;
    top: 0;
}

#student-page-top .base-element-image-wrapper::after {
    content: "";
    position: absolute;
    left: -110px;
    width: 110%;
    height: 1px;
    opacity: 0.4;
    background-color: #18b2ef;
    bottom: 0;
}

#student-page-top .top-row1 {
    border: 1px solid #18b2ef;
    flex-basis: 25%;
}

#student-page-top .top-row2 {
    border: 1px solid #18b2ef;
    flex-basis: 80%;
    padding: 10px;
}
.gap-4px {
    gap: 4px;
}

.top-row2 .homeHeading {
    color: var(--text-color-cyan);
    font-family: "Rajdhani";
    font-size: 25px;
    font-weight: 600;
    margin: 0px;
}
.top-row1 .card-img-top {
    width: 100%;
    height: 122px;
}

.tab-contents {
    border: 1px solid var(--border-blue1);
    margin: 0px;
    padding: 10px;
}
.imagebg {
    position: absolute;
    width: 100px;
    top: 142px;
    left: 107px;
    height: 140px;
    background: #04fefe;
    border-radius: 4px 10px 10px 4px;
    z-index: -3;
}
ul#coursestabs {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    gap: 5px;
    border: 0px transparent;
}
ul#coursestabs li {
    color: #000;
}
ul#coursestabs li {
    background: transparent;
    color: white;
}
ul#coursestabs li button {
    color: white;
    background: transparent !important;
    border: 0px solid !important;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
}
ul#coursestabs li button.active {
    color: var(--text-color-cyan);
    background: transparent !important;
    border: 0px solid !important;
    text-decoration: none;
}
ul#coursestabs li button:hover {
    color: var(--text-color-cyan);
    background: transparent !important;
    border: 0px solid !important;
    text-decoration: none;
}
div#myTabContent {
}
.course_detail_content_menu .homeHeading {
    color: var(--text-color-cyan);
    font-family: "Rajdhani";
    font-size: 20px;
    border: 1px solid;
    padding: 5px;
    text-align: center;
    font-weight: 600;
}
button#prev-btn {
    background-image: url("/img/admin/button_primary.png");
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    width: 100px;
    height: 38px;
    color: var(--text-color-cyan);
    font-size: 18px;
    font-weight: 600;
}
button#next-btn {
    background-image: url("/img/admin/button_primary.png");
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-color: var(--transparent);
    cursor: pointer;
    width: 100px;
    height: 38px;
    color: var(--text-color-cyan);
    font-size: 18px;
    font-weight: 600;
}

.course_detail_content_column .alert-info {
    border-radius: 0px;
    background: #054f75;
    color: #1ce5df;
}

#quiz-container {
    background: none;
    border: 1px solid var(--text-color-cyan);
}
#quiz-content #question-text {
    background-color: var(--transparent) !important;
    background-image: linear-gradient(
        120deg,
        rgba(31, 24, 84, 0.2),
        rgba(31, 24, 84, 0.2)
    );
    border: 1px solid var(--border-blue1);
    text-align: center;
    padding: 15px;
}
div#quiz-options {
    padding: 20px 40px;
    border: 1px solid var(--border-blue1);
}
#question-progress {
    text-align: center;
    padding: 20xp;
    margin: 20px 0px;
}
.paging {
    justify-content: space-between;
    padding: 10px 15px;
}
.text-secondary {
    color: #9a9a9a;
    margin-bottom: 20px;
    padding: 0px 20px;
}
.form-check-input[type="radio"] {
    border-radius: 50%;
    border: 3px solid #07f9e2 !important;
}
#courseDetailSection a.active .text-secondary {
    color: #07f9e2 !important;
}

.red-heading {
    color: #f84343;
    font-size: 35px;
    font-weight: 600;
}

.red-heading span {
    color: #ff4242;
    font-size: 35px;
    font-weight: bold;
    padding: 0px 10px;
}

.seizure-message p {
    color: #808283;
    font-size: 18px;
    padding: 10px 45px;
}
.seizure-message span {
    color: white;
}
/* animation popup css start */
.gear_icon {
    display: none;
    color: #04fefe;
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 150;
    transition: 0.7s;
}
.popup {
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    position: fixed;
    background-color: #000000f0;
    z-index: 100;
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.popup h5 {
    color: #04fefe;
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 40px;
    background-color: black;
    border-radius: 20px;
    cursor: pointer;
    border: 3px solid #00e4ff;
    padding: 20px;
}

.toggle-text {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    color: #00e4ff;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}
.toggle-text-on {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: #00e4ff;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

.slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 36px;
    height: 36px;
    background-color: #00e4ff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.slider-on {
    position: absolute;
    transform: translateX(100%);
    top: 2px;
    left: 2px;
    width: 36px;
    height: 36px;
    background-color: #00e4ff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.rotated {
    transform: rotate(180deg);
}
.Textpopup {
    color: white;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    padding: 5rem;
    position: absolute;
    background-color: #000000de;
    z-index: 5;
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.Textpopup h5 {
    color: #04fefe;
}

#student-page-top .gear_icon {
    display: none;
    color: #04fefe;
    position: absolute;
    bottom: 7px;
    right: 30px;
    z-index: 150;
    transition: 0.7s;
}
.copyright ul {
    margin-right: 40px;
}
.input_error {
    font-size: 14px;
    padding: auto;
    margin: auto;
    color: #ff2929;
}

/* create tenant page */
.tenant_card {
    background-color: #170e3b72 !important;
    padding: 2px 0px;
    border: none;
    margin-bottom: 4px;
}

.tenant_container .card-header {
    background: #150f33;
    padding: 5px 0px;
    border: 1px solid #2a1c60;
    margin-bottom: 4px;
}
.card-header h4 {
    cursor: pointer;
    transition: 0.4s;
    color: var(--text-blue2) !important;
}
.card-body {
    padding: 20px 0px;
}
.tenant_card .form-label {
    margin-left: 0rem;
    margin-bottom: 0.2rem;
    font-size: 14px;
}
.tenant_card input[type="email"]:-webkit-autofill,
.tenant_card input[type="password"]:-webkit-autofill,
.tenant_card input[type="text"]:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #10214c inset !important;
    -webkit-text-fill-color: #60f7fd !important;
}

.signup-form input[type="email"]:-webkit-autofill,
.signup-form input[type="password"]:-webkit-autofill,
.signup-form input[type="text"]:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px rgba(80, 28, 17, 0.1) inset !important;
    -webkit-text-fill-color: #60f7fd !important;
    transition: background-color 9999s ease-in-out 0s !important;
    padding: 3px 10px !important;
    background-color: var(--colorb);
    border: none !important;
    border-radius: 0px !important ;
}
.epilepsy-warning {
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    position: fixed;
    background-color: #000000f0;
    z-index: 100;
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}
.mt-2 {
    margin-top: 0.5rem !important;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}
.epilepsy-warning .continue_btn_pass {
    width: 140px;
    margin: 65px 20px 0px 50px;
    height: 46px;
    background-color: transparent;
    border: 1px solid #04fefe !important;
    /* color: white; */
    border-radius: 5px 5px 5px 5px !important;
    position: relative;
    background-image: url("/img/admin/buttons/passwordResest1_form idle.png") !important;
    border: 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.5s;
}
.continue_btn_pass:hover {
    background-color: #19cec5;
}

.btn_code {
    background-color: #04fefe;
    border-radius: 0px !important;
    font-weight: 600;
    color: black;
}
.btn_code:hover {
    background-color: #04fefe;
    border-radius: 0px !important;
    font-weight: 600;
    color: black;
}
a#action_dropdown {
    padding: 10px;
    background: #071a2d;
    border: 1px solid var(--text-blue2);
    width: 40px;
    border-radius: 50%;
}
.action_dropdown_menu {
    opacity: 0;
    padding: 0px;
    background: #071a2d;
    border-radius: 0;
    border: 1px solid var(--text-blue2);
    border-bottom: 0px;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
.dropdown.show .action_dropdown_menu {
    padding: 0px;
    opacity: 1;
    background: #071a2d;
    border-radius: 0;
    border: 1px solid var(--text-blue2);
    border-bottom: 0px;
    transform: translateY(0px);
    transition: all 0.3s ease;
}
.action_dropdown_menu .dropdown-item {
    background-color: #152153;
    color: white;
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
    border-bottom: 1px solid var(--text-blue2);
}
.service-pakage {
    background-color: purple;
}
.service-pakage:hover {
    background-color: purple;
    color: white;
}
.billing-details {
    background-color: green;
}
.billing-details:hover {
    background-color: green;
    color: white;
}
.tenant-announcement {
    background-color: blue;
}
.tenant-announcement:hover {
    background-color: blue;
    color: white;
}
.action_dropdown_menu .dropdown-item:hover {
    transition: all 0.5s ease-in-out;
    color: var(--text-color-cyan);
}
.form-switch .form-check-input {
    /*  --bs-form-switch-bg: url(
        data:image/svg + xml,
        %3csvgxmlns="http://www.w3.org/2000/svg"viewBox="-4 -4 8 8"%3e%3ccircler="3"fill="rgba%280, 0, 0, 0.25%29"/%3e%3c/svg%3e
    ); */

    width: 3em;
    height: 1.8rem;
    margin-left: -2.5em;
    margin-top: 0px;
    background-image: var(--bs-form-switch-bg);
    background-position: left center;
    border-radius: 2em;
    transition: background-position 0.15s ease-in-out;
}

.form-check-input:checked {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(0,228,255,1)'/%3e%3c/svg%3e") !important;
    background-color: #071a2d;
    border-color: #0d6efd;
    border: 3px solid #00e4ff;
}
/* animation popup css end */
/* #student-page-top .top-header ul {
    background: none !important;
    align-items: center !important;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    min-height: 80px;

}
#student-page-top .top_menu_item {
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
    border-bottom: 3px solid transparent;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
}

#student-page-top .top_menu_item:hover {
    color: var(--text-color-cyan);
    border-bottom: 3px solid var(--text-color-cyan);
    transform: scale(1.15);
    font-size: 18px;
    font-weight: 700;
    
}
#student-page-top .top_menu_item_active {
    color: var(--text-color-cyan);
    text-shadow: 0 0 5px var(--text-color-cyan);
}
.top_menu_item_long_menu_active {
    color: var(--text-color-cyan);
    border-bottom: 3px solid var(--text-color-cyan) !important;
} */

/* Custom style for disabled fields to match enabled fields */
.form-control.custom-disabled:disabled {
    background-color: #10214c !important;
    color: #60f7fd !important;
    opacity: 1 !important;
    border: 1px solid #00e4ff !important;
    border-radius: 0 !important;
}

/* Add thin border to all form inputs */
.form-control {
    border: 1px solid #00e4ff !important;
    border-radius: 0 !important;
}



.border-corners {
    position: relative;
    overflow: hidden;
}
.corner-img {
    position: absolute;
    width: 100px;
    height: 120px;
    z-index: 2;
    pointer-events: none;
}
.corner-img.top-right {
    top: 0;
    right: 0;
    transform: rotate(180deg);
}
.corner-img.bottom-left {
    bottom: 0;
    left: 0;
}


.glassmorphic {
    background: transparent !important;
    box-shadow: none;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 8px solid #00e4ff;
    clip-path: polygon(60px 0, calc(100% - 60px) 0, 100% 60px, 100% calc(100% - 60px), calc(100% - 60px) 100%, 60px 100%, 0 calc(100% - 60px), 0 60px);
    padding: 2rem 2.5rem;
}

.glassmorphic.btn-shaped {
    background: transparent !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 8px solid #00e4ff;
    clip-path: polygon(60px 0, calc(100% - 60px) 0, 100% 60px, 100% calc(100% - 60px), calc(100% - 60px) 100%, 60px 100%, 0 calc(100% - 60px), 0 60px);
    box-shadow: none;
}

.center-top-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 220px; /* Adjust as needed */
    height: auto;
    z-index: 2;
    pointer-events: none;
}
