@import url('https://fonts.googleapis.com/css2?family=Amita:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fugaz+One&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

:root {
    --purple: #051049;
    --lightpurple: #626B7F;
    --offwhite: #fbfbfb;
    --white: #ffffff;
    --altwhite: #FFFFFF80;
    --background-white: #fcfcfc;
    --gray: #f4f4f4;
    --lightgray: #c2c6ab;
    --green: #00ff00;
    --red: #ff0000;
    --gold: #ffd700;
    --profile-orange: #EA5B0C;
    --tableshade: #f5f5f5;
    --tableshadehover: #f1f1f1;
    --statusorangebackground: #fffcf0;
    --statusredbackground: #fff0f0;
    --statusgreenbackground: #f2fff9;
    --statusorangecolor: #F3BA2F;
    font-family: 'Poppins', sans-serif;
}

::selection {
    color: var(--white);
    background: var(--purple);
}

/* Target the entire document's scroll bar */
::-webkit-scrollbar {
    width: 7px !important; /* Width of the scrollbar */
}

/* Target the thumb (scroll box) of the scrollbar */
::-webkit-scrollbar-thumb {
    background-color: #051049 !important; /* Background color of the scroll box */
    border-radius: 3px !important; /* Border radius to make it pill-shaped */
}

/* Target the track (background) of the scrollbar */
::-webkit-scrollbar-track {
    background-color: transparent !important; /* Set it transparent for the pill effect */
}


.background-primary {
    background: var(--purple);
}
.background-secondary {
    background: var(--red);
}
.background-gray {
    background: var(--gray);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 98%;
}

#preloaderr-1, #reloaderr, #preloaderr-courses, #preloader-desktop{
   background: url(/assets/img/loading-preview.gif) center center ;  
   position: fixed; 
   width: 100%; 
   height:100vh;
   background-repeat: no-repeat;
   background-size: 25%;
   z-index:12000;
}

#preloaderr-2{
    display:none;
}
.orbitron {
    font-family: 'Orbitron', sans-serif;
}

.cyberrant-nav-logo-small {
    display: none;
}
.cyberrant-nav-logo-big {
    display: block;
}
.referral-banner-mobile {
    display: none;
}
.referral-banner-desktop {
    display: block;
}
ul li {
    margin-top: 5px;
}

.width-0 {
    width: 0% !important;
}
.width-5 {
    width: 5% !important;
}
.width-7 {
    width: 7% !important;
}
.width-8 {
    width: 8% !important;
}
.width-10 {
    width: 10% !important;
}
.width-20 {
    width: 20% !important;
}
.width-25 {
    width: 25%;
}
.width-30 {
    width: 30% !important;
}
.width-40 {
    width: 40% !important;
}
.width-48 {
    width: 48% !important;
}
.width-50 {
    width: 50% !important;
}
.width-55 {
    width: 55% !important;
}
.width-60 {
    width: 60% !important;
}
.width-70 {
    width: 70% !important;
}
.width-80 {
    width: 80% !important;
}
.width-86 {
    width: 86% !important;
}
.width-87 {
    width: 87% !important;
}
.width-90 {
    width: 90% !important;
}
.width-95 {
    width: 95% !important;
}
.width-97 {
    width: 97% !important;
}
.width-100 {
    width: 100% !important;
}
.max-width-40 {
    max-width: 40% !important;
}
.max-width-45 {
    max-width: 45% !important;
}
.max-width-100 {
    max-width: 100% !important;
}


.margin-x-auto {
    margin-left: auto;
    margin-right: auto;
}
.margin-y-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}
.margin-y-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}
.margin-top-10 {
    margin-top: 10px;
}
.margin-top-20 {
    margin-top: 20px;
}
.margin-top-30 {
    margin-top: 30px;
}
.margin-left-30 {
    margin-left: 30px;
}
.text-align-right {
    text-align: right;
}

