


/* ------------------------------------------------------------------- */
/* Table of Contents
----------------------------------------------------------------------
0. Root Variables
1. Reset                          
2. Switcher Icon                          
3. Back to Top                          
4. Common styles                          
5. Avatars                          
6. Btns                          
7. Form                          
8. Brand Colors                          
9. Basic Structure                          
10. Navbar                          
11. Footer                          
12. Pagination                          
13. Hero Sections                          
14. Vine Header                          
15. Filter Sections
   - Filter 1    
   - Filter 2                         
16. Comment form Sections
   - Comment form 1    
   - Comment form 2                           
17. Index v1 - Forum                         
18. Index v2 - Community                          
19. Index v3 - Q&A                          
20. Index v4 - Support                          
21. Index v5 - Social                          
22. Index v6 - Timeline                          
23. Discussion 7                            
    - Topic Bar                            
24. Content                            
25. Discussion 2                           
26. Pages
   - About Page 
	 - Login Page     
	 - Users Page 
	 - User Profile Page  
	 - Leaderboard Page 
	 - Categories v1 Page 
	 - Categories v2 Page  
	 - Tags Page  
	 - Faq Page  
	 - Contact Page  
	 - Pricing Page  
	 - 404 Page                              
27. Dashboard
   - Sidebar 
	 - Dashboard Card     
	 - Dashboard Overview
	 - Invoices  
	 - Pricing Plans 
	 - Subscriptions 
	 - Bookmarks  
	 - Notifications  
	 - Add Post
   - Post Single Page  
	 - Chat Messages 

---------------------------------------------------------------------- */ 

:root{
  --white: #fff;
  --black: #000;
  --dark: #1f1e22;
  --gen-font-family: 'Karla',sans-serif;
  --font-poppins: 'Poppins',sans-serif;
  /* --gen-font-family: 'Inter',sans-serif; */
  --blue-color: #0d7751;
  --green-color: #0d7751;
  --green-color-hover: #0d7751;
  --link-color: #0d7751;
  --logo-width: 170px;
  --logo-height: 55px;
}
:root[data-theme="dark"] { 
  --bg-color: #f8f8f8;
  --text-color: #5d5d66;
  --text-danger:#f08616;
  --theme: #f08616;
  --theme-white: #ffffff;
  --theme-black: #171717;
  --border-color: #e0e0e0;

  --bg-icons: #f0f2f5;
  --bg-icons-hover: #c4c6c7;
  --bg-icons-border-hover: #b6b9bb;
  --color-icons: #000;

  --link-hover: var(--text-color);
  --form-control: #f0f2f5;
  --text-muted: #6c757d;

}  
:root[data-theme="light"] { 
  --bg-color: #111111;
  --text-color: #efefef;
  --theme: #f08616;
  --theme-white: #1d2023;
  --theme-black: #fff;
  --border-color: #404040;

  --bg-icons: #1a1a1e;
  --bg-icons-hover: #c4c6c7;
  --bg-icons-border-hover: #b6b9bb;
  --color-icons: #fff;

  --link-hover: var(--text-color);
  --form-control: #121519d9;
  --text-muted: #dddfe0;
}


/****************************/
/** Reset **/
/****************************/
html, body, div, span, applet, object, iframe, p, pre, a, abbr, acronym, address, big, cite, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, fieldset, form, label, legend, caption, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}
em, cite {
  font-style: italic;
}
strong {
  font-weight: bold;
}
body {
  font-family: var(--gen-font-family);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.75rem;
  text-rendering: optimizeSpeed;
  color: var(--text-color);
  background-color: var(--bg-color);
}
a:hover, a:active {
  outline: 0;
}
ul {
  list-style: none;
}
a {
  font-family: var(--gen-font-family);
  text-decoration: none;
  color: var(--link-color);
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}
a:hover {
  text-decoration: none;
  color: var(--link-hover);
}
a:focus {
  text-decoration: none;
  outline: none;
  color: var(--link-hover);
}
.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
 font-family: var(--gen-font-family);
 color: var(--text-color);
 font-weight: 700;
 margin: 0;
 line-height: 1.2
}
.h1,h1 {
    font-size: 48px
}
.h2,h2 {
    font-size: 38px
}
.h3,h3 {
    font-size: 30px
}
.h4,h4 {
    font-size: 24px
}
.h5,h5 {
    font-size: 18px
}
.h6,h6 {
    font-size: 15px
}
@media (max-width:767px) {
    .h1,h1 {
        font-size: 40px
    }
    .h2,h2 {
        font-size: 30px
    }
    .h3,h3 {
        font-size: 26px
    }
}
.paragraph,p {
    margin: 0;
    line-height: 1.7
}
img {
    max-width: 100%;
    height: auto;
}
img, svg {
    vertical-align: middle;
}
.force-UTF-8 {
  content: "¡";
}
::-webkit-file-upload-button {
  cursor: pointer;
}


/****************************/
/** Switcher **/
/****************************/
.switcher {
  cursor: pointer;
  position: fixed !important;
  bottom: 30px;
  right: 40px;
  display: block;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background:var(--theme);
  color: var(--white);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
}
.switcher.switcher-show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
.switcher i{
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


/* ------------------------------------------------------------------- */
/* Back to Top
---------------------------------------------------------------------- */
#back-to-top {
cursor: pointer;
position: fixed;
bottom: 80px;
right: 40px;
z-index: 1020;
border-radius: 50%;
width: 42px;
height: 42px;
line-height: 42px;
text-align: center;
color: #fff;
background: var(--green-color) !important;
border: 0;
text-decoration: none;
transition: opacity 0.2s ease-out;
outline: none;
opacity: 0;
-webkit-box-shadow: 8px 8px 40px 0px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 8px 8px 40px 0px rgba(0, 0, 0, 0.3);
box-shadow: 8px 8px 40px 0px rgba(0, 0, 0, 0.3);
}
#back-to-top.show {
bottom: 80px;
opacity: 1;
}
#back-to-top.hide {
bottom: -100px;
}
#back-to-top:before {
content: "\F148";
font-family: "bootstrap-icons";
font-size: 14px;
font-weight: 900;
color: #fff;
position: relative;
margin: 5px;
}
#back-to-top.show,
#back-to-top.hide{
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
  outline: none;
}

/* ------------------------------------------------------------------- */
/* Common Styles
---------------------------------------------------------------------- */
.border-bottom {
border-bottom: 1px solid var(--border-color) !important;
}
.border-top {
border-top: 2px solid var(--border-color) !important;
}
.border-end {
border-right: 2px solid var(--border-color) !important;
}
.border-start {
border-left: 2px solid var(--border-color) !important;
}
@media (max-width: 992px) {
.border-end {
  border-right: none !important;
}
.border-start {
  border-left: none !important;
}
} 
.bg-repeat-0 {
background-repeat: no-repeat !important;
}
.bg-position-top-end {
background-position: top right !important;
}

/* ------------------------------------------------------------------- */
/* Avatars
---------------------------------------------------------------------- */
.avatar {
height: 3rem;
width: 3rem;
position: relative;
display: inline-block !important;
}
.avatar-img {
width: 100%;
height: 100%;
-o-object-fit: cover;
   object-fit: cover;
}
.avatar .avatar-name {
margin-left: 7px;
}
.avatar-xs {
height: 2.1875rem;
width: 2.1875rem;
}
.avatar-sm {
height: 2.5rem;
width: 2.5rem;
}
.avatar-lg {
height: 3.75rem;
width: 3.75rem;
}
.avatar-rounded {
  border-radius: 50%;
}
.avatar.status-online::before {
content: "";
position: absolute;
border-radius: 100%;
z-index: 1;
background-color: var(--green-color);
height: 8px;
width: 8px;
right: 1px;
bottom: 5px;
}
/*------------------------------------------------------------------
* Btns
*-------------------------------------------------------------------*/
.btn {
font-family: var(--gen-font-family);
white-space: nowrap;
transition: all .3s ease;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-ms-transition: all .3s ease;
-o-transition: all .3s ease;
}
.input-group .btn {
margin-bottom: 0;
}
.btn-xs {
padding: 0.4rem 0.6rem;
font-size: 0.6rem;
line-height: 1.2;
border-radius: 0.325rem;
}
.btn-lg {
padding: 0 26px;
height: 60px;
line-height: 60px;
color: var(--white);
}
.btn-md {
padding: 0 26px;
height: 40px;
line-height: 37px;
color: var(--white);
}
.btn-rounded{
border-radius: 50%;
}
.btn-mint {
background: var(--green-color);
border-color: var(--green-color);
color: var(--white);
}
.btn-mint:hover {
background: var(--green-color-hover);
border-color: var(--green-color-hover);
color: var(--white);
}
.btn-red {
background: var(--theme);
border-color: var(--theme);
color: var(--white);
}
.btn-red:hover {
background: var(--theme);
border-color: var(--theme);
color: var(--white);
}
.btn-dark {
background-color: var(--dark);
border-color: var(--dark);  
color: var(--text-color);
}
.btn-border {
background: transparent;
border: 2px solid var(--white);
color: var(--white);
}
.btn-border:hover {
background: var(--white);
border: 2px solid var(--border-color);
color: var(--black);
}
.btn-light {
background: var(--bg-icons);
border-color: var(--bg-icons);
color: var(--color-icons);
}



/*------------------------------------------------------------------
* Form
*-------------------------------------------------------------------*/
label{    
display: inline-block;
font-family: var(--gen-font-family);
font-size: 17px;
margin-bottom: 5px;
font-weight: 600;
color: #333;
text-transform: capitalize;
}
input, textarea, select {
font-family: var(--gen-font-family);
line-height: 48px;
padding: 0 16px;
/* background-color: var(--form-control); */
color: var(--text-color);
border: 1px solid rgb(215, 214, 214);
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
width: 100%;
-moz-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.04);
-webkit-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.04);
-o-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.04);
box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.04);
}
/* input, select{
height: ;
line-height: ;
} */
.search-form input {
background-color: var(--bg-icons);
}
.form-check-input {  
width: 0.5em !important;
height: 1em !important;
margin-right: 5px;
background-color: var(--form-control);
border: none;
}
.form-check-input:checked {
background-color: var(--green-color);
border-color: var(--green-color);   
}
.bg-body{
background-color: var(--theme-white) !important;
}
.bg-input{
color: var(--green-color);
background-color: var(--form-control) !important;
border-top-right-radius: 0rem;
border-bottom-right-radius: 0rem;
}

/*------------------------------------------------------------------
* Brands Colors
*-------------------------------------------------------------------*/
.bg-facebook {
background-color: #1877f2;
color: #fff;
border: none;
}
.bg-facebook:hover, .bg-facebook:active, .bg-facebook:focus {
background-color: #356fb9;
color: #fff;
}
.text-facebook {
color: #1877f2;
}
.text-facebook:hover {
color: #356fb9;
}
.bg-google {
background-color: #ea4335;
color: #fff;
border: none;
}
.bg-google:hover, .bg-google:active, .bg-google:focus {
background-color: #c75046;
color: #fff;
}
.text-google {
color: #ea4335;
}
.text-google:hover {
color: #c75046;
}

.bg-green {
background-color: var(--green-color);
color: var(--white);
}
.text-green {
color: var(--green-color);
}
.bg-dark {
background-color: var(--dark);
color: var(--white);
}
.bg-red {
background-color: var(--theme);
color: var(--white);
}
.text-red {
color: var(--theme);
}

/*------------------------------------------------------------------
* Basic Structure
*-------------------------------------------------------------------*/
.vine-wrapper {
position: relative;
background-color: var(--bg-color);
width: 100%;
min-height: 100%;
}
.vine-navbar{
color: var(--text-color);
background: var(--theme-white);
padding: 10px 0px;
transition: ease top .35s;
z-index: 111111;
}


/*------------------------------------------------------------------
* Navbar
*-------------------------------------------------------------------*/
.navbar-brand {
display: flex;
}
.navbar-brand img{
width: var(--logo-width); 
height: var(--logo-height);
}
.offcanvas {
background: var(--theme-white);
color: var(--text-color);
}
.offcanvas .btn-close{
color: var(--text-color);
}
.offcanvas .offcanvas-body .nav-item .nav-link{
color: var(--text-color);
}

/* Dropdown */
.dropdown-menu {
background: var(--theme-white);
color: var(--text-color);
padding-left: 10px;
padding-right: 10px;
border: none;
z-index: 1100;
-webkit-box-shadow: 0px 0px 40px rgba(29, 58, 83, 0.15);
box-shadow: 0px 0px 40px rgba(29, 58, 83, 0.15);
}
.dropdown-menu-size-sm {
min-width: 13rem;
}
.dropdown-menu-size-md {
min-width: 22rem;
}
.dropdown-menu-size-lg {
min-width: 30rem;
}
@media (max-width: 575.98px) {
.dropdown-menu-size-md {
  min-width: 16rem;
  margin-right: -25px !important;
}
.dropdown-menu-size-sm {
  min-width: 13rem;
}
}
.dropdown-body{
height: 23.75rem;
}
.dropdown-menu .dropdown-item{
color: var(--text-color);
}  
.dropdown-menu .dropdown-item:hover{
background: var(--bg-color);
color: var(--text-color);
}
.dropdown-menu .list-group .list-group-item-action{
color: var(--text-color);
border-bottom: 2px solid var(--bg-icons) !important;
}
.dropdown-menu .list-group-item-action:focus, .dropdown-menu .list-group-item-action:hover {
z-index: 1;
background: var(--bg-color);
color: var(--text-color);
}
.dropdown-item-icon {
display: inline-block;
opacity: .7;
width: 1.5rem;
color: var(--text-color);
}
.dropdown-toggle::after {
content: "\f282";
display: inline-block;
font-family: "bootstrap-icons";
font-style: normal;
font-weight: 400 !important;
font-variant: normal;
text-transform: none;
line-height: 1;
vertical-align: -.125em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: currentColor;
font-size: 75%;
margin-left: 7px;
border: none;
}
.dropdown-menu .card-header{
border-bottom: 2px solid var(--bg-icons) !important;
}
.dropdown-menu .dropdown-item img{
width: 20px;
height: 15px;
}  

/* Mega Menu */
.mega-dropdown-md .dropdown-menu {
padding: 0 15px;
margin: 0;
}
.mega-dropdown-md .mega-menu-title {
font-family: inherit;
color: var(--text-color);
font-size: 14px;
letter-spacing: 1.15px;
text-decoration: underline;
margin: 15px 0 5px;
}
.mega-dropdown-list{
padding-left: 0px !important;
margin-left: 0px !important;
}
.mega-dropdown-md .dropdown-menu .dropdown-item {
padding: 3px 0;
-webkit-transition: all .5s ease;
-moz-transition: 0.5s ease;
transition: all .5s ease;
}
.mega-dropdown-md .dropdown-menu .dropdown-item:hover, .mega-dropdown-md .navbar .dropdown-menu .dropdown-item.active {
color: var(--link-color) !important;
background: transparent !important;
padding-left: 10px;
}
@media (min-width: 992px) {
/* Navbar Dropdown */
.mega-dropdown-md .dropdown-menu {
  min-width: 940px;
  left: -470px;
}
.mega-dropdown-md .menu-column {
  padding: 10px;
}
}

    /* For iPad (portrait and landscape) */
    @media only screen and (min-width: 768px) and (max-width: 1024px) {
      .nav-item.dropdown {
          display: block !important; /* Force display block on iPads */
      }
  }

