* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --user-primary: #2d9cdb;
    --user-secondary: #1676b3;
    --user-tertiary: rgba(150, 206, 237, 0.11);
    --tertiary-medium: rgba(240, 164, 204, 0.08);
    --tertiary-light-secondary: rgba(82, 45, 110, 0.4);
    --main-text: #373838;
    --secondary-text: #686868;
    --text-white: #ffffff;
    --text-red: #f82121;
    --text-green: #28a745;
    --bglight-green: rgba(40, 167, 69, 0.15);
    --bglight-red: rgba(220, 53, 69, 0.15);
    --text-light: #e5e7eb;
    --text-lightest: #fcfcfc;
    --light-blue: #f5f7fa;
    --medium-blue: #718ebf;
    --placeholder: #898989;
    --dark: #4b5563;
    --light-secondary: rgba(82, 45, 110, 0.03);
    --light-border: #e2e8f0;
}
/* roboto-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v48-latin-regular.woff2') format('woff2'); 
}
a {
    display: inline-block;
    text-decoration: none;
}
body {
    font-family: Roboto !important;
}
.white-icon {
  filter: brightness(0) invert(1);
}
.container-start {
    width: clamp(10px, 100%, 1440px);
    padding: 20px;
    margin: auto;
}
.container-section {
    width: 100%;
    margin: auto;
    padding-left: 100px;
}
.h-100vh {
    height: 100vh;
}
.main {
    flex: 1;
    padding: 80px 20px 20px 20px;
    background: #f2f2f2;
    text-align: center;
    width: 100%;
    min-height: 100vh;
}
section {
    padding: 0px;
}
.section {
    padding: 20px 0px;
}
.card-container {
    padding: 30px;
    border-radius: 10px;
}
.card-container .title-sec {
    display: flex;
    justify-content: space-between;
}
.link {
    font-size: 0.875rem;
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 7px;
    color: var(--user-primary);
    font-weight: 600;
}
.link svg {
    width: 10px;
    color: var(--user-primary);
}
.link img {
    height: 18px;
    filter: invert(1) brightness(0);
    opacity: 0.7;
}
.icon-white {
    display: inline-block;
    filter: brightness(0) invert(1);
}
.more img {
    height: 14px;
    filter: inherit;
    opacity: 1;
}
.card-slider {
    display: flex;
    gap: 10px;
}
.setion-title {
    font-size: 1.5rem;
    font-family: Roboto;
    font-weight: 500;
    color: var(--user-primary);
    text-align: center;
}
.subtitle {
    font-weight: 400;
    font-family: Roboto;
    color: var(--secondary-text);
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: center;
}
#login {
    padding: 30px;
    width: 100%;
    height: calc(100vh - 70px);
    border-radius: 10px;
    position: relative;
    background-color: var(--text-white);
    /* border: 1px solid var(--primary); */
}
#login::before {
    position: absolute;
    content: "";
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: rgb(228, 44, 129);
    background: linear-gradient(
        90deg,
        rgba(228, 44, 129, 0.6) 0%,
        rgba(82, 45, 110, 0.7) 100%
    );
    top: -2px;
    left: -2px;
    border-radius: 10px;
    z-index: -1;
}
.container-login-vector {
    width: clamp(100px, 90%, 700px);
    margin: auto;
}
.form-area {
    width: 100%;
}
.info-vector-section {
    height: 100%;
    width: 100%;
    background-color: var(--user-tertiary);
    padding: 50px 25px;
}
.img-card {
    border-radius: 20px;
    height: 100%;
}
.img-card .content h1 {
    font-size: 2.25rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
}
.img-card .content h6 {
    font-family: poppins;
    font-size: 1.25rem;
    text-align: center;
}
.img-card .img {
    width: clamp(10px, 90%, 500px);
    margin: 70px auto;
    margin-bottom: 40px;
}
.img-card .img img {
    display: inline-block;
    width: 100%;
}
.img-card .important-text {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 9;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding: 45px;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
}
.img-card .important-text h1 {
    color: var(--text-white);
    font-size: 2.875rem;
}
.img-card .important-text h6 {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 400;
}
.img-card .img-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../img/vectors/image-bg-mobile.jpg);
    background-size: cover;
}

.login-detail {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 500px;
}
.login-detail .logo {
    max-width: 200px;
    margin: 10px auto;
}
.login-detail .logo img {
    display: inline-block;
    height: 75px;
}
.main-deatil {
    width: clamp(100px, 100%, 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.main-deatil .static-detail {
    max-width: 300px;
}
.main-deatil .static-detail .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--user-tertiary);
    margin: 10px auto;
}
.main-deatil .static-detail .title {
    font-size: 1.35rem;
    color: var(--main-text);
    text-align: center;
}
.main-deatil .static-detail .subtitle {
    margin: 10px auto;
    font-size: 0.95rem;
    font-weight: 400;
    text-align: center;
}
.main-deatil .input-detail {
    margin: 20px auto;
    width: 100%;
}
.main-deatil .input-detail .input-box {
    width: 100%;
}
.main-deatil .input-detail .input-box label {
    font-size: 0.875rem;
}
.main-deatil .input-detail .input-box label span {
    color: var(--text-red);
    font-weight: 500;
}
.main-deatil .button {
    margin: 15px auto;
    width: 100%;
}
.main-deatil .input-detail .input-box .input-bloc {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 7px;
}
.input-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 12px;
}
.input-box label {
    font-size: 0.875rem;
    font-weight: 500;
}
.input-box input,
.input-box select {
    font-size: 0.875rem;
    font-weight: 400;
    border: 1px solid #e5e7eb;
    /* background-color: #f2f1f1; */
    width: 100%;
    height: 36px;
    padding: 8px 10px;
    border-radius: 6px;
    margin-top: 7px;
    outline: none;
    color: var(--secondary-text);
}
.input-box input:focus-visible,
.input-box select:focus-visible {
    border: 1px solid var(--user-secondary);
}
.input-box select {
}
.input-bloc select {
    border-radius: 5px 0px 0px 5px;
    width: 70px;
    height: 36px;
    margin-top: 0px;
    background-color: #f2f1f1;
}
.input-bloc input {
    /* background-color: #f2f1f1; */
    width: calc(100% - 70px);
    height: 36px;
    border-radius: 0px 5px 5px 0px;
    margin-top: 0px;
}
/* .input-box input:focus {
  border-color: var(--primary);
}
.input-box select:focus {
  border-color: var(--primary);
} */
/* .input-box input[type="password"] {
  font-size: 1.25rem;
  padding: 4px;
  font-weight: 600;
} */
.main-deatil .button button {
    background-color: var(--user-primary);
    color: var(--text-white);
    display: inline-block;
    border: none;
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
}
.extralink {
    font-size: 1rem;
    color: var(--secondary-text);
    font-weight: 400;
}
.extralink a {
    display: inline-block;
    color: var(--main-text);
    margin-left: 10px;
    font-weight: 500;
    text-decoration: none;
}
.theme-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}
.theme-btn button {
    padding: 5px 30px;
    display: inline-block;
    background-color: #10b4b4;
    color: #fff;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.25rem;
    width: clamp(50px, 100%, 250px);
    border: none;
}
.extralink h4 {
    font-size: 1.35rem;
    text-align: center;
}
.extralink h4 a {
    font-size: 1.5rem;
    color: #10b4b4;
    margin-left: 10px;
}

