
/* New container */
.container.big {
    max-width: 1571px;
    margin: 0 auto;
}
/* Style button login in header */
.sherlock-auth-widget .sherlock-signin-btn{
    font-family: "Roboto", sans-serif !important;
     background-color: #5B330E;
     border: 1px solid #5B330E;
     color: white;
     font-size: 18px;
     font-weight: 700;
     padding: 12px 25px;
     border-radius: 10px;
     cursor: pointer;

}

.sherlock-profile-menu .profile-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: transparent;    
    cursor: pointer;
}
.sherlock-profile-menu .profile-toggle  .user-info p {
    margin: 0;
    padding: 0;
    text-align: left;
    color: #5B330E;
}

.sherlock-profile-menu .profile-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 190px;
    padding: 10px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}
.sherlock-profile-menu .profile-dropdown-menu .dropdown-menu-item{
  display: block;
  padding: 10px;
  color: #44424B;
  cursor: pointer;
  transition: background-color 0.2s ease;
}


.sherlock-profile-menu .profile-dropdown-menu .dropdown-menu-item.active {
  color: #5B330E;
}



.sherlock-profile-menu .profile-dropdown.active .profile-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(30px);
}

/* Style  : Login Modal */

.sherlock-login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sherlock-login-modal  .login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

.sherlock-login-modal  .login-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 446px;
    /* padding: 34px; */
    padding: 42px 34px;
    background-color: #F8F8F8;
    border-radius: 4px;
}
.sherlock-login-modal .login-close-btn {
     position: absolute;
      top: 20px;
     right: 34px;
     background: transparent;
     border: none;
     cursor: pointer;
}
#sherlock-login-form .login-header {
  margin-bottom: 15px;
}
#sherlock-login-form .login-header h2{
  color: #44424B;
  font-size: 20px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 10px;
}
#sherlock-login-form .login-header p {
    color: #44424B;
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto", sans-serif !important;
     line-height: 100%;
}
#sherlock-login-form.login-fields {
     /* margin-bottom: 25px; */
}
#sherlock-login-form  .form-group {
    margin-bottom: 20px;
}
#sherlock-login-form  .form-group input {
    font-size: 16px;
    line-height: 24px;
    color:  #44424B;
    padding: 12px 16px;
    width: 100%;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    background-color:#FFFFFF ;
    font-family: "Roboto", sans-serif !important;
}
#sherlock-login-form  .form-group input::placeholder {
    color: #D9D9D9;
}

#sherlock-login-form .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

#sherlock-login-form .remember-me {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #44424B;
    font-family: "Roboto", sans-serif !important;
}

#sherlock-login-form .remember-checkbox {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    accent-color: #5B330E;
}

#sherlock-login-form .forgot-password-link {
    color: #5B330E;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s ease;
    font-family: "Roboto", sans-serif !important;
}

#sherlock-login-form .forgot-password-link:hover {
    color: #5B330E;
    text-decoration: underline;
}



#sherlock-login-form  .login-actions .login-btn {
   border: 1px solid #5B330E;
   background: #5B330E;
   width: 100%;
   color: #E8F8F8;
   text-transform: uppercase;
   padding: 10px;
   border-radius: 3px;
   font-size: 14px;
   letter-spacing: 5%;
   line-height: 100%;
   cursor: pointer;
   font-family: "Roboto", sans-serif !important;
}

#sherlock-login-form  .login-support {
   display: flex;
   justify-content: center;
   margin-top: 30px;
}
#sherlock-login-form  .login-support  .support-text {
   display: inline-block;
   text-align: center;
   font-size: 14px;
   line-height: 20px;
   font-weight: 400;
   color: #44424B;
   max-width: 316px;
   margin: 0;
   font-family: "Roboto", sans-serif !important;
}

#sherlock-login-form .login-loading {
    text-align: center;
    padding: 20px 0;
}

#sherlock-login-form .spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #5B330E;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#sherlock-login-form .login-messages {
    margin-top: 15px;
}

#sherlock-login-form .error-message,
#sherlock-login-form .success-message {
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif !important;
}

#sherlock-login-form .error-message {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

#sherlock-login-form .success-message {
    background: #efe;
    color: #363;
    border: 1px solid #cfc;
}

