.btn-primary {
  background-color: #ff710f; /* Custom Orange */
  border: 1px solid #ff710f;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e6600b; /* Darker Orange */
  border-color: #e6600b;
}

.btn-success {
  background-color: #28a745; /* Green */
  border: 1px solid #28a745;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #218838; /* Darker green */
  border-color: #218838;
}

.btn-danger {
  background-color: #dc3545; /* Red */
  border: 1px solid #dc3545;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background-color: #c82333; /* Darker red */
  border-color: #c82333;
}

.modal-custom {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content-custom {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/** Alert boxes here **/
.error-wrapper-warning{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height:50px;
    background: #fbd0d0 !important;
    border-radius: 5px;
    margin-top: 0px;
}
.message-warning{
    color: #8d0d0d !important;
    font-size: 14px;
    text-align: center;
    padding: 15px;

}
.error-wrapper-success{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height:50px;
    background: #d1e7dd;
    border-radius: 5px;
    margin-top: 0px;
}
.message-success{
    color: #0f5132;
    font-size: 14px;
    text-align: center;
    padding: 15px;
}

  .alert-danger {
    background: #fbd0d0 !important;
    padding: 0;
    margin-top: 0;
    color: #8d0d0d !important;
  }
  

  .empty-cart {
    width: 70vw !important;
    background: none !important;
  }
 
  .form-control-lg{
    color:red;
    font-size:14px !important; 
    height:55px !important;

}
.form-info{
background:#fff !important;
margin-right:2px;
}


.profile-picture-wrapper{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-image: linear-gradient(to bottom,  #041e4f, #041e4f);border-bottom:0px;
}
.profile-picture-wrapper img{
    width:150px;
    height: 150px;
    border-radius: 50%;
}
.profile-picture-wrapper p{
    color:#3083d4;
    font-weight: 600;
}
.profile-picture-wrapper span{
    text-transform: uppercase;
    color:#fff;
    font-weight: 600;
    font-size: 20px;
}
.stats-wrapper{
    background: #fff;
}
.user-details{
    text-transform: uppercase;
    font-weight: 600;
    text-align: right;
align-self: flex-end;
}
.flex-custom{
    display: flex !important;
flex-direction: row !important;
align-items: center !important;
justify-content: space-between !important;
}

.nk-iv-wg2-amount{
    height:80px !important;
    font-weight: 700;
}
.earning-title{
    font-weight: bold !important;
    font-size: 16px !important;

}
.earning-icon{
    font-size: 20px !important;
}
.nk-iv-wg2-amount h1{
    font-size: 35px !important;
    font-weight: 600 !important;
    margin-top: 30px;
}
.nk-iv-wg2-amount h2{
    font-size: 35px !important;
    color:#fff  !important;
    font-weight: 600 !important;
    margin-top: 20px;
}
.indirect-ref-home{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: -10px;
    margin-top: 40px;
}
.indirect-ref-home span{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .5px;
}
.indirect-ref-home h3{
    font-size: 20px;
    font-weight: 700;
    color:#fff;
}
.profile-stats-wrapper{
    padding-top:20px;
    padding-bottom: 10px;
}

.profile-stats-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin-left: 5%;
  margin-bottom: 10px;
}
.profile-stats-row h6{
    color:#fff;
    font-size: 16px;
    font-weight: 500;
}
.profile-stats-row span{
    color:#fff;
    font-size: 16px;
    font-weight: 500;

}
.profile-stats-row i{
    margin-right: 5px;
}
/** Sliding banners starts here**/
#slideshow {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
  }
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
  }
  .slide.active {
    display: block;
  }
  .dots {
    text-align: center;
    margin-top: 10px;
  }
  .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #041e4f;
    margin: 0 5px;
    cursor: pointer;
  }
  .dot.active {
    background-color: #2e71f6;
  }
  @media (min-width: 767px) {
    .bottom-tab {
        display: none;
    }
  }

  .side-bar-logo{
    display: none;
}
  /* Bottom Tabs */
@media (max-width: 767px) {
    .bottom-tab {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #fff;
      text-align: center;
      box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1); /* Add shadow effect */
    }
  .bottom-tabs-wrapper{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;

  }
    .tab-link {
      display: inline-block;
      padding: 10px;
      text-decoration: none;
      color: #041e4f;
      font-size: 25px;
    }
  
    .tab-link:hover {
      color:#3083d4
    }
  
    .tab-link.active {    
        color:#3083d4
    }
    .side-bar-logo{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #d6e4ff;
        margin-top: 100px;
        width: 90%;
        margin-left: 5%;
        border-radius: 10px;
        height: 100px;
    }
    .side-bar-logo img{
        width:60%;
    }
  }


/** Home options Starts Here**/
.home-options-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
  }

  .home-option {
    width: 25% !important;
    height: 100px;
    margin-bottom: 10px;
  }
  .home-options-top{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 90%;
    margin-left: 5%;
  }
  .home-options-top h2{
    font-weight: 600;
    font-size: 20px;
    margin:0;
  }
  .home-option-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .home-option-icon-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #d6e4ff;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .home-option-icon-wrapper img{
    width:50px;
    padding:10px;
  }
  .home-option-wrapper span{
    color:#000000;
    font-weight: 500;
    text-align: center !important;
    font-size: 13px !important;
  }
  .hidden-home-options {
    width: 25% !important;

  }
  @media (max-width: 768px) {
    .home-option {
      width: 100%;
    }

    .hidden-home-options {
      display: none;
    }
    
  }

  .home-hidden-options-show-btn {
    display: none;
    background: none;
    border: none;
    color:#041e4f
  }

  .home-hidden-options-show-btn.showless::after {
    content: "Show less";
  }

  .home-hidden-options-show-btn::after {
    content: "Open all";
  }
  @media (max-width: 768px) {
    .home-hidden-options-show-btn {
      display: block;
    }
  }  

/* CSS for first dropdown menu */
@media (max-width: 767px) {
    #dropdown-menu-account {
      display: none;
    }
  }
  
  /* CSS for second dropdown menu */
  @media (max-width: 767px) {
    #dropdown-menu-tasks {
      display: none;
    }
  }
  
 