.header-end .h-col {
margin-left: .8rem;
position: relative;
}
.header-end .h-icon {
width: 40px;
height: 40px;
background-color: transparent;
border: none;
color: var(--text-color);
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 1.4rem;
padding: 0;
position: relative;
border-radius: 50%;
}
.header-end .btn {
position: relative;
top: 2px;
padding: 0.2rem 0.3rem;
line-height: 1.2;
border-radius: 0.225rem;
}  
.header-end .btn i{
font-size: 16px;
}
.header-end .h-icon sup {
  position: absolute;
  top: -1px;
  right: 1px;
  background: var(--theme);
  color: var(--white);
  height: 15px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 5px;
  border-radius: 30px;
  font-size: 10px;
}
.header-end .dropdown-toggle::after {
display: none;
}
.header-end .navbar-toggler {
width: 40px;
height: 40px;
border-radius: .25rem;
padding: 0;
color: var(--text-color);
border: none;
}
.header-end .navbar-toggler .px-navbar-toggler-icon {
width: 60%;
height: 2px;
background: currentColor;
display: inline-block;
vertical-align: middle;
box-shadow: 0 -8px 0 0 currentColor,0 8px 0 0 currentColor;
}
/* Profile Text */
.profile-text {
line-height: 1.4;
padding-left: 10px;
font-weight: 500;
}
.profile-text .profile-head {
font-weight: normal;
font-size: 12px;
color: #a3a3af;
}




/*------------------------------------------------------------------
* Footer Section
*-------------------------------------------------------------------*/
.footer-top {
border-top: 1px solid var(--border-color);
padding: 60px 20px;
}
.footer-top .footer-about {
padding-right: 30px;
}
.footer-top .footer-about .logo {
margin-bottom: 24px;
}
.footer-top .footer-about .logo img{
width: var(--logo-width); 
height: var(--logo-height);
}
.footer-top .footer-about p {
font-size: 18px;
color: var(--text-color);
line-height: 1.44;
}
.footer-top .footer-about .social {
margin-top: 30px;
}
.footer-top .footer-about ul {
float: left;
padding-left: 0px !important;
}
.footer-top .footer-about .social li {
display: inline-block;
margin-right: 35px;
font-size: 15px;
}
.footer-top .footer-about .social li a{
color: var(--text-color);
}

.footer-about{
margin-bottom: 40px;
}
.footer-top .footer-menu{
margin-bottom: 40px;
}
.footer-top .footer-menu h6{
font-size: 18px;
margin-bottom: 24px;
}
.footer-top .footer-menu ul {
  list-style: none;
  padding-left: 0px;
}
.footer-top .footer-menu li {
margin-bottom: 16px;
margin-right: 0px;
}
.footer-top .footer-menu li a {
color: var(--text-color);
font-size: 17px;
font-weight: 400;
}

.footer-top .footer-menu .address ul li {
margin-bottom: 15px;
}

.footer-bottom .inner {
display: flex;
justify-content: space-between;
border-top: 1px solid var(--border-color);
padding: 40px 0;
}
.footer-bottom .menu li {
display: inline-block;
margin-left: 4px;
}
.footer-bottom .menu li a {
color: var(--text-color);
font-size: 14px;
font-weight: 500;
}
.footer-top .footer-about .social li a:hover,
.footer-top .footer-menu li a:hover,
.footer-bottom .menu li a:hover {
color: var(--link-color);
}
@media (max-width: 768px) {
  /* Footer */
  .footer-bottom .inner{
    flex-direction: column;
    align-items: center;
  }
  
}


/* ------------------------------------------------------------------- */
/* Pagination
---------------------------------------------------------------------- */
.pagination {
display: flex;
flex-wrap: wrap;
margin: 60px 0px 10px 0;
}
.pagination .page-numbers {

display: flex;
gap: 5px;
height: 50px;
flex-grow: 1;
padding: 0 10px;
margin: 0 12px 10px 0;

background-color: var(--theme-white);

-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;

-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;

font-size: 14px;
-webkit-border-radius: 3px;
border-radius: 3px;
color: var(--text-color);
}
.pagination .page-numbers:hover {
-webkit-box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.2);
box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.2);
background-color: var(--green-color);
color: var(--white);
}
.pagination .page-numbers i {
font-size: 14px;
position: relative;
}
.pagination .page-numbers.pagination-space {
background-color: transparent;
font-weight: 600;
color: var(--text-color);
}
.pagination .page-numbers.pagination-space:hover {
-webkit-box-shadow: none;
box-shadow: none;
}
.pagination .page-numbers.current {
background-color: var(--green-color);
color: var(--white);
font-weight: 700;
}
.pagination .page-numbers.all-pages {
background-color: transparent;
margin-left: 20px;
}
.pagination .page-numbers.all-pages:hover {
-webkit-box-shadow: none;
box-shadow: none;
color: var(--text-color);
font-weight: 400;
}
@media (max-width: 768px) {
.pagination .page-numbers{
  height: 40px;
}
}


/* Pagination 2 */
.pagination-2 ul{
margin-top: 20px;
margin-left: 0px !important;
padding-left: 0px !important;
}
.pagination-2 ul li {
display: inline-block;
}
.pagination-2 ul li:not(:last-child) {
margin-right: 7px;
}
.pagination-2 ul li a, .pagination-2 ul li span {
display: inline-block;
width: 50px;
height: 50px;
line-height: 46px;
text-align: center;
font-size: 18px;
font-weight: 600;
transition: 0.3s;
}

/*------------------------------------------------------------------
* Hero Sections
*-------------------------------------------------------------------*/
.vine-hero {
position: relative;
overflow: hidden;
margin-top: 100px;
padding: 60px 0px;
}
.vine-hero-2 {
position: relative;
overflow: hidden;
margin-top: 100px;
padding: 40px 0px;
}
.vine-hero-3 {
position: relative;
overflow: hidden;
margin: 30px 0px;
padding: 40px 10px;
border-radius: 13px;
}
.vine-top{
margin: 100px 0px;
}
.bg-img-1{
background-image: linear-gradient( rgba(35, 37, 38, 0.50), rgba(35, 37, 38, 0.50) ), url(../img/bg/1.jpg); 
}
.bg-img-2 {
background-image: linear-gradient( rgba(35, 37, 38, 0.50), rgba(35, 37, 38, 0.50) ), url(../img/bg/2.jpg); 
}
.bg-img-3 {
background-image: linear-gradient( rgba(35, 37, 38, 0.60), rgba(35, 37, 38, 0.60) ), url(../img/bg/4.html); 
}
.bg-img-1,
.bg-img-2,
.bg-img-3{
background-position: center center; 
background-repeat: no-repeat; 
background-size: cover;
}  

/* Hero Content */
.hero-content h1 {
font-weight: 700;
font-size: 60px;
margin-bottom: 10px;
color: var(--white);
}
.hero-content p {
color: #dddfe0;
font-size: 20px;
font-weight: 300;
margin-bottom: 30px;
}

/* Banner-Content */
.banner-content{
padding-top: 40px;
}
.banner-content h1 {
font-weight: 700;
font-size: 60px;
margin-bottom: 40px;
color: var(--white);
}
.banner-content h1 span {   
position: relative;
display: inline-block;
z-index: 1;
color: var(--white);
text-transform: capitalize;
}
.banner-content h1 span::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
display: block;
width: 100%;
height: 11px;
background: var(--theme);
border-radius: 10px;
z-index: -1;
}
.banner-content p {
color: #dddfe0;
font-size: 20px;
font-weight: 300;
margin-bottom: 40px;
}

/*Buttons Group*/
.buttons-group {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 38px;
margin-bottom: 60px;
}

/* Users Join */
.vine-join {
display: flex;
gap: 34px;
margin-bottom: 20px;
}
.vine-join ul {
padding: 0;
margin-bottom: 0;
}
.vine-join ul li {
list-style-type: none;
display: inline-block;
margin-left: -18px;
}
.vine-join ul li img {
border-radius: 50%;
border: 3px solid var(--white);
transition: 0.3s;
}
.vine-join p{
font-size: 14px;
margin-top: 7px;
font-weight: 700;
}
.join-text {
margin-top: 3px;
}
.join-text h5 {
color: var(--white);
margin-bottom: 4px;
font-size: 18px;
font-weight: 600;
}
.join-text p {
margin-top: 7px;
color: #dddfe0;
font-size: 16px;
font-weight: 300;
}

/* Stats Hero */
.stats-box {
display: inline-flex;
align-items: center;
gap: 20px;
}
.stats-item {
color: var(--white);
font-weight: 800;
font-size: 1.5rem;
line-height: 1.415;
letter-spacing: -.01em;
}
.ui {
fill: #d1d5db !important;
margin-top: -45px;
}

/* Image Column Hero */
.image-column {
position: relative;
}
.image-column .image-box {
position: relative;
display: block;
margin-top: 0px;
}
.image-column .row {
align-items: center;
}
.image-column .column {
position: relative;
}
.image-column .column .image {
position: relative;
display: block;
text-align: center;
margin-bottom: 40px;
}
.image-column .image-box img {
max-width: 100%;
width: 100%;
height: auto;
border-radius: 10px;
}



@media (max-width: 991.95px) {
.hero-content{
  padding: 40px 40px;
}
.banner-content{
  padding: 40px 40px;
}
.vine-join{
  flex-direction: column;
}

}
@media (max-width: 768px) {
.stats-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.stats-item {
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.415;
  letter-spacing: -.01em;
}
.stats-box p{
  font-size: 16px;
}
  
}


/*------------------------------------------------------------------
* Vine Header
*-------------------------------------------------------------------*/

.vine-header {
display: inline-block;
overflow: visible;
width: 100%;
margin-top: 100px;
margin-left: 0;
}
.breadcrumb-cover {
background-image: linear-gradient( rgba(35, 37, 38, 0.3), rgba(35, 37, 38, 0.3) ), url(../img/bg/3.jpg); 
background-position: center center; 
background-repeat: no-repeat; 
background-size: cover;
padding: 70px 0;
}
.vine-header h2{
font-weight: bold;
color: var(--white);
}
.vine-header p {
color: var(--white);
}

.breadcrumbs {
color: #F1F4F9;
padding-left: 0px !important;
}
.breadcrumbs li {
display: inline-block;
font-size: 14px;
padding-left: 20px;
position: relative;
}
.breadcrumbs li:first-child {
padding-left: 0;
}
.breadcrumbs li a {
color: #F1F4F9;
display: inline-block;
font-size: 14px;
line-height: 14px;
text-decoration: none;
}
.breadcrumbs li a:hover{
color: var(--green-color);
}
.breadcrumbs li:after {
content: "\F280";
justify-content: flex-end;
font-family: "bootstrap-icons";

height: 12px;
left: 0px;
position: absolute;
top: 0px;
width: 12px;
margin-right: 3px;
color: var(--white);
}
.breadcrumbs li:first-child:after {
display: none;
}

/*------------------------------------------------------------------
* Vine Main
*-------------------------------------------------------------------*/
.vine-main {
margin: 15px 0px;
}


/* ------------------------------------------------------------------- */
/* Filter Section
---------------------------------------------------------------------- */
.filter {
padding: 12px 30px;
background: var(--theme-white);
margin: 0px 15px 35px 15px;
border-radius: 10px;
}
.filter-toolbar {
flex: 1 1 auto;
max-width: 100%;
display: flex;
align-items: center;
}
.filter-item {
margin-right: 2.5rem;
position: relative;
}
.filter-item label {
color: #9999a5;
font-size: 14px;
display: block;
margin-bottom: 4px;
}
.filter-item .filter-item-content {
display: flex;
align-items: center;
}
.filter-item .filter-value {
font-size: 16px;
font-weight: 500;
color: var(--color-icons);
}
.filter-item .dropdown-btn {
position: relative;
width: 16px;
height: 16px;
display: block;
margin-top: 2px;
margin-left: 15px;
cursor: pointer;
transition: 0.4s ease;
}
.filter-item .dropdown-btn::before, .filter-item .dropdown-btn::after {
content: "";
position: absolute;
display: block;
width: 16px;
height: 2px;
background-color: var(--color-icons);
left: 0;
top: 50%;
transition: 0.2s ease;
margin-top: -5px;
}
.filter-item .dropdown-btn::after {
margin-top: 2px;
width: 10px;
}
.filter-item .filter-item-content[aria-expanded="true"] .dropdown-btn::after {
margin-top: -2px;
width: 16px;
transform: rotate(-45deg);
background-color: var(--green-color);
}
.filter-item .filter-item-content[aria-expanded="true"] .dropdown-btn::before {
transform: rotate(45deg);
margin-top: -2px;
background-color: var(--green-color);
}
.filter-item .dropdown-toggle:after {
display: none;
border: none;
}
.filter-item .dropdown-menu {
left: -20px !important;
margin-top: 10px;
background-color: var(--theme-white);
padding: 1rem 0rem;
}
.filter-item .dropdown-menu li {
font-size: 14px;
cursor: pointer;
padding: 2px 20px;
color: var(--text-color);
}
.filter-item .dropdown-menu li:hover, .filter-item .dropdown-menu li.selected {
color: var(--green-color);
}

.filter-item .dropdown-menu.dropdown-2x.show {
display: inline-flex;
flex-wrap: wrap;
max-width: 20rem;
width: 20rem;
}
.filter-item .dropdown-menu.dropdown-2x.show li {
flex: 0 0 50%;
max-width: 50%;
}

@media (max-width: 990px) {
.filter {
  margin: 40px 0px;
 }

}
@media (max-width: 768px) {
.filter-toolbar{
  flex-direction: column;
  align-items: center;
}
.filter-item {
  margin-bottom: 10px;
}

}

/* ------------------------------------------------------------------- */
/* Filter 2
---------------------------------------------------------------------- */
.filter-2{
padding: 12px 30px 12px 0px;
background: var(--theme-white);
margin: 0px 0px 35px 0px;
border-radius: 10px;
}
.filter-2 ul{
margin-top: 18px;
}
.filter-2 ul li{
list-style-type: none;
display: inline-block;
margin-right: 10px;
}
.filter-2 ul li a{
color: var(--text-color);
}
.filter-2 ul li a:hover{
color: var(--link-color);
}
.filter-2 ul.dropdown-menu li{
width: 100%;
}
@media (max-width: 990px) {
.filter-2 {
  margin: 40px 0px;
 }

}
@media (max-width: 768px) {
.filter-2{
  flex-direction: column;
  align-items: center;
}
.filter-2 ul{
  padding-left: 0px;
}
.filter-2 ul li {
  margin-bottom: 10px;
}
}


/* ------------------------------------------------------------------- */
/* Comment Form
---------------------------------------------------------------------- */
.comment-form {
margin: 40px 15px;
padding: 30px 30px 30px 30px;
background: var(--theme-white);
-webkit-border-radius: 13px;
-moz-border-radius: 13px;
-o-border-radius: 13px;
-ms-border-radius: 13px;
border-radius: 13px;
}
.comment-form-title {
font-size: 20px;
font-weight: 500;
color: var(--text-color);
margin-bottom: 40px;
}
.comment-form-avatar img {
width: 60px;
height: 60px;
max-width: 60px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-o-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 50%;
}
.comment-input{
width: 100%;
margin-left: 30px;
}

