/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
/* Option 2: Import via CSS */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;

}

.hide {
  display: none;
}
    
.myDIV:hover + .hide {
  display: block;
  color: red;
  cursor: pointer;
}


/* hederbutton */
.addbutton{
  background-color: #2E4893;
  color: white;
  padding: 6px 8px;
  border: none;
  border-radius: 2px;
  width: auto;
  font-size: 13px;
  margin-left: 15px;
  margin-bottom: 1%;
  float:right;
}

.revenue-received {
  margin-bottom: 0px;
}


/* open canva */
#menuToggle
{
  display: block;
  position: relative;
  top: 80px;
  left: 22px;
  z-index: 5;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a {
  text-decoration: none;
  color: #232323;
  transition: color 0.3s ease;
  align-items: center;
  align-content: center;
  display: block;
}

#menuToggle a:hover
{
  color: tomato;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle .hicon
{
  display: block;
  width: 24px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: #cdcdcd;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
}

#menuToggle .hicon:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle .hicon:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ .icon
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ .icon:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ .icon:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
 #menu {
  position: absolute;
  width: 300px;
  margin: -90px 0 0 -60px;
  padding: 50px;
  padding-top: 80px;
  background: #f5f5f5;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 6px 0;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}
@media(min-width:768px){


#menuToggle
{
  display: none;
  position: relative;
  top: 50px;
  left: 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}
}
/* end */

/* sart table */
.main_table {
  padding: 0px;
  border-radius: 0em;
  margin-left :15px
}
/* 
h1 {
  text-align: left;
  font-weight: 700;
  width:100%;
  padding-left:16px;
} */

table {
  display: block;
}

tr, td, tbody, tfoot {
  display: block;
}

thead {
  display: none;
}

tr {
  padding-bottom: 10px;
/*   background-color: #fff; */
  margin:20px 0;
}

/* tbody tr:hover {
  box-shadow:0 12px 34px 0 rgba(0,0,0,.1);
  background:#fff;
  z-index:2;
}

tbody tr:hover *:not(span.button) {
  background:transparent;
  border-radius:0;
  overflow:hidden;
} */

td {
  padding: 10px 10px 0;
  text-align: center;
}

td:before {
  content: attr(data-title);
  color: #1E3A8B;
  text-transform: uppercase;
  padding-right: 10px;
  display: block;
  font-size: 16px;
}

table {
  width: 100%;
}

span.button {
  display:block;
}

span {
  height:100%;
}

th {
  text-align: left;
  font-weight: 400;
  font-size: 12px;
}

tbody tr {
  border-bottom: 1px solid #bdbdbdee;
  background-color: white;
}

thead th {
  color: #ffffff;
  border: 1px solid #6c757d;
  background-color: #1E3A8B;
  padding: 0px;
  /* margin: 0px; */
}

@media(min-width:768px) {
tr td:nth-child(1) span { padding-left:10px; border-radius:12px 0 0 12px; }
tr td:nth-last-child(1) span:not(.button) { padding-right:10px; border-radius:0 12px 12px 0; }
}

tfoot th {
  display: block;
  padding: 10px;
  text-align: center;
  color: #b8c4d2;
}

.button {
  text-align: center;
    font-weight: 400;
    font-size: 1.0em;
    width: 101%;
    margin: 0 auto;
    display: block;
    background: #1E3A8B;
    border: none;
    padding: 4px 7px;
    border-radius: 2px;
}

.select {
  padding-bottom: 20px;
/*   border-bottom: 1px solid #28333f; */
}
.select:before {
  display: none;
}

.detail {
  background-color: #BD2A4E;

  width: 100%;
  height: 100%;
  padding: 40px 0;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out false;
}
.detail.open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

td.overdue[data-title="Due"] {
  color:#ff0000;
}

.detail-container {
  margin: 0 auto;
  padding: 40px;
  max-width: 500px;
}

dl {
  margin: 0;
  padding: 0;
}

dt {
  font-size: 2.2rem;
  font-weight: 300;
}

dd {
  margin: 0 0 40px 0;
  font-size: 1.8rem;
  padding-bottom: 5px;
  border-bottom: 1px solid #ac2647;
  box-shadow: 0 1px 0 #c52c51;
}

.close {
  background: none;
  padding: 18px;
  color: #fff;
  font-weight: 300;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  line-height: 1;
  font-size: 1.8rem;
  position: fixed;
  right: 40px;
  top: 20px;
  -webkit-transition: border 0.3s linear;
  
  -moz-transition: border 0.3s linear;
  -o-transition: border 0.3s linear;
  transition: border 0.3s linear false;
}


@media (min-width: 460px) {
  td {
    text-align: left;
  }
  td:before {
    display: inline-block;
    text-align: right;
    width: 140px;
    
  }

  .select {
    padding-left: 160px;
  }
}



@media (min-width: 720px) {
  /* #referral_received_table th:nth-child(6), #referral_received_table td:nth-child(6), #referral_received_table th:nth-child(7), #referral_received_table td:nth-child(7), #referral_given_table th:nth-child(6), #referral_given_table td:nth-child(6), #referral_given_table th:nth-child(7), #referral_given_table td:nth-child(7) {
    display: none;
} */


  table {
    display: table;
  }

  tr {
    display: table-row;
  }

  td, th {
    display: table-cell;
  }

  tbody {
    display: table-row-group;
  }

  thead {
    display: table-header-group;
  }

  tfoot {
    display: table-footer-group;
  }

/*   td {
    border: 1px solid #28333f;
  } */
  
  td:before {
    display: none;
  }

  td, th {
    padding: 5px 0;
  }

  tr td {
    font-size: 12px;
  }
  
  td span, th span {
    width:100%;
    padding:5px 5px;
    text-align:left;
    display:block;
  }
  
  td span {
    background:white;
    font-size: 12px;
  }

/*   tr:nth-child(2n+2) td {
    background-color: #242e39;
  } */

  tfoot th {
    display: table-cell;
  }

  .select {
    padding: 10px 0;
  }
}

@media(max-width:768px) {
  .main_table {
    background:transparent;
    box-shadow:none;
  }
  
  /* #referral_received_table th:nth-child(6), #referral_received_table td:nth-child(6), #referral_received_table th:nth-child(7), #referral_received_table td:nth-child(7), #referral_given_table th:nth-child(6), #referral_given_table td:nth-child(6), #referral_given_table th:nth-child(7),#referral_given_table td:nth-child(7) {
    display: none;
} */

  tr {
    background-color: #fff;
    margin: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 12px 34px 0 rgba(0,0,0,.1);
    flex-direction: column;
    width: 100%;
    margin-left: 30px;
}
  
  td { flex-grow:1; text-align: start; }
  
  tr td:nth-last-child(3) { order:-2; }
  tr td:nth-child(1) { order:-1; }
  tr td:nth-child(1), tr td:nth-last-child(3) { width: 100%; }

  td:before {
    display: block;
    text-align: left;
    width: fit-content;
    padding: 10px 0;
  }
  
  .select {
    padding-left:0;
    margin-top:20px;
  }

    .button {
      padding: 8px 10px;
      text-align: center;
      font-weight: 400;
      font-size: 1.0em;
      width: 35%;
      margin: 0 auto;
      border: none;
      display: block;
      background: #1E3A8B;
      border-radius: 2px;
  }

  td[data-title="Due"] {
    color:#ff0000;
  }
}

@media(max-width:750px) {
  span:not(.button) { height:4ch; } 
}


@media(max-width:1060px) {
  span:not(.button) { height:4ch; }
}

/* end-table */

/* topmenu toggle */

.navbar #top_menu {
  flex-wrap: nowrap !important;
  background-color: white;
  padding: 5;
}



/* Overlay Styles */
.overlay {
  background:rgba(0,0,0,0.8);
  opacity:0.8;
  filter:alpha(opacity=80);
  position:absolute;
  top:0px;
  bottom:0px;
  left:0px;
  right:0px;
  z-index:100;
}

/* Popup */
.popup {
  background: white;
  position: absolute;
  top: 11%;
  left: 0;
  /* bottom: 37%; */
  right: 0;
  z-index: 101;
  width: 50%;
  height: fit-content;
  margin: auto;
  border-radius: 3px;
  box-shadow: 0 5px 15px rgba(0,0,0,.5);

  @media(max-width:768px){
    width:90%;
    margin:auto 5%;
    margin-top: 5%;
  }
  /* Popup Inner */
  .popup-inner{
    position:relative;
    border-radius: 3px;
    max-height: 500px;
    overflow-y: scroll;
    
    input.s3-btn-close{
      position:absolute;
      top:-0.5em;
      right:-0.5em;
      
      background:black;
      border:solid 2px white;
      color:white;
      cursor:pointer;
      
      border-radius:15px;
      
      outline:none;
    } 
  } 
} 


/*************
  S3 Button
*************/
input.s3-btn{
  background:#f1f1f1;
  border:none;
  width:200px;
  height:50px;
  cursor:pointer;
  
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  margin:auto;
}

.s3-center{
  text-align:center;
}


/* end */
.lbname{
  font-weight: 500;
  text-align: left;
  font-size: 9px;
}
.form-check-label{
  font-weight: 500;
  text-align: left;
  font-size: 9px;
}

.popup-inner{
  /* background-color: white; */

  position: relative;
  border-radius: 3px;
  max-height: 500px;
  overflow-y: scroll;
}


.nav-link{
  padding: 5px;
  margin: 0px;
  font-size: 14px;
}

.btn-add{
  display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1.5rem;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* new */
.form-horizontal .control-label {

  padding-top: 7px;
  margin-bottom: 0;
  text-align: right;
  font-size: 12px;
}

/* .form-horizontal .control-label {
  padding-top: 7px;
  margin-bottom: 0;
  text-align: right;
  font-size: 12px;
} */

.close{
color: white;
}
.under{
font-size: 12px;
}
.under-amount{
font-size: 12px;
color: #1E3A8B;
}

.modal-footer .btn+.btn {
margin-bottom: 0;
margin-left: 5px;
background-color: #1E3A8B;
color: white;
/* font-size: 15px; */
}

.modal-footer  .btn{

  font-size: 15px;

}


.star, .star-clear {
padding: 0.1em;
font-size: 2em;
cursor: pointer;
}

.modal-header{
padding: 10px;
 border-bottom: 1px solid #e5e5e5;
 background-color: #1E3A8B;
 color: white;
}
/* end */


.supremebox {
  min-height: 100%;
  background-color: #f5f5f5;
}

.lbw{
  display: flex;
}

/* .LBWsidebar .LBWsidebarContent{
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  margin: 20px;
  padding: 30px 16px;
  background-color: white;
  border-radius: 10px;
  box-shadow: #707070;
} */

.list ol, ul {
  padding-left: 1rem;
  padding-right: 1rem;
}

.LBWsidebar .LBWsidebarContent {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  /* margin: 20px; */
  padding: 20px px;
  background-color: white;
  /* border-radius: 10px; */
  box-shadow: #707070;
}

.LBWsidebarContent .lists {
list-style: none;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.logo .menu-icon {
  color: #333;
  font-size: 24px;
  margin-right: 14px;
  cursor: pointer;
}
.logo .logo-name {
  color: #333;
  font-size: 22px;
  font-weight: 500;
}

.condiner1{
    display: flex;
}

/* .sidebar .sidebar-content {
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    margin: 20px;
    padding: 30px 16px;
    background-color: white;
    border-radius: 10px;
    box-shadow: #707070;
} */

/* .sidebar-content .list {
  list-style: none;
} */
.list .nav-link {
  display: flex;
  align-items: center;
  margin: 3px 4px;
  padding: 9px 3px;
  border-radius: 2px;
  text-decoration: none;
}

.active_nav{

  background-color: #F2F7FF;
  border-left: .3rem solid #1E3A8B;
}

.active_status{

  background-color: #1E3A8B;
  color: white;
}

.lists .nav-link:hover {
  background-color: #F2F7FF;
  border-left: .3rem solid #1E3A8B;
}

.lists .nav-link:active {
  background-color: #F2F7FF;
  border-left: .3rem solid #1E3A8B;
}

.lists .selected_nav{
  background-color: #F2F7FF;
  border-left: .3rem solid #1E3A8B;
}


.nav-link .icon {
  margin-right: 14px;
  font-size: 20px;
  color: #707070;
}
.nav-link .link {
  font-size: 13px;
  color: #707070;
  font-weight: 400;
}
.lists .nav-link:hover .icon,
.lists .nav-link:hover .link {
  color: #1E3A8B;
}
.overlay {
  position: fixed;
  top: 0;
  left: -100%;
  height: 1000vh;
  width: 200%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  background: rgba(0, 0, 0, 0.3);
}
nav.open ~ .overlay {
  opacity: 1;
  left: 260px;
  pointer-events: auto;
}
/* boxing values */
.Overviewbox{
  border-radius: 10px;
  background-color: #fff;
}
/* .condiner2{
  display: grid;
  grid-template-columns: auto auto auto;
} */


.box-1{
  background-color: #fff;
  padding: 14px;
  /* margin-left: 15px;
  margin-top: 10px; */
  margin: 14;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 600;

}
.imgbox{
  width: 100px;
  height: 100px;
  margin-left: 120px;
  margin-top: -30px;
}
.imgbox2{
  width: 100px;
  height: 100px;
  margin-left: 23px;
  margin-top: -6px;
}
.imgbox3{
  width: auto;
  height: auto;
  margin-left: 120px;
  margin-top: 35px;
}

.imgbox4-5{
  width: 70px;
    height: 70px;
    margin-left: 150px;
    margin-top: 22px;
}

.btn-box1{
  background-color: #fff;
  padding: 12px;
  margin-top: 3%;
  border-top: 2px solid #eee;
}
.btn-bottom1{
  background: none;
  color: #1E3A8B;
  border: none;
  margin-right: 35px;
  margin-left: 10px;
  padding-right: 25px;
  border-right: inset;
  font-weight: 800;  
}
.btn-bottom2{
  background: none;
  color: #21d469;
  border: none;
  font-weight: 800;
}

.btn-bottom1,.btn-bottom2:hover{
  cursor: pointer;
}

.number-total{
  display: block;
  background-color: #fff;
  color: black;
  padding-left: 20px;
  padding-bottom: 3px;
  font-weight: 800;
  margin-top: -10px;
  height: auto;
}

.term{
  font-weight: 500;
    font-size: 14px;
    margin-top: 10px;
    padding-left: 650px;
    margin-bottom: 10px;
}



/* slips */

.under-condiner{
  display: flex;
}
.slips{
  display: flex;
    align-items: center;
    background-color: #fff;
    padding: 10px;
    margin-left: 18px;
    border-radius: 4px;
    width: 245px;
}

.slips:hover{
  cursor: pointer;
}

.slips-icon{
  width: 30px;  
 
}


/* popup */

.openBtn {
  display: flex;
  justify-content: left;
}
.openButton {
  border: none;
  border-radius: 5px;
  background-color: #1c87c9;
  color: white;
  padding: 14px 20px;
  cursor: pointer;
  position: fixed;
}
.loginPopup {
  position: relative;
  text-align: center;
  width: 100%;
}
/* .formPopup {
  display: none;
  left: 50%;
  top: -1%;
  transform: translate(-50%, 5%);
  box-shadow: 0px 0px 30px 1px #7b7b7b;
  z-index: 9;
} */
.formContainer {
  max-width: 1300px;
  padding: 10px;
  background-color: #fff;
}
label {
  display: inline-block;
  width: 160px;
  text-align: right;
  font-size: 10px;
}

.formContainer input[type=text],
.formContainer input[type=password] {
  width: 45%;
  padding: 2px;
  margin: 12px 0 8px 0;
  border-radius: 5px;
  border-color: #eee;
}
.formContainer input[type=text]:focus,
.formContainer input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}
.formContainer .btn {
  padding: 7px 7px;
    border: none;
    background-color: #1e3a8b;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
  
    margin-bottom: 15px;
}
.formContainer .cancel {
  background-color: #cc0000;
}
.formContainer .btn:hover,
.openButton:hover {
  opacity: 1;
}

.header {
  display: flex;
    background-color: #1E3A8B;
    color: #F2F7FF;
    align-items: center;
    padding: 7px;
    border-radius: 3px 3px 0px 0px;
    justify-content: space-between;
}


.colse-head{
  background: none;
   font-size: 20px;
   border: none;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  /* color: #000; */
  /* text-shadow: 0 1px 0 #fff; */
  filter: alpha(opacity=20);
  /* opacity: .2; */
}

.chapterhead{
  display: flex;
  background-color: #e4e4e4;
  padding: 10px;
}

.radio-btn {
  font-size: 10px;
  text-align: start;
}

.under-font {
  display: flex;
  margin-left: 256px;
  flex-direction: column;
  align-items: flex-start;
}


/* popup-2 */

.loginPopup-2 {
  position: absolute;
  text-align: center;
  width: 100%;
}
.formPopup {
  display: none;
  position:absolute;
  left: 50%;
  bottom:350px;
  transform: translate(-50%, 5%);
  box-shadow: 0px 0px 30px 1px #7b7b7b;
  z-index: 9;
  min-height:350px;
  max-height:350px;
  
  min-width: 850px;
  max-width: 850px;

  
}
.forheight{
  height: 200px;
}

.textintro_height{
  height:110px
}




/* star rating */

.stars input {
  position: absolute;
  left: -999999px;
}

.stars a {
  display: inline-block;
  font-size: 0;
  text-decoration: none;
}

.stars a:before {
  position: relative;
  font-size: 18px;
  font-family: 'FontAwesome', serif;
  display: block;
  content: "\f005";
  color: #9e9e9e;
}

.stars a:hover:before,
.stars a:hover ~ a:before,
.stars a_nav:before,
.stars a_nav ~ a:before {
  color: blue;
}

/* foo menu toggle */
.hidden {
  display: none;
}

.forFlex{
  display :flex;
}
.forFlexrow{
  display :flex;
  flex-direction: column;
}

/* .h2hselect {
  width: 45%;
  padding: 2px;
  margin: 12px 0 8px 0;
  border-radius: 5px;
  border-color: #eee;
} */

.star-rating input[type="radio"] {
  display: none;
}

.star-rating label {
  font-size: 20px;
  color: #ccc;
  float: right;
  transition: color 0.2s;
  cursor: pointer;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type="radio"]:checked ~ label {
  color: #FFD700;
}


@media (max-width: 1000px) {
  /* Adjust the table font size, padding, etc. for small screens */
  #referral_received_table #referral_given_table {
      font-size: 15px;
  }
  
  /* Hide table columns that are less important on small screens */
  /* #referral_received_table th:nth-child(4),
  #referral_received_table td:nth-child(4),
  #referral_received_table th:nth-child(5),
  #referral_received_table td:nth-child(5),
  #referral_received_table th:nth-child(6),
  #referral_received_table td:nth-child(6),
  #referral_received_table th:nth-child(7),
  #referral_received_table td:nth-child(7),
  #referral_given_table th:nth-child(4),
  #referral_given_table td:nth-child(4),
  #referral_given_table th:nth-child(5),
  #referral_given_table td:nth-child(5),
  #referral_given_table th:nth-child(6),
  #referral_given_table td:nth-child(6),
  #referral_given_table th:nth-child(7),
  #referral_given_table td:nth-child(7) {
      display: none;
  } */
}


.condiner2 {
  display: grid;
  grid-template-columns: auto auto auto;
}

@media (max-width: 1200px) {
  .condiner2 {
    /* grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: repeat(2, 1fr);  */
  grid-template-columns: auto auto auto;
  

  
  }

}

@media (max-width: 992px) {
  .condiner2 {
    /* grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);  */
  grid-template-columns: auto auto ;

  }
}

@media (max-width: 768px) {


  .formPopup{
    overflow-y: scroll;
    max-height: 720px;
    bottom:500px;
    min-width: 350px;
    min-height: 720px;
    max-width: 350px;
    max-height: 720px;
  }

  .textintro_height{
    height:250px
  }
  .forheight{
    height: 600px;
  }
  

  .heder-referral{
    text-align: center;
    margin-top: 4%;
  }
  .addbutton{
    background-color: #2E4893;
    color: white;
    padding: 5px 9px;
    border: none;
    border-radius: 2px;
    width: 65px;
    font-size: 13px;
    margin-left: 40%;
  }
  .header_common {

    text-align: center;
    margin-top: 4%;
   
   }
  .LBWsidebar{
    margin-left: -15px;
    display: none;
  }
  .nav-link .link {
    font-size: 13px;
    color: #707070;
    font-weight: 400;
}
.list .nav-link {
  display: flex;
  align-items: center;
  margin: 4px 0;
  padding: 2px 12px;
  border-radius: 2px;
  text-decoration: none;
}
ol, ul {
  padding-left: 1rem;
}

  .condiner2 {
    /* grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);  */
    grid-template-columns: auto  ;
    margin-left: 18%;
  }


}



.header_common {

  margin-left: 15px;
  font-size: 18px;
  font-weight: 800;
 
 }

 #bottom{

  z-index: -1;
 
 }