.password-container {
    display: flex;
    align-items: center;
    justify-content: center !important;
    gap: 20px;
    width: 100%;
}

.password-container .password-input {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid #e5e7eb;
    background-color: var(--text-white);
    border-radius: 8px;
    outline: none;
    transition: border 0.2s;
}

.password-input:focus {
    border-color: var(--user-secondary);
}
.otp-time h5 {
    font-size: 1rem;
    color: var(--secondary-text);
    font-weight: 500;
}
.password-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 7px;
}

.password-wrapper input {
    font-size: 0.875rem;
    font-weight: 400;
    border: 1px solid #e5e7eb;
    /* background-color: #f2f1f1; */

    height: 36px;
    padding: 8px 10px;
    border-radius: 6px;
    margin-top: 0;
    outline: none;
    color: var(--secondary-text);
}

.toggle-eye {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    font-size: 0.875rem;
}
.forgot-password {
    display: flex;
    align-items: center;
    justify-content: end;
}
.forgot-password a {
    display: inline-block;
    text-transform: capitalize;
    color: var(--secondary-text);
    font-size: 0.985rem;
}

/* Suggestion Modal  */

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.modal-head {
    font-size: 1.5rem;
}
.modal-para {
    font-size: 0.875rem;
}
.popup-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: clamp(100px, 95%, 450px);
    position: relative;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}
.suggestionUser {
    margin-top: 25px;
}
.suggestionUserbloc {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.suggestionUserbloc .suggestion {
    position: relative;
    padding: 8px 16px;
    border-radius: 6px;
    color: var(--secondary-text);
    border: 1px solid var(--secondary-text);
    font-size: 0.95rem;
}
.suggestionUserbloc .suggestion label {
    display: inline-block;
    width: calc(100% - 40px);
    cursor: pointer;
}
.suggestionUserbloc .suggestion input[type="radio"] {
    display: none;
}
.suggestionUserbloc .suggestion .radio-buttton {
    height: 19px;
    width: 19px;
    border: 2px solid var(--secondary-text);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}
.suggestionUserbloc .suggestion .radio-buttton::after {
    content: "";
    width: 11px;
    height: 11px;
    background-color: var(
        --secondary-text
    ); /* Change this for selected color */
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
}
.suggestionUserbloc .suggestion:has(input[type="radio"]:checked) {
    background-color: var(--user-tertiary);
    color: var(--user-primary);
    border: 1px solid var(--user-primary);
}
.suggestionUserbloc .suggestion input[type="radio"]:checked + .radio-buttton {
    border: 2px solid var(--user-primary);
}
.suggestionUserbloc
    .suggestion
    input[type="radio"]:checked
    + .radio-buttton::after {
    background-color: var(--user-primary);
}

.userSuggestion-modal {
}
.default-btn-box {
    display: flex;
}
.default-btn-box .main-btn {
    background-color: var(--user-primary);
    color: var(--text-white);
    display: inline-block;
    border: none;
    padding: 8px 16px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
}
.default-btn-box .link {
    color: var(--secondary-text);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}
.default-btn-box .link svg {
    color: var(--secondary-text);
    margin: 0px 5px;
    /* width: 15px; */
}
.color-primary {
    color: var(--user-primary) !important;
}

/* Forgot Password  */
.forgot-password-page {
    background-color: var(--user-tertiary);
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.default-card {
    width: clamp(100px, 95%, 500px);
    padding: 30px 60px;
    background-color: var(--text-white);
    border-radius: 10px;
}
.forgot-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}
.default-card .logo {
    width: clamp(100px, 100%, 180px);
    margin-bottom: 30px;
}
.default-card .logo img {
    
    height:70px;
    display: inline-block;
}
.card-detail .card-head {
    font-size: 1.25rem;
    color: var(--main-text);
}
.card-detail .card-para {
    font-size: 0.875rem;
    color: var(--secondary-text);
}
.button {
    display: flex;
}
.button button {
    background-color: var(--user-primary);
    color: var(--text-white);
    display: inline-block;
    border: none;
    width: clamp(100px, 100%, 300px);
    padding: 10px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
}

/* DASHBOARD CSS  */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    padding-right: 30px;
    z-index: 99999;
}

.topbar .logo {
    width: 180px;
}
.topbar .logo img {
    display: inline-block;
    height: 60px;
}

.topbar .topbar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.topbar .topbar-btn .search {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 30px;
    background-color: var(--light-blue);
}
.topbar .topbar-btn .search i {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--medium-blue);
    opacity: 0.4;
}
.topbar .topbar-btn .search input {
    width: 100%;
    margin-left: 15px;
    color: var(--secondary-text);
    font-size: 0.875rem;
    background-color: transparent;
    border: none;
    font-weight: 400;
    width: 250px;
}
.topbar .topbar-btn .search input:focus {
    outline: none;
}

