/* @font-face {
    font-family: "assistant";
    src: url("../plugins/Assistant/Assistant-VariableFont_wght.ttf");
} */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300&family=Oxanium:wght@200..800&display=swap');

:root {
    --black: rgb(0, 0, 0);
    --darkblue: #110326;
    --blue-500: #312244;
    --white: #FFFFFF;
    --blue-var1: #2BAED8;
    --blue-var2: #1B1B51;
    --blue-var3: #2472E7;
    --orange: #F07C41;
    --secondary: #6914F4;
    --secondary-1: #6D17EF;
    --pink: #F04141;
    --yellow: #F0BF41;
    --darkyellow: #F0B441;
    --purple: #361B51;
    --purple1: #66478F;
    --purple2: #44305F;
    --purple3: #9251F4;
    --purple4: #C661F8;
    --purple5: #B253E3;
    --gradient1: linear-gradient(to right, #6D17EF, #E6744E);
    --gradient2: linear-gradient(to right, rgba(109, 23, 239, 1), rgba(89, 13, 204, 0.21));
    --gradient3: linear-gradient(to right, #F07C41 0%, #6D17EF 100%);
    --leftMargin: 40px;
    --rightMargin: 40px;
    --topMargin: 40px;
    --gapbtwcontainers: 40px;
    --h1: 32px;
    --h2: 28px;
    --h3: 24px;
    --h4: 20px;
    --h5: 16px;
    --h6: 12px;
    --p: 14px;
    --margin-top: 80px;

}

/* Font-size utility classes */
[class^="fs-"] {
    font-size: var(--fs);
  }
  
  /* Define individual font sizes */
  .fs-10 { font-size: 10px; }
  .fs-12 { font-size: 12px; }
  .fs-14 { font-size: 14px; }
  .fs-16 { font-size: 16px; }
  .fs-18 { font-size: 18px; }
  .fs-20 { font-size: 20px; }
  .fs-23 { font-size: 23px; }
  .fs-24 { font-size: 24px; }
  .fs-28 { font-size: 28px; }
  .fs-32 { font-size: 32px; }
  .fs-40 { font-size: 40px; }
  .fs-42 { font-size: 42px; }

@media (min-width: 1500px) {
    :root {
        --leftMargin: calc(40px * 4);
        --rightMargin: calc(40px * 4);
    }
}

@media (min-width: 2000px) {
    :root {
        --leftMargin: calc(40px * 8);
        --rightMargin: calc(40px * 8);
    }
}

@media (min-width: 2500px) {
    :root {
        --leftMargin: calc(40px * 12);
        --rightMargin: calc(40px * 12);
    }
}

html,
body {
    margin: 0;
    padding: 0;
    position: relative;
    font-family: "Oxanium", sans-serif;
    background-color: var(--darkblue);
    color: var(--white);
    width: 100%;
    height: 100vh;
    overflow: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 1px;
}

::-webkit-scrollbar-track {
    background-color: #f2f2f200;
}

@media (min-width: 1800px) and (max-width:2000px) {
    :root {
        --h1: 33px;
        --h2: 29px;
        --h3: 25px;
        --h4: 21px;
        --h5: 17px;
        --h6: 13px;
        --p: 15px;
    }
}

@media (min-width: 2001px) {
    :root {
        --h1: 34px;
        --h2: 30px;
        --h3: 26px;
        --h4: 22px;
        --h5: 18px;
        --h6: 14px;
        --p: 16px;
    }
}

h1,
.h1 {
    font-size: var(--h1);
}

h2,
.h2 {
    font-size: var(--h2);
}

h3,
.h3 {
    font-size: var(--h3);
}

h4,
.h4 {
    font-size: var(--h4);
}

h5,
.h5 {
    font-size: var(--h5);
}

h6,
.h6 {
    font-size: var(--h6);
}

p,
.p {
    font-size: var(--p);
    margin-bottom: 0px;
}

.navbar .navbar-nav .nav-link {
    font-size: var(--h5);
}

.fw-200 {
    font-weight: 200;
}

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

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

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

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

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

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

.pointer {
    cursor: pointer;
}

.elipses-container .ellipses-1 {
    /* Ellipse 23 */
    position: absolute;
    width: 271px;
    height: 271px;
    left: 0px;
    top: 0px;
    background: #6D17EF;
    filter: blur(210px);
    z-index: 1;
}

.elipses-container .ellipses-2 {
    /* Ellipse 21 */
    position: absolute;
    width: 473px;
    height: 473px;
    right: 0px;
    top: 0px;
    background: rgba(240, 124, 65, 0.5);
    filter: blur(210px);
    z-index: 1;
}

.elipses-container .ellipses-3 {
    /* Ellipse 27 */
    position: absolute;
    width: 271px;
    height: 271px;
    left: 1037px;
    top: 814px;
    background: #6D17EF;
    filter: blur(210px);
    z-index: 1;
}

.elipses-container .ellipses-4 {
    /* Ellipse 24 */
    position: absolute;
    width: 271px;
    height: 271px;
    left: 0px;
    top: 960px;
    background: #2BAED8;
    filter: blur(210px);
    z-index: 1;
}

.elipses-container .ellipses-5 {
    /* Ellipse 25 */
    position: absolute;
    width: 271px;
    height: 271px;
    right: 0px;
    top: 1723px;
    background: #F0BF41;
    filter: blur(210px);
    z-index: 1;
}

.main-container {
    position: relative;
    display: flex;
    padding-left: var(--leftMargin);
    padding-top: var(--topMargin);
    padding-right: var(--rightMargin);
    z-index: 2;
}

.custom-container {
    padding-left: var(--leftMargin);
    padding-right: var(--rightMargin);
}

/* footer */
footer {
    background: url("/assets/images/footer-bg.png") no-repeat bottom center;
    background-size: calc(100% + 200px) calc(100% + 15px);
    font-size: 18px;
    padding-left: var(--leftMargin);
    padding-left: var(--rightMargin);
    padding-top: 110px;
    padding-bottom: 80px;
    margin-top: 200px;
    position: relative;
    z-index: 1;
}

#createExperienceButtonX {
    display: none !important;
}

.notification:has(.notification-icon) {
    margin-left: auto !important;
    display: none !important;
}

footer .footer-logo img {
    width: 120px !important;
    height: 40px;
}

footer .social-links i {
    color: #C8C8C8 !important;
    font-size: 18px;
}

footer .social-links .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.123);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    align-items: center;
    transition: var(--transition);
}