.display-none {
    display: none;
}
.display-flex-vertical-center {
    display: flex;
    align-items: center;
}
.display-flex-space-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.display-flex-space-around {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.display-flex-space-between-align-flex-start {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.display-flex-space-evenly {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.display-flex-gap-2 {
    display: flex;
    align-items: center;
    gap: 2%;
}
.display-grid {
    display: grid;
    align-items: center;
    grid-template-columns: auto auto;
    gap: 2%;
}
.display-grid-80-20 {
    display: grid;
    align-items: center;
    grid-template-columns: 80% 20%;
}
.display-grid-75-25 {
    display: grid;
    align-items: center;
    grid-template-columns: 72% 25%;
    gap: 3%;
}
.display-grid-30-70 {
    display: grid;
    align-items: center;
    grid-template-columns: 30% 70%;
}
.display-grid-20-70 {
    display: grid;
    align-items: center;
    grid-template-columns: 020% 70%;
}
.select-new-rant div{
       display: grid;
    grid-template-columns: 45% 90%;
    align-items: center;
    gap: 20px;
}

.display-grid-50-50 {
    display: grid;
    align-items: center;
    grid-template-columns: auto auto;
}
.display-grid-50-50-gap-3 {
    display: grid;
    align-items: center;
    grid-template-columns: auto auto;
    gap: 3%;
}
.display-grid-50-50-align-start-gap-3 {
    display: grid;
    align-items: start;
    grid-template-columns: auto auto;
    gap: 3%;
}
.input-width-48 {
    width: 48%;
}
.input-width-100 {
    width: 100%;
}
.font-size-smallest{
    font-size: 12px;
}
.font-size-16{
    font-size: 16px;
}
.font-weight-600{
    font-weight: 600;
}
.float-left {
    float: left;
}
.float-right {
    float: right;
}
.position-relative {
    position: relative;
}
.position-sticky {
    position: sticky;
    top: 0;
    background: var(--background-white);
    z-index: 10000 !important;
}
.position-sticky-z-index-11000 {
    position: sticky;
    top: 0;
    background: var(--background-white);
    z-index: 11000 !important;
}
.position-sticky-top-10 {
    position: sticky;
    top: 10%;
    background: var(--background-white);
    /*z-index: 10000 !important;*/
}
.settings-position-sticky-top-10 {
    position: sticky;
    top: 10;
    background: var(--background-white);
    z-index: 10000 !important;
}
.settings-position-filter{
    padding:20px 10px 10px;
     position: sticky;
     top:-10px;
    background: var(--background-white);
    z-index: 10000 !important;
}
.back-btn-profile{
    padding: 5px 20px 10px;
 margin-right:5px;
}
.profile-tab{
  position: sticky;
    top: 18%;
    background: var(--background-white);
    z-index: 11000 !important;
    padding: 10px;
}

.profile-details span{
    margin-right:10px;
}
.position-sticky-top-0{
     position: sticky;
    top: 00%;
    background: var(--background-white);
    z-index: 11000 !important;
}
.position-sticky-top-30 {
    position: sticky;
    top: 5%;
    background: var(--background-white);
    z-index: 11000 !important;
}
.position-sticky-top-32 {
    position: sticky;
    top: 32%;
    background: var(--background-white);
    z-index: 11000 !important;
}
.position-sticky-top-35-5 {
    position: sticky;
    top: 35.5%;
    background: var(--background-white);
    z-index: 11000 !important;
}
.profile-user{
     position: sticky;
  
    background: var(--background-white);
    z-index: 11000 !important;
        top:10%;
    }
.position-sticky-top-5 {
    position: sticky;
    top: 5%;
    background: var(--background-white);
    z-index: 10000 !important;
}
.border-radius-5 {
    border-radius: 5px;
}
.border-radius-10 {
    border-radius: 10px;
}
.border-radius-50px {
    border-radius: 50px !important;
}
.profile-orange-div{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.profile-orange-div-1{
     display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px
}

.profile-orange-div-1 i {
    cursor:pointer;
    color:midnightblue;
}
.profile-img-div img{
       width: 45px;
    height: 45px;
    margin: 0 5px;
}

.profile-img-div div div:nth-child(1){
    display: flex;
    flex-direction:row;
    gap:5px
    
}
.border-radius-50 {
    border-radius: 50%;
}
.border-bottom-2px-dotted-primary {
    border-bottom: 2px dotted var(--purple);
    color: var(--purple) !important;
}


.cursor-pointer {
    cursor: pointer;
}
/*.cursor-pointer:hover {*/
/*    transform: scale(1.13);*/
/*}*/
.color-white {
    color: var(--white);
}
.color-red {
    color: var(--red);
}
.color-purple {
    color: var(--purple) !important;
}
.border-color-alt-white {
    border-color: var(--altwhite) !important;
}
.color-alt-white {
    color: var(--altwhite) !important;
}
.color-light-purple {
    color: var(--lightpurple);
}
.color-light-purple:hover {
    color:red !important;
}
.color-lightgray {
    color: var(--lightgray);
}
.bg-orange {
    background: #c9c9c9 !important;
    padding:50px;
}

.text-transform-capitalize {
    text-transform: capitalize;
}
.text-ident-10 {
    text-indent: 30px;
}
.error_text {
    color: var(--red);
    text-shadow: 2px 2px 8px var(--altwhite);
    letter-spacing: 1.13px;
    font-size: 14px;
    font-family: 'Amita', cursive;
    /* font-weight: 700; */
    font-style: italic;
}
/* .align-center {
    display: table-cell;
    vertical-align: middle ;
} */


.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  z-index: 100;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--lightpurple);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--lightpurple);
}

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

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.pop-up-container-div {
    /* border: 2px solid gold; */
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 20%;
    /* background: red; */
    z-index: 100003;
}
.pop-up-blur-div {
    width: 100%;
    height: 100%;
    /* background: yellow; */
    backdrop-filter: blur(3px);
}
.pop-up-content-div {
    position: inherit;
    top: 50%;
    left: 50%;
    translate:-50%;
    width: 600px;
    height: auto;
    padding: 50px 30px;
    background: var(--gray);
    z-index: 100004;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: none;
    outline: none;
    border-radius: 5px;
    box-shadow: 0px 0px 3px 0px var(--lightgray);

}

.nav-menu {
    position: fixed;
    padding-top: 20px;
    height: 100vh;
    overflow-y: hidden;
    align-items: center;
    width: 20%;
    background: var(--purple);
    color: var(--lightpurple);
    font-size: 16px;
    font-weight: 600;
}
scalable-img {
    transition: 0.3s ease-out;
}
scalable-img:hover {
    cursor: pointer;
    transition: 0.3s ease-in;
    transform: scale(1.3);
}

.nav-menu h2 {
    color: var(white);
}

.nav-top-notifications-div {
    position: absolute;
    right:5%;
    /*border: 2px solid gold;*/
    border-radius: 10px;
    color: var(--white);
    margin-top: 10px;
    /*margin-left: -90px;*/
    /*margin-left: -320px;*/
    margin-left: -37vw;
    /*padding: 5px;*/
    background: var(--lightpurple);
    /*background: var(--purple);*/
    z-index: 11001 !important;
    width: 45vw;
    /*width: auto;*/
    max-height: 70vh;
    overflow-y: auto;
    max-width: 45vw;
}
.nav-top-notifications-div div div {
    font-size: 14px;
    padding: 5px;
}
.nav-top-notifications-div-read {
    cursor: pointer;
    /*background: var(--purple) !important;*/
    background: var(--lightpurple) !important;
}
.nav-top-notifications-div-read:hover {
    background: var(--purple) !important;
}
.nav-top-notifications-div-unread {
    cursor: pointer;
    background: var(--purple) !important;
    /*background: var(--lightpurple) !important;*/
}
/*.nav-top-notifications-div-unread:hover {*/
/*    background: var(--lightpurple) !important;*/
/*}*/
/*.nav-top-notifications-div div div:hover {*/
/*    cursor: pointer;*/
    /*background: var(--purple);*/
/*    background: var(--lightpurple);*/
/*    border-radius: 10px;*/
    /*border-top-left-radius: 0px;*/
    /*border-top-right-radius: 0px;*/
/*}*/

.fa-bell-div:before {
    /*top: 10px;*/
    /*left: -10px;*/
    font-size: 14px;
    top: -10px;
    left: 2px;
    /*content: '3';*/
    content: attr(data-content);
    text-align: center;
    width: 20px;
    height: 20px;
    position: absolute;
    background: var(--red);
    color: var(--gray);
    /* padding: 0px 6px; */
    border-radius: 50vmax;
}

.list-items {
    padding-top: 50px;
}

.list-items ul {
    margin: 0 30px;
    padding:0;
}
.list-items ul li {
    cursor: pointer;
    text-align: left;
    padding: 10px 15px;
    margin: 2px 0;
}
.list-items ul li span{
    font-size:12px
    
}
}
.list-items ul li i {
    padding-right: 5px;
     font-size:12px
}
.list-items ul li:hover {
    width: 100%;
    border-radius:5px;
    background: #0d1a5b;
    
}
.list-items ul .selected, .list-items ul .selected:hover {
    width: 100%;
    border-radius:5px;
    background: var(--background-white);
}
.right-container {
    position: fixed;
    right: 0;
    background: var(--background-white);
    width: 80%;
    height: 100vh;
    overflow-y: auto;
}
.right-top-section {
    padding: 10px 15px 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.right-top-section-first {
    position: relative;
    padding-left: 10px;
    width: 100%;
}
.right-top-section input {
    width: 100%;
    border: none;
    outline: none;
   
    border-radius: 5px;
    padding: 10px 0 10px 5px ;
    

}
.right-top-section input:placeholder {
    color: var(--lightgray);
}
.right-top-section-image img {
    border-radius: 50px;
}
.profile_img {
    border-radius: 50px;
    width:40px;
    height:40px;
}

.right-top-section-end {
    /*padding-right: 0px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    gap:15px
}
.right-top-section-end i {
    font-size: 26px;
}
.search-bar{
    position:relative;
    width:60%;
    border:solid 1px #051049;
    border-radius:5px;
    /*top:10px;*/
}


.search-icon {
    position: absolute;  
    padding: 7px 12px 7px 0;
    right: 0%;
    top: 12%;
}
.eye-icon {
    position: absolute;  
    padding: 10px 10px;
    right: 0%;
    color: var(--altwhite);
    /* background-color: red; */
    /* background-blend-mode: darken; */
}
.eye-icon:hover {
    cursor: pointer;
    scale: 1.3;
}
.password_input {
    padding-right: 40px !important;
}

.first-section {
    padding: 10px 32px 5px;
}
.settings-first-section {
    padding: 10px;
}
.welcome-message {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
}
.referral-banner {
    color: white;
    background: var(--purple) !important;
    padding: 10px 20px;
    width: 100%;
    border-radius: 7px;
    box-shadow: 0.5px 0.5px 3px 0px var(--lightgray);
    transition: 0.3s ease-out;
}
.referral-banner-intro-text {
    padding: 20px 0;
    font-size: 14px;
}
.top-right-cancel-button {
    width: 100%;
    text-align: right;
}
.top-right-cancel-button span {
    border: 2px solid var(--white);
    padding: 0px 8px;
    border-radius: 500px;
}
.top-right-cancel-button span:hover {
    background: var(--white);
    color: var(--purple);
    cursor: pointer;
}
.cta-button-1 {
    background: var(--white);
    color: var(--purple);
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
}
.cta-button-1:disabled {
    opacity: 0.5;
    cursor: no-drop;
}
.cta-button-1:enabled:hover {
    background: var(--red);
    color: var(--white);
    cursor: pointer;
    outline: none;
    box-shadow: 0.5px 0.5px 1px 0px var(--lightpurple);
}
.cta-button-2 {
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    background: var(--red);
    color: var(--white);
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: 0.5px 0.5px 1px 0px var(--lightpurple);
    transition: all .3s ease;
    
}
.cta-button-2:disabled {
    opacity: 0.5;
    cursor: no-drop;
}
.cta-button-2:enabled:hover {
    background: var(--purple);
    color: var(--white);
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: 0.5px 0.5px 1px 0px var(--lightpurple);
    transition: all .3s ease;
  
}
.cta-button-3 {
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    background: var(--purple);
    color: var(--white);
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: 0.5px 0.5px 1px 0px var(--lightpurple);
    transition: all .3s ease;
}
.cta-button-3:disabled {
    opacity: 0.5;
    cursor: no-drop;
}
.cta-button-3:enabled:hover {
    background: var(--red);
    color: var(--white);
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: 0.5px 0.5px 1px 0px var(--lightpurple);
    transition: all .3s ease;
}
.select-1 {
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
   
    background:#051049;
    color: var(--white);
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: 0.5px 0.5px 1px 0px var(--lightpurple);
    transition: all .3s ease;
}
.select-1:hover{
     background: var(--lightpurple);
     
}
.select-1:focus {
    /*background: var(--purple);*/
     /*background: var(--lightpurple);*/
}
.referral-banner-grid {
    display: grid;
    grid-template-columns: auto auto;
}
.overview-cont{
    justify-content:center;
   margin:0 auto;
    /*width: 100%;*/
   text-align:center;
    /*column-gap: 30px;*/

}
.overview {
    padding-bottom: 30px;
}
.overview .overview-p {
    padding-top: 10px;
    padding-bottom: 5px;
    /* border: 1px solid gold; */
}

.overview-p {
    font-weight: 600;
}

.overview-cardboards {
   justify-content:center;
   /*margin:0 auto;*/
    /*width: 100%;*/
   /*text-align:center;*/
    column-gap: 30px;
    /*place-items: middle;*/
}

.overview-cardboards-2 {
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 50px;
    place-items: middle;
}
.overview-cardboards-2 div p i {
    color: var(--red);
}
.overview-cardboards div p i {
    color: var(--red);
}
.referral-bonus, .new-signals, .new-nofifications {
    display: flex;
    align-items: center;
}

.signals-cardboard {
    background: var(--white);
    padding: 10px 20px;
    width: 100%;
    border-radius: 7px;
    box-shadow: 0.5px 0.5px 3px 0px var(--lightgray);
    transition: 0.3s ease-out;
}
.signals-cardboard:hover {
    background: var(--purple);
    color: var(--white);
    transition: 0.3s ease-in;
    transform: scale(1.03);
    box-shadow: 1px 1px 4px 0.5px var(--lightgray);
}
.signals-cardboard:hover h2 {
    color: var(--white) !important;
}

.overview-cardboards .cardboard-1, .overview-cardboards .cardboard-2, .overview-cardboards .cardboard-3{
  background: var(--white);
    padding: 20px 15px;
    width: 100%;
    border-radius: 7px;
    box-shadow: 0.5px 0.5px 3px 0px var(--lightgray);
    transition: 0.3s ease-out;
    margin: 20px auto;
}
.overview-cardboards .cardboard-1:hover , .overview-cardboards .cardboard-2:hover , .overview-cardboards .cardboard-3:hover {
    background: var(--purple);
    color: var(--white);
    transition: 0.3s ease-in;
    box-shadow: 1px 1px 4px 0.5px var(--lightgray);
}
.overview-cardboards .cardboard-1:hover , .overview-cardboards .cardboard-2:hover , .overview-cardboards .cardboard-3:hover h2 {
    color: var(--white) !important;
}

.overview-cardboards-2 .cardboard-1, .overview-cardboards-2 .cardboard-2 {
    background: var(--white);
    padding: 10px 20px ;
    width: 100%;
    border-radius: 7px;
    box-shadow: 0.5px 0.5px 3px 0px var(--lightgray);
    transition: 0.3s ease-out;
}
.overview-cardboards-2 .cardboard-1:hover , .overview-cardboards-2 .cardboard-2:hover {
    background: var(--purple);
    color: var(--white);
    transition: 0.3s ease-in;
    transform: scale(1.05);
    box-shadow: 1px 1px 4px 0.5px var(--lightgray);
}
.overview-cardboards-2 .cardboard-1:hover , .overview-cardboards-2 .cardboard-2:hover h2 {
    color: var(--white) !important;
}

.course-progress .cardboard-1 p:nth-child(1), .course-progress .cardboard-2 p:nth-child(1) {
    font-weight: 600;
}
.course-progress .cardboard-1, .course-progress .cardboard-2 {
    width: 100%;
    padding-bottom: 20px;
}

.p-value {
    padding: 10px 0;
    font-weight: 600;
    font-size: 26px;
}
.p-complementary-text {
    padding: 10px 0;
    font-weight: 300;
    font-size: 14px;
}
.text-and-graph-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.arrow-green, .arrow-green i {
    font-weight: bold;
    color: var(--green) !important;
}
.arrow-red {
    font-weight: 600;
    color: var(--red) !important;
}
.text-decoration-none {
    text-decoration: none;
}
.text-and-graph-indicator a {
    text-decoration: none;
}
.progress-bar-border {
    width: 100%;
    border-radius: 50px;
    box-shadow: 0.5px 0.5px 3px 0px var(--lightgray);
}
.progress-bar {
    border-radius: 50px;
    padding: 7px;
    width: 82%;
    background: radial-gradient(var(--red), var(--gold));
}
.progress-bar-2 {
    border-radius: 50px;
    padding: 7px;
    width: 33%;
    background: radial-gradient(var(--red), var(--gold));
}
.table-div {
    width: 100%;
}
.dashboard-table {
    max-height: 400px;
    overflow-y: auto;
}
.signals-table {
    max-height: 600px;
    overflow-y: auto;
}
.signal-selection-div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray);
    border-radius: 10px;
    padding: 2px;
        margin: 0 auto;
}
.signal-selection-div div {
    padding: 5px;
    width: 50%;
    text-align: center;
    font-weight: 600;
    border-radius: 10px;
}
.signal-selection-div div:hover {
    cursor: pointer;
    background-color: #bfbfbf;
    border-radius: 3px;
}
.signal-selection-div .selected {
    background-color: var(--background-white);
   
}
.signal-selection-div .selected:hover {
    background-color: var(--background-white);
}