/* for profilepic  */
.profile-pic {
  color: transparent;
  transition: all .3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all .3s ease;
  
 .profile_input {
    display: none;
  }
  
  .profile_img {
    position: absolute;
    object-fit: cover;
    width: 165px;
    height: 165px;
    box-shadow: 0 0 10px 0 rgba(255,255,255,.35);;
    border-radius: 100px;
    z-index: 0;
  }
  
  .-label {
    cursor: pointer;
    height: 165px;
    width: 165px;
  }
  
  &:hover {
    .-label {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: rgba(0,0,0,.8);
      z-index: 10000;
      color: rgb(250,250,250);;
      transition: background-color .2s ease-in-out;
      border-radius: 100px;
      margin-bottom: 0;
    }
  }
  
 .profile_span {
    display: inline-flex;
    padding: .2em;
    height: 2em;
  }
}

/* profile pic end */


 /* for back button */






/*BUTTONS CREATION*/  
.back{
  position: relative;
  display: block;
  float: left;
  margin: 0 20px 0 0;
  width: 50px;
  height: 50px;
   
  
  &:before{
    content: " ";
    display: block;
    position:absolute;
    width: 35%;
    height: 35%;
    color:red;
    border: solid #005b83 3px;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg) skewX(10deg) skewY(10deg);
  }
}
.back:before{
  border-right: none;
  border-bottom: none;
  left: 58%;
}