footer .social-links .icon:hover {
    background-color: rgba(0, 0, 0, 0.61);
    color: var(--dark);
}

.footer-links ul li {
    list-style-type: none;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 1) !important;
    text-decoration: none !important;
    transition: var(--transition);
    font-size: var(--h5);
}

.footer-text {
    color: rgba(200, 200, 200, 1);
    font-size: 18px;
}

.footer-links ul li a:hover {
    color: var(--orange) !important;
}

.copyright {
    background-color: #1B1B1B;
    padding-block: 10px;
}

.copyright p {
    color: rgba(255, 255, 255, 0.514);
    font-size: var(--p);
}

.max-oneline {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-all;
    overflow: hidden;
}
.max-threeline {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    word-break: break-all;
    overflow: hidden;
}

.custom-tooltip {
    --bs-tooltip-bg: rgba(19, 4, 44, 1);
    z-index: 999999999 !important;
}

.custom-tooltip .tooltip-inner {
    font-weight: 400 !important;
    line-height: 24px;
    text-align: left;
    z-index: 999999999 !important;
}

.custom-tooltip .tooltip-arrow {
    display: none !important;
}

/* side bar */
.wrapper {
    align-items: stretch;
    display: flex;
    width: 100%;
    font-family: "Oxanium", sans-serif;
}

#sidebar {
    max-width: 220px;
    min-width: 200px;
    transition: all 0.35s ease-in-out;
    background-color: rgba(41, 28, 60, 1);
    border: 1px solid rgba(102, 71, 143, 1);
    border-radius: 12px;
    position: fixed;
    z-index: 1000;
    text-decoration: none;
    height: 90vh;
    width: 100%;
}

.sidebar-nav .sidebar-item a {
    font-weight: 400;
}

.sidebar-item .active {
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    background: var(--gradient2);
}

.sidebar-dropdown li {
    margin-top: 6px;
}

.sidebar-dropdown li a {
    /* font-size: 14px; */
    color: #948D9D;
}

.sidebar-dropdown li .active-subitem {
    color: #F07C41;
}
.notifications-on::after{
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: red;
    position: absolute;
    right: 13px;
}
.rating-buttons .rating-container {
    direction: rtl;
  }

  .rating-buttons .rating-btn.active path,
  .rating-buttons .rating-btn:hover path {
    fill: #F0B441;
  }

  .rating-buttons .rating-btn.active .rating-btn path,
  .rating-buttons .rating-btn:hover .rating-btn path {
    fill: #F0B441;
  }