/* Forgot Password Modal Styles */
.sherlock-forgot-password {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sherlock-forgot-password .forgot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

.sherlock-forgot-password .forgot-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
    padding: 30px;
    background-color: #F8F8F8;
    border-radius: 4px;
}

.sherlock-forgot-password .forgot-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #44424B;
    line-height: 1;
    font-family: "Roboto", sans-serif !important;
}

.sherlock-forgot-password .forgot-header {
    margin-bottom: 20px;
    text-align: center;
}

.sherlock-forgot-password .forgot-title {
    color: #44424B;
    font-size: 20px;
   font-family: "Roboto", sans-serif !important;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 10px;
}

.sherlock-forgot-password .forgot-subtitle {
    color: #44424B;
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto", sans-serif !important;
    line-height: 100%;
    margin: 0;
}

.sherlock-forgot-password .forgot-fields {
    margin-bottom: 25px;
}

.sherlock-forgot-password .form-group {
    margin-bottom: 20px;
}

.sherlock-forgot-password .form-group input {
    font-size: 16px;
    line-height: 24px;
    color: #44424B;
    padding: 12px 16px;
    width: 100%;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    background-color: #FFFFFF;
    font-family: "Roboto", sans-serif !important;
}

.sherlock-forgot-password .form-group input::placeholder {
    color: #D9D9D9;
}

.sherlock-forgot-password .forgot-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.sherlock-forgot-password .forgot-btn {
    flex: 1;
    border: 1px solid #5B330E;
    background: #5B330E;
    color: #FFFFFF;
    text-transform: uppercase;
    padding: 0 12px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
    height: 36px;
    font-family: "Roboto", sans-serif !important;
}

.sherlock-forgot-password .forgot-btn:hover:not(:disabled) {
    background: #4a2a0b;
}

.sherlock-forgot-password .forgot-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.sherlock-forgot-password .cancel-btn {
    flex: 1;
    border: 1px solid #D9D9D9;
    background: #FFFFFF;
    color: #44424B;
    text-transform: uppercase;
    padding: 0 12px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
    height: 36px;
    font-family: "Roboto", sans-serif !important;
}

.sherlock-forgot-password .cancel-btn:hover {
    background: #f5f5f5;
}

.sherlock-forgot-password .forgot-messages {
    margin-top: 15px;
}

.sherlock-forgot-password .forgot-error-message,
.sherlock-forgot-password .forgot-success-message {
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif !important;
}

.sherlock-forgot-password .forgot-error-message {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.sherlock-forgot-password .forgot-success-message {
    background: #efe;
    color: #363;
    border: 1px solid #cfc;
}

/* WordPress Login Page Custom Styling */
body.login {
    background: #fdf6ec !important;
    font-family: "Roboto", sans-serif !important;
}

body.login #loginform {
    background: #F8F8F8 !important;
    border: 1px solid #D9D9D9 !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    padding: 30px !important;
}

body.login h1 a {
    background-image: none !important;
    color: #5B330E !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    font-family: "Roboto", sans-serif !important;
}

body.login h1 a:before {
    content: "Sherlock Homes" !important;
}

body.login #loginform p {
    margin-bottom: 20px !important;
}

body.login #loginform input[type="text"],
body.login #loginform input[type="password"] {
    font-size: 16px !important;
    line-height: 24px !important;
    color: #44424B !important;
    padding: 12px 16px !important;
    width: 100% !important;
    border: 1px solid #D9D9D9 !important;
    box-sizing: border-box !important;
    background-color: #FFFFFF !important;
    border-radius: 3px !important;
    font-family: "Roboto", sans-serif !important;
}

body.login #loginform input[type="text"]:focus,
body.login #loginform input[type="password"]:focus {
    border-color: #5B330E !important;
    box-shadow: 0 0 0 1px #5B330E !important;
    outline: none !important;
}

body.login #loginform input[type="text"]::placeholder,
body.login #loginform input[type="password"]::placeholder {
    color: #D9D9D9 !important;
}

body.login #loginform .button-primary {
    background: #5B330E !important;
    border: 1px solid #5B330E !important;
    color: #FFFFFF !important;
    text-transform: uppercase !important;
    padding: 12px 20px !important;
    border-radius: 3px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: background-color 0.2s ease !important;
    font-family: "Roboto", sans-serif !important;
}

body.login #loginform .button-primary:hover {
    background: #4a2a0b !important;
}