/*END BUTTONS CREATION
---------------------------------------------------------*/


/*EFFECT*/
.back{
  cursor:pointer;
  /*transition: all 0.05s linear;*/
  /* &:before{ */
    /*transition: all 0.05s linear;*/
  /* } */
  &:hover{
    border-width: 3px+1px;
    border-color: #0291BD;
    &:before{
      border-width: 3px+1px;
      border-color: #0291BD;
    }
  }
}
.back:active:before{
  left:52%;
}

.btclick{
  border-width: 3px+2px;
  border-color: #02B2E8;
}

 /* back button end */


/* meeting view css */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  border-bottom:none;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: white;
  border-bottom: 3px solid #1E3A8B;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}
.tabcontent_helpcenter {
  display: none;
  padding: 0px;
  border: 1px solid #ccc;
  border-top: none; 
}

/* meeting view css end */





 /* CONTACT CARD START */


.text_2{
  font-weight: 300;
  margin-left: 7px;
  font-size: 12px;
}

/* bottom of card */
.link_down{
  text-align: start;
 text-decoration: underline;
 font-size: 11px;
}


/* member profile card */
.social_media ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 14%;
  margin-right: 15%;
}
.social_media ul li{
  padding: 3px;
}
.social_media ul li a:hover::before {
  transform: scale(1.1);
 
}
.social_media ul li a:hover {
  font-size: 25px;
}