.topbar .topbar-btn .topbar-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.topbar .topbar-btn .setting {
    background-color: var(--light-blue);
}
.topbar .topbar-btn .setting i {
    color: var(--medium-blue);
}
.topbar .topbar-btn .topbar-button-icon {
    line-height: 0 !important;
}
.topbar .topbar-btn .topbar-button-icon i {
    font-size: 1.5rem;
    font-weight: 500;
}
.topbar .topbar-btn .notification {
    background-color: var(--user-tertiary);
}
.topbar .topbar-btn .notification i {
    color: var(--user-primary);
}
.topbar .topbar-btn .notification a {
    position: relative;
}
.topbar .topbar-btn .notification a span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--user-tertiary);
    font-size: 0.55rem;
    top: 2px;
    right: 0px;
    background-color: var(--user-primary);
    color: var(--text-white);
}
.topbar .topbar-btn .profile {
    position: relative;
}
.topbar .topbar-btn .profile .profile-ui {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 15px;
    text-decoration: none;
    cursor: pointer;
}
.topbar .topbar-btn .profile .profile-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.topbar .topbar-btn .profile .profile-photo i {
    font-size: 1.5rem;
    color: var(--medium-blue);
}
.topbar .topbar-btn .profile .identi .name {
    color: var(--main-text);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0px;
}
.topbar .topbar-btn .profile .identi .acc-type {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--secondary-text);
    text-align: center;
    margin-bottom: 0px;
}
.topbar .topbar-btn .profile .arrow i {
    font-size: 1rem;
    transform: rotate(-90deg);
    font-weight: 600;
    color: var(--secondary-text);
    transition: all 0.1s ease;
}
.profile-dropdown {
    display: none;
    position: absolute; /* optional, for positioning */
    top: 100%; /* below the profile-ui */
    right: 0;
    background: white;
    box-shadow: 0 0px 8px rgb(0 0 0 / 10%);
    padding: 12px 0px;
    border-radius: 8px;
    z-index: 999;
    width: 180px;
    transition: all 0.2s ease-in-out;
}
.profile-dropdown ul {
    margin: 0;
    padding: 0;
}
.profile-dropdown ul li {
    list-style: none;
}
.profile-dropdown ul li a {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    padding: 8px 10px;
    color: var(--main-text);
    font-weight: 400;
    text-decoration: none;
}
.profile-dropdown ul li a:hover {
    background-color: var(--user-tertiary);
    color: var(--user-primary);
}
.profile-dropdown ul li a:hover svg {
    color: var(--user-primary);
}
.profile-dropdown ul li a:hover img {
    filter: inherit;
    opacity: 1;
}
.border-btn {
  padding: 8px 20px;
  border: 1px solid var(--user-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  width: fit-content;
  color: var(--primary);
  text-decoration: none;
}
.profile-dropdown ul li a svg {
    height: 22px;
    width: 22px;
    color: var(--secondary-text);
    margin-right: 10px;
}
.profile-dropdown ul li a img {
    height: 18px;
    filter: invert(1) brightness(0);
    opacity: 0.65;
    margin-right: 10px;
}
.profile:hover .profile-dropdown {
    display: block;
}

.profile.active .profile-dropdown {
    display: block;
}

.profile.active .arrow i {
    transform: rotate(0deg) !important;
}
.profile:hover .arrow i {
    transform: rotate(0deg) !important;
}
.chat-icon {
    position: fixed;
    bottom: 50px;
    right: 20px;
    background: var(--user-secondary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}

.dropdown {
    display: none;
}
.dropdown li {
    padding: 15px 35px;
    font-size: 0.875rem;
}
.dropdown li:hover {
    background-color: var(--user-tertiary);
    color: var(--user-primary);
}
.has-dropdown i {
    transform: rotate(-90deg);
    font-size: 0.85rem;
}
.has-dropdown.open i {
    transform: rotate(0deg);
    transform-origin: center center;
    bottom: 5px;
}
.toggle-btn {
    display: none !important;
    font-size: 24px;
    cursor: pointer;
    display: inline-block;
    width: 24px;
    height: 2px;
    border-radius: 1px;
    background-color: var(--secondary-text);
    position: relative;
}
.toggle-btn::after,
.toggle-btn::before {
    position: absolute;
    content: "";
    height: 2px;
    border-radius: 1px;
    background-color: var(--secondary-text);
    transition: all 0.2s ease;
}
.toggle-btn::before {
    width: 20px;
    top: -5px;
}
.toggle-btn::after {
    width: 16px;
    top: 5px;
}
.active-toggle {
    visibility: hidden;
}
.active-toggle::before {
    width: 20px !important;
    transform: rotate(45deg);
    top: 0;
    visibility: visible;
}
.active-toggle::after {
    width: 20px !important;
    transform: rotate(-45deg);
    top: 0;
    visibility: visible;
}

/* Side for lg  size */
.sidebar-icononly {
    width: 66px;
    background-color: var(--text-white);
    color: var(--secondary-text);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    overflow: visible;
    border-right: 1px solid #eee;
    padding: 10px;
    padding-top: 80px;
    transition: all 0.2s ease;
    z-index: 9999;
}

.sidebar-icononly ul {
    list-style: none;
    padding: 0;
}

.sidebar-icononly li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 0;
    cursor: pointer;
    transition: all 0.1s ease-in;
    position: relative;
    border-bottom: 1px solid var(--text-white);
    border-radius: 8px;
    transition: all 0.1s ease;
}
/* .active-sidebar li {
  justify-content: flex-start;
} */
/* .sidebar-icononly li.has-dropdown {
  padding: 10px 8px;
} */
.sidebar-icononly li img {
    width: 16px;
    filter: brightness(0) invert(0);
    opacity: 0.75;
}
.sidebar-icononly li:hover a {
    color: var(--user-primary);
}
.sidebar-icononly li:hover img {
    filter: brightness(1) invert(0);
    opacity: 1;
}
.sidebar-icononly li:hover {
    background-color: var(--user-tertiary);
    color: var(--user-primary);
}
.sidebar-icononly li.active img {
    filter: brightness(0) invert(1);
    opacity: 1;
}
.sidebar-icononly li.active {
    background-color: var(--user-primary);
    color: var(--text-white);
}
.sidebar-icononly li.main-tab::before {
    position: absolute;
    content: "";
    display: none;
}
.sidebar-icononly li svg {
    width: 21px;
    height: 20px;
}

/* Sidebar for xl size */
.active-sidebar {
    width: 230px;
    background-color: var(--text-white);
    color: var(--secondary-text);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: visible;
    padding: 80px 0px 0px 0px !important;
    border-right: 1px solid #eee;
}

.active-sidebar ul {
    list-style: none;
}

.active-sidebar li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.1s ease-in;
    position: relative;
    border-bottom: 1px solid var(--text-white);
    border-radius: 0px !important;
}
.active-sidebar li.main-tab::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 80%;
    top: 50%;
    transform: translateY(-50%);
    left: -4px;
    border-radius: 2px;
    background-color: var(--text-white);
    display: block !important;
}
.active-sidebar li svg {
    width: 21px;
    height: 20px;
    margin-right: 10px;
}
.active-sidebar li img {
    width: 16px;
    filter: invert(1) brightness(0);
    opacity: 0.65;
    margin-right: 7px;
}
.active-sidebar li:hover {
    background-color: var(--user-tertiary);
    color: var(--user-primary);
}
.active-sidebar li:hover img {
    filter: invert(0) brightness(1);
    opacity: 1;
}

.active-sidebar li.active {
    background-color: var(--user-primary);
    color: var(--text-white);
}
.active-sidebar li.active img {
    filter: brightness(0) invert(1);
    opacity: 1;
}
.close-sidebar {
    display: none;
}