a {
    text-decoration: none;
}

.main-section-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    margin-left: 245px;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
}

.main-content-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    row-gap: var(--gapbtwcontainers);
    overflow-y: auto;
    height: 90vh;
    padding-bottom: 40px;

}

#notification-id {
    z-index: 9999;
}

#notification-id.menu,
#header-profile-dropdown.menu {
    opacity: 0;
    transition: 0.2s all ease;
    pointer-events: none;
}

#notification-id.menu.menu-open,
#header-profile-dropdown.menu.menu-open {
    opacity: 1;
    pointer-events: auto;
}

.main-content-container::-webkit-scrollbar {
    display: none;
}


.sidebar-logo {
    padding: 16px 0 0 16px;
}

.sidebar-logo a {
    color: #e9ecef;
    font-size: 1.25rem;
    font-weight: 600;
}

.sidebar-nav {
    padding: 0;
}

.sidebar-header {
    color: #e9ecef;
    font-size: .75rem;
    padding: 1.5rem 1.5rem .375rem;
}

a.sidebar-link {
    height: 31px;
    padding: 5px 14px;
    color: #e9ecef;
    position: relative;
    font-size: 1rem;
    display: flex;
    align-items: center;
}
.gradient-btn {
    border: 1px solid rgba(0, 0, 0, 0.193);
    padding: 8px 16px 8px 16px;
    border-radius: 40px;
    background: linear-gradient(90deg, #F07C41 0.59%, #6D17EF 100.59%);
    color: white;
}

.gradient-btn:hover {
    border: 1px solid white;
    /* color: var(--orange); */
    box-shadow: 0px 0px 16px 4px #F07C4180;
}

.gradient-btn:hover svg path {
    fill: white;
}
.sidebar-link[data-bs-toggle="collapse"]::after {
    border: solid;
    border-width: 0 .075rem .075rem 0;
    content: "";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: 0.9rem;
    transform: rotate(-135deg);
    transition: all .2s ease-out;
}

.sidebar-link.collapsed[data-bs-toggle="collapse"]::after {
    top: 0.7rem;
    transform: rotate(45deg);
    transition: all .2s ease-out;
}

.content {
    flex: 1;
    max-width: 100vw;
    width: 100vw;
}

.sidebarBtn {
    background-color: transparent;
    border: none;
    display: none;
    font-size: 25px;
    border: 1px solid white;
}

.inputbox-container {
    background-color: #36172A;
    border: 1px solid rgba(240, 124, 65, 0.5);
    border-radius: 88px;
    padding: 8px 16px 8px 16px;
    color: white;
    display: flex;
    align-items: center;
    flex-grow: 1;
    height: 34px;
}

.inputbox-container>i {
    opacity: 60%;
}

.inputbox-container input {
    background-color: transparent;
    border: none;
    outline: none;
    font-size: var(--p);
    font-weight: 600;
    color: white;
    width: 100%;
    padding-left: 10px;
}

.inputbox-container input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-style-2 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--secondary);
    border-radius: 40px;
    color: var(--white);
    font-weight: 700;
    /* box-shadow: inset 0 0 20px rgba(255, 255, 255, 0); */
    outline: 1px solid #8740F2;
    outline-offset: -5px;
    text-shadow: none;
    -webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    width: max-content;
}

.btn-style-2:hover {
    border: 1px solid;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
    outline-offset: 15px;
    outline-color: rgba(255, 255, 255, 0);
    color: var(--white);
    text-shadow: 1px 1px 2px #427388;
}

.btn-style-2:disabled {
    background: var(--secondary);
    border: 1px solid transparent;
}

.btn-darkbutton {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    color: white;
    padding: 7px 16px 7px 16px;
    border-radius: 40px;
    min-width: 118px;
    background-color: #432B40;
    border: 1px solid #574153;
}

.btn-darkbutton:hover {
    border: 1px solid;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
    outline-offset: 15px;
    outline-color: rgba(255, 255, 255, 0);
    text-shadow: 1px 1px 2px #427388;
}

.create-channel-btn {
    width: 200px;
    height: 40px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    background-color: #5A3F4D;
    border-radius: 50%;
    padding: 6.8px 9.5px 6.83px 9.5px;
    flex-grow: 0;
}

.number-of-notifications {
    background-color: #F04141;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    position: relative;
    top: -30px;
    left: 5px;
}