/* ------------------------------------------------------------------- */
/* Comment Form 2
---------------------------------------------------------------------- */
.comment-form-2 {
background-color: var(--theme-white);
border-radius: 13px;
}
.comment-form-2 .btn-icon i {
display: inline-flex;
font-size: 1.25rem;
line-height: 1;
color: var(--text-color);
margin: 0;
padding: 0;
}
.comment-form-2 .btn-base {
background-color: transparent;
border-color: transparent;
color: var(--text-color);
}

/* ================================================================================================================================================================== 
Forum index.html
===================================================================================================================================================================== */

/* Categories */
.vine-categories .navbar-nav .nav-item .nav-link {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: var(--text-color);

padding: 10px 1rem;
position: relative;
font-size: 16px;
font-weight: 500;

margin: 0;
white-space: nowrap;

-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
transition: all 0.25s ease;
}
.vine-categories .navbar-nav .nav-item .nav-link > * {
-webkit-transition: -webkit-transform 0.25s ease;
-moz-transition: -moz-transform 0.25s ease;
transition: transform 0.25s ease;
}
.vine-categories .navbar-nav .nav-item .nav-link .nav-icon-wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-right: .875rem;
}
.vine-categories .navbar-nav .nav-item .nav-link .nav-icon-wrap i {
font-size: 20px;
}
.vine-categories .nav-item.active > .nav-link {
color: var(--link-color) !important;
}
.vine-categories .nav-item > .nav-link:hover {
color: var(--link-color) !important;
}
.vine-categories .nav-item > .nav-link img {
height: 2.5875rem;
width: 2.5875rem;
transition: transform .5s ease-in-out;
}
.vine-categories .nav-item > .nav-link:hover img {
transform: scale(1) rotate(-15deg);
}
.vine-categories .navbar-nav .nav-info h5{
padding: 0px 1rem 10px 1rem;
}

/* Follow Users */


.follow-users .list-group,
.top-users .list-group{
background: transparent;
}
.follow-users .list-group .list-group-item,
.top-users .list-group .list-group-item{
background: transparent;
color: var(--text-color);
}
.nav-tabs {
border-bottom: 0.0625rem solid var(--border-color);
font-size: 16px;
}
.nav-tabs .nav-link {
color: var(--text-color);
border-width: 0 0 0.1875rem 0;
border-style: solid;
border-color: transparent;
border-bottom-color: transparent;
padding: 1rem 0.6rem;
margin-bottom: -0.125rem;
border-radius: 0;
transition: .3s;
}
.nav-tabs .nav-link.active {
color: var(--link-color);
border-bottom-color: var(--link-color);
background-color: transparent;
}
.top-users .list-group p{
font-size: 14px;
}
.top-users .list-group i{
font-size: 12px;
}
.top-users p{
font-size: 14px;
}
.top-users a,
.follow-users .media-body a{
color: var(--text-color);
}
.top-users a:hover,
.follow-users .media-body a:hover{
color: var(--link-color);
}

@media (max-width: 768px) {
 
  .top-users{
    padding-top: 170px;
  }
}

/* Popular Posts */
.zindex-2 {
z-index: 2 !important;
}
.h5{
line-height: 1.4;
}
.fs-xs {
font-size: 0.75rem !important;
}
.fs-base {
font-size: 1rem !important;
}
.fs-lg {
font-size: 1.125rem !important;
}
.fs-sm {
font-size: 0.875rem !important;
}
.new-discussions a{
color: var(--text-color);
}
.new-discussions a:hover{
color: var(--link-color);
}
.new-discussions p{
line-height: 4px;
}

/* Ad Sec */
.ad-sec{
background-repeat: no-repeat !important;
background-size: cover !important;
background-color: rgba(99,102,241,.12) !important;
}