/* Explore Events  */

.event-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--text-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--text-white);
}
.event-card .img {
    width: 100%;
    position: relative;
}
.event-card .img img {
    display: inline-block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.event-card .img .pin-data {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(217, 217, 217, 0.5);
    display: flex;
    align-items: center;
    color: var(--text-white);
    padding: 6px 8px;
    border-radius: 20px;
    font-size: 0.875rem;
    border: 1px solid var(--text-white);
}
.live-event{
    background: #F3207D !important;
background: linear-gradient(45deg, rgba(243, 32, 125, 1) 0%, rgba(56, 43, 109, 0.99) 100%) !important;
border:  none !important;
}
.live-event span{
    width: 10px;
    height: 10px;
    background-color: var(--text-white);
    border-radius: 50%;
}
.event-card .img .pin-data span {
    display: inline-block;
    font-size: 0.875rem;
    margin-right: 4px;
}
.event-card .img .pin-data svg {
    width: 20px;
    height: 20px;
    color: #fff;
    margin-right: 5px;
}
.event-card .img .pin-data img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    margin-right: 5px;
}
.event-card .content {
    padding: 15px;
}
.add-data {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.add-data .data {
    display: flex;
    align-items: center;
}
.add-data .data span {
    display: inline-block;
    font-size: 0.875rem;
}
.add-data .data svg {
    width: 16px;
    height: 16px;
    color: var(--user-primary);
    margin-right: 5px;
}
.add-data .data img {
    width: 16px;
    margin-right: 5px;
}
.add-data .date span {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--secondary-text);
}
.event-card .content .title {
    font-size: 1rem;
    text-align: start;
    color: var(--main-text);
    margin: 10px auto;
}
.event-card .other-option {
    padding: 15px;
    border-top: 1px solid var(--text-light);
    margin-top: auto;
}
.default-button {
    display: flex;
    align-items: center;
    justify-content: center;
}
.default-button .btn {
    background-color: var(--user-primary);
    color: var(--text-white);
    text-decoration: none;
    display: inline-block;
    border: none;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.1s ease-in-out;
}
.default-button .btn svg {
    color: var(--text-white);
    width: 22px;
    margin-right: 3px;
}
.default-button .btn img {
    width: 22px;
}
.default-button .btn:hover {
    background-color: var(--user-secondary);
    color: var(--text-white);
}
.default-button .link {
    background: none;
    border: none;
}
.default-button .link svg {
    color: var(--secondary-text);
    width: 20px;
    height: 20px;
}
.setion-title-underline {
    position: relative;
    padding: 10px 0px;
    text-align: start;
    font-size: 1.25rem;
    font-family: Roboto;
    font-weight: 500;
    color: var(--secondary-text);
    margin-bottom: 30px;
}
.setion-title-underline::after {
    position: absolute;
    content: " ";
    width: 50px;
    height: 2px;
    border-radius: 3px;
    background-color: var(--user-primary);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.left-side::after {
    position: absolute;
    content: " ";
    left: 0 !important;
    transform: translateX(0) !important;
}
/* Explore Course  */

.course-card {
    width: 100%;
    height: 100%;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.slider-item .course-card {
}
.course-image {
    position: relative;
    border-radius: 8px 8px 0px 0px;
    overflow: hidden;
    width: 100%;
}
.slider-item .course-image {
    border-radius: 8px 8px 0px 0px;
}
.course-image img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    height: 180px;
    object-fit: cover;
}
.slider-item .course-image img {
    height: 180px;
    object-fit: cover;
}
.black-overlay {
    position: absolute;
    content: " ";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 9;
    top: 0;
    left: 0;
}
.badge {
    padding: 8px 12px;
    position: absolute;
    top: 10px;
    left: 0;
    border-radius: 0px 6px 6px 0px;
    z-index: 99;
}
.badge span {
    color: #fff;
    display: inline-block;
    font-size: 0.875rem;
}
/* .triangle-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 99;
}
.triangle-badge span {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    position: relative;
    display: inline-block;
    z-index: 99;
}
.triangle-badge .bg-triangle {
    position: absolute;
    content: " ";
    width: 150px;
    height: 150px;
    z-index: 9;
    top: -100px;
    left: -90px;
    transform: rotate(320deg);
} */
.bg-free {
    background-color: #16a34a;
}
.bg-paid {
    background-color: #dc3545;
}

.course-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    text-align: left;
}

.course-topic {
    font-weight: bold;
    color: #d63031;
    margin-bottom: 5px;
}

.course-date,
.course-time {
    background-color: #2d3436;
    color: #fff;
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 4px;
    display: inline-block;
    margin-right: 5px;
}

.course-body {
    padding: 15px;
    width: 100%;
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    z-index: 999;
    border-radius: 0px 0px 10px 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.slider-item .course-body {
}
.course-org {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.course-org-name {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-text);
}

.course-org-name img {
    width: 24px;
    margin-right: 8px;
}
.course-detail-badge-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 7px;
}
.normal-badge {
    border: 1.5px solid var(--text-light);
    padding: 5px 7px;
    font-size: 0.875rem;
    border-radius: 6px;
    color: var(--secondary-text);
    font-weight: 500;
    display: flex;
    gap: 5px;
}
.normal-badge svg {
    width: 20px;
    color: var(--user-primary);
    margin-right: 3px;
}
.normal-badge img {
    width: 18px;
}

.course-title {
    font-size: 1.075rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--main-text);
    margin-top: 10px;
    text-align: start;
}

.course-subtitle {
    font-size: 0.875rem;
    color: var(--secondary-text);
    text-align: start;
}
.read-more {
    text-align: start;
    margin-top: auto;
}
.read-more a {
    color: var(--user-primary);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}
.read-more a:hover {
    text-decoration: none;
}
.read-more a img {
    height: 10px;
}

.read-more:hover {
    text-decoration: underline;
}
.course-detail-card .detail {
    display: flex;
    align-items: baseline;
    gap: 15px;
}
.course-detail-card .detail .img img {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.course-detail-card .detail .data .name {
    font-size: 1.1rem;
    color: var(--main-text);
    text-align: start;
}
.course-detail-card .detail .data .desc {
    font-size: 0.95rem;
    color: var(--secondary-text);
    text-align: start;
}
.course-status {
    display: flex;
    align-items: center;
    gap: 25px;
}
.course-status .enroll {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 500;
    gap: 10px;
    color: var(--text-green);
}
.course-status .enroll svg {
    width: 22px;
    color: var(--text-green);
}
.count-course {
    font-size: 1rem;
}
.count-course span {
    display: inline-block;
    font-weight: 500;
}
.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}
.rating .star svg {
    width: 22px;
    color: #fec300;
}
.quiz-card {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--text-light);
    height: 100%;
    background-color: var(--text-white);
}
.quiz-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.premium-badge {
    padding: 3px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: var(--bglight-green);
    color: var(--text-green);
    border: 1px solid var(--text-green);
    border-radius: 20px;
    font-size: 0.875rem;
}
.premium-badge svg {
    color: var(--text-green);
    width: 14px;
}