table {
    width: 100%;
    border-spacing:0 15px;
}
table thead {
    position: sticky;
    top: 0;
    width:100%;
}
thead th {
    /* font-size: 1.2rem; */
    font-weight: bold;
    background: var(--tableshade);
    padding: 10px;
}
table td {
    text-align: center;
}
table tbody tr {
    background: var(--tableshade);
}
table tbody tr td:nth-child(2) {
    font-weight: bold;
    text-align: left;
    padding: 20px;
    padding-left: 50px;
}
.signal-type-buy {
    margin-left: 0;
    text-align: left;
    text-transform: uppercase;
    color: var(--green);
}
.signal-type-sell {
    text-align: left;
    text-transform: uppercase;
    color: var(--red);
}
.signal-color-ongoing {
    color: var(--gold);
    /* transition: 1s ease-in-out; */   
}
.signal-color-failed {
    color: var(--red);
    /* transition: 1s ease-in-out; */   
}
.signal-color-success {
    color: var(--green);
    /* transition: 1s ease-in-out; */   
}
.signal-status-ongoing {
    background: var(--statusorangebackground);
    padding: 5px;
    border-radius: 10px;
    color: var(--gold);
    /* transition: 1s ease-in-out; */   
}
.signal-status-failed {
    background: var(--statusredbackground);
    padding: 5px;
    border-radius: 10px;
    color: var(--red);
    /* transition: 1s ease-in-out; */   
}
.signal-status-success {
    background: var(--statusgreenbackground);
    padding: 5px;
    border-radius: 10px;
    color: var(--green);
    /* transition: 1s ease-in-out; */   
}
.signal-status-sell {
    background: var(--statusredbackground);
    padding: 5px;
    border-radius: 10px;
    color: var(--red);
    /* transition: 1s ease-in-out; */   
}
.signal-status-buy {
    background: var(--statusgreenbackground);
    padding: 5px;
    border-radius: 10px;
    color: var(--green);
    /* transition: 1s ease-in-out; */   
}