body.login #loginform .button-primary:focus {
    box-shadow: 0 0 0 1px #5B330E !important;
}

body.login #nav,
body.login #backtoblog {
    text-align: center !important;
}

body.login #nav a,
body.login #backtoblog a {
    color: #5B330E !important;
    text-decoration: none !important;
    font-weight: 400 !important;
}

body.login #nav a:hover,
body.login #backtoblog a:hover {
    color: #4a2a0b !important;
    text-decoration: underline !important;
}

body.login .message,
body.login #login_error {
    background: #fee !important;
    color: #c33 !important;
    border: 1px solid #fcc !important;
    border-radius: 6px !important;
    padding: 12px 15px !important;
    margin-bottom: 20px !important;
}

body.login .message {
    background: #efe !important;
    color: #363 !important;
    border: 1px solid #cfc !important;
}

/* Hide WordPress logo and branding */
body.login div#login h1 a {
    width: auto !important;
    height: auto !important;
    background-size: auto !important;
}

/* Custom styling for password reset form */
body.login .reset-pass-form {
    background: #F8F8F8 !important;
    border: 1px solid #D9D9D9 !important;
    border-radius: 4px !important;
    padding: 30px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

body.login .reset-pass-form h3 {
    color: #44424B !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    font-family: "Roboto", sans-serif !important;
}

body.login .reset-pass-form p {
    color: #44424B !important;
    font-size: 16px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    font-family: "Roboto", sans-serif !important;
}

/* Style : Profile Page */
.account-wrapper {
    background-color: #fdf6ec;
    /* padding: 50px 0 150px 0; */
    padding: 20px 0 50px 0;
}
.account-wrapper .breadcrumb .breadcrumb-link{
     border-radius: 3px;
     background-color: #5B330E;
     padding: 10px 45px;
     color: white;
     font-size: 14px;
     line-height: 100%;
     letter-spacing: 5%;
     font-weight: 400;
     font-family: "Roboto", sans-serif;
     color: #FDF6EC;
     display: inline-block;
     text-decoration: none;
     margin-bottom: 50px;
     font-family: "Roboto", sans-serif !important;
}
.account-wrapper .account-title {
  font-size: 40px;
  line-height: 100%;
  margin: 0 0 25px 0 ;
  font-weight: 400;
  font-family: "Roboto", sans-serif !important;
}
.account-wrapper .account-card {
    max-width: 904px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
}
.account-wrapper .form-group {
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.account-wrapper .form-group:last-child {
    margin-bottom: 0;
}

.account-wrapper .form-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.account-wrapper .form-wrapper .form-group {
    flex: 1;
    overflow: hidden;
}
.account-wrapper .form-wrapper .form-group.service-agreement-group{
    flex: 2;
}
.account-wrapper .form-wrapper .form-group.service-agreement-group.full{
    flex: 1;
    margin-left: 24px;
}
.account-wrapper .form-wrapper .form-group.service-agreement-group label{
    width: 48%;
    text-align: end;
}
.account-wrapper .form-wrapper .form-group.service-agreement-group.full label{
    width: 50%;
    text-align: start;
}
.account-wrapper .form-wrapper .form-group.service-agreement-group .button-group{
    width: 48%;
    justify-content: start;
}
.account-wrapper .form-wrapper .form-group.service-agreement-group.full .button-group{
    width: 130px;
    justify-content: start;
}

.account-wrapper .form-group label {
    display: block;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 5px;
    font-family: "Roboto", sans-serif;
}

.account-wrapper .form-group input,
.account-wrapper .form-control {
    width: 100%;
    border: none;
    border-bottom: 1px solid #CCCCCC;
    font-size: 15px;
    line-height: 100%;
    padding: 10px;
    color: #212529;
    font-family: "Roboto", sans-serif !important;
    outline: none;
    background-color: transparent;
    transition: border-color 0.3s ease;
}
.account-wrapper textarea.form-control {
    height: 39px;
    max-width: 94%;
    resize: none;
}



.account-wrapper .account-wrapper .form-group input:disabled {
    background-color: transparent;
    color: #212529;
    -webkit-text-fill-color: #212529;
    opacity: 1;
    cursor: not-allowed;
}

/* Contact Number Special Styling */
.account-wrapper .form-group .phone-country-code {
    display: inline-block;
    width: 65px;
    margin-right: 15px;
    vertical-align: top;
}

.account-wrapper .form-group .phone-number {
    display: inline-block;
    width: calc(100% - 130px);
    vertical-align: top;
}

.account-footer-text{
    text-align: center;
    font-family: "Roboto", sans-serif !important;
    font-size: 14px;
    color: #808080;
}
/* Base badge styles */
.membership-tier-badge .badge {
    display: inline-block;
    opacity: 1;
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    width: 123px;
    text-align: center;
    cursor: pointer;
    font-family: "Roboto", sans-serif !important;
    text-transform: capitalize;
}

/* Type 1: Associate Plan, Network Plan - Light tan/beige */
.membership-tier-badge .badge.badge-type-1 {
    background-color: #C59E6C;
    color: #644B2C;
}

/* Type 2: Value Plan, Strategic Plan - Yellow/Gold */
.membership-tier-badge .badge.badge-type-2 {
    background-color: #FFC170;
    color: #6B5416;
}

/* Type 3: Enhance Plan - Dark brown */
.membership-tier-badge .badge.badge-type-3 {
    background-color: #5C3D2E;
    color: #F5E6D3;
}
.membership-tier-badge .badge.individual {
    background-color: #E8D7BD;
    color: #644B2C;
    margin-left: 10px;
    pointer-events: none;
}
.membership-tier-badge .badge.company {
    background-color: #C59E6C;
    color: #F6EBD5;
    margin-left: 10px;
    pointer-events: none;
}
button.btn-secondary{
    border-radius: 3px;
    padding-top: 2px;
    padding-right: 8px;
    padding-bottom: 2px;
    padding-left: 8px;
    border: 1px solid #808080;
    color: #808080;
    background: transparent;
    min-height: 27px;
    cursor: pointer;
    flex: 1;
    font-family: "Roboto", sans-serif !important;
    font-size: 13px;
}
button.btn-secondary:hover{
    background-color: #CCCCCC;
    border: 1px solid #808080;
}
.button-group{
    display: flex;
    gap: 25px;
    padding-top: 12px;
}

.sherlock-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sherlock-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

.sherlock-modal  .modal-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: max-content;
    padding: 0px;
    background-color: #F8F8F8;
    border-radius: 4px;
    width: 90%;
    max-width: 1032px;
}
.sherlock-modal .modal-close-btn, .badge-close-btn {
     position: absolute;
    /* top: 10px;
    right: 10px; */
    top: -30px;
    right: 0px;
     background: transparent;
     border: none;
     cursor: pointer;
}

/* Password Field Wrapper */
.password-field-wrapper {
    position: relative;
}

.password-field-wrapper .password-input {
    padding-right: 45px; /* Space for the eye icon */
}

/* Password Toggle Button */
.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: color 0.2s;
    z-index: 10;
}

