/*----------------genealogy-scroll----------*/

.genealogy-scroll::-webkit-scrollbar {
    width: 5px;
    height: 8px;
}
.genealogy-scroll::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #e4e4e4;
}
.genealogy-scroll::-webkit-scrollbar-thumb {
    background: #212121;
    border-radius: 10px;
    transition: 0.5s;
}
.genealogy-scroll::-webkit-scrollbar-thumb:hover {
    background: #d5b14c;
    transition: 0.5s;
}


/*----------------genealogy-tree----------*/
.genealogy-body{
    white-space: nowrap;
    overflow-y: hidden;
    padding: 50px;
    min-height: 500px;
    padding-top: 10px;
    text-align: center;
}
.genealogy-tree{
  display: inline-block;
}
.genealogy-tree ul {
    padding-top: 20px; 
    position: relative;
    padding-left: 0px;
    display: flex;
    justify-content: center;
}
.genealogy-tree li {
    float: left; text-align: center;
    list-style-type: none;
    position: relative;
    padding: 20px 5px 0 5px;
}
.genealogy-tree li::before, .genealogy-tree li::after{
    content: '';
    position: absolute; 
  top: 0; 
  right: 50%;
    border-top: 2px solid #ccc;
    width: 50%; 
  height: 18px;
}
.genealogy-tree li::after{
    right: auto; left: 50%;
    border-left: 2px solid #ccc;
}
.genealogy-tree li:only-child::after, .genealogy-tree li:only-child::before {
    display: none;
}
.genealogy-tree li:only-child{ 
    padding-top: 0;
}
.genealogy-tree li:first-child::before, .genealogy-tree li:last-child::after{
    border: 0 none;
}
.genealogy-tree li:last-child::before{
    border-right: 2px solid #ccc;
    border-radius: 0 5px 0 0;
    -webkit-border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
}
.genealogy-tree li:first-child::after{
    border-radius: 5px 0 0 0;
    -webkit-border-radius: 5px 0 0 0;
    -moz-border-radius: 5px 0 0 0;
}
.genealogy-tree ul ul::before{
    content: '';
    position: absolute; top: 0; left: 50%;
    border-left: 2px solid #ccc;
    width: 0; height: 20px;
}
.genealogy-tree li a{
    text-decoration: none;
    color: #666;
    font-family: arial, verdana, tahoma;
    font-size: 11px;
    display: inline-block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

/* .genealogy-tree li a:hover, 
.genealogy-tree li a:hover+ul li a {
	background: #c8e4f8;
	color: #000;
} */

.genealogy-tree li a:hover+ul li::after, 
.genealogy-tree li a:hover+ul li::before, 
.genealogy-tree li a:hover+ul::before, 
.genealogy-tree li a:hover+ul ul::before{
    border-color:  #fbba00;
}

/*--------------memeber-card-design----------*/

.member-view-box{
    padding-bottom: 10px;
    text-align: center;
    border-radius: 4px;
    position: relative;
    border: 0px;
    border-color: #e4e4e4;
    border-style: solid;
}
.member-image{
    padding:10px;
    width: 120px;
    position: relative;
}
.member-image img{
    width: 100px;
    height: 100px;
    border-radius: 6px;
    background-color :#fff;
    z-index: 1;
}
.member-header {
  padding: 5px 0;
  text-align: center;
  background: #345;
  color: #fff;
  font-size: 14px;
  border-radius: 4px 4px 0 0;
}
.member-footer {
  text-align: center;
}
.member-footer div.name {
  color: #000;
  font-size: 14px;
  margin-bottom: 5px;
}
.member-footer div.downline {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
}



/* multi step form */

#heading {
    text-transform: uppercase;
    color: #41cc83;
    font-weight: normal
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative
}

.form-card {
    text-align: left
}

#msform fieldset:not(:first-of-type) {
    display: none
}
/* 
#msform input,
#msform textarea {
    padding: 8px 15px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    background-color: #ECEFF1;
    font-size: 16px;
    letter-spacing: 1px
} */

#msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #41cc83;
    outline-width: 0
}

#msform .action-button {
    width: 100px;
    background: #41cc83;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right;
    border-radius: 0.25rem;
}

#msform .action-button:hover,
#msform .action-button:focus {
    background-color: #41cc83
}