.event-data {
    border: 1px solid var(--user-tertiary);
    border-radius: 3px;
    overflow: auto;
}
.secondary-table {
    border: 1px solid #dee2e6;
}
.event-data .table {
    display: table;
}
.event-data table tr th {
    background-color: var(--user-tertiary);
    color: var(--secondary-text);
    padding: 10px 15px;
    font-family: Roboto !important;
    font-size: 1rem;
    text-transform: capitalize;
    font-weight: 600;
    text-align: left;
}
.secondary-table table tr th {
    background-color: var(--user-secondary);
    color: var(--text-white);
    font-weight: 500;
}
.event-data table tr td {
    color: var(--secondary-text);
    padding: 10px 15px;
    font-family: Roboto !important;
    font-size: 0.875rem;
    text-transform: capitalize;
    font-weight: 500;
    text-align: left;
    vertical-align: middle;
    max-width: 200px;
    /* white-space: nowrap; */
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
}

.event-data td button {
    width: 30px;
    height: 30px;
    background-color: var(--user-tertiary);
    border-radius: 3px;
    border: 1px solid var(--user-primary);
    margin: 5px 5px;
}
.event-data td button.deleteBtn {
    background-color: var(--bglight-red);
    border: 1px solid var(--text-red);
}
.event-data td button.saveBtn {
    background-color: var(--bglight-green);
    border: 1px solid var(--text-green);
}
.event-data td button svg {
    width: 15px;
    height: 15px;
    color: var(--user-primary);
}
.event-data td button.deleteBtn svg {
    color: var(--text-red);
}
.event-data td button.saveBtn svg {
    color: transparent;
    stroke: var(--text-green);
}

.pagination {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
}
.pagination button {
    padding: 7px 12px;
    border: none;
    background-color: var(--user-tertiary);
    color: var(--user-primary);
    cursor: pointer;
    font-size: 0.875rem;
    border-radius: 3px;
}

.pagination button.disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.pagination button.active {
    background-color: var(--user-primary);
    color: var(--text-white);
}