.password-toggle-btn:hover {
    color: #6b7280;
}

.password-toggle-btn:focus {
    outline: none;
    color: #4b5563;
}

.password-toggle-btn svg {
    width: 20px;
    height: 20px;
}

/* Hide/show icons based on password visibility */
.password-toggle-btn .eye-open {
    display: block;
}

.password-toggle-btn .eye-closed {
    display: none;
}

.password-toggle-btn.show-password .eye-open {
    display: none;
}

.password-toggle-btn.show-password .eye-closed {
    display: block;
}

/* Ensure input field doesn't overlap with icon */
.password-field-wrapper input[type="text"],
.password-field-wrapper input[type="password"] {
    padding-right: 45px;
}

/* Responsive */
@media screen and (max-width: 1571px) {

    .container.big {
        padding: 0 1rem;
    }
}
@media screen and (max-width: 900px) {
    .account-wrapper .form-wrapper{
        flex-direction: column;
        margin-bottom: 12px;
    }
    .account-wrapper textarea.form-control {
        height: auto;
    }
    
    .account-wrapper .form-wrapper .form-group.service-agreement-group{
        flex: 2;
    }
    .account-wrapper .form-wrapper .form-group.service-agreement-group label{
        width: 100%;
        text-align: start;
    }
    .account-wrapper .form-wrapper .form-group.service-agreement-group .button-group{
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .sherlock-forgot-password .forgot-container,
    .sherlock-login-modal  .login-container {
        max-width: calc(100% - 40px);
        padding: 30px 20px;
    }
    .sherlock-login-modal .login-close-btn {
        right: 20px;
    }
}
