@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: "assistant";
    src: url("../plugins/Assistant/Assistant-VariableFont_wght.ttf");
}


: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, #2BAED8 0%, #F11CF6 100%);
    --gradient3: linear-gradient(to right, #F07C41 0%, #6D17EF 100%);
    --leftMargin: 40px;
    --rightMargin: 40px;
    --section-gap: 120px;
    --margin-top: 80px;
    --h1: 32px;
    --h2: 28px;
    --h3: 24px;
    --h4: 20px;
    --h5: 16px;
    --h6: 12px;
    --p: 14px;
}

html,
body {
    margin: 0;
    padding: 0;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--darkblue);
    color: var(--white);
    font-weight: 500;
    width: 100%;
    height: 100vh;
    overflow-x: 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;
}

@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);
}

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

::-webkit-scrollbar-thumb {
    background-color: rgb(212,187,251);
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    background-color: #fff;
}
.scroll-container::-webkit-scrollbar-button:increment {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><polygon points="0,0 10,0 5,5" fill="black"/></svg>') no-repeat center center;
    background-size: 6px;
  }
  
  .scroll-container::-webkit-scrollbar-button:decrement {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><polygon points="0,5 5,0 10,5" fill="black"/></svg>') no-repeat center center;
    background-size: 6px;
  }
.navbar-toggler {
    background-color: transparent !important;
    border: none;
    box-shadow: none !important;
    cursor: pointer;
    display: flex;
    --bs-navbar-toggler-padding-x: 0px;
}
.pointer{
    cursor: pointer;
}
.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;
}
.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;
}
.border-background {
    border: 1px solid #66478F;
    background-color: #312244;
    border-radius: 8px;
}
.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;
}
#header-profile-dropdown.menu{
    opacity: 0;
    transition: 0.2s all ease;
    pointer-events: none;
}
#header-profile-dropdown.menu.menu-open{
    opacity: 1;
    pointer-events: auto;
}
.custom-container1{
    padding-left: var(--leftMargin);
    padding-right: var(--rightMargin);
}

@media (max-width: 700px) {
    :root {
        --leftMargin: 10px;
        --rightMargin: 10px;
        --margin-top: 30px
    }
    .custom-container1{
        padding-left: 20px;
        padding-right: 20px;
    }
    #header-profile-dropdown{
        transform: translateX(41%) !important;
    }
}

@media (min-width: 1650px) {
    :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);
    }
}

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

.custom-inner-container {
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 1800px) {
    .logo {
        height: 40px;
    }
}

a {
    text-decoration: none;
}

.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;
}
.fw-900{
    font-weight: 900;
}
.shadow-md {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

#header.nav-wrapper {
    top: 0;
    z-index: 9999;
}

#header.nav-wrapper>div {
    flex-wrap: inherit;
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar .nav-link.active {
    color: var(--white) !important;
    position: relative;
}