.complete,
.ongoing,
.coming,
.cancel {
    padding: 4px;
    font-size: 0.75rem;
    width: 80px;
}
.complete {
    padding: 4px;
    width: 90px;
    background-color: rgba(40, 167, 70, 0.1);
    color: #28a745;
    border-radius: 3px;
    font-weight: 400;
    font-size: 0.875rem;
    text-align: center;
}
.cancel {
    padding: 4px;
    display: inline-block;
    width: 90px;
    background-color: rgba(220, 53, 70, 0.1);
    color: #dc3545;
    border-radius: 3px;
    font-weight: 400;
    font-size: 0.875rem;
    text-align: center;
}
.coming {
    padding: 4px;
    display: inline-block;
    width: 90px;
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border-radius: 3px;
    font-weight: 400;
    font-size: 0.875rem;
    text-align: center;
}
.ongoing {
    padding: 4px;
    display: inline-block;
    width: 90px;
    background-color: rgba(251, 177, 59, 0.1);
    color: #fbb03b;
    border-radius: 3px;
    font-weight: 400;
    font-size: 0.875rem;
    text-align: center;
}
.slick-dots {
    display: none !important;
}
.slick-track {
    display: flex !important;
    align-items: stretch !important;
    margin:0 !important;
    justify-content:start !important;
}
.slick-slide {
    height: auto !important;
}
.slider-item {
    padding: 10px;
}
.slick-arrow {
    position: absolute;
    z-index: 999;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(217, 217, 217, 0.5);
    border: none;
    color: var(--text-white);
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease-in-out;
}
.slick-arrow:hover {
    background-color: rgba(217, 217, 217, 0.95);
}
.slick-prev {
    left: -20px;
}
.slick-next {
    right: -20px;
}
.banner-slider .slick-arrow {
    background-color: rgba(217, 217, 217, 0.25);
}
.banner-slider .slick-arrow:hover {
    background-color: rgba(217, 217, 217, 0.5);
}
.banner-slider .slick-prev {
    left: 20px;
}
.banner-slider .slick-next {
    right: 20px;
}
.banner-slider .slider-item .banner {
    width: 100%;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.banner-slider .slider-item .banner img {
    height: 320px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.banner-slider .slider-item .banner .about-banner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
}
.banner-slider .slider-item .banner .about-banner .content {
    width: clamp(100px, 90%, 1200px);
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.about-banner .content .title {
    color: var(--text-white);
    font-size: 1.5rem;
}
.about-banner .content .desc {
    color: var(--text-white);
    font-size: 1rem;
}

.profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.profile .info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.info .profile-data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.info .profile-data .name {
    font-size: 1rem;
    color: #4a5a6b;
}
.info .profile-data .designation {
    font-size: 0.875rem;
    color: var(--main-text);
    font-weight: 500;
}
.info .profile-data .desc {
    font-size: 0.8rem;
    color: var(--secondary-text);
    font-weight: 400;
}
.info .profile-img {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.info .profile-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.info .profile-img .edit-img {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #fff;
    background-color: var(--user-primary);
    border-radius: 50%;
    top: 10px;
    left: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info .profile-img .edit-img svg {
    width: 15px;
    color: var(--text-white);
}
.profile .edit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 14px;
    border: 1px solid var(--text-light);
    border-radius: 3px;
    color: var(--main-text);
    background: var(--user-tertiary);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}
.profile .edit svg {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    color: var(--user-primary);
}

.profile-detail {
    border-radius: 8px;
    background-color: var(--text-white);
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.profile-detail .detail-title {
    padding: 10px 24px;
    border-bottom: 1px solid var(--text-light);
}
.profile-detail .detail-title h4 {
    color: var(--user-primary);
    font-size: 1.2rem;
    text-align: start;
    margin: 0;
}
.profile-detail .detail-data {
    padding: 20px 30px;
}

.inputdiv {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    flex-direction: column;
}
.inputdiv label {
    color: var(--main-text);
    font-family: Roboto !important;
    font-weight: 500;
    font-size: 1rem;
}
.inputdiv input,
.inputdiv select {
    padding: 10px 10px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-family: Roboto !important;
    border: 1px solid var(--text-light);
    width: clamp(100px, 100%, 400px);
    margin-top: 7px;
    color: var(--main-text);
}
.inputdiv label span {
    color: var(--text-red);
}
.inputdiv textarea {
    width: 100%;
    margin-top: 7px;
    padding: 10px 10px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-family: Roboto !important;
    border: 1px solid var(--text-light);
    color: var(--main-text);
}
.inputdiv input:focus-visible,
.inputdiv textarea:focus-visible {
    outline: #333;
}
.inputdiv input::placeholder {
    color: var(--placeholder);
}
.radio-box {
    display: flex;
    align-items: center;
    margin-top: 7px;
}
.radio-box input {
    margin: 0;
    margin-right: 10px;
    appearance: none;
    width: 14px;
    height: 14px;
    border: 2px solid #999;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    margin-right: 5px;
    padding: 6px;
}
.radio-box label {
    margin-right: 20px;
    color: var(--secondary-text);
    font-weight: 500;
    font-size: 0.875rem;
}
.radio-box input:checked {
    border-color: var(--user-primary);
    background-color: #fff;
}
.radio-box input:checked::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: var(--user-primary);
    border-radius: 50%;
}
.radio-type-box {
    display: flex;
    align-items: center;
    border: 1px;
    padding: 0px 10px;
    border-right: 1px solid var(--text-light);
}
.radio-type-box label {
    padding: 8px 10px;
    padding-left: 0px;
    margin: 0;
}
.border-radio-box {
    border: 1px solid var(--text-light);
    border-radius: 4px;
}

.submit-button-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.submit-button-box .btn {
    padding: 8px 24px;
    border: 1px solid var(--text-light);
    color: var(--secondary-text);
    font-size: 1rem;
    margin-right: 15px;
    display: flex;
    align-items: center;
}
.submit-button-box .btn svg {
    width: 13px;
    margin-right: 10px;
}
.submit-button-box .btn img {
    width: 16px;
    margin: 0px 8px;
}
.submit-button-box .main-btn {
    border: 1px solid var(--user-primary);
    color: var(--text-white);
    background-color: var(--user-primary);
}
.submit-button-box .third-btn {
    border: 1px solid #1676b3;
    color: var(--text-white);
    background-color: #1676b3;
}
.submit-button-box .third-btn:hover {
    border: 1px solid #1676b3 !important;
    color: var(--text-white) !important;
    background-color: #1676b3 !important;
}
.submit-button-box .btn:hover {
    border: 1px solid var(--text-light);
    color: var(--secondary-text);
}
.submit-button-box .main-btn:hover {
    border: 1px solid var(--user-primary);
    color: var(--text-white);
    background-color: var(--user-primary);
}

/* CROPPER TOOL CSS  */
#cropContainer {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#cropContainer img {
    max-width: 90vw;
    max-height: 80vh;
}
#cropActions {
    margin-top: 10px;
    text-align: center;
}
.reg-data {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}
.reg-data .label {
    font-size: 1rem;
    color: var(--main-text);
    font-weight: 600;
    margin-bottom: 0;
}
.reg-data .data {
    font-size: 0.875rem;
    color: var(--secondary-text);
}
.quiz {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.quiz-wrap {
    width: 100%;
}
.quiz-number {
    color: var(--user-primary);
    margin-bottom: 0;
}
.quiz-question {
    font-size: 1rem;
    color: var(--secondary-text);
    margin: 15px 0px;
    text-align: start;
}
.answere {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}
.answere .radio-element {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 16px;
    border-radius: 6px;
    background-color: var(--text-white);
    color: var(--main-text);
    border: 1px solid var(--text-light);
}
.answere .radio-element input[type="radio"] {
    display: none;
}
.answere .radio-element label {
    display: inline-block;
    width: 100%;
    text-align: start;
    font-size: 0.95rem;
}
.answere .radio-element .radio-buttton {
    height: 19px;
    width: 19px;
    border: 2px solid var(--text-light);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
}
.answere .radio-element .radio-buttton::after {
    content: "";
    width: 11px;
    height: 11px;
    background-color: var(--text-white); /* Change this for selected color */
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
}
.answere .radio-element:has(input[type="radio"]:checked) {
    background-color: var(--user-tertiary);
    color: var(--user-primary);
    border: 2px solid var(--user-primary);
}
.answere .radio-element input[type="radio"]:checked + .radio-buttton {
    border: 2px solid var(--user-primary);
}
.answere .radio-element input[type="radio"]:checked + .radio-buttton::after {
    background-color: var(--user-primary);
}
.progress-wrapper {
    position: relative;
    height: 8px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

#progress-bar {
    height: 100%;
    background: #38a169;
    width: 0%;
    transition: width 0.3s ease-in-out;
}

#progress-text {
    font-size: 0.875rem;
    color: var(--main-text);
    font-weight: 500;
}
.scorecard {
    text-align: center;

    background: #fff;
    margin: 30px auto;
}
.score-area {
    width: clamp(100px, 100%, 300px);
    margin-left: 50%;
    transform: translateX(-50%);
}
.scorecard .scorecard-title {
    font-size: 1.25rem;
    color: var(--main-text);
    display: flex;
    align-items: center;
    justify-content: center;
}
.scorecard .scorecard-title img {
    display: inline-block;
    width: 30px;
    margin-right: 10px;
}
.scorecard .scorecard-title span {
    display: inline-block;
    margin-left: 10px;
}
.scorecard .desc {
    font-size: 0.875rem;
    color: var(--secondary-text);
}
.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 100px;
    max-height: 100px;
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3;
}

.circle {
    fill: none;
    stroke: #38a169;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.6s ease;
    transform: rotate(-90deg);
    transform-origin: center;
}

.percentage {
    fill: #38a169;
    font-size: 10px;
    text-anchor: middle;
}
.videodetail {
    border-radius: 0px 0px 10px 10px;
}
.video-title {
    font-size: 1.35rem;
    text-align: start;
    margin-bottom: 15px;
}
.video-bloc .video iframe {
    width: 100%;
    height: 600px;
    margin: 0;
    line-height: inherit;
}
.author-bloc {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.author-bloc .author {
    display: flex;
    align-items: start;
    gap: 15px;
}
.author-bloc .author .img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
}
.author-bloc .author .img img {
    width: 35px;
    height: 35px;
    object-fit: cover;
}
.author-bloc .action {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 45px;
}
.detail .authorname {
    font-size: 1.15rem;
    font-weight: 500;
    text-align: start;
}
.detail .date,.detail .time {
    display: flex;
    gap: 10px;
}
.detail .date img, .detail .time img {
    width: 20px;
}
.detail .date span, .detail .time span {
    font-size: 1rem;
    font-weight: 500;
}
.detail .views {
    padding: 0;
    margin: 0;
}
.detail .views span {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
}
.light-grey-pin {
    background-color: var(--text-light);
    display: flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 20px;
    gap: 7px;
    text-decoration: none;
    color: var(--main-text);
}
.light-grey-pin img {
    height: 15px;
}
.about-video {
    padding: 10px;
    border-radius: 8px;
    background-color: var(--user-tertiary);
}
.about-video ul li {
    list-style: none;
    text-align: left;
    color: var(--main-text);
}