.cancel-x-btn {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    padding: 0 !important;
}

.seemore-btn-p {
    width: 100%;
    text-align: right;
    padding: 15px;
}
.seemore-btn {
    padding: 8px;
    border: none;
    outline: none;
    border-radius: 5px 20px 20px 10px;
    background: var(--white);
    color: var(--purple);
    /* background-color: var(--red); */
    box-shadow: 1px 1px 3px 0px var(--lightgray);
    cursor: pointer;
    transition: 0.2s ease-out;
}
.back-btn {
     border-radius: 25px 5px 5px 25px !important;
 }
.seemore-btn:hover {
    transition: 0.2s ease-in;
    background: var(--red);
    color: var(--white);
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: 0.5px 0.5px 1px 0px var(--lightpurple);
    /* box-shadow: -0.5px -0.5px 3px 0px var(--lightgray); */
}
.setting-profile {
    font-size: 20px;
}
.setting-profile span {
    font-size: 14px;
    font-weight: 300;
}

.setting-intro-section div:nth-child(1){
    width:60%;
}
.setting-intro-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 2px;
    border-radius:3px;
}
.setting-intro-section div button:nth-child(1) {
   
    padding: 10px;
    border-radius: 20px 5px 10px 20px;
    
}

.signal-feature{
    width:95%;
    margin:0 auto;
    display:flex;
    justify-content:flex-end;
    gap:30px
}
.setting-intro-section div button:nth-child(2) {

    padding: 10px;
    border-radius: 5px 20px 20px 10px;
}
.settings-second-section {
    width: 85%;
    padding: 0 32px;
    /* border: 2px solid yellow; */
}
.settings-second-section-notifications {
    width: 100%;
    padding: 0 32px;
    /* border: 2px solid yellow; */
}

.settings-display-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 ;
}
.settings-left-section {
    width: 40%;
}
.settings-right-section {
    width: 60%;
}
.input-type-1 {
    border: none;
    outline: none;
    box-shadow: 0px 0px 3px 0px var(--lightgray);
    border-radius: 5px;
    padding: 8px;
    transition: all ease-in 0.3s;
    margin-right:3px;
}
.input-type-1:hover {
    box-shadow: 0px 0px 3px 0px var(--purple);
    background: var(--offwhite);
    transition: all ease-out 0.3s;
}
.input-type-1:focus {
    box-shadow: 0px 0px 3px 0px var(--red);
    background: var(--tableshadehover);
    transition: all ease-out 0.3s;
}
.input-type-1:placeholder {
    color: var(--lightgray);
}
.edit-icon:hover {
    cursor: pointer;
    transform: scale(1.13);
}
.courses-second-section {
    width: 95%;
    margin: 0 auto;
    /* padding: 0 32px; */
    padding: 0;
  
}
.courses-display-flex {
    display: grid;
    grid-template-columns: 60% 36%;
    /*gap: 4%;*/
    align-items: flex-start;
    justify-content: space-between;
    /* border: 2px solid yellow; */
    padding: 5px 20px;
}
.rant-display-flex {
    grid-template-columns: 70% 30% !important;
}
.rant-display-flex-60-40 {
    grid-template-columns: 60% 40% !important;
}
.courses-left-section {
    width: 100%;
    /* border: 2px solid yellow; */
}
.courses-right-section {
    width: 100%;
    /* border: 2px solid yellow; */
    margin: 0 auto;
    position: sticky;
    top: 20%;
    z-index: 10001;
    height: auto;
    max-height: 58vh;
    padding-bottom: 10px;
    overflow-y: auto;
}
.courses-ul li::marker {
    /*content: 'ðŸ"¥ ';*/
    content: '🔥 ';
}
.courses-left-container-main-content {
    /* border: 2px solid yellow; */
    height: auto;
    padding-bottom: 10px;
    max-height: 58vh !important;
    overflow-y: auto !important;
}
.video-width-100 {
    width: 100%;
}
.course-thumbnails {
    width: 70px;
    border-radius: 7px;
}

