:root {
      --bg: #0d1117;
      --lbg: #f5f5f5;
      --card: #161b22;
      --dkg: #a000c8; /* light purple */;
      --ldkg: #c76ee0;
      --trnsp_dkg: rgba(160,0,200,0.05);
      --text: #f8f0fa;
      --muted: #8b949e;
      --border: #30363d;
   }

* {
    padding: 0px;
    margin: 0px;
    outline: none;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif, arial;
    
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: #ffffff; var(--lbg);
}

.profile-wrapper {
   max-width: 1200px;
   margin: 63px auto 0px;
   overflow: hidden;
   padding: 0px;
   background-color: #ffffff;
}


header {
   background-color: #ffffff;
   margin: auto;
   position: fixed;
   width: 100%;
   top: 0px;
   left: 0px;
   z-index: 9;
}

#header_items_cont {
   display: flex;
   max-width: 1218px;
   margin: auto;
   padding: 9px;
   align-items: center;
}
header h2 {
   color: var(--dkg);
}
header #header_items_cont div {
   min-width: 43px;
   max-width: 43px;
   height: 43px;
   border-radius: 9px;
   background-color: ;
   border: solid 1px #f5f5f5;
}

header #header_items_cont div img {
   width: 100%;
   height: 100%;
   border-radius: 9px;
}

#site_icon {
   margin: 0px 9px 0px 0px;
}

#notif_icon {
   margin: 0px 23px 0px auto;
}

#menu_icon {
   
}


#menu_cont {
   position: fixed;
   top: 0px;
   left: 0px;
   z-index: 12;
   width: 100%;
}

#hide_menu_tap {
   width: 100%;
   height: 100vh;
   background: rgba(0,0,0,0.5);
   position: absolute;
   z-index: 13;
   top: 0px;
   left: 0px;
}

#menu_section {
   background-color: var(--dkg);
   padding: 13px;
   padding-bottom: 100px;
   overflow-x: hidden;
   overflow-y: scroll;
   height: 100vh;
   width: 73%;
   position: relative;
   z-index: 15;
}

#menu_profile_dets {
   margin-bottom: 13px;
   padding: 13px 0px;
}

#menu_profile_dets a {
   display: flex;
   padding: 7px;
   background: var(--bg);
   border-radius: 9px;
   
}
#menu_profile_dets div {
   min-width: 37px;
   max-width: 37px;
   height: 37px;
   border-radius: 50%;
   border: solid 1px #f5f5f5;
   margin-right: 9px;
}
#menu_profile_dets div img {
   width: 100%;
   height: 100%;
   border-radius: 50%;
   object-fit: cover;
}
#menu_profile_dets h4 {
   color: var(--text) !important;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
   padding-top: 9px;
   margin: inherit !important;
}


#menu_section ul {
   background-color: rgba(255,255,255,0.3);
   border-radius: 9px;
   padding: 9px;
   margin-bottom: 13px;
}
#menu_section ul li {
   margin-bottom: 7px;
   border-radius: 7px;
   list-style: none;
   font-weight: bold;
   color: var(--text);
}
#menu_section ul li a {
    display: block;
    padding: 9px;
}
#menu_section ul li:hover {
   background-color: rgba(255,255,255,0.3);
}
#menu_section h4 {
   color: var(--text);
   margin: 23px 0px 13px;
}
#menu_section button {
   background-color: #000000;
   border: solid 1px #000000;
   color: #ffffff;
   margin-top: 25px;
   display: block;
   padding: 13px;
   width: 100%;
   border-radius: 9px;
   font-size: 14px;
   font-weight: bold;
}





/* FOOTER Styling */
footer {
    background-color: var(--bg);
    padding: 13px 20px;
    color: #ffffff;
}
#footer_item_box {
   max-width: 1200px;
   margin: auto;
}
footer h3 {
    margin: 13px 0px;
}
footer ul {
    list-style: none;
    margin-bottom: 23px;
}
footer ul li {
    padding: 5px;
}
footer p {
    font-size: 15px;
    text-align: justify;
}
footer i {
    display: block;
    text-align: center;
}



/* loadings btn and progress styling */
   .loads {
      font-size: 13px;
      text-align: center;
      padding: 9px;
      border-radius: 33px;
      color: var(--muted);
   }
   #load_more_btn {
      margin-top: 9px;
      background: var(--lbg);
   }
   #load_more_btn:hover {
      background: var(--muted);
      color: var(--text);
   }


/* loading gif */
#loading_gif {
    width: 100%;
    padding: 23px 13px;
    margin-top: 67px;
}
#loading_gif span {
    display: block;
    height: 100px;
    width: 100%;
    background-color: rgba(128,128,128,0.5);
    border-radius: 9px;
    margin: auto;
    margin-bottom: 19px;
    animation-name: loading_gif;
    animation-duration: 0.7s;
    animation-iteration-count: infinite;
}
@keyframes loading_gif {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 0.9;
    }
}


#progress_box {
		    background-color: rgba(0,0,0,0.5);
		    position: fixed;
		    z-index: 23;
		    width: 100%;
		    height: 100%;
		    top: 0px;
		    left: 0px;
		    z-index: 200;
		}
		
		#progress_box h3 {
		    color: var(--dkg);
		    text-align: center;
		    margin-top: 33vh;
		}



/* Tablet Responsive */
@media (min-width:768px){

/* menu cont responsive width style adjusting for Tablet */
#menu_section {
   width: 65%;
}

   

/* Table Responsice closing */
}


/* Laptop/Desktop Responsive */
@media (min-width:1024px){

/* menu cont responsive width style adjusting for Laptop/Desktop*/
#menu_section {
   width: 37%;
}
   

/* Lapto/Desktop Responsive closing */
}