.close_member_from{
  display: block;
  border: none;
  font-size: 31px;
  /* font-weight: bolder; */
  background: none;
  margin-left: 96%;
}
/* member info */
.member_info{
  display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
}
.member_info h2{
  color: #1E3A8B;
  font-size: 32px;
  font-weight: 600;
}
.text_intro a{
  font-weight: 700;
}
.text_intro h4{
  color: #1E3A8B;
  margin-top: 2%;
  font-size: 16px;
}


.titile_info{
  font-weight: 700;
}



.text_intro{
  display: block;
  text-align: start;
}





 /* CONTACT CARD END */


 .view_form{
  border:none;
  margin-top: 5px;
 }


 /* latest from thiyagu */

 .form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.775rem 0.75rem;
  color: #000000;
  background-color: #FFFFFF;
  /* background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343A40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e); */
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border : 1px solid #CED4DA;
  border-radius: 0.25rem;
  transition: background-color 0.05s ease-in-out, border-color 0.05s ease-in-out, box-shadow 0.05s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-disabled-select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  pointer-events: none;
}

.partner-search-results-container {
  max-height: 100px; /* Set the maximum height as per your requirement */
  overflow-y: auto; /* Add a vertical scrollbar when the content exceeds the maximum height */
}



/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */

/* .s_social_media a i.fa {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
img.padding-large, .img.padding-large, span.fa.padding-large, iframe.padding-large {
  cursor: pointer;
  padding: 16px;
}
.o_brand_promotion {
  display:none;
}
.header_text{
 background-color: aliceblue;
 margin: auto;
 margin-bottom: 10px;
 padding-top: 5px;
 padding-bottom: 3px;
}

.header_text2{
  background-color: aliceblue;
  margin: auto;
  margin-bottom: 10px;
 padding-top: 5px;
 padding-bottom: 3px;
 

} */