/* Post Box */
.post-box {
padding: 10px 30px;
background: var(--theme-white);
margin: 0px 15px 35px 15px;
border-radius: 13px;
box-shadow: 0px 30px 40px rgb(2 45 62 / 8%);
}
.post-box:hover{
-webkit-box-shadow: 0 16px 30px 2px rgba(0, 0, 0, 0.26);
-ms-box-shadow: 0 16px 30px 2px rgba(0, 0, 0, 0.26);
-moz-box-shadow: 0 16px 30px 2px rgba(0, 0, 0, 0.26);
-o-box-shadow: 0 16px 30px 2px rgba(0, 0, 0, 0.26);
box-shadow: 0 16px 30px 2px rgba(0, 0, 0, 0.26);
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-ms-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
.post-box .vote {
padding: 4px 20px;
margin-top: 10px !important;
margin-right: 10px;
text-align: center;
}
.post-box .vote i{
font-size: 24px;
}
.post-box .vote p{
font-size: 14px;
}

/*Card*/
.card {
width: 100%;
background: var(--theme-white);
border: none;
}
.card .card-header {
background: transparent;
border: none;
color: var(--text-color);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
justify-content: space-between;
-webkit-justify-content: space-between;
-ms-flex-pack: space-between;
}
.media {
display: -ms-flexbox;
display: flex;
-ms-flex-align: start;
align-items: flex-start;
}
.media-head {
display: flex;
}
.media-head a img {
transition: transform .5s ease;
}
.media-head a:hover img {
transform: scale(1.2);
}
.media-body {
-ms-flex: 1;
flex: 1;
margin-left: 5px;
font-size: 14px;
line-height: 1.47;
}
.media-body a{
font-size: 16px;
}

.card .card-header.card-header-action .card-action-wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.card .card-header .card-action-wrap .dropdown-toggle{
color: var(--text-color);
}
.card .card-header .card-action-wrap .dropdown-toggle:after {
display: none;
border: none;
}
.card .card-header .card-action-wrap .dropdown-menu {
background: var(--theme-white);
color: var(--text-color);
border-radius: 10px;
} 
.card .card-header .card-action-wrap .dropdown-menu .dropdown-item{
color: var(--text-color);
}  
.card .card-header .card-action-wrap .dropdown-menu .dropdown-item:hover{
background: var(--bg-color);
color: var(--text-color);
}

.post-box .card .card-body h3 {
font-size: 20px;
line-height: 1.2;
letter-spacing: -0.04em;
margin-bottom: 4px;
}
.post-box .card .card-body h3 a{
font-weight: bold;
}
.post-box .card .card-body p {
font-size: 15px;
line-height: 1.47;
color: var(--text-color);
margin-bottom: 5px;
}

/*Tags*/
.tag-link {
color: var(--text-color);
background-color: rgba(121,127,135,.1);
margin-right: 2px;
margin-bottom: 2px;
text-align: center;
display: inline-block;
font-size: 13px;
line-height: 16px;
padding: 3px 7px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
border: 1px solid rgba(121,127,135,.05);
}
.tag-link:hover {
color: var(--text-color);
background-color: rgba(121,127,135,.2);
}

.post-box .card .card-footer{
margin: 10px 0px;
color: var(--text-color);
display: flex;
justify-content: space-between;
border: none;
background: var(--bg-icons);
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}

/*Post Stats*/
.post-stats {
display: flex;
flex-wrap: wrap;
}
.post-stats .post-item {
display: flex;
gap: 5px;
align-items: center;
height: 50px;
flex-grow: 1;
padding: 0 10px;
}
.post-stats .post-item:last-child {
border-right: 0;
}
.post-icon {
font-size: 15px;
color: var(--text-color);
line-height: 1;
margin-right: 5px;
}
.post-text {
font-size: 15px;
color: var(--text-color);
line-height: 1;
}
.post-item a {
display: flex;
gap: 5px;
align-items: center;
}
.post-item a:hover .post-icon,
.post-item a:hover .post-text {
color: var(--theme);
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
}
.post-item ul {
padding: 0;
margin-bottom: -6px;
margin-left: 13px;
}
.post-item ul li {
list-style-type: none;
display: inline-block;
margin-left: -18px;
}
.post-item ul li img {
max-width: 35px;
border-radius: 50%;
border: 2px solid var(--white);
}
@media (max-width: 992px) {
.post-box {
  margin: 0px 0px 35px 0px;
 }
.post-stats .post-item {
  height: 40px;
}
}  


/* ================================================================================================================================================================== 
Community index-2.html
===================================================================================================================================================================== */

.post-box-2 {
display: flex;
background: var(--theme-white);
padding: 15px 15px;
margin-bottom: 30px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
box-shadow: 0px 30px 40px rgb(2 45 62 / 8%);
}
.post-box-2:hover{
-webkit-box-shadow: 0 16px 30px 2px rgba(0, 0, 0, 0.26);
box-shadow: 0 16px 30px 2px rgba(0, 0, 0, 0.26);
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
.post-box-2 .user-box-img {
margin-right: 20px;
}
.post-box-2 .user-box-img img {
border-radius: 50%;
height: 60px;
width: 60px;
max-width: 60px;
}
.post-box-2 .user-box-img a img {
transition: transform .5s ease;
}
.post-box-2 .user-box-img a:hover img {
transform: scale(1.2);
}
.arrow-box{
margin: 0px 15px 5px;
text-align: center;
}
.arrow-box i{
font-size: 24px;
margin-top: -3px;
}
.arrow-box span{
display: block;
font-size: 18px;
}
.title-box {
margin-left: 20px;
}
.post-box-2 .title-box h6 {
font-size: 18px;
font-weight: 700;
line-height: 24px;
color: inherit;
margin-bottom: 8px;
transition: all 0.3s linear;
}
.post-box-2 .title-box h6 a,
.arrow-box a{
color: var(--text-color);
}
.post-box-2 .title-box h6 a:hover,
.arrow-box a:hover{
color: var(--link-color);
}
.post-box-2 .title-box span {
margin-right: 14px;
display: inline-block;
}
.post-box-2 .title-box .title-box-name {
font-size: 14px;
font-weight: 400;
line-height: 14px;
}
.post-box-2 .title-box .title-box-name a{
color: #6c757d;
}
.post-box-2 .title-box .title-box-category {
font-size: 14px;
font-weight: 400;
line-height: 14px;   
color: #6c757d;
background-color: rgba(121,127,135,.1);
padding: 2px 10px;
border-radius: 3px;
}
.post-box-2 .title-box .title-box-category a{
color: #6c757d;
}
.post-box-2 .title-box .title-box-category a:hover{
color: var(--link-color);
}
.post-box-2 .title-box .title-box-text {
color: #6c757d;
font-size: 14px;
font-weight: 400;
line-height: 14px;
}
.post-box-2 .title-box span:last-child {
margin-right: 0;
}

@media (max-width: 768px) {
.post-box-2{
  flex-direction: column;
}
.post-box-2 .user-box-img {
  display: flex;
  margin-bottom: 5px;
}
.post-box-2 .user-box-img img {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  margin-right: 7px;
}
.post-box-2 .user-box-img .title-box-name {
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
  margin-top: 7px;
}
.post-box-2 .user-box-img .title-box-name a{
  color: var(--text-color);
}
.title-box {
  margin-left: 0px;
}
.arrow-box{
  margin: 0px 15px 0px 0px;
  border: 1px solid var(--border-color);
  padding: 0px 5px;
  border-radius: 10px;
}
}




/* ================================================================================================================================================================== 
Questions index-3.html
===================================================================================================================================================================== */

/* QA Sidebar */
.qa-sidebar {
display: flex;
flex-direction: column;
}
.qa-sidebar .header {
display: flex;
color: rgb(100, 106, 123);
font-size: 1.2rem;
font-weight: bold;
letter-spacing: 1px;
line-height: 1.16667;
text-transform: uppercase;
margin-bottom: 20px;
}
.qa-link {
font-size: 16px;
line-height: 1;
color: var(--text-color);
background-color: var(--theme-white);
border-radius: 4px;
padding: 20px;
font-weight: bold;
text-align: left;
letter-spacing: 1px;
margin-bottom: 15px;
transition: all 0.2s linear;
}
.qa-link.active {
background-color: var(--green-color);
color: var(--white);
}
.qa-link:hover {
background-color: var(--green-color);
color: var(--white);
}


/* QA Sidebar Stats */
.qa-sidebar-stats {
padding: 1.5rem 2rem;
margin-bottom: 1rem;
border-radius: 13px;
background-color: var(--theme-white);
}
.qa-stats-1 {
padding: 2rem;
align-items: center;
text-align: center;
border-right: 2px solid var(--border-color);
border-bottom: 2px solid var(--border-color);
}
.qa-stats-2 {
padding: 2rem;
align-items: center;
text-align: center;
border-bottom: 2px solid var(--border-color);
}
.qa-stats-3 {
padding: 2rem;
align-items: center;
text-align: center;
border-right: 2px solid var(--border-color);
}
.qa-stats-4 {
padding: 2rem;
align-items: center;
text-align: center;
}
.qa-sidebar-stats-body i{
font-size: 30px;
color: var(--green-color);
margin-bottom: 5px;
}
.qa-sidebar-stats-body h4{
font-size: 30px;
color: var(--text-color);
}
.qa-sidebar-stats-body p{
font-size: 14px;
color: #6c757d;
}

@media (max-width: 768px) {
.qa-stats-1 {
  padding: 2rem;
  align-items: center;
  text-align: center;
  border-right: 0px;
  border-bottom: 2px solid var(--border-color);
}
.qa-stats-2 {
  padding: 2rem;
  align-items: center;
  text-align: center;
  border-bottom: 2px solid var(--border-color);
}
.qa-stats-3 {
  padding: 2rem;
  align-items: center;
  text-align: center;
  border-right: 0px;
  border-bottom: 2px solid var(--border-color);
}
}  




/* QA Box */
.qa-box {
position: relative;
display: block;
height: auto;
margin-bottom: 10px;
}
.qa-box .qa-avatar {
position: absolute;
top: 50%;
left: 0;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.qa-box .qa-avatar a img {
border-radius: 50%;
border: 3px solid var(--theme-white);
width: 60px;
height: 60px;
transition: transform .5s ease;
}
.qa-box .qa-avatar a:hover img {
  transform: scale(1.2);
}
.qa-box .qa-holder {
background-color: var(--theme-white);
border-radius: 10px;
padding: 0px;
padding-left: 45px;
margin-left: 35px;
box-shadow: 0px 30px 40px rgb(2 45 62 / 8%);
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
.qa-box .qa-holder:hover{
-webkit-box-shadow: 0 16px 30px 2px rgba(0, 0, 0, 0.26);
box-shadow: 0 16px 30px 2px rgba(0, 0, 0, 0.26);
}
.qa-box .qa-holder.solved{
  border: 2px dashed var(--green-color);
} 
.qa-box .qa-holder .qa-badge {
  position: absolute;
  top: -12px;
  right: 40px;
  padding: 1px 15px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  background-color: var(--green-color);
  color: var(--white);
  border-radius: 2px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
/* QA Content */
.qa-content{
  padding: 10px 0px;
}  
.qa-content h1{
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}  
.qa-content p {
  font-size: 15px;
  line-height: 1.47;
  color: var(--text-color);
  margin-bottom: 5px;
}
.qa-content span {
  margin-right: 10px;
  margin-bottom: 2px;
  text-align: center;
  display: inline-block;
}
.qa-content .qa-name {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}
.qa-content .qa-name a{
  color: var(--text-color);
}
.qa-content .qa-category {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;   
  color: var(--text-color);
  background-color: rgba(121,127,135,.1);
  padding: 2px 10px;
  border-radius: 3px;
}
.qa-content .qa-category a{
  color: var(--text-color);
}
.qa-content .qa-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}
/* QA Stats */
.qa-stats {
  display: flex;
  flex-wrap: wrap;
}
.qa-stats .qa-item {
  display: flex;
  gap: 5px;
  align-items: center;
  height: 30px;
  flex-grow: 1;
  padding: 0 0px;
}
.qa-stats .qa-item:last-child {
  border-right: 0;
}
.qa-icon {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1;
  margin-right: 5px;
}
.qa-text {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1;
}
.qa-item a {
  display: flex;
  gap: 5px;
  align-items: center;
}
.qa-item a:hover .qa-icon,
.qa-item a:hover .qa-text {
color: var(--theme);
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
}
.qa-item a:hover .qa-icon {
  color: var(--theme);
}
.qa-item ul {
  padding: 0;
  margin-bottom: -3px;
  margin-left: 13px;
}
.qa-item ul li {
  list-style-type: none;
  display: inline-block;
  margin-left: -18px;
}
.qa-item ul li img {
  max-width: 30px;
  border-radius: 50%;
  border: 2px solid var(--theme-white);
}

/* QA Comments Section */
.qa-user h4 {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.qa-user .qa-date {
  font-size: 14px;
  line-height: 12px;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .qa-sidebar {
    margin-top: 50px;
  }
  .qa-box {
    margin-top: 50px;
  }
  .qa-box .qa-avatar img {
    width: 80px;
    height: 80px;
  }
  .qa-box .qa-holder {
    padding-left: 55px;
  }
  .qa-stats .qa-item {
    height: 40px;
  }
}

/* ================================================================================================================================================================== 
Support index-4.html
===================================================================================================================================================================== */
/* Support Header */
.support-top{
background-image: url(../img/bg/4.jpg); 
background-position: center center; 
background-repeat: no-repeat; 
background-size: cover;

margin-top: 100px;
margin-bottom: 20px;
padding: 55px 70px;
position: relative;
}
.support-top::before {
content: "";
position: absolute;
background: -webkit-linear-gradient(-45deg, #dc143c, #205295);
width: 100%;
height: 100%;
left: 0;
right: 0;
top: 0;
bottom: 0;
opacity: 0.80;
}
.support-content {
position: relative;
}
.support-content .support-top-section {
margin-right: 110px;
margin-bottom: 40px;
}
.support-content .support-top-section .support-title {
margin-bottom: 40px;
}
.support-content .support-top-section .support-title h1 {
color: #fff;
margin-bottom: 40px;
}
.support-content .support-top-section .support-title p {
color: #e7e7e7;
}
.support-content .support-bottom-section .support-counter .support-count-number {
color: #fff;
font-size: 38px;
line-height: 38px;
font-weight: 700;
}
.support-content .support-bottom-section .support-counter .counter {
color: #fff;
font-size: 46px;
line-height: 50px;
font-weight: 600;
}
.support-content .support-bottom-section .support-counter .icon-content-info {
color: #fff;
margin-bottom: 0px;
font-size: 16px;
}
.support-content .support-media {
position: relative;
z-index: 1;
height: 100%;
width: 100%;
}
.support-content .support-media img {
width: auto;
}
.support-content .support-media::after {
background-color: #e2ca95;
content: "";
position: absolute;
right: 0px;
top: 0px;
width: 400px;
height: 400px;
border-radius: 50%;
z-index: -1;
box-shadow: 20px 20px 0px #0E8388 inset;
}
.search-wrapper {
position: relative;
}
.search-wrapper input {
width: 100%;
height: 70px;
padding: .5rem 1rem .5rem 2rem;
font-size: 15px;
color: #696969;
line-height: 30px;
font-weight: 400;
background: #ffffff;
border-radius: 40px;
transition: all 300ms ease;
}
.search-wrapper button {
position: absolute;
right: 10px;
top: 50%;
border-radius: 30px;
padding: 13px 39px 11px;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
@media (min-width: 1200px) {
.support-content .support-media::after {
  width: 467px;
  height: 467px;
}
}
@media (max-width: 1999.95px) {
.support-content .support-media::after {
  width: 400px;
  height: 400px;
}
}
@media (max-width: 992px) {
.support-top{
  padding: 45px 10px;
}
.support-content .support-top-section {
  margin-right: 0px;
  margin-bottom: 40px;
}
.support-content .support-media::after {
  display: none;
}
}




.support-box {
background: var(--theme-white);
display: flex;
margin: 0 0 45px;
-moz-border-radius: 13px;
-webkit-border-radius: 13px;
-ms-border-radius: 13px;
border-radius: 13px;
-webkit-box-shadow: 0 1px 0 rgb(0 0 0 / 5%);
-khtml-box-shadow: 0 1px 0 rgba(0,0,0,.05);
-moz-box-shadow: 0 1px 0 rgba(0,0,0,.05);
-ms-box-shadow: 0 1px 0 rgba(0,0,0,.05);
-o-box-shadow: 0 1px 0 rgba(0,0,0,.05);
box-shadow: 0 1px 0 rgb(0 0 0 / 5%);
position: relative;
}
.support-box .support-box-left {
flex: 0 0 110px;
text-align: center;
padding: 0px 0 0;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.support-box .support-box-left img {
width: 80px;
height: 80px;
max-width: 80px;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 50%;
position: relative;
display: inline-block;
vertical-align: middle;
border: 6px solid transparent;
box-shadow: 4px 2px 0 rgba(8, 190, 171, 0.5);
margin-bottom: 8px;
}
.support-box .support-box-left .support-author .support-author-name a{
font-size: 12px;
color: var(--text-color);
}  
.support-box .support-box-left .support-author .support-author-role{
font-size: 12px;
color: #6c757d;
background-color: #ffe4aa;
} 
.support-box .support-box-middle{
padding: 15px 10px 10px;
flex-grow: 1!important;
border-right: 5px solid var(--bg-icons);
}
.support-box .support-box-right {
min-width: 140px;
display: flex;
flex-direction: column;
align-self: center;
padding: 5px 5px 5px 10px;
}
.support-badge {
position: absolute;
top: -12px;
left: 120px;
padding: 1px 15px;
text-align: center;
font-size: 14px;
font-weight: 400;
color: var(--white);
border-radius: 4px;
-webkit-transition: 0.4s ease;
transition: 0.4s ease;
}
.support-badge a{
color: var(--white);
}

.support-vote-count {
font-size: .85em;
margin: 0 5px 13px 0px !important;
line-height: 1em;
padding: 5px;
text-align: center;
background-color: var(--bg-icons);
color: var(--text-muted);
border-radius: 4px;
}
.support-vote-left{
display: flex;
justify-content: center;
align-items: center;
margin: 5px 8px 8px 5px;
}
.support-vote-left i{
font-size: 20px;
}
.support-vote-count.vote-green {
background: var(--dark);
color: #fff;
}
.support-vote-count span {
display: block;
font-weight: bold;
font-size: 21px;
height: 1em;
line-height: 1em;
}

@media (max-width: 768px) {
.support-box {
  width: 100%;
  display: block;
}  
.support-box .support-box-left {
  padding: 25px 0 0;
  width: 70px;
  float: left;
  margin-left: 15px;
}
.support-box .support-box-left img {
  width: 70px;
  height: 70px;
  max-width: 70px;
  border: 6px solid transparent;
  box-shadow: 4px 2px 0 rgba(8, 190, 171, 0.5);
  margin-bottom: 8px;
}
.support-box .support-box-middle {
  margin-left: 90px;
  float: none;
  padding-top: 15px;
  margin-right: 0;
}  
.support-box .support-box-right {
  position: static;
  flex-direction: row;
  width: 100%!important;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-top: 1px solid #f1f1f1;
  border-left: none;
}  
.support-vote-count {
  flex: 0 0 100px;
}
}  

.color-1{
color: #9E4784;
}
.bg-1{
background-color: #9E4784;
}
.color-2{
color: #0E8388;
}
.bg-2{
background-color: #0d7751;
}
.color-3{
color: #A84448;
}
.bg-3{
background-color: #A84448;
}
.color-4{
color: #7A3E65;
}
.bg-4{
background-color: #7A3E65;
}
.color-5{
color: #e17055;
}
.bg-5{
background-color: #e17055;
}
.color-6{
color: #3A1078;
}
.bg-6{
background-color: #3A1078;
}
.color-7{
color: #e84393;
}
.bg-7{
background-color: #e84393;
}
.color-8{
color: #2F58CD;
}
.bg-8{
background-color: #2F58CD;
}
.color-9{
color: #3795BD;
}
.bg-9{
background-color: #3795BD;
}
.color-10{
color: #F2921D;
}
.bg-10{
background-color: #F2921D;
}
.color-11{
color: #dc143c;
}
.bg-11{
background-color: #dc143c;
}
.color-12{
color: #03001C;
}
.bg-12{
background-color: #03001C;
}
.color-13{
color: #8a2be2;
}
.bg-13{
background-color: #8a2be2;
}
.color-14{
color: #5D9C59;
}
.bg-14{
background-color: #5D9C59;
}
.color-15{
color: #0081B4;
}
.bg-15{
background-color: #0081B4;
}
.color-16{
color: #205295;
}
.bg-16{
background-color: #205295;
}
.color-17{
color: #FD8A8A;
}
.bg-17{
background-color: #FD8A8A;
}
.color-18{
color: #E98EAD;
}
.bg-18{
background-color: #E98EAD;
}
.color-19{
color: #FF597B;
}
.bg-19{
background-color: #FF597B;
}




/* ================================================================================================================================================================== 
Social index-5.html
===================================================================================================================================================================== */
.vine-social{
margin: 100px 0px;
padding: 10px 0px;
} 

/* Social Sidebar */
.social-sidebar.position-sticky{
top: 140px !important;
}
.social-sidebar .navbar-nav .nav-item .nav-link {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: var(--text-color);
padding: 5px 0rem;
position: relative;
font-size: 16px;
font-weight: 500;
margin: 0;
white-space: nowrap;
-webkit-transition: 0.3s ease;
-moz-transition: 0.3s ease;
transition: 0.3s ease;
}
.social-sidebar .navbar-nav .nav-item .nav-link > * {
-webkit-transition: -webkit-transform 0.25s ease;
-moz-transition: -moz-transform 0.25s ease;
transition: transform 0.25s ease;
}
.social-sidebar .navbar-nav .nav-item .nav-link .nav-icon-wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-right: .875rem;
}
.social-sidebar .navbar-nav .nav-item .nav-link .nav-icon-wrap > *:not(.badge) {
font-size: 16px;
}
.social-sidebar .nav-item > .nav-link img {
height: 2.5875rem;
width: 2.5875rem;
transition: transform .5s ease-in-out;
}
.social-sidebar .nav-item > .nav-link:hover img {
transform: scale(1) rotate(-15deg);
}
.social-sidebar .nav-item.active > .nav-link {
color: var(--link-color) !important;
}
.social-sidebar .nav-item > .nav-link:hover {
color: var(--link-color) !important;
}
.social-sidebar .navbar-nav .nav-info {
padding: 10px 0rem;
margin-top: 20px;
color: #9999a5;
font-size: 14px;
}

/* Trend */
.nav-trend {
margin-top: 1rem;
}
.nav-trend .nav-item{
padding: 5px 0rem;
position: relative;
}
.nav-trend .nav-content {
font-size: 0.785rem;
font-weight: 500;
line-height: 15px;
}
.nav-trend .view {
display: flex;
align-items: center;
font-size: 0.75rem;
font-weight: normal;
color: var(--text-color);
} 
.nav-trend .view svg{
margin-right: 10px;
} 

.flex-1 {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
}

/* Add Post Section */
.addpost {
background: var(--theme-white);
padding: 20px 10px;
margin: 0px 15px 30px;
border-radius: 13px;
}
.addpost .addpost-icons {
padding-left: 0px;
display: flex;
align-items: center;
}
.addpost .addpost-icons li {
padding-left: 0px;
margin-left: 0px;
}
.addpost .addpost-icons li a {
color: var(--text-color);
margin-right: 15px;
}
.addpost .addpost-icons li a i {
font-size: 18px;
}

/* Post Links */
.post-links a,
.post-links p{
font-size: 15px;
color: var(--text-color);
}
.post-links a:hover{
color: var(--link-color);
}
.post-links span{
font-size: 14px;
}


.post-link{
background: var(--bg-color);
padding: 20px 20px;
}
.post-link-image{
max-width: 400px;
}
@media (max-width: 992px) {
.addpost {
  margin: 0px 0px 30px;
}
.post-link {
  flex-direction: column;
  align-items: center;
}
}



/* ================================================================================================================================================================== 
Timeline index-6.html
===================================================================================================================================================================== */
.timeline {
padding-right: 40px;
position: relative;
padding-left: 40px;
margin: 40px 10px 0 30px;
border-left: 2px dotted #8392a5;
}
.timeline .timeline-box {
margin-top: 8px;
padding: 20px 0px;
border-bottom: 2px solid var(--border-color);
}
.timeline .timeline-box:first-child {
margin-top: 8px;
padding: 0px 0px 20px;
border-bottom: 2px solid var(--border-color);
}
.timeline .timeline-box:last-child {
border-bottom: 0px;
}
.timeline .timeline-left {
float: left;
margin-left: -65px;
margin-right: 15px;
z-index: 1;
}
.timeline .timeline-left img{
max-width: 53px;
}
.timeline .timeline-user h4 {
font-size: 16px;
line-height: 1.2;
letter-spacing: -0.04em;
margin-bottom: 4px;
}
.timeline .timeline-date {
font-size: 12px;
line-height: 12px;
color: var(--text-color);
}
.timeline .timeline-title {
font-size: 20px;
line-height: 1.2;
letter-spacing: -0.04em;
margin-bottom: 4px;
}
.timeline .timeline-right p {
font-size: 15px;
line-height: 1.47;
color: var(--text-color);
margin-bottom: 5px;
}





/* ================================================================================================================================================================== 
Disscussion 7 disscussion-7.html
===================================================================================================================================================================== */

.discussion-posts{
margin-top: 80px;
}
.comment-box {
padding: 50px;
margin: 50px 0px;
background: var(--theme-white);
-moz-border-radius: 13px;
-webkit-border-radius: 13px;
-ms-border-radius: 13px;
border-radius: 13px;
}
.comment-box > div:first-child {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.comment-box .comment-img {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
width: 80px;
min-width: 80px;
height: 80px;
overflow: hidden;
border-radius: 3px;
}
.comment-box .comment-img img {
width: 100%;
height: 100%;
font-family: "object-fit: cover";
-o-object-fit: cover;
object-fit: cover;
border-radius: 6px;
}
.comment-box .comment-img + .comment-content {
margin-left: 30px;
}
.comment-box .comment-content .comment-head {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.comment-box .comment-content .comment-head a{
font-size: 18px;
}
.comment-box .comment-content .qa-category {
font-size: 14px;
font-weight: 400;
line-height: 14px;   
color: var(--text-color);
background-color: rgba(121,127,135,.1);
padding: 2px 10px;
border-radius: 3px;
}
.comment-box .comment-content .comment-flex{
margin: 7px 0px 10px 0px;
display: flex;
gap: 20px;
}
.comment-box .comment-content .qa-category a{
color: var(--text-color);
}
.comment-box .comment-content .qa-text {
font-size: 14px;
font-weight: 400;
line-height: 14px;
}
.comment-content h1{
font-size: 30px;
margin-bottom: 7px;
letter-spacing: -0.4px;
}
.qa-content h1{
font-size: 17px;
line-height: 1.2;
letter-spacing: -0.04em;
margin-bottom: 4px;
}  
.comment-box .comment-content .dx-comment-date {
display: block;
font-size: .875rem;
color: #7a7a7a;
}
.dx-comment .dx-comment-cont .dx-comment-head + .dx-comment-date {
margin-top: -2px;
}
.dx-comment .dx-comment-cont .dx-comment-date + .dx-comment-text {
margin-top: 18px;
margin-bottom: -6px;
}

@media (max-width:768px) {
.comment-box {
  padding: 30px 30px;
}
}  

/* ============================================================== 
Topic Bar
=================================================================== */
.topic-bar{
margin: 60px 0px;
padding: 20px;
background: var(--theme-white);
display: flex;
flex-wrap: wrap;
gap: 20px;
-moz-border-radius: 13px;
-webkit-border-radius: 13px;
-ms-border-radius: 13px;
border-radius: 13px;
}
.topic-bar-count {
font-size: .85em;
margin: 13px 15px 13px 0px !important;
line-height: 1em;
padding: 20px;
text-align: center;
background-color: var(--bg-icons);
color: var(--text-muted);
border-radius: 4px;
}
.topic-bar-count span {
display: block;
font-weight: bold;
font-size: 21px;
line-height: 1em;
margin-bottom: 8px;
}
.topic-bar-left {
border-right: 3px solid var(--border-color);
}
.topic-bar-middle {
padding: 0px 25px;
border-right: 3px solid var(--border-color);
}
.topic-users {
display: flex;
justify-content: center;
margin-top: 20px;
}
.topic-users ul {
padding: 0;
margin-bottom: 0;
}
.topic-users ul li {
list-style-type: none;
display: inline-block;
margin-left: -18px;
}
.topic-users ul li img {
border-radius: 50%;
border: 3px solid var(--white);
transition: 0.3s;
}
@media (max-width:992px) {
.topic-bar-middle {
  padding: 0px 5px 10px 0px;
}
.topic-bar-count {
  margin: 5px 15px 5px 0px !important;
  padding: 10px;
}
.topic-bar-left {
  padding: 0px 5px 10px 0px;
}
.topic-users {
  margin-top: 0px;
}
}
@media (max-width:768px) {
.topic-bar-left {
  padding: 0px 5px 14px 0px;
  border-bottom: 3px solid var(--border-color);
  border-right: none;
  width: 100%;
}
.topic-bar-middle {
  padding: 0px 5px 14px 0px;
  border-bottom: 3px solid var(--border-color);
  border-right: none;
  width: 100%;
}
.topic-bar-count {
  margin: 5px 15px 5px 0px !important;
  padding: 10px;
}
.topic-users {
  margin-top: 0px;
  width: 100%;
}
}

/* ============================================================== 
Content Section
=================================================================== */
.content{
max-width: 100%;
width: 100%;
}
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
margin-top: 20px;
margin-bottom: 10px;
font-family: 'Roboto', sans-serif;
font-weight: 700;
clear: both;
}
.content h1 {
font-size: 50px;
}
.content h2 {
font-size: 32px;
}
.content h3 {
font-size: 28px;
}
.content h4 {
font-size: 26px;
}
.content h5 {
font-size: 24px;
}
.content h6 {
font-size: 22px;
}

.content ul, .content ol {
margin: 30px 0;
}
.content li {
font-size: 15px;
line-height: 1.57;
margin-bottom: 10px;
}
.content ul li {
padding-left: 30px;
position: relative;
}
.content ul.checklist-ul li::before {
width: 20px;
height: 20px;
border-radius: 50%;
content: "\F272";
font-family: "bootstrap-icons";
position: absolute;
left: 0;
top: 8px;
background-color: var(--green-color);
color: #fff;
display: block;
font-size: .75rem;
height: 1.25rem;
line-height: 1.25rem;
text-align: center;
}
.content ul li::before {
width: 9px;
height: 9px;
background: #8E8E8E;
border-radius: 50%;
position: absolute;
content: '';
left: 0;
top: 13px;
}

.content ol {
padding-left: 30px;
}
.content ol li {
display: list-item;
padding-left: 8px;
}
.content ol li::marker {
font-size: 20px;
font-family: inherit;
font-weight: 700;
color: #8E8E8E;
position: absolute;
left: 0;
}
.content p {
font-size: 15px;
line-height: 1.57;
color: var(--text-color);
margin-bottom: 5px;
}
.content iframe {
margin: 20px 0 20px;
border-radius: 13px;
}
.content img, .content picture {
display: block;
max-width: 100%;
border-radius: 13px;
margin: 20px 0 10px;
}


.block-columns {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
margin: 15px 0;
}
.block-column {
display: block;
float: left;
word-break: break-word;
overflow-wrap: break-word;
margin-left: 70px;
}
.block-column:first-child {
margin-left: 0;
}
.block-column p {
margin: 15px 0;
}
.alignleft {
float: left;
margin-right: 25px;
}

.content blockquote {
background: var(--bg-icons);
border-radius: 13px;
display: block;
width: 100%;
margin: 30px 0;
padding: 50px 55px 40px;
}
.content blockquote p:first-child {
margin-top: 0;
}
.content blockquote cite {
font-size: 19px;
font-family: inherit;
font-weight: 500;
margin-top: 30px;
font-style: normal;
}
.content blockquote .position {
font-size: 12px;
color: #8E8E8E;
margin-top: 7px;
display: block;
clear: both;
}

.content code {
background: #1a1a1e;
display: block;
width: 100%;
max-width: 100%;
color: #fff;
padding: 25px;
line-height: 24px;
border-radius: 13px;
margin: 30px 0;
}

.content .table{
border: var(--border-color);
color: var(--text-color);
}

@media (min-width:767px) {
.content .post-preview-item, .content table, .content li {
  float: none;
}
.content .post-preview-item, .content table {
    margin: 35px 0;
}
}


/* ================================================================================================================================================================== 
Discussion 2 (discussion-2.html)
===================================================================================================================================================================== */
.discussion-title-2 h1{
font-size: 26px;
line-height: 1.2;
letter-spacing: -0.04em;
margin-bottom: 5px;
}
.discussion-title-2 span {
margin-right: 10px;
margin-bottom: 2px;
text-align: center;
display: inline-block;
}
.discussion-title-2 .qa-name {
font-size: 14px;
font-weight: 400;
line-height: 14px;
}
.discussion-title-2 .qa-name a{
color: var(--text-color);
}
.discussion-title-2 .qa-category {
font-size: 14px;
font-weight: 400;
line-height: 14px;   
color: var(--text-color);
background-color: rgba(121,127,135,.1);
padding: 2px 10px;
border-radius: 3px;
}
.discussion-title-2 .qa-category a{
color: var(--text-color);
}
.discussion-title-2 .qa-text {
font-size: 14px;
font-weight: 400;
line-height: 14px;
}
.discussion-2 ul{
padding-left: 0px !important;
margin-left: 0px !important;
}


.comments{
padding: 5px;
margin: 15px 15px;
}
.comment-title {
font-size: 20px;
font-weight: 500;
margin-bottom: 35px;
color: var(--text-color);
}
.comments ul {
margin: 0px;
padding: 0px;
}
.comments ul li {
margin-bottom: 10px;
list-style: none;
}
.comments ul.children {
margin-left: 47px !important;
margin-top: 30px;
padding-left: 10px !important;
border-left: 2px dotted var(--border-color);
}
.comment-info {
flex: 0 0 auto;
}
.mr-20 {
margin-right: 20px;
}
.comment-avatar a img {
width: 40px;
height: 40px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-o-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 50%;
transition: transform .5s ease;
}
.comment-avatar a:hover img {
transform: scale(1.2);
}

.comment-text{
margin-left: -17px;
padding-left: 10px !important;
flex: 1;
}
.comment-name {
margin-bottom: 0px;
}
.comment-name h5 a{
font-size: 15px;
line-height: 15px;
font-weight: 600;
}
.comment-name span {
font-size: 12px;
line-height: 6px;
color: #8A879F;
}
.comment-text p {
white-space: pre-line;
overflow-wrap: break-word;
word-break: break-word;
word-wrap: break-word;
font-size: 16px;
line-height: 20px;
color: #6c757d;
margin: 0 0 10px;
}
.comment-reply {
margin-top: 10px;
}
.comment-reply span{
font-size: 12px;
}
.comment-reply a{
  border: none !important;
  margin-right: 15px;
  padding: 4px 5px;
display: inline-block;
color: var(--text-color);
background-color: rgba(121,127,135,.1);
height: 24px;
line-height: 16px;
font-weight: 500;
font-size: 12px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-o-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
}

.comment-top .comment-avatar img {
width: 50px;
height: 50px;
}
.comment-top .comment-name h5 {
font-size: 18px;
line-height: 20px;
font-weight: 600;
color: var(--text-color);
}
.comment-top .comment-name span {
font-size: 14px;
color: #8A879F;
}
.comment-top .comment-text p {
font-size: 16px;
line-height: 20px;
}

@media (max-width:768px) {
.comments{
  margin: 15px 15px;
}
}






/* ================================================================================================================================================================== 
Pages
===================================================================================================================================================================== */


/*------------------------------------------------------------------
* Titles
*-------------------------------------------------------------------*/
.title-01{
text-align: center;
margin: 80px 0px 40px 0px;
}
.title-02{
padding: 10px;
margin: 20px 0px 40px 0px;
text-align: center;
}
.title-01 h1,
.title-02 h1{
letter-spacing: -0.4px;
}
.title-01 h1{
font-size: 55px;
}
.title-02 h1{
font-size: 30px;
}
.title-01 p {
padding: 0 3%;
margin-top: 20px;
margin-bottom: 0;
}
.title-01 h1::after,
.title-02 h1::after {
content: '—-';
display: block;
}


/*------------------------------------------------------------------
* About Page
*-------------------------------------------------------------------*/
.about-page-middle {
position: relative;
}
.about-page-middle img {
width: 100%;
max-width: 500px;
}

/* Counter */
.list-wrap {
margin: 0px;
padding: 0px;
}
.counter-item-wrap .list-wrap {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
}
.list-wrap li {
list-style: none;
}
.counter-item {
background: var(--theme-white);
box-shadow: 0px 35px 34px rgba(61, 90, 125, 0.06);
border-radius: 20px;
width: 250px;
height: 250px;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
position: relative;
overflow: hidden;
z-index: 1;
}
.counter-item-wrap .list-wrap li:nth-child(1) .counter-item {
margin-top: 80px;
}
.counter-item-wrap .list-wrap li:nth-child(4) .counter-item {
margin-top: -80px;
}
.counter-item .content {
text-align: center;
}
.counter-item .content .count {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 10px;
line-height: 1;
font-size: 50px;
color: var(--theme);
font-weight: 700;
letter-spacing: -1px;
}
.counter-item .content p {
margin-bottom: 0;
color: var(--text-color);
font-weight: 500;
font-size: 18px;
line-height: 1.4;
}

/* Team */
.team{
margin-bottom: 20px;
}
.team .team-image {
display: block;
overflow: hidden;
}
.team .team-image img {
transition: transform .5s ease;
}
.team .team-image img:hover{
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
}
.team .team-body {
padding: 32px 0 0;
}
.team .team-title {
display: block;
margin-bottom: 10px;
}

.landing-container-join {
background: #101111;
padding: 100px 30px 80px 30px;
border-top: 1px;
border: solid #1F2021;
border-left: 0px;
border-right: 0px;
border-bottom: 0px;
width: 100%;
box-sizing: border-box;
}
.landing-container-join-main {
display: flex;
flex-direction: column;
align-items: center;
margin: 0 auto;
width: 100%;
max-width: 630px;
text-align: center;
position: relative;
}
.landing-container-join-main h1 {
font-weight: 700;
font-size: 48px;
line-height: 56px;
letter-spacing: -0.02em;
color: #FFFFFF;
margin: 0;
}
.landing-container-join-main p {
font-style: normal;
font-weight: 500;
font-size: 18px;
line-height: 26px;
color: #D3D5D8;
margin: 16px 0 48px 0;
}
.landing-container-join-main .join-button{
margin-bottom: 87px;
}
.landing-container-join-main .user {
position: absolute;
width: 55px;
height: 55px;
}
.landing-container-join-main .join-user-1 {
top: -45px;
left: -120px;
}
.landing-container-join-main .join-user-2 {
bottom: 25px;
left: -170px;
}
.landing-container-join-main .join-user-3 {
top: -50px;
right: -75px;
}
.landing-container-join-main .join-user-4 {
bottom: 39px;
right: -168px;
}
.landing-container-join-main .line {
position: absolute;
}
.landing-container-join-main .join-line-1 {
top: -25px;
left: -150px;
}
.landing-container-join-main .join-line-2 {
bottom: 47px;
left: -242px;
}
.landing-container-join-main .join-line-3 {
top: -30px;
right: -120px;
}
.landing-container-join-main .join-line-4 {
bottom: 60px;
right: -200px;
}

@media (max-width:950px) {
.landing-container-join-main h1 {
  width: 416px;
}
.landing-container-join-main .join-user-1,
.landing-container-join-main .join-user-2,
.landing-container-join-main .join-user-3,
.landing-container-join-main .join-user-4 {
  display: none;
}  
.landing-container-join-main .line {
  display: none;
}  
}
@media (max-width:768px) {
.counter-item-wrap .list-wrap li:nth-child(4) .counter-item {
  margin-top: 0px;
}
}

/*------------------------------------------------------------------
* Login Page
*-------------------------------------------------------------------*/
.login{
min-height: 500px;
background-image: linear-gradient( rgba(35, 37, 38, 0.50), rgba(35, 37, 38, 0.50) ), url(../img/bg/login.jpg);
background-position: 50%;
background-repeat: no-repeat; 
background-size: cover;

position: relative;
display: flex;
align-items: center;
}  
.login .shape {
position: absolute;
right: 0;
bottom: 0;
left: 0;
line-height: 0;
}
.vine-svg.fill {
fill: var(--bg-color);
}
.vine-login {
margin-top: -220px;
margin-bottom: 80px;
}
.vine-login .card{
box-shadow: 0px 30px 40px rgb(2 45 62 / 8%);
}
.vine-login .login-header{
align-items: center;
text-align: center;
}
.vine-login img{
width: var(--logo-width);
height: var(--logo-height);
}

/* ------------------------------------------------------------------- */
/* Users Page
---------------------------------------------------------------------- */
.user-wrap {
position: relative;
display: block;
border: 1px solid var(--theme-white);
margin-bottom: 60px;
background: var(--theme-white);
text-align: center;
-moz-border-radius: 13px;
-webkit-border-radius: 13px;
-ms-border-radius: 13px;
border-radius: 13px;
-webkit-box-shadow: 0 1px 0 rgb(0 0 0 / 5%);
-khtml-box-shadow: 0 1px 0 rgba(0,0,0,.05);
-moz-box-shadow: 0 1px 0 rgba(0,0,0,.05);
-ms-box-shadow: 0 1px 0 rgba(0,0,0,.05);
-o-box-shadow: 0 1px 0 rgba(0,0,0,.05);
box-shadow: 0 1px 0 rgb(0 0 0 / 5%);
}
.user-wrap .user-badge {
position: absolute;
top: -12px;
right: 10px;
padding: 1px 15px;
text-align: center;
font-size: 14px;
font-weight: 400;
background-color: transparent;
color: var(--text-color);
border-radius: 2px;
-webkit-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease;
}
.user-wrap .user-badge .btn:hover {
-webkit-transform: translateY(-4px);
-ms-transform: translateY(-4px);
transform: translateY(-4px);
}
.user-wrap .user-thumb {
padding: 0.5rem;
background: var(--theme-white);
border: 2px dashed #ececf0;
border-radius: 50%;
margin: 3rem auto 0.5rem;
width: 160px;
}
.user-wrap .user-caption h4 a {
font-size: 18px;
}
.user-wrap .user-caption p {
font-size: 16px;
}
.user-wrap ul{
display: inline-block;
padding-left: 0px;
width: 100% !important;
}
.user-wrap .user-stats li {
display: inline-block;
text-align: center;
position: relative;
width: 25%;
}
.user-wrap .user-stats li a {
text-align: center;
}
.user-wrap .user-stats .item-number {
text-align: center;
font-size: 20px;
color: var(--text-color);
display: block;
}
.user-wrap .user-stats .item-text {
display: block;
font-weight: 400;
color: var(--text-color);
font-size: 12px;
}

@media (min-width: 350px) and (max-width: 767.95px) {
.user-wrap .user-stats{
  margin-left: 8px;
  align-items: center;
}
}

/* ------------------------------------------------------------------- */
/* Users Profile Page
---------------------------------------------------------------------- */
.profile-banner{
background-image: linear-gradient( rgba(35, 37, 38, 0.50), rgba(35, 37, 38, 0.50) ), url(../img/bg/5.jpg);
background-position: 50%;
background-repeat: no-repeat; 
background-size: cover;
height: 250px;
margin-top: 100px;
}
.user-profile-img {
padding: 50px 0px;
margin-top: -170px;
}
.user-profile-img img{
border: 10px solid var(--white);
border-radius: 50%;
max-width: 200px;
}
.user-profile-details {
padding: 0px 0px 50px;
margin-top: 0px;
}
.user-profile-name{
padding: 0px 0px 20px;
border-bottom: 2px dashed var(--border-color);
}
.user-profile-stats,
.user-profile-followers{
padding: 40px 0px;
border-bottom: 2px dashed var(--border-color);
}
.user-profile-bio{
padding: 40px 0px;
}
.user-profile-stats ul {
display: inline-block;
padding-left: 0px;
width: 100% !important;
margin-bottom: 0px;
}
.user-profile-stats ul li {
display: inline-block;
text-align: center;
margin-right: 45px;
}
.user-profile-stats ul li:last-child {
margin-right: 0px;
}
.user-profile-stats ul li .item-number {
text-align: center;
font-size: 23px;
line-height: 24px;
font-weight: 700;
color: var(--text-color);
display: block;
}
.user-profile-stats ul li .item-text {
display: block;
font-weight: 400;
color: var(--text-color);
font-size: 12px;
}
.user-profile-stats ul li a {
text-align: center;
position: relative;
top: -17px;
}

.user-profile-followers ul {
padding: 0;
margin-bottom: -6px;
margin-left: 13px;
}
.user-profile-followers ul li {
list-style-type: none;
display: inline-block;
margin-left: -10px;
}
.user-profile-followers ul li img {
max-width: 40px;
border-radius: 50%;
border: 2px solid var(--white);
}

.achivement-fact {
margin: 0 0 25px;
padding: 40px 0;
border-bottom: 2px dashed var(--border-color);
}
.achivement-fact li {
list-style: none;
display: inline-block;
margin-right: 15px;
text-align: center;
align-items: center;
justify-content: center;
}
.achivement-fact li .icon {
height: 60px;
width: 60px;
border-radius: 50%;
line-height: 60px;
margin-bottom: 10px;
text-align: center;
background: var(--green-color);
}
.achivement-fact li .icon i{
font-size: 30px;
color: var(--white);
}
.achivement-fact li p {
font-size: 12px;
font-weight: 500;
}

/* ------------------------------------------------------------------- */
/* Leaderboard Page
---------------------------------------------------------------------- */
.leaderboard-box{
border-radius: 13px;
-webkit-box-shadow: 0px 30px 40px rgb(2 45 62 / 8%);
-khtml-box-shadow: 0px 30px 40px rgb(2 45 62 / 8%);
-moz-box-shadow: 0px 30px 40px rgb(2 45 62 / 8%);
-ms-box-shadow: 0px 30px 40px rgb(2 45 62 / 8%);
-o-box-shadow: 0px 30px 40px rgb(2 45 62 / 8%);
box-shadow: 0px 30px 40px rgb(2 45 62 / 8%);
}
.leaderboard-box .leaderboard-box-img {
display: inline-block;
flex-shrink: 0;
position: relative;
border-radius: 1.15rem;
}
.leaderboard-box .leaderboard-box-img img {
width: 180px;
height: 180px;
max-width: 180px;
display: inline-block;
border-radius: 1.15rem;
}
.symbol-icon{
height: 20px !important;
width: 20px !important;
background: var(--green-color);
border: 4px solid var(--white);
}
.leaderboard-box .leaderboard-box-stats{
border: 2px dashed var(--border-color);
border-radius: 1.15rem !important;
}

/* ------------------------------------------------------------------- */
/* Category 1 Page
---------------------------------------------------------------------- */
.category-box {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background: var(--theme-white);
border-radius: 10px;
box-shadow: 0px 30px 40px rgb(2 45 62 / 8%);
margin: 20px 0px;
}
.category-box .category-info{
display: flex;
justify-content: center;
padding: 20px;
margin-right: 20px;
border-right: 2px solid var(--border-color);
}
.category-box .category-info img.cat{
width: 220px;
height: 220px;
border-radius: 10px;
margin-right: 20px;
}
.category-box .category-content{
padding: 0px 10px;
}

.category-box .category-stats{
padding: 20px;
flex: 0 0 450px;
}
.category-top{
padding: 20px 0px;
border-bottom: 2px solid var(--border-color);
}
.category-top .category-topics{
margin-right: 10px;
}
.category-users ul {
padding: 0;
margin-bottom: 0;
margin-left: 13px;
}
.category-users ul li {
list-style-type: none;
display: inline-block;
margin-left: -18px;
}
.category-users ul li img {
max-width: 45px;
border-radius: 50%;
border: 2px solid var(--theme-white);
}

.category-users .plus-sign {
width: 45px;
height: 45px;
border-radius: 50%;
background: var(--green-color);
border: 2px solid var(--theme-white);
line-height: 34px;
color: var(--white);
font-size: 24px;
z-index: 5;
margin-left: -18px;
text-align: center;
}
.category-users .plus-sign a{
color: var(--white);
}
.category-users .plus-sign a:hover,
.category-users .plus-sign a:active{
color: var(--white);
}
.category-box .category-stats .category-bottom{
padding: 20px 0px;
}
.category-box .category-bottom img {
width: 55px;
height: 55px;
max-width: 55px;
border-radius: 10px;
margin-right: 20px;
}
.category-box .category-bottom a{
font-size: 18px;
line-height: 16px;
}
.category-box .category-bottom span.fs-7{
font-size: 14px;
}

@media (max-width:1400px) {
.category-box .category-stats{
  padding: 20px;
  flex: 0 0 350px;
}
}  
@media (max-width:991px) {
.category-box .category-stats{
  padding: 20px;
  flex: 0 0 250px;
}
} 

@media (max-width:991px) {
.category-box {
  flex-direction: column;
}  
.category-box .category-info{
  flex-direction: column;
  border: none;
}
.category-box .category-content{
  margin-top: 20px;
}
.category-box .category-stats{
  padding: 20px;
  flex: 0 0 0px;
}
.category-box .category-stats .category-top{
  padding: 20px 0px;
  border-top: 2px solid var(--border-color);
}
} 


/* ------------------------------------------------------------------- */
/* Category 2 Page
---------------------------------------------------------------------- */
.category-box-2 {
position: relative;
margin-bottom: 15px;
padding: 10px;
}
.category-box-2 img.cat-img {
border-radius: 13px;
width: 100%;
height: 350px;
max-height: 350px;
}
.category-box-2 .category-box-content {
background: var(--theme-white);
padding: 40px;
margin: 0px 35px;
position: relative;
top: -100px;
justify-content: space-between;
align-items: center;
border-radius: 13px;
}
.category-box-2 .category-box-content .category-content-bottom{
padding: 20px 0px 0px;
border-top: 2px solid var(--border-color);
}
.category-box-2 .category-box-content .category-details h5 {
font-size: 22px;
margin-bottom: 8px;
}
.category-box-2 .category-box-content .category-details h5 a {
  color: var(--link-color);
}
.category-box-2 .category-box-content .category-details p {
margin-bottom: 0;
}
.category-box-2 .category-box-content .topics-btn .btn-more {
padding: 15px 29px;
border: 1px solid #eee;
border-radius: 5px;
font-weight: 500;
color: var(--text-color);
}
.category-box-2 .category-box-content .topics-btn .btn-more:hover {
background-color: var(--green-color);
color: var(--white);
border-color: var(--green-color);
}
.category-box-2 .category-box-content .topics-btn .btn-more span{
transition: transform 0.5s;
}
.category-box-2 .category-box-content .topics-btn .btn-more:hover span{
transform: translateX(-7px);
}
.category-box-2 .category-box-content .topics-btn .btn-more img {
filter: brightness(0) saturate(100%) invert(85%) sepia(0) saturate(1%) hue-rotate(222deg) brightness(90%) contrast(84%);
transition: transform 0.5s;
margin-left: 5px;
}
.category-box-2 .category-box-content .topics-btn .btn-more:hover img {
filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(12%) hue-rotate(197deg) brightness(105%) contrast(104%);
transform: translateX(5px);
}

@media (max-width:991px) {
.category-box-2 .category-content-top,
.category-box-2 .category-content-bottom{
  flex-direction: column;
}  
.category-box-2 .category-content-top .category-details{
  margin-bottom: 15px;
}  
.category-box-2 .category-content-bottom .category-topics{
  margin-bottom: 15px;
}
} 


/* ------------------------------------------------------------------- */
/* Tags Page
---------------------------------------------------------------------- */
.tag-box{
background: rgba(79, 82, 87, 0.1);
padding: 40px 20px;
margin: 0px 0px 30px;
-moz-border-radius: 13px;
-webkit-border-radius: 13px;
-ms-border-radius: 13px;
border-radius: 13px;
position: relative;
}
.tag-header {
padding: 15px 15px;
margin: 0px 15px 25px;
background: var(--theme-white);
text-align: center;
font-size: 14px;
font-weight: 400;
color: var(--text-color);
border-radius: 13px;
-webkit-box-shadow: 0 1px 0 rgb(0 0 0 / 5%);
-khtml-box-shadow: 0 1px 0 rgba(0,0,0,.05);
-moz-box-shadow: 0 1px 0 rgba(0,0,0,.05);
-ms-box-shadow: 0 1px 0 rgba(0,0,0,.05);
-o-box-shadow: 0 1px 0 rgba(0,0,0,.05);
box-shadow: 0 1px 0 rgb(0 0 0 / 5%);
-webkit-transition: all .5s ease;
-o-transition: all .5s ease;
transition: all .5s ease;
}
.tag-box .media-body .fs-7 a{
color: var(--text-color);
}
.tag-box .media-body .fs-7 a:hover{
color: var(--green-color);
}

/* ------------------------------------------------------------------- */
/* FAQ Page
---------------------------------------------------------------------- */
.faq-tabs {
background-color: var(--theme-white);
padding-top: 20px;
padding-bottom: 25px;
border-radius: 10px;
box-shadow: 0px 30px 40px rgb(2 45 62 / 8%);
top: calc(108px + 2rem);
}
.faq-tabs .nav-link {
color: var(--text-color);
font-size: 18px;
font-weight: 500;
letter-spacing: normal;
line-height: 25px;
padding: 6px 25px;
}
.faq-tabs .nav-link.active {
color: var(--link-color);
background-color: transparent;
}
.faq-tabs .nav-link:hover{
color: var(--link-color);
background-color: transparent;
}
.faq-tabs .nav-link i{
margin-right: 4px;
}

.faq .accordion-item {
color: var(--text-color);
background-color: var(--theme-white);
padding: 1rem 1.5rem;
}
.faq .accordion-header {
margin-bottom: 0;
}
.faq .accordion-button {
position: relative;
display: flex;
align-items: center;
width: 100%;
padding: 1rem 1.5rem;
font-size: 1rem;
color: var(--text-color);
background-color: var(--theme-white);
border: 0;
border-radius: 0;
overflow-anchor: none;
transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, border-radius 0.15s ease;
}
.faq .accordion-button::after {
padding: 0.87rem;
content: "\F282";
font-family: "bootstrap-icons";
border-radius: 50%;
background-color: var(--bg-color);
transition: all .35s;
color: var(--text-color);
background-position: center;
}
.faq .accordion-button:not(.collapsed)::after {
background-color: var(--green-color);
content: "\F286";
font-family: "bootstrap-icons";
color: var(--white);
background-position: center;
}
.faq .accordion-body {
padding: 1rem 1.5rem;
}

/* ------------------------------------------------------------------- */
/* Contact Page
---------------------------------------------------------------------- */
.contact-content {
padding-right: 30px;
padding-left: 20px;
}
.contact-boxs {
margin-bottom: 40px;
}
.contact-box {
align-items: center;
}
.contact-icon {
position: relative;
width: 60px;
height: 60px;
background-color: var(--green-color);
color: var(--white);
display: -webkit-box;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.contact-icon i{
font-size: 25px;
}  
.contact-box-content{
padding-left: 20px;
}
.contact-form {
background: var(--theme-white);
padding: 30px 30px;
border-radius: 13px;
}

@media (max-width: 768px) {
.contact-content {
  padding: 0px 15px !important;
}
.contact-form {
  padding: 30px 20px;
  margin-top: 40px;
}

}

/* ------------------------------------------------------------------- */
/* Pricing Page
---------------------------------------------------------------------- */
.price-wrap {
padding: 40px;
margin: 0px 10px 30px;
border-radius: 13px;
background: var(--theme-white);
transition: 0.3s;
text-align: left;
position: relative;
box-shadow: 0px 30px 40px rgb(2 45 62 / 8%);
}
.price-wrap.active {
margin-top: -40px;
border-top: 5px solid var(--theme);
}
.price-currency .new-price {
font-size: 15px;
font-weight: 500;
margin-right: 15px;
}
.price-currency .new-price del {
font-size: 50px;
text-decoration: none;
margin-left: 4px;
}
.price-currency .old-price {
font-size: 15px;
font-weight: 500;
opacity: 0.3;
}
.price-currency .old-price del {
font-size: 35px;
text-decoration: none;
}

.price-title {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.price-title .price-tlt h4 {
font-size: 22px;
font-weight: 400;
margin: 0;
}
.price-ribbon .ribbon-offer {
margin-left: 10px;
padding: 3px 8px;
background: rgba(8, 190, 171, .18);
border-radius: 4px;
font-size: 12px;
font-weight: 500;
color: var(--green-color);
}
.price-ribbon .ribbon-offer.all {
background: rgb(255 152 0 / 10%);
color: #ff9800;
}
.price-subtitle {
font-size: 16px;
color: #6c757d;
}
.price-body {
margin: 1rem 0;
border-top: 2px dashed var(--border-color);
padding: 1rem 0;
}
.price-body ul {
padding: 0;
width: 100%;
margin: 0;
}
.price-body ul li {
display: block;
position: relative;
list-style: none;
padding: 10px 0 0px 18px;
}
.price-body ul li::after {
position: absolute;
content: "";
height: 7px;
width: 7px;
background-color: var(--text-color);
opacity: .5;
left: 0;
top: 20px;
transform: rotate(-45deg);
}

/* ------------------------------------------------------------------- */
/* 404 Page
---------------------------------------------------------------------- */
.error-content {
margin-top: 80px;
text-align: center;
background: var(--theme-white);
padding: 50px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-moz-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
-webkit-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
-o-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
}
.error-content h1 {
font-weight: 900;
font-size: 180px;
line-height: 140px;
margin-bottom: 30px;
}
.error-content h1 span {
color: var(--green-color);
}
.error-content h2 {
text-transform: capitalize;
font-weight: 600;
margin-bottom: 25px;
}
.error-content a {
line-height: 24px;
}


/* ============================================================================================================================================================================= 
Dashboard
================================================================================================================================================================================ */
.dashboard{
margin-top: 100px;
padding: 50px 0px;
}

/* Navbar Toggler */
.navbar-transparent {
background: transparent;
position: absolute;
top: 0;
left: 0;
right: 0;
}
.navbar-toggler {
padding: 10px 10px;
}
.navbar-toggler .navbar-toggler-animation {
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
background-image: none;
position: relative;
height: 22px;
width: 22px;
display: inline-block;
vertical-align: middle;
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
}
.navbar-toggler .navbar-toggler-animation span {
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
-webkit-transform: rotateZ(0deg);
transform: rotateZ(0deg);
height: 2px;
background: var(--text-color);
display: block;
position: absolute;
width: 100%;
border-radius: 30px;
}
.navbar-toggler .navbar-toggler-animation span:nth-child(1) {
top: 6%;
}
.navbar-toggler .navbar-toggler-animation span:nth-child(2) {
top: 50%;
-webkit-transform: translateY(-50%);
        transform: translateY(-50%);
}
.navbar-toggler .navbar-toggler-animation span:nth-child(3) {
bottom: 10%;
}
.navbar-toggler[data-bs-toggle=collapse][aria-expanded=true] .navbar-toggler-animation span:nth-child(1) {
-webkit-transform: rotateZ(45deg) translateY(-50%);
        transform: rotateZ(45deg) translateY(-50%);
top: 50%;
-webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
width: 100%;
}
.navbar-toggler[data-bs-toggle=collapse][aria-expanded=true] .navbar-toggler-animation span:nth-child(2) {
visibility: hidden;
-webkit-transition: all 0s ease-in-out;
transition: all 0s ease-in-out;
}
.navbar-toggler[data-bs-toggle=collapse][aria-expanded=true] .navbar-toggler-animation span:nth-child(3) {
-webkit-transform: rotateZ(-45deg) translateY(-50%);
        transform: rotateZ(-45deg) translateY(-50%);
bottom: 42%;
-webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
width: 100%;
} 
.navbar-collapse{
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}


/* Dashboard Sidebar */
.position-sticky{
top: 140px !important;
}
.dash-sidebar .navbar-nav .nav-item .nav-link {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: var(--text-color);
padding: 5px 1rem;
position: relative;
font-size: 16px;
font-weight: 500;
margin: 0;
white-space: nowrap;
-webkit-transition: 0.3s ease;
-moz-transition: 0.3s ease;
transition: 0.3s ease;
}
.dash-sidebar .navbar-nav .nav-item .nav-link > * {
-webkit-transition: -webkit-transform 0.25s ease;
-moz-transition: -moz-transform 0.25s ease;
transition: transform 0.25s ease;
cursor: pointer;
}
.dash-sidebar .navbar-nav .nav-item .nav-link .nav-icon-wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-right: .875rem;
}
.dash-sidebar .navbar-nav .nav-item .nav-link .nav-icon-wrap > *:not(.badge) {
font-size: 16px;
}
.dash-sidebar .nav-item.active > .nav-link {
color: var(--link-color) !important;
}
.dash-sidebar .nav-item > .nav-link:hover {
color: var(--link-color) !important;
}
.dash-sidebar .navbar-nav .nav-info {
padding: 10px 1rem;
margin-top: 20px;
color: #9999a5;
font-size: 14px;
text-transform: uppercase;
font-weight: bold;
}

/* Vine Tabs */
.vine-tabs{
background: var(--theme-white);
}

/* Dashboard Card */
.dashboard-card{
background: var(--theme-white);
margin: 30px 0px;
padding: 30px;
border-radius: 13px;
}
.dashboard-card .dashboard-header{
padding: 20px 29px 10px;
}
.dashboard-card .dashboard-body{
padding: 20px 29px;
}
.dashboard-user-box img{
width: 90px;
}
.dashboard-bg-box {
min-height: 250px !important;
background-position: center center; 
background-repeat: no-repeat; 
background-size: cover;
}

@media (max-width:768px) {
.dashboard-card .dashboard-header{
  padding: 20px 10px 10px;
}
.dashboard-card .dashboard-body{
  padding: 20px 10px;
}
}

/* Password Toggle */
.password-toggle {
position: relative
}
.password-toggle .form-control {
padding-right: 3rem
}
.password-toggle-btn {
position: absolute;
top: 50%;
right: .625rem;
margin-bottom: 0;
padding: .5rem;
transform: translateY(-50%);
font-size: 1rem;
line-height: 1;
cursor: pointer
}
.password-toggle-btn .password-toggle-indicator {
transition: color .2s ease-in-out;
color: #9397ad;
font-family: "bootstrap-icons";
font-size: 1.25em;
font-style: normal
}
.password-toggle-btn .password-toggle-indicator::before {
content: "\F341"
}
.password-toggle-btn .password-toggle-indicator:hover {
color: #33354d;
}
.password-toggle-btn .password-toggle-check {
position: absolute;
left: 0;
z-index: -1;
width: 1rem;
height: 1.25rem;
opacity: 0
}
.password-toggle-btn .password-toggle-check:checked~.password-toggle-indicator::before {
content: "\F340"
}



/* ------------------------------------------------------------------- */
/* Dashboard Overview Section
---------------------------------------------------------------------- */
.icon-with-bg {
display: flex;
align-items: center;
justify-content: center;
color: #08beab;
background-color: rgba(8, 190, 171, .12) !important;
}
#chart {
max-width: 650px;
margin: 35px auto;
color: #6c757d !important;
}
.dashboard-gravity-list {
margin: 0px 0 30px;
background-color: var(--theme-white);
border-radius: 13px;
}
.dashboard-gravity-list h4 {
font-size: 16px;
font-weight: 600;
margin: 0;
padding: 20px 30px;
display: block;
background-color: var(--theme-white);
border-bottom: 2px solid var(--border-color);
border-radius: 4px 4px 0 0;
}
.dashboard-gravity-list ul {
list-style: none;
padding: 0;
margin: 0;
background-color: var(--theme-white);
border-radius: 0 0 4px 4px;
}
.dashboard-gravity-list.with-icons ul li {
padding: 23px 87px;
font-size: 14px;
border-bottom: 2px solid var(--border-color);
transition: .3s;
position: relative;
}
.dashboard-gravity-list.with-icons ul li:last-child {
border-bottom: 0px;
}
.dashboard-gravity-list ul li i.dash-icon-box {
height: 38px;
width: 38px;
color: var(--text-color);
text-align: center;
line-height: 37px;
border-radius: 50%;
transition: .3s;
display: inline-block;
background-color: var(--bg-icons);
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 30px;
}
.dashboard-gravity-list.with-icons ul li strong {
color: var(--text-color);
}
a.close-list-item {
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 30px;
opacity: 0;
padding: 4px;
color: var(--theme);
transition: .3s;
}
.dashboard-gravity-list ul li:hover a.close-list-item {
opacity: 1;
}


/* Invoices */
.dashboard-gravity-list.invoices ul li {
padding: 13px 20px !important;
font-size: 14px;
border-bottom: 2px solid var(--border-color);
transition: .3s;
position: relative;
}
.invoice-list-item strong {
font-weight: 600;
color: #333;
margin-bottom: 5px;
margin-top: -2px;
display: block;
}
.invoice-check{
display: flex;
font-size: 14px;
}
.paid, .unpaid {
color: #fff;
border-radius: 4px;
line-height: 20px;
padding: 4px 8px;
font-size: 13px;
position: relative;
top: -1px;
}
.unpaid {
background-color: #dc3139;
}
.paid {
background-color: #40b660;
}
.buttons-to-right{
position: absolute;
right: 30px;
top: 50%;
transform: translateY(-50%);
opacity: 0;
transition: 0.3s;
}
.button.gray {
background-color: var(--bg-icons);
color: var(--text-color);
box-shadow: none;
margin: 0 0 -6px 2px;
padding: 4px 8px;
}
.dashboard-gravity-list li:hover .buttons-to-right {
opacity: 1;
}


/* ------------------------------------------------------------------- */
/* Pricing Plans Page
---------------------------------------------------------------------- */
.price {
padding: 70px 60px;
border-radius: 20px 0px 0px 20px;
box-shadow: 0px 2px 12px rgba(20, 20, 43, 0.08);
height: 100%;
background: var(--theme-white);
}
.price.price-grey-bg {
background: var(--theme-white);
border-radius: 0 20px 20px 0;
border: 0;
}
.price-content {
margin-bottom: 40px;
}
.price-content-circle {
height: 70px;
width: 70px;
background-color: var(--bg-icons);
border-radius: 16px;
display: flex;
justify-content: center;
align-items: center;
margin-right: 20px;
}
.price-content-circle span {
height: 40px;
width: 40px;
background-color: var(--white);
display: inline-block;
border-radius: 50%;
overflow: hidden;
transform: rotate(180deg);
}
.price-content-circle span::before {
content: "";
height: 100%;
width: 50%;
background-color: var(--green-color);
display: inline-block;
}
.price-content-text span {
font-weight: 500;
font-size: 18px;
line-height: 20px;
color: var(--text-color);
}
.price-content-text h5 {
font-weight: 600;
font-size: 24px;
line-height: 35px;
margin-bottom: 0;
}
.price p {
font-weight: 400;
font-size: 18px;
line-height: 30px;
}
.price-price {
margin-bottom: 30px;
display: inline-block;
}
.price-price span {
font-weight: 500;
font-size: 20px;
line-height: 22px;
color: var(--text-color);
}
.price-price b {
font-weight: 600;
font-size: 54px;
line-height: 66px;
color: var(--text-color);
}
.price-btn {
display: inline-block;
color: var(--white);
background: var(--green-color);
border-radius: 10px;
height: 40px;
line-height: 40px;
text-align: center;
padding: 0 50px;
position: relative;
z-index: 1;
overflow: hidden;
text-transform: uppercase;
transition: 0.3s;
font-weight: 700;
font-size: 16px;
letter-spacing: 0.08em;
text-transform: uppercase;
transform: rotate(-0.48deg);
border-radius: 96px;
}
.price-btn:hover {
color: var(--white);
background-color: var(--green-color-hover);
}
.price-title {
margin-bottom: 30px;
}
.price-list ul li {
margin-bottom: 15px;
position: relative;
padding-left: 40px;
}
.price-list ul li i {
height: 25px;
width: 25px;
background-color: var(--green-color);
color: var(--white);
text-align: center;
line-height: 25px;
border-radius: 50%;
position: absolute;
left: 0;
}
.price-list ul li.price-disable {
color: #BAB9CA;
}
.price-list ul li.price-disable i {
background-color: #BAB9CA;
}

@media (max-width:768px) {
.price {
  padding: 20px 15px;
  border-radius: 20px 20px 0px 0px;
}
.price.price-grey-bg {
  padding: 20px 15px;
  border-radius: 0px 0px 20px 20px;
}  
}


/* ------------------------------------------------------------------- */
/* Subscriptions Page
---------------------------------------------------------------------- */
.dash-payment-card{
position: relative;
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
background: transparent;
border: 2px dashed var(--green-color);
}
.dash-payment-card a{
color: var(--text-color);
}
.table tr{
color: var(--text-color);
}
.table tr td{
font-size: 16px;
}
.badge-light-danger {
color: var(--bs-danger);
background-color: #FFF5F8;
}
.badge-light-muted {
color: var(--text-color);
background-color: var(--text-muted);
}


/* ------------------------------------------------------------------- */
/* Invoice Page
---------------------------------------------------------------------- */
.invoice img{
width: var(--logo-width);
height: var(--logo-height);
}


/* ------------------------------------------------------------------- */
/* Bookmarks Page
---------------------------------------------------------------------- */
.remove-icon {
position: absolute;
top: -10px;
right: -10px;
width: 40px;
height: 40px;
line-height: 40px;
color: #fff;
font-size: 18px;
text-align: center;
cursor: pointer;
background-color: var(--black);
border-radius: 100%;
z-index: 99999;
-webkit-transition: 0.3s ease;
-moz-transition: 0.3s ease;
transition: 0.3s ease;
}
.remove-icon:hover {
background-color: var(--green-color);
}


/* ------------------------------------------------------------------- */
/* Notifications Page
---------------------------------------------------------------------- */
.notification-card img{
max-width: 50px;
}
.remove-icon-sm {
width: 30px;
height: 30px;
max-width: 30px;
max-height: 30px;
line-height: 30px;
font-size: 18px;
text-align: center;
color: #fff;
background-color: var(--green-color);
cursor: pointer;
border-radius: 100%;
-webkit-transition: 0.3s ease;
-moz-transition: 0.3s ease;
transition: 0.3s ease;
}
.remove-icon-sm:hover {
background-color: var(--black);
}
@media (max-width:768px) {
.remove-icon-sm {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  line-height: 20px;
  font-size: 18px;
}  
}


/* ------------------------------------------------------------------- */
/* Add Post Page
---------------------------------------------------------------------- */
.upload-image {
padding: 50px;
border-radius: 10px;
border: dashed 3px var(--border-color);
text-align: center;
}



/* ------------------------------------------------------------------- */
/* Post Single Page
---------------------------------------------------------------------- */


    /* --- Single Job Post Page CSS --- */
    .outer-main-wrapper {
        gap: 0 !important;
        justify-content: center;
        overflow-x: hidden;
    }
    .outer-main-wrapper .forum-main-sec{
        font-size: 15px;
        line-height: 1.5 !important;
        font-family: "poppins", sans-serif !important;
    }
    /* .outer-main-wrapper .forum-main-sec * {
        font-family: "poppins", sans-serif !important;
    } */
    .outer-main-wrapper .forum-main-sec .discussions {
        padding-inline: 8px;
        padding-block: 16px;
    }

    .outer-main-wrapper .forum-main-sec .discussions .post-box {
        padding-inline: 0;
    }


    .outer-main-wrapper .forum-main-sec .discussions .post-box table {
        width: auto;
        max-width: 100%;
    }

    .outer-main-wrapper .forum-main-sec .discussions table tr td span {
        font-size: 14px !important;
    }

    .outer-main-wrapper .forum-main-sec .discussions .card h1 {
        font-size: 1.45rem;
        line-height: 1.35 !important;
    }

    .outer-main-wrapper .forum-main-sec .discussions h2,
    .outer-main-wrapper .forum-main-sec .discussions h3,
    .outer-main-wrapper .forum-main-sec .discussions h4,
    .outer-main-wrapper .forum-main-sec .discussions h5,
    .outer-main-wrapper .forum-main-sec .discussions h6 {
        font-size: 1.5rem;
        line-height: 1.2 !important;
    }

    .outer-main-wrapper .forum-main-sec .discussions h2,
    .outer-main-wrapper .forum-main-sec .discussions h3,
    .outer-main-wrapper .forum-main-sec .discussions h4 {
        margin-bottom: 6px !important;
    }

    .outer-main-wrapper .forum-main-sec .discussions h3, 
    .outer-main-wrapper .forum-main-sec .discussions h3 strong {
      font-size: 1.25rem;
      font-weight: 700;
    }

    .outer-main-wrapper .forum-main-sec .discussions h4,
    .outer-main-wrapper .forum-main-sec .discussions h4 strong {
        font-size: 1.125rem;
        font-weight: 600;
    }
    .outer-main-wrapper .forum-main-sec .discussions h5 {
        font-size: 16px;
        font-weight: 600;
    }
   
    .outer-main-wrapper .forum-main-sec .discussions table tr,
    .outer-main-wrapper .forum-main-sec .discussions table tr td {
        background-color: #efeeee !important;
        line-height: 1.25 !important;
    }


    .outer-main-wrapper .forum-main-sec .discussions table tr,
    .outer-main-wrapper .forum-main-sec .discussions table tr:nth-child(2n) td {
        background-color: #fff !important;
    }

    .outer-main-wrapper .forum-main-sec .discussions table tr td span,
    .outer-main-wrapper .forum-main-sec .discussions table tr td strong a,
    .outer-main-wrapper .forum-main-sec .discussions table tr td span,
    .outer-main-wrapper .forum-main-sec .discussions table tr td * {
        font-size: 15px !important;
        line-height: 20px !important;
    }
    .outer-main-wrapper .forum-main-sec .discussions li {
      margin-bottom: 10px;
    }
    

    /* --- Single Job Post Page CSS --- */


/*------------------------------------------------------------------
* Chat Section
*-------------------------------------------------------------------*/
.chat-tab-list{
height: 500px;
}
.chat-tab-list li{
margin-bottom: 10px;
}
.chat-tab-list .nav-link{
color: var(--text-color);
background: var(--bg-icons);
}
.chat-tab-list .nav-link.active{
background-color: rgba(8, 190, 171, .18);
color: var(--white);
}
.chat-tab-list .nav-link:hover{
background-color: rgba(8, 190, 171, .18);
color: var(--white);
}
.chat-tab-list .nav-link.active h5{
color: var(--text-color);
}
.chat-tab-list .nav-link.active p{
color: var(--text-color);
}
.message-by {
font-size: 15px;
color: #666;
}
.message-by h5 {
font-size: 14px;
line-height: 23px;
font-weight: 600;
margin: 0;
color: var(--text-color);
padding: 0;
}
.message-by span {
font-size: 12px;
}
.message-by p {
height: 26px;
max-width: 225px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
font-size: 14px;
color: var(--text-color);
margin: 0;
padding: 0;
line-height: 25px;
}


.chat-conversation-content{
height: 500px;
}
.chat-box .chat-message{
max-width: 348px;
}
.chat-box .chat-message .chat-text-left{
background: var(--bg-icons);
color: var(--text-color);
border-top-right-radius: .5rem; 
border-bottom-right-radius: .5rem; 
border-bottom-left-radius: .5rem;
}
.chat-box .chat-message .chat-text-right{
background: var(--green-color);
color: var(--white);
border-top-left-radius: .5rem; 
border-bottom-right-radius: .5rem; 
border-bottom-left-radius: .5rem;
}
.chat-box .chat-message p{
font-size: 15px;
line-height: 1.47;
color: inherit;
margin-bottom: 5px;
}

.chat-messages-footer {
padding: 10px 30px;
border-top: 2px solid var(--border-color);
}
.chat-messages-form {
-webkit-box-pack: justify;
-ms-flex-pack: justify;
-webkit-box-align: center;
-ms-flex-align: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
align-items: center;
justify-content: space-between;
}
.chat-messages-form .chat-messages-form-btns {
-webkit-box-align: center;
-ms-flex-align: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
align-items: center;
margin-right: 12px;
}
.chat-messages-form .chat-messages-form-btns button {
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-box-flex: 0;
-ms-flex: 0 0 24px;
-webkit-transition: all 0.25s linear;
-o-transition: all 0.25s linear;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex: 0 0 24px;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
border: none;
outline: none;
color: var(--text-color);
background: transparent;
font-size: 24px;
cursor: pointer;
transition: all 0.25s linear;
}
.chat-messages-form .chat-messages-form-controls {
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
flex-grow: 1;
align-items: center;
width: 100%;
height: 45px;
padding: 0 20px;
border-radius: 25px;
background: var(--form-control);
}
.chat-messages-form .chat-messages-form-btn {
margin-left: 12px;
}
.chat-messages-form .chat-messages-form-btn button {
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-box-flex: 0;
-ms-flex: 0 0 24px;
-webkit-transition: all 0.25s linear;
-o-transition: all 0.25s linear;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex: 0 0 24px;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
border: none;
outline: none;
color: var(--text-color);
background: transparent;
font-size: 24px;
cursor: pointer;
transition: all 0.25s linear;
}

.btn-create-post{
	padding: 10px 20px;
    background: #1a503e;
    color: #fff;
    margin-bottom: 15px;
}


.create_btn_wrapper{
	text-align: right;
}

.section-header {
    border-radius: 18px 18px 0 0;
    padding-block: 14px;
}


/* --- CSS Moved from Left-Sidebar-1 File --- */


.main-sidebar {
    margin: 0;       
    display: flex;
    height: 100vh;
}
.sidemenu-sidebar {
    width: 100px;
    position: relative;
    /* right: 18px; */
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: width 0.3s;
    border-right: 1px solid #00000026;
    background-color: #ffffff;
    border-radius: 4px;
    gap: 8px;
}

.sidemenu-sidebar.collapsed {
    width: 60px;
}

/* .sidemenu-sidebar a {
    text-decoration: none;
    color: #000;
    width: 80%;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    border-bottom: 1px solid #e6e6e6;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
    padding: 10px 4px;
    line-height: normal;
    transition: opacity 0.3s;
} */
.sidemenu-sidebar a {
    text-decoration: none;
    color: #000;
    width: 80%;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    border-bottom: 1px solid #e6e6e6;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
    padding: 10px 4px;
    line-height: normal;
    transition: opacity 0.3s;
}
.sidemenu-sidebar.collapsed a {
    justify-content: center;
    padding: 10px 0;
}
.sidemenu-sidebar.collapsed a span {
    display: none;
}

.sidemenu-sidebar a:hover {
    background-color: #f7f7f7;
    border-radius: 20px;
    color: #0d7751;
}

.sidemenu-sidebar a.active {
    background-color: #f7f7f7;
    border-radius: 20px;
    color: #0d7751;
}

.sidemenu-sidebar a i {
    margin-right: 0px;
    font-size: 16px;
    margin-bottom: 3px;
}

.sidemenu-sidebar.collapsed a i {
    margin-right: 0;
}

.sidemenu-sidebar .sidemenu-menu-icon {
    font-size: 20px;
    margin-bottom: 20px;
    cursor: pointer;
}

.sidemenu-content {
    position: absolute;
    left: 113px;
    width: 200px;
    z-index: 1111;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(1, 116, 39, 0.9) 0px 0px 0px 1px;
    height: 470px;
    display: none;
    overflow: hidden;
    overflow-y: auto;
}
.fa-bars {
    color: #0d7751
}
.sidemenu-content.active {
    display: block;
}
.sidemenu-ask-question {
    background-color: #0d7751;
    padding: 10px 20px;
    color: #fff !important;
    border-radius: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}
.sidemenu-ask-question a {
    color: #fff !important;
}
.sidemenu-ask-question i {
    margin-right: 10px;
}
.sidemenu-content ul {
    list-style: none;
    padding: 0;
}
.sidemenu-content ul li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
    padding-left: 10px;
}
.sidemenu-content ul li a {
    text-decoration: none;
    font-weight: 600;

}
.sidemenu-content ul li::before {
    content: '•';
    color: #888;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.sidebar-sec {
    max-width: 100%;
}
.outer-main-wrapper {
    display: flex;
    align-items: start;
    gap: 10px;
}
.outer-main-wrapper .sidebar-wrapper {
    width: 110px;
    transition: width 0.3s ease-in-out;
}
.outer-main-wrapper .forum-main-sec {
    width: calc(100% - 110px);
    margin-left: auto;
    transition: width 0.3s ease-in-out;
}



/* --- CSS Moved from Left-Sidebar-1 File --- */


/* --- CSS Moved from Left-Sidebar File --- */

.main-sidebar {
    margin: 0;       
    display: flex;
    height: 100vh;
}
.sidemenu-sidebar {
    width: 100px;
    position: relative;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: width 0.3s;
    border-right: 1px solid #00000026;
    background-color: #ffffff;
    border-radius: 4px;
    gap: 8px;
}

.sidemenu-sidebar.collapsed {
    width: 60px;
}

.sidemenu-sidebar a {
    text-decoration: none;
    color: #000;
    width: 80%;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    border-bottom: 1px solid #e6e6e6;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
    padding: 10px 4px;
    line-height: normal;
    transition: opacity 0.3s;
}

.sidemenu-sidebar.collapsed a {
    justify-content: center;
    padding: 10px 0;
}
.sidemenu-sidebar.collapsed a span {
    display: none;
}

.sidemenu-sidebar a:hover {
    background-color: #f7f7f7;
    border-radius: 20px;
    color: #0d7751;
}

.sidemenu-sidebar a.active {
    background-color: #f7f7f7;
    border-radius: 20px;
    color: #0d7751;
}

.sidemenu-sidebar a i {
    margin-right: 0px;
    font-size: 16px;
    margin-bottom: 3px;
}

.sidemenu-sidebar.collapsed a i {
    margin-right: 0;
}

.sidemenu-sidebar .sidemenu-menu-icon {
    font-size: 20px;
    margin-bottom: 20px;
    cursor: pointer;
}

.sidemenu-content {
    position: absolute;
    left: 113px;
    width: 200px;
    z-index: 1111;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(1, 116, 39, 0.9) 0px 0px 0px 1px;
    height: 470px;
    display: none;
    overflow: hidden;
    overflow-y: auto;
}
.fa-bars {
    color: #0d7751
}
.sidemenu-content.active {
    display: block;
}
.sidemenu-ask-question {
    background-color: #0d7751;
    padding: 10px 20px;
    color: #fff !important;
    border-radius: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}
.sidemenu-ask-question a {
    color: #fff !important;
}
.sidemenu-ask-question i {
    margin-right: 10px;
}
.sidemenu-content ul {
    list-style: none;
    padding: 0;
}
.sidemenu-content ul li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
    padding-left: 10px;
}
.sidemenu-content ul li a {
    text-decoration: none;
    font-weight: 600;

}
.sidemenu-content ul li::before {
    content: '•';
    color: #888;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.sidebar-sec {
    max-width: 100%;
}
.outer-main-wrapper {
    display: flex;
    align-items: start;
    gap: 10px;
}
.outer-main-wrapper .sidebar-wrapper {
    width: 110px;
    transition: width 0.3s ease-in-out;
}
.outer-main-wrapper .forum-main-sec {
    width: calc(100% - 110px);
    margin-left: auto;
    transition: width 0.3s ease-in-out;
}




/* ==== New Top Navbar CSS ==== */
.text-color-green {
  color: #0d7751 !important;
}

.new-nav-top .navbar-nav {
    gap: 20px !important;
}
.new-nav-top ul .nav-item a {
    color: #000;
    font-weight: 500;
    font-family: poppins;
}
header.page-scrolled {
    box-shadow: rgb(149 157 165 / 15%) 0px 1px 12px 0px;
    transition: all .3s;
}

/* ==== New Top Navbar CSS ==== */



/* ==== New Main Dashboard Center Column CSS ==== */




body {
  font-family: 'poppins', sans-serif !important;
}
.outer-main-wrapper .forum-main-sec .homesections .topics-left-nd-questions {
    flex: 0 0 44%;
}
.outer-main-wrapper .forum-main-sec .homesections .stats {
    flex: 0 0 25%;
    display: flex;
    justify-content: center;
}
.outer-main-wrapper .forum-main-sec .homesections h2 a, 
.outer-main-wrapper .forum-main-sec .homesections .new-posts-right .title a {
    font-weight: 600;
    color: #0d7751;
    text-decoration: none;
    transition: all linear .3s;
}


.outer-main-wrapper .forum-main-sec .homesections .topics-left-nd-questions p {
    line-height: 1;
    margin-block: 4px;
}
.outer-main-wrapper .forum-main-sec .homesections .topics-left-nd-questions .new-posts-left a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: #000000d4;
    color: #6b7280;
    font-family: 'Poppins';
    transition: all linear .3s;
}

.outer-main-wrapper .forum-main-sec .homesections .topics-left-nd-questions .new-posts-left a:hover {
  text-decoration: underline;
}

.outer-main-wrapper .forum-main-sec .homesections .new-posts-right .post-user {
    margin-bottom: 0;
}
.outer-main-wrapper .forum-main-sec .homesections .new-posts-right .post-user .author, 
.outer-main-wrapper .forum-main-sec .homesections .new-posts-right .post-user .topic-date {
    font-size: 0.9em;
    font-weight: 500;
    color: #6b7280;
}
 
.outer-main-wrapper .forum-main-sec .homesections .new-posts-right .title a:hover {
  text-decoration: underline;
}
.outer-main-wrapper .forum-main-sec .homesections .new-posts-right .post-user .likes, 
.outer-main-wrapper .forum-main-sec .homesections .new-posts-right .post-user .likes i {
    display: flex;
    font-size: 16px;
    line-height: 21px;
    gap: 6px;
    align-items: center;
    color: #f08616 !important;
    margin-top: 2px;
}

/* ==== New Main Dashboard Center Column CSS ==== */

/* ==== Right Sidebar CSS ==== */
.announcement-content p br {
    display: none;
}
.member-page-nav {
    left: 0 !important;
    box-shadow: rgb(149 157 165 / 15%) 0px 1px 12px 0px;
}  
.vine-social {
    margin: 15px 0;
    padding: 0;
}

.vine-success-stories {
    margin: 100px 0px;
    padding: 10px 0px;
}