.chk-dd { position: relative; width: 100%; }

.chk-dd-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    background: var(--White, #FFF);
    border: 1px solid var(--Grey-300, #CED1D6);
    border-radius: 12px;
    justify-content: space-between;
    padding: 0 15px 0 16px;
    height: 44px;
    cursor: pointer;
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    color: #3C4654;
    line-height: 150%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
}

.chk-dd-toggle:hover {
    border-color: #128292;
}

.chk-dd.open .chk-dd-toggle {
    border: 2px solid #128292;
    border-radius: 12px 12px 0px 0px;
}

/* .chk-dd-toggle::after {
    content: '\25BE';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #128292;
    font-size: 16px;
} */

.chk-dd-menu {
    display: none;
    position: absolute;
    top: 100%;
    width: 405px;
    left: 0;
    z-index: 1200;
    background: #fff;
    border-top: none;
    border-right: 2px solid #128292;
    border-bottom: 2px solid #128292;
    border-left: 2px solid #128292;
    border-radius: 0px 0px 12px 12px;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .10);
}

.chk-dd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #3C4654;
    line-height: 150%;
}

.chk-dd-item:hover { background: #EFF2F6; }

.chk-dd-item input[type="checkbox"] { 
    width: 24px;
    height: 24px;
    gap: 8px;
    flex-shrink: 0;
    margin: 0;
    border-radius: 6px !important; 
    border: 1px solid #BCC1C7 !important;
    background: #fff !important;
    -moz-appearance:none;
    -webkit-appearance:none;
    -o-appearance:none;
    position: relative;
}

.chk-dd-item input[type="checkbox"]:checked {
    background-color: #128292 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='12' viewBox='0 0 17 12' fill='none'%3E%3Cpath d='M16.4477 0.351508C16.9164 0.820184 16.9164 1.58132 16.4477 2.04999L6.84924 11.6485C6.38056 12.1172 5.61943 12.1172 5.15076 11.6485L0.351508 6.84924C-0.117169 6.38057 -0.117169 5.61943 0.351508 5.15076C0.820184 4.68208 1.58132 4.68208 2.04999 5.15076L6.00187 9.09889L14.753 0.351508C15.2217 -0.117169 15.9828 -0.117169 16.4515 0.351508H16.4477Z' fill='white'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 12px !important;
}

.chk-dd.open .chk-dd-menu { display: block; }

/* Add-On Services checkboxes */
.add-on-services-details{
    max-width: 780px;
    margin-top: 4px;
}
.add-on-lead-automator {
    border-radius: 12px;
    border: 1px solid #DFE1E4;
    padding: 24px 40px 24px 24px;
    background: #FFF;
    display: flex;
    margin-top: 24px;
}
.add-on-lead-automator input[type="checkbox"]:disabled {
    cursor: not-allowed !important;
	border-radius: 6px !important;
	background: #BCC1C7 !important;	
	color: #fff !important;
	border: none !important;
}

.add-on-lead-automator input[type="checkbox"] { 
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 6px !important; 
    border: 1px solid #BCC1C7 !important;
    background: #fff !important;
    -moz-appearance:none;
    -webkit-appearance:none;
    -o-appearance:none;
    position: relative;
    align-self: center;
}

.add-on-lead-automator input[type="checkbox"]:checked {
    background-color: #128292 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='12' viewBox='0 0 17 12' fill='none'%3E%3Cpath d='M16.4477 0.351508C16.9164 0.820184 16.9164 1.58132 16.4477 2.04999L6.84924 11.6485C6.38056 12.1172 5.61943 12.1172 5.15076 11.6485L0.351508 6.84924C-0.117169 6.38057 -0.117169 5.61943 0.351508 5.15076C0.820184 4.68208 1.58132 4.68208 2.04999 5.15076L6.00187 9.09889L14.753 0.351508C15.2217 -0.117169 15.9828 -0.117169 16.4515 0.351508H16.4477Z' fill='white'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 12px !important;
}

.add-on-lead-automator input[type="checkbox"]:disabled:checked {
    background-color: #BCC1C7 !important;
}

.add-on-lead-automator-details {
    margin-left: 24px;
}

.add-on-lead-automator-title {
    font-size: 16px;
    font-weight: 600;
    color: #3C4654;
    line-height: 150%;
}

.add-on-lead-automator-description {
    font-size: 16px;
    font-weight: 500;
    color: #808894;
    line-height: 150%;
}

.add-on-lead-automator-price {
    margin-left: auto;
    font-size: 16px;
    font-weight: 600;
    color: #3C4654;
    /* line-height: 150%; */
    text-align: right;
    margin-bottom: 4px;
    align-self: center;
    display: flex;
}

.add-on-lead-automator-price-frequency {
    font-size: 14px;
    font-weight: 500;
    color: #808894;
    line-height: 150%;
}

.add-on-lead-automator-free {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    margin-left: auto;
}

.add-on-lead-automator-price-free {
    text-decoration: line-through;
}

.add-on-lead-automator-free-text {
    font-size: 16px;
    font-weight: 700;
    color: #F16722;
    line-height: 150%;
    margin-left: 14px;
}

/* .add-on-table-row {
    border-bottom: 1px solid #DFE1E4;
} */

.add-on-table-row:not(:last-child) {
    border-bottom: 1px solid #DFE1E4;
}

.add-on-table-title {
     padding: 26px 0;
    font-size: 16px;
    color: #3C4654;
    font-weight: 600;
    line-height: 150%;
    vertical-align:middle;
}

.add-on-table-select-container {
    padding: 16px 0;
    width: 408px;
}

/* Team Members table labels */
#team-members-section table td {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    color: #3C4654;
    border-bottom: 1px solid #DFE1E4;
}


#team-members-section table tr:last-child td {
    border-bottom: none;
}


.adds-on-lead-banner{
    margin-top: 24px;
}

.adds-on-lead-banner > .account-content-left > .lead-automator-selection > .lead-automator-card-essentials {
    margin-bottom: 0px;
}