#msform .action-button-previous {
    width: 100px;
    background: #41cc83;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right;
    border-radius: 0.25rem;

}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #41cc83
}

.card {
    z-index: 0;
    border: none;
    position: relative
}

.fs-title {
    font-size: 25px;
    color: #41cc83;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left
}

.purple-text {
    color: #41cc83;
    font-weight: normal
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right
}

.fieldlabels {
    color: gray;
    text-align: left
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey
}

#progressbar .active {
    color: #41cc83
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 33.333%;
    float: left;
    position: relative;
    font-weight: 400
}
#progressbar li:before {
    font-family: "remixicon";
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    margin-right: 5px;
}

/* 1. Details Icon (ri-file-list-3-line) */
#progressbar #account:before {
    content: "\ee2f"; /* Unicode for file-list */
}

/* 2. Payment Icon (ri-bank-card-line) */
#progressbar #personal:before {
    content: "\ee3a"; /* Unicode for bank card */
}

/* 3. Confirm Icon (ri-checkbox-circle-line) */
#progressbar #confirm:before {
    content: "\eb80"; /* Unicode for confirm/check circle */
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #41cc83
}

.progress {
    height: 20px
}

.progress-bar {
    background-color: #41cc83
}

.fit-image {
    width: 100%;
    object-fit: cover
}



.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 4px 8px;
    border-radius: 6px;
    max-width: 200px;
    background-color: #fff;
  }

  .search-box i {
    font-size: 16px;
    color: #555;
    margin-right: 6px;
  }

  .search-box input {
    border: none;
    outline: none;
    font-size: 14px;
    width: 100%;
  }

  .form-input{
    padding: 8px 15px 8px 15px;
  border: 1px solid #ccc;
  border-radius: 0px;
  margin-bottom: 25px;
  margin-top: 2px;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2C3E50;
  background-color: #ECEFF1;
  font-size: 16px;
  letter-spacing: 1px;
  }
  #alternative-page-datatable_paginate ul.pagination.pagination-rounded{
    justify-content: end;
  }

  .div-flex{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
   
  }
  .div-flex label{
    margin-bottom: 0;
  }
  .align-center-ds{
    display: flex;
    align-items: end;
    height: 100%;
  }

  .align-center-ds .row{
    width: 100%;
  }

  .common-smal-box form{
    max-width: 700px;
    margin: 0 auto;
  }
  .img-boxs img{
    max-width: 100%;
    height: auto;
  }
.img-boxs .tranmode {
    padding: 12px 20px;
    background-color: #41cc83;
    border: 0;
    border-radius: 36px;
    font-size: 14px;
    margin-top: 10px;
    width: 100%;
}


   .img-boxs{
      box-shadow: 1px 7px 21px -8px rgba(0,0,0,0.75);
  border-radius: 40px;
  padding: 10px;
  }


  .caption-desc.font-grey-cascade{
    display: flex;
    gap: 15px;
  }
    .caption-desc.font-grey-cascade .demo-amount{
        display: flex;
        align-items: center;
        gap: 10px;


    }
    .caption-desc.font-grey-cascade .demo-amount pre{
        border: 1px solid #41cc83;
        padding: 4px 12px;
        cursor: pointer;
        border-radius: 8px;
    }


    .input-group.input-group-lg span.input-group-btn{
        background-color: #41cc83;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  display: flex;
    }

      .twitter-bs-wizard .twitter-bs-wizard-nav .wizard-border:last-child::before {
    content: "";
    width: 0px;
    height: 0px;
   
     } 

     .div-ifon{
        cursor: pointer;
     }
     .div-ifon i{
        width: 200px;
         }

  .nav-justified .comon-last{
            text-align: left !important;
}
.twitter-bs-wizard .twitter-bs-wizard-nav .step-number{
    background-color: #e2f8ec !important;
    z-index: 1;
}
.twitter-bs-wizard .twitter-bs-wizard-nav .nav-link.active .step-number {
  background-color: #41cc83 !important;
}
  .twitter-bs-wizard .twitter-bs-wizard-nav .wizard-border::before{
    z-index: -1;
  }

  .right-section-copy-area{
padding-right:15px;
padding-top: 15px;
 float: right;
  cursor: pointer;
  display: flex;
  gap: 15px;
 align-items: center;
  }
  .right-section-copy-area p{
    margin-bottom: 0;
  }

  .right-section-copy-area img{
  width: 25px;
  height: auto;
  }