.hover-follow{
    position:relative
}
.hover-follow-popUp{
    display:none;
    position: absolute;
    top:2px;
    left:25px;
   
    
}
.hover-follow:hover .hover-follow-popUp{
    display:block;
   transition: all ease-out 0.3s;
   color:grey;
}

.rant-two-dot-div {
    position: absolute;
   
    border-radius: 10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    color: var(--white);
    margin-top: 115px;
    margin-left: -75px;
    /*padding: 5px;*/
    background: var(--lightpurple);
    z-index: 9000;
}
.rant-two-dot-div div {
    /*font-weight: 600;*/
    padding: 10px 22px;
}
.rant-two-dot-div div:hover {
    cursor: pointer;
    background: var(--purple);
    border-radius: 10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.rant-profile-image {
   height: 40px;
    width: 40px;
    border-radius: 100vmax;
}
.private-rant-profile-image {
    height: 40px;
    width: 40px;
    border-radius: 100vmax;
}
.rant-right-section {
    /*width: 100%;*/
    /* border: 2px solid yellow; */
    margin: 0 auto;
    position: sticky;
    top: 20%;
    /*z-index: 10001;*/
    height: auto;
    max-height: 465px;
    padding-bottom: 80px;
    overflow-y: auto;
}

.rant-single-left-container-main-content {
    /* border: 2px solid yellow; */
    height: auto;
    /*padding-bottom: 10px;*/
    /*max-height: 465px !important;*/
    max-height: 80vh !important;
    overflow-y: auto !important;
}
.rant-left-container-main-content {
    /* border: 2px solid yellow; */
    height: auto;
    padding-bottom: 10px;
    /*max-height: 465px !important;*/
    max-height: 65vh !important;
    overflow-y: auto !important;
}
.new-rant-message-icon {
    position: fixed;
    bottom: 5%;
    right: 2%;
    display:flex;
    flex-direction: column;
    align-items:center;
    z-index:1;
}
.new-mesg-btn{
    width:50px;
    height:50px;
    border-radius:100%;
}

.rant-float-message-icon svg:hover {
      transform: translate(-1%,-1%);
      transition: all ease-out 0.3s;
}

.register-pop-up-div {
    width: 100%;
    height: 100%;
    top: 0;
    /*left: 20%;*/
    position: fixed;
    z-index: 10005; 
    overflow: hidden;
}
.register-pop-up-blur-div {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(3px);
}
.register-pop-up-content-div {
    background-color: white;
    border-radius: 20px;
    box-shadow: 2px 2px 2px 3px var(--gray);
    position: fixed;
    top: 50%;
    left: 50%;
    /* transform: translateX(-50%);
    transform: translateY(-50%); */

    transform: translate(-50%,-50%);

    /* translate:-50%; */
    width: 40vw;
    /*height: 60vh;*/
    height: auto;
    max-height: 60vh;
    /* border: 2px solid gold; */
    z-index: 10006 !important;
}
.register-pop-up-text {
    padding: 20px;
}

.rant-time-posted{
    margin-bottom:20px;
}

.rant-pop-up-div {
    width: 100%;
    height: 100%;
    top: 0;
    left: 20%;
    position: fixed;
    z-index: 10005; 
    overflow: hidden;
}
.rant-pop-up-blur-div {
    width: 100%;
    height: 100%;
    /*backdrop-filter: blur(3px);*/
}
.rant-pop-up-content-div {
    background-color: white;
    border-radius: 20px;
    box-shadow: 2px 2px 2px 3px var(--gray);
    position: fixed;
    top: 60%;
    /*right:50%;*/
    left:50%;
    padding: 10px;
    transform: translate(-50%,-50%);
     width: 50%;
    height: auto;
    /* border: 2px solid gold; */
    z-index: 11001 !important;
    max-height: 80vh;
    overflow-y: auto;
}
.rant-pop-up-text {
    padding: 20px;
}
.register-div input:enabled {
    background: transparent !important;
    border: none;
    outline: none;
    box-shadow: none;
    color: var(--white) !important;
    border-bottom: .5px solid var(--altwhite);
    border-radius: 0px;
    padding-left: 0;
}
.register-div input::placeholder {
    color: var(--altwhite) !important;
}
.register-div input::selection {
    background: var(--white);
    color: var(--purple);
}

.rant-comment:enabled {
    background: transparent !important;
    border: none;
    outline: none;
    font-size: 14px;
    box-shadow: none;
    
    border-bottom: .5px solid var(--purple);
    border-radius: 0px;
    padding-left: 0;
    height: 16px;

}

.rant-comment::placeholder {
    /*color: var(--altwhite) !important;*/
    
}
.rant-comment::selection {
    background: var(--purple);
    color: var(--white);
}

.existing-comments-section-div {
    max-height: 30vh;
    overflow-y: auto;
}
.general-rant-delete-btn{
    display: none;
}
.rant-image-div {
    width: 75%;
    margin: 0 auto;
}
.rant-image {
    border-radius: 5px !important;
    width:100%;
}


/* PADDINGS START */

.padding-3 {
    padding: 3px !important;
}
.padding-5 {
    padding: 5px !important;
}
.padding-7 {
    padding: 7px !important;
}
.padding-8 {
    padding: 8px 0px !important;
}
.padding-10 {
    padding: 10px !important;
}
.padding-20 {
    padding: 20px !important;
}
.padding-30 {
    padding: 30px !important;
}
.padding-40 {
    padding: 40px !important;
}
.padding-50 {
    padding: 50px !important;
}
.padding-60 {
    padding: 60px !important;
}
.padding-x-10 {
    padding-left: 10px;
    padding-right: 10px;
}
.padding-x-15 {
    padding-left: 15px;
    padding-right: 15px;
}
.padding-x-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.padding-y-1 {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
}
.padding-y-3 {
    padding-top: 3px;
    padding-bottom: 3px;
}
.padding-y-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.padding-y-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.padding-y-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.padding-y-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.padding-y-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.padding-y-150 {
    padding-top: 150px;
    padding-bottom: 150px;
}
.padding-y-200 {
    padding-top: 200px;
    padding-bottom: 200px;
}
.padding-bottom-10 {
    padding-bottom: 10px;
}


/* PADDINGS END */


/* MARGINS START */

.mx-auto {
    margin: 0 auto !important;
}
.mt--75 {
    margin-top: -75px !important;
}
.mt--95 {
    margin-top: -95px !important;
}


/* MARGINS END */   


/* Z-INDEX START */

.z-index-11000 {
    z-index: 11000 !important;
}


/* Z-INDEX END */   


.lecture-active {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 7px;
    padding: 10px;
}

.existing-comments-section {
    /*padding: 5px 0;*/
    padding-left: 30px;
}
.existing-comments-section:before {
    content: "";
    position: relative;
    top: 55px;
    left: -30px;
    /*width: 10px;*/
    /*height: 50px;*/
    background: var(--lightpurple);
    /*border: 2px solid var(--red);*/
    padding: 35px 1.5px;
}


.private-rant-container {
    background-color: white;
    border-radius: 20px;
    box-shadow: 2px 2px 2px 3px var(--gray);
    position: fixed;
    bottom:1%;
    right: 2%; 
    padding: 10px;
    width: 40%;
    height: auto;
    z-index: 11001 !important;
    max-height: 80vh;
    overflow-y: auto;
}


.private-rant-container-messages {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

.private-rant-container::-webkit-scrollbar {
    width: 2px !important; /* Width of the scrollbar */
}

.private-rant-container p, .private-rant-container a {
    font-size: 12px;
}
.private-rant-container span {
    font-size: 13px;
}

.private-rant-container-welcome {
    background: var(--purple);
    color: var(--white);
}

.private-rant-date-format {
    font-size: 10px;
    font-style: italic;
    font-family: cursive;
}

.receiver-text {
    font-size: 13px;
    /*width: 60%;*/
    width: 70%;
    height: auto;
    /*float: left;*/
    background: var(--gray);
    /*padding: 7px;*/
    padding: 10px;
    border-radius: 10px;
    margin-top: 5px;
}

.receiver-text:after {
    content: "";
    /*bottom: 12px;*/
    /*bottom: 22px;*/
    bottom: 19px;
    left: -75%;
    position: relative;
    background: transparent;
    height: 0px;
    width: 0px;
    /* border-top: 5px solid red; */
    /*border-left: 26px solid transparent;*/
    border-left: 15px solid transparent;
    /* border-right: 5px solid blue; */
    /*border-bottom: 20px solid var(--gray);*/
    border-bottom: 30px solid var(--gray);
    z-index: -1;
}

.sender-text {
    font-size: 13px;
    /*width: 60%;*/
    width: 70%;
    /*width: 100%;*/
    height: auto;
    /*float: right;*/
    background: var(--lightpurple);
    color: var(--white);
    /*padding: 7px;*/
    padding: 10px;
    border-radius: 10px;
    /*margin-left: 40%;*/
    margin-left: 30%;
    margin-top: 5px;
}

.sender-text:after {
    content: "";
    /*bottom: 22px;*/
    /*right: -31%;*/
    bottom: 19px;
    right: -23%;
    position: relative;
    background: transparent;
    height: 0px;
    width: 0px;
    /* border-top: 5px solid red; */
    /*border-left: 26px solid transparent;*/
    border-right: 15px solid transparent;
    /* border-right: 5px solid blue; */
    /*border-bottom: 20px solid var(--gray);*/
    border-bottom: 30px solid var(--lightpurple);
    z-index: -1;
}

.private-rant-message-body {
    height: 55vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0px 0px 3px 0px var(--lightgray);
}
.private-rant-message-body::-webkit-scrollbar {
    width: 1px !important; /* Width of the scrollbar */
}

/*.rant-likes-display-div {*/
/*    position: absolute;*/
    /*top: 50vh;*/
    /*top: 48vh;*/
    /*top: 52vh;*/
    /*top: 340px;*/
/*    bottom: 100px;*/
    /*border: 2px solid gold;*/
/*    border-radius: 10px;*/
/*    padding: 0 15px;*/
/*    color: var(--white);*/
/*    background: var(--white);*/
    /*background: var(--background-white);*/
/*    font-size: 14px;*/
/*    box-shadow: 2px 2px 3px -3px var(--purple) !important;*/
/*    z-index: 9000;*/
/*    max-height: 200px;*/
/*    overflow-y: auto;*/
/*}*/

.rant-likes-display-div {
    position: relative;
    border-radius: 10px;
    padding: 0 15px;
    color: var(--white);
    background: var(--white);
    /*background: var(--background-white);*/
    font-size: 14px;
    box-shadow: 2px 2px 3px -3px var(--purple) !important;
    z-index: 9000;
    max-height: 200px;
    overflow-y: auto;
}

.rant-likes-display-div::-webkit-scrollbar {
    width: 1px !important; /* Width of the scrollbar */
}

.rant-likes-display-div:before {
    content: "";
    top: -25px;
    /*right: 20px;*/
    right: 25px;
    position: absolute;
    background: transparent;
    height: 0px;
    width: 0px;
    /* border-top: 5px solid red; */
    /*border-left: 26px solid transparent;*/
    border-right: 81px solid transparent;
    border-top: 33px solid var(--background-white);
    z-index: -1;
}

.slide-in-right-message {
    position: fixed;
    right: -100%;
    top: 10vh;
    background: var(--purple);
    color: var(--background-white);
    padding: 15px;
    width: auto;
    border-radius: 10px;
    max-width: 60vw !important;
    z-index: 1;
}

/*320px - 480px - Mobile devices */
/*481px - 768px - iPads, Tablets*/
/*769px - 1024px - Small Screens, laptops*/
/*1025px - 1200px - Desktops, Large screens*/
/*1201px - ++ - Extra large screens & TVs*/
/*493px - My Xaiomi Redmi Note 10S*/



/*Media Query for mobile and tablets*/
@media (min-width:320px) and (max-width:767px) {
    /*strong {*/
    /*    color: green;*/
    /*}*/
    
    /* p{
        background: red !important;
    } */
    
     #reloaderr {
   background: url(/assets/img/loading-preview.gif) center center ;  
   position: fixed; 
   width: 100%; 
   height:100vh;
   background-repeat: no-repeat;
   background-size: 75%;
   z-index:12000;
}
    #preloaderr-2, #reloaderr {
    display:block;
    background: url(/assets/img/loading-preview.gif) center center ;  
   position: fixed; 
   width: 100%; 
   height:100vh;
   background-repeat: no-repeat;
   background-size: 75%;
   z-index:12000;
}
 
    .padding-mobile-y-10 button {
        padding:5px;
        width:50px;
         font-size:10px;
    }
    
   .profile-details{
    max-width:200px;
}
.profile-img-div img{
    width:35px;
    height:35px;
    margin: 0 2px;
}
.profile-details span{
    margin-right:5px;
    font-size:smaller;
}
.profile-orange-div{
    gap:0px
}

   .profile-tab{
    top: 10%;
}
    .register-pop-up-content-div {
        width: 80vw;
        /*height: 65vh;*/
        height: auto;
        max-height: 65vh;
    }
        
    .fa-bell-div:before {
        /*top: 10px;*/
        /*left: -10px;*/
        font-size: 14px;
        top: 15px;
        left: -6px;
        /*content: '3';*/
        content: attr(data-content);;
        text-align: center;
        width: 20px;
        height: 20px;
        position: absolute;
        background: var(--red);
        color: var(--gray);
        /* padding: 0px 6px; */
        border-radius: 50vmax;
    }

    .display-mobile-none {
        display: none !important;   
    }
    
    .display-mobile-block {
        display: block !important;   
    }
    .notifications-feature{
        padding-bottom:120px;
    }
    .display-mobile-inline {
        display: inline !important;
    }
    
    .float-mobile-right {
        float: right;
    }
    
    .nav-top-notifications-div {
        /*margin-top: 25px;*/
        margin-top: 1%;
        /*margin-left: -305px;*/
        margin-left: -72.5vw;
        width: 90vw;
        max-width: 90vw;
    }
    
    .settings-second-section {
         width: 100%; 
         padding: 0 16px 50px; 
        /* border: 2px solid yellow; */
    }
    
    .settings-second-section .input-type-1 {
        padding: 10px;
        /*margin: 12px 0;*/
    }
    
    .settings-second-section p {
        font-size: 16px;
    }
    
       .settings-left-section {
        width: 100%;
        display: flex;
        gap: 20px;
    }
    
    .settings-second-section .eye-icon {
        /*padding: 30px 10px !important;*/
    }
    
    .settings-right-section {
        width: 100%;
    }

    .width-mobile-15 {
        width: 15% !important;
    }
    .width-mobile{
      
        margin: 0 auto;
    }
    .width-mobile-20 {
        width: 20% !important;
    }
    .width-mobile-35 {
        width: 35% !important;
    }
    .width-mobile-40 {
        width: 40% !important;
    }
    .margin-right-10{
        margin-right:10px;
        width:60%;
    }
    .width-mobile-50 {
        width: 50% !important;
    }
    .width-mobile-80 {
        width: 80% !important;
    }
        .width-mobile-100 {
        width: 100% !important;
        padding: 20px 0;
    }
        .width-mobile-100 {
        width: 100% !important;
        padding: 20px 0;
    }
    .max-width-mobile-100 {
        max-width: 100% !important;
    }

    .margin-bottom-mobile-0 {
        margin-bottom: 0 !important;
    }
    .margin-mobile-y-10 {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .margin-mobile-y-20 {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .margin-mobile-y-30 {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .margin-bottom-mobile-40 {
        margin-bottom: 40px;
    }
    .padding-mobile-y-10 {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .padding-mobile-y-15 {

          padding: 10px 0;
          
    }
    .padding-mobile-y-20 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .padding-mobile-y-50 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .padding-mobile-y-100 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .padding-mobile-y-120 {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .padding-mobile-y-150 {
        padding-top: 150px;
        padding-bottom: 150px;
    }
    .padding-mobile-bottom-150 {
        padding-bottom: 150px;
    }
    .padding-mobile-y-200 {
        padding-top: 200px;
        padding-bottom: 200px;
    }
    .nav-container-overlay-div {
        position: absolute;
        width: 100%;
        height: 100vh;
        z-index: 19000;
        background: var(--purple);
        opacity: 0.2;
    }
    .nav-menu {
        /*position: fixed;*/
        padding-top: 20px;
        height: 100vh;
        overflow-y: hidden;
        align-items: center;
        width: 50%;
        z-index: 20000;
       
        background: var(--purple);
        color: var(--lightpurple);
        font-weight: 600;
    }
    
    /* CSS for the slide-in animation */
    .slide-in-animation {
        animation: slideIn .3s ease-out;
    }
    .slide-in-out-right-animation {
        animation: slideInOutRight 4s ease;
    }
    
    /* CSS for the slide-out animation */
    .slide-out-animation {
        animation: slideOut .3s ease-in;
    }
    .slide-out-right-animation {
        animation: slideOutRight .3s ease-in;
    }
    
    /* Keyframes for slide-in animation */
    @keyframes slideIn {
        0% {
            /*width: 0;*/
            margin-left: -250px;
        }
        100% {
            margin-left: 0;
        }
    }
    
    /* Keyframes for slide-out animation */
    @keyframes slideOut {
        0% {
            margin-left: 0;
        }
        100% {
            margin-left: -250px;
        }
    }
    
    /* Keyframes for slide-in-right animation */
    @keyframes slideInOutRight {
        0% {
            right: -50% !important;
        }
        10% {
            right: 0;
        }
        85% {
            right: 0;
        }
        100% {
            right: -100% !important;
        }
    }
    
    /* Keyframes for slide-out-right animation */
    @keyframes slideOutRight {
        0% {
            margin-right: 0;
        }
        100% {
            margin-right: -250px;
        }
    }

    
    
    .right-container {
        width: 100%;
    }

    .rant-pop-up-div {
        left: 0 !important;
        height: 90vh !important;
        top: 10vh !important;
    }
    
    .rant-pop-up-content-div {
        top: 50% !important;
        left: 50% !important;
        padding: 25px !important;
        width: 85% !important;
    }
    
    .list-items {
        padding-top: 50px;
    }
    
    .list-items ul {
        margin: 0 15px;
    }
    
    .list-items ul li .span-alt-text {
        /*display: none;*/
    }
    .cyberrant-nav-logo-small {
        display: block;
    }
    .cyberrant-nav-logo-big {
        display: none;
    }
    
     .right-top-section-first div .search-bar{
        border:none
     }
      .search-icon:hover{cursor:pointer;}
      .search-bar .input_datalist{visibility:hidden;}
        
    .right-top-section-first div{
        padding-left: 0px;
        width: 100%;
        display:flex;
        align-items:center;
        top:0;
        justify-content:space-between;
       
    }
    .right-top-section input {
        width: 100%;
    }
    .right-top-section-end {
        
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap:10px
      
    }
    .right-top-section input {
        /*box-shadow: 1px 2px 0px -1px var(--purple) !important;*/
        box-shadow: 2px 2px 3px -3px var(--purple) !important;
        background: transparent;
    }
    .welcome-message {
        font-size: 16px;
        font-weight: 600;
        padding-bottom: 10px;
    }
    .first-section {
        padding: 5px 16px;
    }
    .settings-first-section {
        padding: 10px;
    }
    .position-sticky-top-35-5 {
        top: 35.5% !important;
    }
    .profile-user{
        top:2%;
    }
    .overview-cardboards {
        /* border: 1px solid gold; */
        /* justify-content: space-between; */
        /*width: 100%;*/
        display: block;
        place-items: middle;
    }
    .overview-cardboards div {
        margin-bottom: 20px;
    }
    .overview-cardboards-2 {
        width: 100%;
        display: block;
        align-items: center;
        column-gap: 50px;
        place-items: middle;
    }
    .overview-cardboards-2 div {
        margin-bottom: 20px;
    }
    .dashboard-table {
        max-height: 600px;
    }
    .seemore-btn {
        margin: 5px 0;
    }
    
    /* COURSES SECTION */

    .signal-selection-div {
        width: 100% !important;
        font-size: 12px;
    }
   
    .signal-feature{
        width:100%;
        padding:10px 5px;
        display: grid;
        grid-template-columns: auto auto;
        /*flex-direction:row;*/
        justify-content:center;
        /*flex-wrap:wrap;*/
        
        gap:5px;
        
        
    }
    .signal-input-mobile{
        padding:8px 5px;
    }
    
    .position-sticky-top-10 {
        position: sticky;
        top: 7%;
        background: var(--background-white);
        /*z-index: 10000 !important;*/
    }
    
    .position-sticky-top-30 {
        position: sticky;
        top: 0%;
        background: var(--background-white);
        z-index: 11000 !important;
    }
    .signal-selection-div div {
        padding: 8px 4px;
        width: 50%;
        text-align: center;
        font-weight: 600;
        border-radius: 10px;
    }
    
    .signal-selection-div div span {
        display: none;
    }
    
    .signal-selection-div .selected span {
        display: inline;
    }
    
    .referral-banner-mobile {
        display: block;
    }
    .referral-banner-desktop {
        display: none;
    }
    .courses-display-flex {
        display: block;
        /* border: 2px solid yellow; */
        padding: 5px;
    }
    .courses-left-section {
        margin-bottom: 30px;
    }
    .courses-right-section {
        margin-bottom: 100px;
    }
    
    /*.rant-float-message-icon {*/
    /*    bottom: 100px !important;*/
    /*}*/
    
    /*.private-rant-container {*/
    /*    width: 100% !important;*/
    /*    top: inherit !important;*/
    /*    right: 0 !important;*/
    /*    max-width: 100% !important;*/
        /*height: auto;*/
    /*    height: 100vh;*/
    /*    max-height: 100vh;*/
    /*}*/
    
  
    
    .private-rant-container {
   left:2%;
    width: 95%;
    height: 100%;
    top:10%;
   
}
    
    .private-rant-message-body {
        
    }
    
    .sender-text:after {
        right: auto !important;
    }
    .receiver-text:after {
        left: -104%;
    }
    
}
@media (min-width:768px) and (max-width:1024px) {

    /* p{
        background: blue !important;
    } */
    .nav-menu {
        position: fixed;
        padding-top: 20px;
        height: 100vh;
        overflow-y: hidden;
        align-items: center;
        /*width: 30%;*/
        z-index: 20000;
        background: var(--purple);
        color: var(--lightpurple);
        font-weight: 600;
    }
    .list-items {
        padding-top: 50px;
    }
    
    .list-items ul {
        margin: 0 15px;
    }
    
    .list-items ul li .span-alt-text {
        /*display: none;*/
    }
    .cyberrant-nav-logo-small {
        display: block;
    }
    .cyberrant-nav-logo-big {
        display: none;
    }
    .right-top-section-first {
        padding-left: 0px;
        width: 75%;
        /* border: 2px solid gold; */
    }
    .right-top-section input {
        width: 100%;
    }
    .right-top-section-end {
        padding-right: 20px;
        width: 22%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* border: 2px solid gold; */
    }
    .first-section {
        padding: 16px;
    }
    .profile-tab{
  
    top: 12%;
    
}
    .settings-first-section {
        padding:  10px;
    }
    .position-sticky-top-35-5 {
        top: 26% !important;
    }
    .overview-cardboards {
        /* border: 1px solid gold; */
        /* justify-content: space-between; */
        /*width: 100%;*/
        display: block;
        place-items: middle;
    }
    .overview-cardboards div {
        margin-bottom: 20px;
    }
    
    /* COURSES SECTION */

    .signal-selection-div {
        width: 100%;
        font-size: 12px;
    }
    .position-sticky-top-10 {
        position: sticky;
        top: 7%;
        background: var(--background-white);
        /*z-index: 10000 !important;*/
    }
    .signal-selection-div div {
        padding: 8px 4px;
        width: 50%;
        text-align: center;
        font-weight: 600;
        border-radius: 10px;
    }
    .referral-banner-mobile {
        display: block;
    }
    .referral-banner-desktop {
        display: none;
    }
    .courses-display-flex {
        display: block;
        /* border: 2px solid yellow; */
        padding: 5px;
    }
    .courses-left-section {
        margin-bottom: 30px;
    }
    .courses-right-section {
        margin-bottom: 100px;
    }
}


/*new css*/

.is-valid { border-color: #28a745 !important; }
.is-invalid { border-color: #dc3545 !important; }
.error-message { color: #dc3545; font-size: 0.875em; }

/* Appointment System Styles */
.appointment-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4f46e5;
    transition: all 0.3s ease;
}

.appointment-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.appointment-card .appointment-title {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.appointment-card .appointment-title i {
    margin-right: 0.5rem;
    color: #4f46e5;
}

.appointment-details p {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.appointment-details i {
    width: 16px;
    margin-right: 0.5rem;
}

.appointment-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

/* Modal Styles */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, #4f46e5 0%, #667eea 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid #e2e8f0;
    padding: 1.5rem 2rem;
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-label i {
    margin-right: 0.5rem;
    color: #4f46e5;
}

.form-select, .form-control {
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.form-select:focus, .form-control:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-text {
    font-size: 0.875rem;
    color: #718096;
}

/* Notification Styles */
.notification-toast, .admin-notification-toast {
    z-index: 9999;
}

.toast {
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast-header {
    border-radius: 8px 8px 0 0;
    border-bottom: none;
}

/* Status Badge Styles */
.badge {
    font-weight: 600;
    padding: 0.5em 1em;
    border-radius: 20px;
}

.badge.bg-success {
    background-color: #10b981 !important;
}

.badge.bg-warning {
    background-color: #f59e0b !important;
}

.badge.bg-danger {
    background-color: #ef4444 !important;
}

.badge.bg-info {
    background-color: #3b82f6 !important;
}

.badge.bg-secondary {
    background-color: #6b7280 !important;
}

/* Provider Type Icons */
.fa-brain {
    color: #8b5cf6;
}

.fa-mind {
    color: #06b6d4;
}

.fa-heart {
    color: #ec4899;
}

.fa-user-md {
    color: #4f46e5;
}

/* Loading Animation */
.btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    border: none;
    padding: 1rem 1.25rem;
}

.alert-info {
    background-color: #eff6ff;
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .appointment-card {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 1rem;
    }
    
    .appointment-details .row {
        flex-direction: column;
    }
    
    .appointment-details .col-md-6 {
        width: 100%;
    }
}