.userimg-container {
    width: 40px;
    height: 40px;
    background-color: #6D17EF;
    border-radius: 50%;
    padding: 0px;
}

.userimg-container>img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profileDropdown a {
    color: rgba(255, 255, 255, 0.5);
}

.profileDropdown a:hover {
    color: var(--orange);
}

.main-section-container .navbar {
    display: flex;
    column-gap: 20px;
    padding: 0px;
    position: sticky;
    z-index: 2;
}

#sidebarClsBtn {
    cursor: pointer;
    display: none;
}

.sideHeader {
    position: relative;
    display: inline-block;
    width: auto;
}

.sideHeader::after {
    position: absolute;
    content: '';
    width: 100%;
    background: var(--gradient1);
    height: 4px;
    display: block;
    margin-top: 8px;
    border-radius: 4px;
}

.border-background {
    border: 1px solid #66478F;
    background-color: #312244;
    border-radius: 8px;
}

.notification .dropdown-toggle::after {
    content: none !important;
}

.notifications-container {
    min-width: 320px;
    padding: 16px;

}

.notifications-container .side-header {
    font-size: var(--p);
    color: var(--darkyellow);
}

.btn-white-border {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 6px 16px;
    border-radius: 24px;
    gap: 8px;
}

.btn-white-border:hover {
    background-color: #ffffff;
    color: #333;
}

.btn-white-border:hover i,
.btn-white-border:hover path {
    fill: #333;
    color: #333;
}

.btn-white-hollow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 24px;
    gap: 8px;
}

.btn-white-hollow:hover {
    background-color: #ffffff;
    color: #333;
}

.user-details-card {
    background-color: #453856;
    border: none;
    height: max-content;
    padding: 16px 16px 6px 16px;
    border-radius: 8px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.main-heading-2 {
    font-size: var(--h4);
    font-weight: 400;
    line-height: 26.16px
}

.main-heading {
    font-size: var(--h1);
    font-weight: 700;
    line-height: 40px;
}

/* HTML: <div class="loader"></div> */
.loader {
    display: none;
    width: 14px;
    aspect-ratio: 1.154;
    --_g: no-repeat radial-gradient(farthest-side, #ffffff 90%, #ffffff00);
    background:
        var(--_g) 50% 0,
        var(--_g) 0 100%,
        var(--_g) 100% 100%;
    background-size: 35% calc(35%*1.154);
    animation: l16 1s infinite;
}

@keyframes l16 {

    50%,
    100% {
        background-position: 100% 100%, 50% 0, 0 100%
    }
}

/* Responsive */

@media (min-width:768px) {
    .content {
        width: auto;
    }

}

@media screen and (min-width:1786px) {
    .main-section-container {
        margin-left: 255px;
    }
}

@media screen and (max-width:1200px) {
    .sidebar-main {
        margin-left: -255px;
    }

    .main-container {
        padding-top: 30px;
    }

    .main-section-container {
        margin-left: 0px;
    }

    .sidebarBtn {
        display: block;
        color: white;
        border: none;
    }

    .sidebar-activation {
        margin-left: -10px;
    }

    #sidebarClsBtn {
        display: block;
    }
}

@media screen and (max-width:700px) {
    :root {
        --leftMargin: 10px;
        --rightMargin: 10px;
        --topMargin: 27px;
        --gapbtwcontainers: 25px;
        --margin-top: 30px;
    }

    .create-channel-btn {
        padding: 6.5px 26px;
        white-space: nowrap;
    }
}

@media screen and (max-width:600px) {
    .channel-btn-txt {
        display: none;
    }

    .create-channel-btn {
        padding: 0;
        border-radius: 50%;
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
    }

    .main-section-container .navbar {
        column-gap: 1.5%;
    }

    .button-container {
        padding: 3px;
        height: 40px;
        min-width: 40px;
        width: 40px;
        border-radius: 50%;
    }

    .main-heading {
        font-size: var(--h3);
        line-height: 18px;
    }

    .main-heading-2 {
        font-size: var(--h5);
        line-height: 15px
    }
}

@media screen and (max-width:450px) {
    .main-section-container .navbar {
        column-gap: 1%;
    }

    .sidebar-activation {
        margin-left: -10px;

    }

    #sidebar {
        border-bottom-left-radius: 0px;
        border-top-left-radius: 0px;
    }

    .main-heading {
        font-size: var(--h5);
    }

    .main-heading-2 {
        font-size: var(--h6);
        line-height: 15px
    }
}