.comment-box {
    display: flex;
    align-items: flex-start;
    border: 1px solid var(--text-light);
    border-radius: 6px;
    width: 100%;
    padding: 00px;
    margin: 15px 0px;
    overflow: hidden;
}
.comment-box .putcomment {
    border: 0;
    background: none;
    width: 40px;
    padding: 10px;
}
.comment-box .inputdiv {
    width: calc(100% - 40px);
}
.comment-box input {
    border: none !important;
    padding: 10px;
    width: 100%;
    margin: 0;
}
.enroll-now-btn {
    position: relative;
    width: 140px;
    height: 40px;
}
.enroll-now-btn button {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 8px 14px;
    background-color: #1676b3;
    color: #fff;
    border: none;
    border-radius: 20px;
    position: relative;
    z-index: 99;
    font-size: 1rem;
    font-weight: 500;
}
.enroll-now-btn button img {
    width: 20px;
    display: inline-block;
}
.backdrop-shadow {
    position: absolute;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 24px;
    background-color: rgba(22, 119, 179, 0.15);
    top: -4px;
    left: -4px;
    z-index: 90;
}
.preview-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.previewbox {
  width: 100%;
  height: 100%;
  min-height: 450px;
  position: relative;
  overflow: hidden;
}
.preview-image {
  width: clamp(100px, 100%, 700px);
  height: auto;
  display: block;
  margin: 10px auto;
}