.navbar .nav-link.active::before{
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: -3px;
    background: var(--gradient3);
    transition: 0.5s transform ease;
    transform: scale3d(1, 1, 1);
    transform-origin: 100% 50%;
    border-radius: 4px;
}
.navbar-tablist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
.navbar-tablist .tab-item{
display: flex;
align-items: center;
padding: 0px 16px;
gap: 12px;
width: 240px;
height: 48px;
border-radius: 4px;
}
.navbar-tablist .tab-item .tab-link {
    background-color: transparent;
    border: none;
    font-size: 14px;
font-size: 14px;
font-weight: 500;
line-height: 24px;
text-align: left;
color: #666666;
}
.navbar-tablist .tab-item.active{
    background: linear-gradient(278.42deg, #E6744E -39.16%, #6D17EF 79.58%) !important;
    color: white !important;
    /* transition: all ease 1s; */
}
.navbar-tablist .tab-link {
    color: inherit;
}

.navbar-tablist .tab-item.active .tab-link {
    color: white !important;
}
.navbar-tablist .tab-item.active svg path {
    fill: white;
}
.nav-dropdown-card{
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 8px;
gap: 4px;
max-width: 260px;
height: 185px;
border: 1px solid #EEEEEE;
border-radius: 8px;
position: relative;

}
.nav-card-title{
font-size: 14px;
font-weight: 600;
line-height: 24px;
color: #222222;
}
.nav-card-desc{
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;    
    }
    .vertical-line {
        width: 1px;
        height: 100%;
        background-color: #ddd;
      }
      .vertical-line {
        width: 1px;
        height: 100%;
        background-color: #ddd;
      }

.navbar .navbar-nav .nav-link {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    line-height: 24px;
}
.navbar .navbar-nav .nav-link:hover {
    color: var(--white);
}

.nav-wrapper {
    background: #462E6B;
}

.nav-wrapper.wrapped {
    background: #462e6ba4;
    padding-bottom: 1.5rem !important;
}
.app-chip {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    position: absolute;
    width: 46px;
    height: 32px;
    right: 0px;
    top: 0px;
    color: #2263AF;
    background: #D1E6FF;
    border-radius: 0px 12px 0px 8px;
}

 .utility-chip {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    position: absolute;
    width: 72px;
    height: 32px;
    right: 0px;
    top: 0px;
    color: #F07C41;
    background: #FEF2EC;
    border-radius: 0px 12px 0px 8px;
}

 .service-chip {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    position: absolute;
    width: 76px;
    height: 32px;
    right: 0px;
    top: 0px;
    color: #2BAED8;
    background: #EEF8FC;
    border-radius: 0px 12px 0px 8px;
}
@media (max-width: 888px) {
    .dropdown-menu-center {
zoom: 0.8;
}

  }
  @media (max-width: 580px) {
    .dropdown-menu-center {
zoom: 0.6;
transform: translateX(-41%) !important;

}

  }
  @media (max-width: 444px) {
    .dropdown-menu-center {
zoom: 0.5;

}
  }
  .dropdown-menu-center {
left: 50%; /* Position it relative to the left */
transform: translateX(-45%); /* Adjust it back to center */
top: 100%; /* Position it below the button */
margin-top: 10px; /* Optional: Add some spacing between the button and the menu */
position: absolute; /* Required for precise positioning */
}
.navbar-nav .dropdown-menu {
  position: absolute;
}
.dropdown {
position: relative; /* Make the dropdown the positioning context */
}
.logo {
    height: 40px;
}

.signoutButton>img {
    object-fit: cover;
}

.signoutButton a {
    color: var(--white);
}

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

.navbar-toggler .line {
    fill: none;
    stroke: var(--white);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-toggler .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.navbar-toggler .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.navbar-toggler .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.navbar-toggler.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.startedButton {
    width: 150px !important;
    height: 40px;
}

.not-released-o {
    opacity: 0 !important;
    pointer-events: none !important;
}

.not-released-D {
    display: none !important;
}

/* btn hover styles */

.btn-style-1 {
    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-1: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;
}

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

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

/* menu hover*/

.navbar-nav .dropdown .dropdown-menu li {
    padding: 5px 15px;
}

.navbar-nav .dropdown .dropdown-menu li:hover,
.navbar-nav .dropdown .dropdown-menu li.active {
    background: #e0e0e0;
}

.menu a {
    text-decoration: none;
    display: block;
    position: relative;
    padding: 4px 0;
}

.menu a:not(.dropdown-a)::before {
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: -3px;
    background: var(--white);
    transition: 0.5s transform ease;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 50%;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px#3F324E inset !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    caret-color: #fff;
}
.nav-item a:hover::before {
    transform: scale3d(1, 1, 1);
}

.menu-1 a:not(.dropdown-a):before {
    background: var(--gradient3);
    transform-origin: 100% 50%;

}

.menu-1 a:not(.dropdown-a):hover::before {
    transform-origin: 0 50%;
    border-radius: 4px;
}

#searchProvider.dropdown-toggle::after {
    content: unset;
}

#searchProvider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
}

#searchProvider svg {
    margin-top: 2px;
}

/* footer */
footer {
    background: url("/assets/images/footer2.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;
}

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

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

footer .social-links .icon {
    width: 32px;
    height: 32px;
    background: #8538FA33;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    align-items: center;
    transition: var(--transition);
}
footer .social-links .icon i {
    zoom: 90%;
}

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

.footer-links ul li {
    list-style-type: none;
    margin-top: 8px;
}

.footer-links ul li a {
    color: #EDE3FD !important;
    text-decoration: none !important;
    transition: var(--transition);
    font-size: 12px;
}

.footer-text {
    color: #EDE3FD;
    font-size: 12px;
}

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

.copyright {
    background-color: #472B74;
    padding-block: 10px;
}

.copyright p {
    color: white;
    font-size: var(--p);
}


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

.custom-tooltip {
    --bs-tooltip-bg: #130427;
}

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

.searchchannel {
    display: flex;
}
.g_id_signin {
    display: none;
}

@media screen and (max-width: 1199px) {
    .navbar .btn-style-1 {
        display: block;
        margin-left: auto;
        margin-right: auto !important;
        margin-top: 1rem;
    }

    .signoutButton {
        margin-top: 1rem;
    }
}

@media (max-width: 420px) {

    .login-container,
    section,
    nav#header,
    footer {
        zoom: 0.8;
    }
}

.pagination .three-dots span {
    background-color: transparent;
    border: none;
}
.reactive-btn {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
/* Auto layout */
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 8px 16px;
gap: 8px;
width: 200px;
height: 40px;
/* Gradient/1 */
background: linear-gradient(90deg, #F07C41 0.59%, #6D17EF 100.59%);
border-radius: 24px;
}