.text-start-common-d{
    text-align: start;
}
.active-common-width{
    max-width: 300px;
}

.activation-ids{
    display: flex;
    
    justify-content: center;
}


/* .tree-mlm- hover code */
.hover-details{
    display: none;
}


.genealogy-tree ul li a:hover .hover-details{
   display: block !important;
  display: block;
  min-width: 160px;
  position: absolute;
  left: 77%;
  top: 0;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
  text-align: left;
  z-index: 1;

}

.hover-details .dis {
    font-size: 14px;
    padding-bottom: 5px;
}
.hover-details .dis span{
    font-size: 14px;
    font-weight: 600;
}
/* 
.hover-details::after{
   width: 20px;
  height: 20px;
  position: absolute;
  content: "";
  background-color: #fff;
  left: -10px;
  top: 20%;
  transform: rotate(45deg);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.34);
  z-index: -1;

} */

.downline .fas.fa-times-circle{
    color: red;
}
.nav {
    display: flex;
    /*justify-content: space-between;*/
    margin-bottom: 20px;
}

.tabs {
    display: flex;
    gap: 10px;
}

.tab-btn {
    padding: 10px 16px;
    border: none;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
}

    .tab-btn.active {
        background: #e0e7ff;
        color: #1d4ed8;
    }

.btn-primary {
    background: #41cc83;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.tab-content-profile {
    display: none;
}

    .tab-content-profile.active {
        display: block !important;
    }

.container-flex {
    display: flex;
    gap: 40px;
}

.sidebar,
.main {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.sidebar {
    flex: 1;
}

.main {
    flex: 2;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.profile-pic {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}

.upload-btn {
    width: 100%;
    padding: 10px;
    border: 2px solid #e5e5e5;
    background: #f9f9f9;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
}

.input-block {
    margin-bottom: 15px;
}

    .input-block label {
        display: block;
        font-weight: 500;
        margin-bottom: 5px;
    }

    .input-block input,
    .input-block textarea,
    .input-block select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

.input-group {
    /*display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;*/
}

button.common-butons {
    background-color: #41cc83;
}

.submit-save-button button {
    width: 100%;
    padding: 15px 20px;
    border: 0;
    border-radius: 4px;
    background-color: #41cc83;
}

@media only screen and (max-width:575px) {
    .input-group {
       /* display: block;*/
    }

    .container-flex {
        display: block;
    }

    .two-sept-tabs {
        width: auto !important;
    }
}

/* 
    .upload-btn {
  background-color: #007bff;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
  margin-top: 10px;
  text-align: center;
} */


.two-sept-tabs {
    width: 600px;
    margin: auto;
}

.button-section {
    display: flex;
    gap: 15px;
    justify-content: center;
}

    .button-section button {
        display: inline-block;
        padding: .47rem .75rem;
        border: 0;
        color: #fff;
        border-radius: .25rem;
    }


        .button-section button.pending {
            background-color: #1d4ed8;
        }



        .button-section button.active {
            background-color: #41cc83;
        }


.light-green01 {
    background-color: #f6fff6;
}

.light-green02 {
    background-color: #f9fff9;
}

.light-green03 {
    background-color: #f3fff3;
}

.light-green04 {
    background-color: #edffed;
}

.light-green05 {
    background-color: #f0fff0;
}

.light-green06 {
    background-color: #e0ffe0;
}

.light-green07 {
    background-color: #d0ffd0;
}

.light-green08 {
    background-color: #c0ffc0;
}

.light-green09 {
    background-color: #b0ffb0;
}

.light-green10 {
    background-color: #b0ffb0;
}

.light-green11 {
    background-color: #90eb90;
}

.light-green12 {
    background-color: #80e080;
}


tbody tr i {
    padding-right: 8px;
}

.button-section-pf {
    text-align: right;
}
.selectbutton {
    background-color: #4aa3ff !important;
}
.dcoss{
  margin-top: 0 !important;
  padding: 40px 0 60px !important;
}
.dcoss a img {
    width: 400px;
    padding-bottom: 10px;
}
@media only screen and (max-width:1199px){
  .dcoss a img {
  width: 300px;
  
}
}

@media only screen and (max-width:991px){
  .dcoss a img {
  width: 300px;
  
}
}