.dropped-field {
  position: absolute;
  padding: 5px 8px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 4px;
  cursor: grab;
  font-size: 0.9rem;
  user-select: none;
}
.previewbox .header {
  width: 100%;
  padding: 10px;
  border: 1px solid #eeeeeed1;
  border-radius: 10px 10px 0px 0px;
  text-align: start;
}
.previewbox .header h6 {
  color: var(--secondary-text);
  margin: 0;
  font-size: 1.12rem;
}
.previewbox .default-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.border-card-secondary {
  padding: 10px;
  border: 2px dashed var(--text-light);
  border-radius: 12px;
  background-color: var(--text-lightest);
  position: relative;
}
.normal-card-border {
  padding: 15px 20px;
  box-shadow: 1px 2px 4px #eee;
  background-color: var(--text-white);
  border-radius: 10px;
}
.stripes-section {
  padding: 50px 0px;
  background-color: rgba(60, 83, 198, 0.04);
  position: relative;
}
.p-relative-99 {
  position: relative;
  z-index: 99;
}
.stripes-section::after {
  position: absolute;
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../images/banner/stripped-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.HIMS{
    position:relative;
}
.HIMS::after{
      background-image: url(../images/bg/bg-green-hims.png) !important;
}
.org-card {
  padding: 25px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.04);
  height: -webkit-fill-available;
}
.org-card .icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--user-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.yellow .icon {
  background-color: #f2bc00;
}
.light-green .icon {
  background-color: #058d88;
}
.light-purple .icon {
  background-color: #405189;
}
.theme-green .icon {
  background-color: #33b163;
}
.theme-blue .icon {
  background-color: #003466;
}
.org-card .icon img {
  height: 30px;
}
.org-card .title {
  font-size: 1.05rem;
  color: #2d373c;
  margin: 0;
}
.org-card .desc {
  font-size: 0.875rem;
  color: #2d373c;
  text-align: justify;
}
@media screen and (max-width: 1440px) {
    .course-card {
    }

    .course-image {
        border-radius: 0px 0px 10px 10px;
    }

    .course-image img {
    }
    .triangle-badge {
        top: 12px;
        left: 12px;
    }
    .triangle-badge span {
        font-size: 0.875rem;
    }
    .triangle-badge .bg-triangle {
        left: -80px;
        transform: rotate(322deg);
    }
    .course-body {
        padding: 12px;
        width: 100%;
        top: 150px;
        border-radius: 0px 0px 8px 8px;
    }

    .course-org-name {
        font-size: 0.875rem;
    }

    .normal-badge {
        font-size: 0.875rem;
    }
    .normal-badge svg {
        width: 22px;
    }
    .course-title {
        font-size: 1rem;
    }
    .read-more a {
        font-size: 0.875rem;
    }
        .img-card .img {
    width: clamp(10px, 90%, 400px);
    margin: 30px auto;
    margin-bottom: 30px;
}
.info-vector-section {
    padding: 30px 25px;
}
.main-deatil .input-detail {
    margin: 20px auto;
    width: 100%;
    margin-bottom:10px;
}
.main-deatil .button{
    margin:15px auto;
}
}
@media screen and (max-width: 991px) {
    .input-box input,
    .input-box select {
        height: 40px;
    }
    .flex-reverse-column-md {
        flex-direction: column-reverse;
    }
    .img-card .img-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        background: url(../images/vectors/image-bg-mobile.jpg);
        background-size: cover;
    }
    .container-start {
        padding: 0px;
    }
    #login {
        padding: 0;
        height: 100vh;
    }
    .img-card .img {
        width: clamp(10px, 90%, 400px);
        margin: 30px auto;
        margin-bottom: 30px;
    }
    .img-card .important-text {
        background-color: rgba(0, 0, 0, 0.35);
        padding: 30px;
        border-radius: 0px;
    }
    .img-card .important-text h1 {
        font-size: 1.5rem;
    }
    .img-card .important-text h6 {
        font-size: 1rem;
    }
    .login-detail .logo {
        margin: 10px auto;
        width: 200px;
    }
    .main-deatil {
    }
    /* .main-deatil::before {
    position: absolute;
    content: "";
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: rgb(228, 44, 129);
    background: linear-gradient(
      90deg,
      rgba(228, 44, 129, 0.6) 0%,
      rgba(82, 45, 110, 0.7) 100%
    );
    top: -2px;
    left: -2px;
    border-radius: 10px;
    z-index: -1;
  } */
    .main-deatil .static-detail .icon {
        display: none;
    }
    .main-deatil .static-detail {
        max-width: 100%;
    }
    .main-deatil .static-detail .subtitle {
        margin: 12px auto;
        font-size: 1rem;
    }
    .input-box {
        margin-bottom: 15px;
    }
    .main-deatil .input-detail {
        margin: 15px auto;
    }
    .input-bloc input {
        height: 40px;
        margin-top: 0px;
    }
    .input-bloc select {
        height: 40px;
    }
    .input-box input[type="password"] {
        font-size: 1rem;
    }
    .password-wrapper input {
        height: 40px;
    }
    #login::before {
        display: none;
    }
    .main-deatil .button {
        margin: 15px auto;
    }
    .h-md-230 {
        height: 230px;
    }
    .login-detail {
        width: 100%;
        padding: 20px;
        border-radius: 10px;
        justify-content: flex-start;
    }
    .sidebar.show {
        transform: translateX(0);
    }

    .sidebar-icononly {
        transform: translateX(-100%);
    }
    .sidebar-icononly.show {
        transform: translateX(0);
    }
    .toggle-btn {
        display: block !important;
    }
    .topbar .logo img {
        object-fit: cover;
        width: 42px;
        height: 42px;
        object-position: left;
    }
    .topbar .logo {
        width: 50px;
    }
    .container-section {
        padding-left: 10px;
    }
    .course-card {
    }
    .video-bloc .video iframe {
        height: 450px;
    }
}
@media screen and (max-width: 768px) {
    .main {
        padding: 70px 10px 10px 10px;
    }
    #login {
        padding: 0;
    }
    .login .title-area .main-title {
        font-size: 2rem;
    }

    .login .title-area .main-title::before {
        width: 100px;
    }
    .login .title-area .desc {
        font-size: 1rem;
    }
    .extralink h4 {
        font-size: 1.15rem;
    }
    .extralink h4 a {
        font-size: 1.2rem;
    }
    .theme-btn {
        margin-top: 2rem;
    }
    .theme-btn button {
        font-size: 1.12rem;
    }
    .extralink {
        margin-top: 10px;
    }
    .container-login-vector {
        width: 100%;
    }
    .info-vector-section {
        padding: 20px;
        background-color: var(--text-white);
    }
    .img-card .content h1 {
        font-size: 1.75rem;
    }
    .img-card .content h6 {
        font-size: 1rem;
    }
    .img-card .img {
        width: 100%;
        padding: 20px;
        border-radius: 6px;
        margin: 20px auto;
        margin-bottom: 0px;
        background-color: var(--bg-login);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .img-card .img img {
        max-width: 250px;
    }

    .suggestionUserbloc .suggestion {
        padding: 8px;
        font-size: 0.75rem;
    }
    .popup-box {
        margin-top: -150px;
    }
    .default-card {
        padding: 30px 40px;
    }
    .toggle-btn {
        display: block !important;
    }
    .close-sidebar {
        position: absolute;
        display: block;
        right: -30px;
        width: 30px;
        height: 30px;
        border: none;
        top: 80px;
        background-color: var(--text-white);
        border-radius: 0px 3px 3px 0px;
        box-shadow: 2px 0px 8px rgba(0, 0, 0, 0.1);
    }
    .sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 9999;
        background-color: #fff;
        transform: translateX(-100%);
    }
    .topbar .topbar-btn .search {
        padding: 8px 15px;
        border-radius: 6px;
    }
    .topbar .topbar-btn .search input {
        margin-left: 10px;
        width: 175px;
    }
    .topbar .topbar-btn .topbar-button-icon {
        width: 40px;
        height: 40px;
    }
    .topbar-button-icon i {
        font-size: 1.5rem;
    }
    .topbar .topbar-btn .profile .profile-photo {
        width: 40px;
        height: 40px;
    }
    .topbar .topbar-btn .profile .profile-photo i {
        font-size: 1.5rem;
    }
    .topbar .topbar-btn .profile .identi {
        display: none;
    }
    .course-card {
    }
    .course-detail-card .detail {
        flex-direction: column;
        align-items: start;
    }
    .course-status {
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }
    .banner-slider .slider-item .banner img {
        height: 250px;
    }
    .banner-slider .slider-item .banner .about-banner .content {
        width: 95%;
        align-items: center;
        gap: 5px;
    }
    .about-banner .content .desc {
        font-size: 0.875rem;
    }
    .profile {
        flex-wrap: wrap;
    }
    .profile .info {
        gap: 10px;
    }
    .info .profile-img {
        width: 70px;
        height: 70px;
    }
    .info .profile-img img {
        width: 70px;
        height: 70px;
    }
    .video-bloc .video iframe {
        height: 350px;
    }
}
@media screen and (max-width: 520px) {
    .login .title-area .main-title {
        font-size: 1.75rem;
    }
    .img-card .content h1 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    .img-card .img {
        padding: 0px 20px;
    }
    .img-card .img img {
        max-width: 225px;
    }
    .login-detail {
        padding-top: 0;
    }
    .main-deatil .static-detail .title {
        font-size: 1.25rem;
    }
    .container-login-vector {
        margin: 0px auto;
    }

    .input-box label {
        font-size: 1.12rem;
    }
    .input-box input {
        padding: 5px;
        margin-top: 5px;
    }
    .input-box input[type="password"] {
        font-size: 0.875rem;
    }
    .extralink h4 {
        font-size: 1.12rem;
    }
    .extralink h4 a {
        font-size: 1.15rem;
    }
    .password-container {
        gap: 15px;
    }

    .password-container .password-input {
        width: 50px;
        height: 50px;
    }
    .input-bloc input {
        height: 40px;
        margin-top: 0px;
    }
    .modal-head {
        font-size: 1.25rem;
    }
    .default-card {
        padding: 25px 30px;
    }
    .topbar .topbar-btn .topbar-button-icon {
        display: none;
    }
    .topbar .topbar-btn .profile .profile-ui {
        gap: 5px;
        margin-left: 0px;
    }
    .topbar {
        padding: 10px 10px;
        padding-right: 10px;
        gap: 10px;
    }
    .topbar .topbar-btn .profile .profile-ui .arrow {
        display: none;
    }
    .topbar .topbar-btn .search {
        padding: 8px 10px;
    }
    .topbar .topbar-btn .search input {
        width: 150px;
    }
    .container-section {
        padding-left: 0px;
    }
    .card-container {
        padding: 20px 15px;
        border-radius: 10px;
    }
    .banner-slider .slider-item .banner img {
        height: 200px;
    }
    .video-bloc .video iframe {
        height: 270px;
    }
}
@media screen and (max-width: 520px) {
    .topbar .topbar-btn .search input {
        width: 130px;
    }
}
