/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* membership purchase flow */ 
.memb-fund-popup.memb-modal-open .payment-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.half.profile-dropdown .notificatoin-icons-wrapper {
    position: relative;
}
.memb-fund-popup.memb-modal-open .payment-header {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}
.memb-no-product-found {
    width: 52%;
    justify-content: center;
    text-align: center;
}
.memb-fund-pro-relase {
    background-color: #d4edda; /* Light green background */
    color: #155724; /* Dark green text */
    border: 1px solid #c3e6cb; /* Green border */
    padding: 12px 20px;
    margin: 15px 0;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: -40px;
    margin-bottom: 40px;
}
#membFundPopup .loader-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 100% !important;
    z-index: 9;
    padding-top: 20%;
    right: 5px;
}
#membFundPopup .pto-on-it-loader {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}
#membFundPopup .pto-on-it-loader-text {
    color: #3498db;
    font-weight: bold;
    margin-top: 10px;
}
.memb-fund-popup.memb-modal-open .payment-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}
.half.profile-dropdown {
    display: flex;
    align-items: center;
}
.half.profile-dropdown .profile_img_wrapper {
    display: flex;
    align-items: center;
}
.half.profile-dropdown .profile_img_wrapper span {margin-right: 10px !important;position: relative;margin-left: 10px;}
.memb-fund-popup.memb-modal-open label {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-top: 10px;
    color: #333;
}

.memb-fund-popup.memb-modal-open input, .memb-fund-popup.memb-modal-open select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.memb-fund-popup.memb-modal-open .input-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}
body .memb-fund-popup.memb-modal-open.hidden {
    opacity: 0;
    visibility: hidden;
}
.memb-fund-popup.memb-modal-open .button-container button.hidden {
    display: none !important;
}
.memb-fund-popup.memb-modal-open .pto-fundraiser-card-number-input {
    max-width: 100% !important;
}
.memb-fund-popup.memb-modal-open .button-container .active {
    display: block !important;
}
.memb-fund-popup.memb-modal-open .input-group div {
    flex: 1;
}

.memb-fund-popup.memb-modal-open .cvv-input {
    position: relative;
}

.memb-fund-popup.memb-modal-open .cvv-input i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.memb-fund-popup.memb-modal-open .submit-btn {
    width: 100%;
    background: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

.memb-fund-popup.memb-modal-open .submit-btn:hover {
    background: #0056b3;
}
/* Background Overlay */
body .memb-fund-popup.memb-modal-open{
    opacity: 1;
    visibility: visible;
}
.memb-fund-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
}

.memb-fund-popup.show {
    visibility: visible;
    opacity: 1;
}

/* Popup Container */
.memb-fund-popup .popup-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 50px 50px 25px 50px;
    width: 50%;
    position: relative;
}

/* Close Button */
.memb-fund-popup .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.memb-fund-popup .close-btn:hover {
    color: black;
}

/* Steps */
.memb-fund-popup .step {
    display: none;
}

.memb-fund-popup .step.active {
    display: block;
}

/* Buttons */
.memb-fund-popup .button-container {
    display: flex;
    margin-top: 20px;
    justify-content: center;
}
.memb-fund-popup .button-container button {
    width: 100px;
    margin-right: 10px;
}
.memb-fund-popup button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.memb-fund-popup #backBtn {
    background: #ccc;
    color: #333;
    display: none;
}

.memb-fund-popup #nextBtn {
    background: #007bff;
    color: white;
}

.memb-fund-popup #nextBtn:hover {
    background: #0056b3;
}

/* Selection Cards */
.memb-fund-popup .memb-fund-card-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.memb-fund-popup .memb-fund-card {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border 0.2s ease-in-out;
}

.memb-fund-popup .memb-fund-card input[type="radio"] {
    display: none;
}

.memb-fund-popup .memb-fund-card label {
    display: block;
}

.memb-fund-popup .memb-fund-card img {
    width: 350px;
    height: auto;
    border-radius: 5px;
}

.memb-fund-popup .memb-fund-card input[type="radio"]:checked + label img {
    border: 2px solid #007bff !important;
}

/* Payment Fields */
.memb-fund-popup .payment-container {
    text-align: left;
}

.memb-fund-popup .payment-container input,
.memb-fund-popup .payment-container select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #
}
.memb-fund-card-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.memb-fund-card label {
    width: 250px;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.memb-fund-card label {
    display: block;
    cursor: pointer;
}

.memb-fund-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.pto-fundraiser-price {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

.pto-fundraiser-title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
    color: #555;
}

/* Hide default radio button */
.memb-fund-card input[type="radio"] {
    display: none;
}

/* Style when selected */
.memb-fund-card input[type="radio"]:checked + label {
    border: 2px solid #007bff !important;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

/* Selected effect on parent */
.memb-fund-card input[type="radio"]:checked + label .pto-fundraiser-title {
    color: #007bff;
}

/* end */

/* new signup scree */
.pto-form-layout {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
ul.memb-profile-menu {
    max-height: 600px;
    overflow-y: auto;
}
.pto-form-layout form#memb_register_form {
    max-width: 70%;
    border: 2px solid #000;
    border-radius: 8px;
    background: #fff;
    padding: 100px 40px 30px 40px;
    margin:  auto;
    width: 100%;
}
.memb_grp_remove.memb_group_remove i {
    color: red;
    font-size: 18px;
    font-weight: bold;
}
.cust_input_field.d_flex.align_center.cust_checkbox p {
    position: relative;
}
.memb-plus-wrapper-menu-header .half.profile-dropdown {height: 100%;}

.memb-plus-wrapper-menu-header label.profile-dropdown {
    height: 100%;
}
.pto-form-layout-wrap,.pto-logo-layout-wrap {
    max-width: 50%;
    width: 100%;
    height: 100vh;
}
.memb_plus_ fieldset {
    margin-top: 10px;
}
.memb_plus_ fieldset .action-links {
    margin: 10px 0 20px;
}
form input[type=button], #memb-plus-submit-forgot-password-form button, form.memb_plus_ button, form.memb_plus_ input[type=button] {

    margin-top: 20px;
}
.pto-form-layout-wrap {
    background: #ccc;
    display: flex;
    overflow-y: auto;
    padding: 50px 0;
}
.memb_grp_remove.memb_group_remove {
    font-size: 14px !important;
    color: red;
    text-decoration: underline;
    text-align: right;
    font-weight: bold;
}
form#memb_plus_signin_form h1 {
    text-align: left;
    color: #000;
    font-size: 28px;
    margin-bottom: 0;
}
.pto-form-wrap-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    flex-wrap: wrap;
}
.pto-form-wrap-title a {
    color: #000;
}
.pto-form-wrap-title a:hover {
    color: #007bff;
}
form#memb_plus_signin_form, form#memb_plus_signup_form {
    max-width: 70%;
    border: 2px solid #000;
    border-radius: 8px;
    background: #fff;
    padding: 100px 40px 30px 40px;
    margin: auto;
    width: 100%;
}
.pto-memb-logreg {
    overflow: hidden;
}
form#memb_plus_signup_form {
    padding-bottom: 70px;
}
.pto-img-wrap {
	max-width: 40.1%;
	width: 100%;
	padding-top: 50%;
	position: relative;
}
.pto-logo-layout-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
form#memb_plus_signin_form #memb_plus_signin_buttton {
    line-height: 1 !important;
}
.pto-img-wrap img {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	object-fit: contain;
}

.memb_pass_field {
	position: relative;
}
.toggle-password,
.memb_toggle_password {
	position: absolute;
	top: 10px;
	right: 10px;
	margin: auto;
    cursor: pointer;
}
/* End Signup Screens */
/* edit profile custom checkbox */
.ast-desktop .ast-primary-header-bar .main-header-menu>.menu-item {
    line-height: unset;
}
/* body .memb-plus-header-menus li a {
    color: #222;
} */
/*.memb-plus-wrapper-menu-header {
    display: none;
}*/
a.alpha_character {
    cursor: pointer;
}
div#primary-navbar .memb-plus-wrapper-menu-header {
    display: block;
}
.profile-upload {
    display: flex;
    align-items: center;
}
/* new css 888*/
.primary-menu-container.header-menu-container .menu {
	max-width: 100%;
}
.remove-profile .fa.fa-trash::before {
    content: "\f1f8" !important;
}
/* 
.member-plus-sticky-menu {
    position: absolute;
    right: 250px;
    bottom: 5px;
} */
.profile-upload label {
    margin-top: 10px;
    color: #000;
    font-weight: normal;
    margin-left: 10px;
    font-size: 15px;
}
.pto-memb-logreg #memb_register_form .memb-custom-filed-section[type=date]:after {
    top: 46%;
}
.remove-profile {
    display: flex;
    align-items: center;
    font-weight: normal
}
.profile_img_wrapper span {
    font-size: 12px;
}
.remove-profile label {
    margin-left: 5px;
}
.custom-field-box .memb-checkbox input {
    position: absolute;
    cursor: pointer;
    height: 22px;
    width: 22px;
    margin: 0;
    z-index: 2;
    appearance: none;
    border: 0 !important;
    padding: 0 !important;
    opacity: 0;
}
.memb-checkbox .checkmark {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: block;
    margin-right: 0;
}
/* img.memb_plus_top_profile_img {
    cursor: pointer;
} */
.custom-field-box .memb-checkbox .checkmark::before {
    content: "";
    width: 0;
    height: 0;
    font-size: 1.25rem;
    border-left-width: 0px;
    border-bottom-width: 0px;
    border-left-style: solid;
    border-bottom-style: solid;
    border-color: #000;
    position: absolute;
    top: .4428em;
    left: .25em;
    transform-origin: left top;
    transform: rotate(-40deg) skew(10deg);
    z-index: 4;
}
.pto-radio-checkbox-wrap input:checked+.checkmark::before {
    width: 11px;
    height: 7px;
    font-size: 1.25rem;
    border-left-width: 1px;
    border-bottom-width: 1px;
}
.memb-checkbox .checkmark::after {
    content: "";
    width: 22px;
    height: 22px;
    font-size: 15px;
    border: 1px solid #e8eeefd1;
    position: absolute;
    cursor: pointer;
    left: 0;
    top: -3px;
    border-radius: 4px;
    z-index: 1;
}
.custom-field-box .memb-checkbox input:checked+.checkmark::before {
    width: 11px;
    --uiToggleArrowWidth: 2px;
    height: 6px;
    border-left-width: 2px;
    border-bottom-width: 2px;
    opacity: 1;
    transition: opacity .1s ease-out .15s, width .1s ease-out .3s, height .1s ease-out .2s;
}
.custom-field-box .memb-checkbox input:checked+.checkmark::after {
    /* background-color: #186dc9; */
    will-change: background-color;
    transition: background-color .15s ease-out;
}
.custom-field-box .memb-checkbox>p:not(:last-child) {
    margin-right: 15px;
    display: flex;
    align-items: center;
}
.group-filed-section input {
    box-shadow: none;
    height: 40px;
    border-radius: 5px;
    border: 2px solid #e8eeefd1;
    background: #fff;
    padding: 9px 10px 11px 10px !important;
    font-size: 14px;
}
.group-filed-section textarea {
    width: 100%;
    border-radius: 5px;
    border: 2px solid #e8eeefd1;
    background: #fff;
    font-size: 14px;
    padding: 9px 10px 11px 10px !important;
}
/** end */
.asc_desc.down-arrow .dashicons-arrow-up:before {
    content: "\f140";
}
.custm-single strike {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
p.memb-plus-alert-error {
    color: red;
    font-size: 14px;
    margin: 0;
}
.memb_family_list tr th {
    text-align: left;
}
.memb_show-hide_class input::before {
    visibility: hidden;
    position: absolute;
    width: 60px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
    opacity: 0;
    transition: opacity .6s;
    content: "Show";
    /* font-family: var(--primary-nav--font-family); */
    top: -34px;
    left: -8px;
}
.memb_show-hide_class input[type="checkbox"]:checked::before {
    content: "Hide";
    display: block !important;
    top: -27px;
    left: 0;
    height: auto;
    width: 60px;
}
.memb_show-hide_class input:hover::before {
    opacity: 1;
    visibility: visible;
}
#memb_register_form .cust_input_field.cust_checkbox input {
    position: absolute;
    cursor: pointer;
    height: 22px;
    width: 22px;
    margin: 0;
    z-index: 2;
    appearance: none;
    border: 0 !important;
    padding: 0 !important;
    opacity: 0;
}
.checkmark {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: block;
    pointer-events: none;
}
#memb_register_form .cust_input_field.cust_checkbox .checkmark::before {
    content: "";
    width: 0;
    height: 0;
    font-size: 1.25rem;
    border-left-width: 0;
    border-bottom-width: 0;
    border-left-style: solid;
    border-bottom-style: solid;
    border-color: #000;
    position: absolute;
    top: .5428em;
    left: .25em;
    transform-origin: left top;
    transform: rotate(-40deg) skew(10deg);
    z-index: 4;
}
.pto_valid_item {
    border: 1px solid red !important;
}
.pto_valid_item+span.checkmark:after {
    border-color: RED;
}
.checkmark::after {
    content: "";
    width: 22px;
    height: 22px;
    font-size: 15px;
    border: 1px solid #e8eeefd1;
    position: absolute;
    cursor: pointer;
    left: 0;
    top: 0;
    border-radius: 4px;
    z-index: 1;
}
#memb_register_form .cust_input_field.cust_checkbox input:checked+.checkmark::before {
    width: 11px;
    --uiToggleArrowWidth: 2px;
    height: 6px;
    border-left-width: 2px;
    border-bottom-width: 2px;
    opacity: 1;
}
#memb_register_form .cust_input_field.cust_checkbox input:checked+.checkmark::after {
    /* background-color: #186dc9; */
    will-change: background-color;
    transition: background-color .15s ease-out;
}
.cust_checkbox>p:not(:last-child) {
    margin-right: 15px;
    display: flex;
    align-items: center;
}
.kt-clear .cust_checkbox>p:not(:last-child) {
    margin-bottom: 0;
}
/*span.name.active {border: 3px solid #808080;background: #808080;color: #ffff;}*/
span.name {
    padding: 10px;
    cursor: pointer;
}
.memb-show-tab.show-hide-memb {
    display: block;
}
ul.memb-profile-tab-menu li {
    cursor: pointer;
    color: black !important;
    background-color: white !important;
    /* padding: 5px !important; */
}
.li-active {
    background: #e9eaee;
    color: #333;
}
ul.notification-list.bs-item-list {
    margin: 0 20px !important;
}
p.memb-plus-alert-success {
    color: #155724;
    font-size: 14px;
    margin: 0;
}
.memb-show-tab {
    display: none;
}
.asc_desc.arrow-class span.dashicons.dashicons-arrow-up:before {
    content: "\f140";
}
.visibility_check_frontend {
    border: 1px solid !important;
}
.filter-name .name:hover {
    color: #007bff;
}
.filter-name span.name.active {
    color: #007bff;
}
/* .custom-field-box.repeater {display: flex !important;flex-wrap: wrap;} */
.memb-link-to-member-select {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-direction: row-reverse;
    margin-bottom: 15px;
}
/* .memb-link-to-member-select:last-child {
	flex-direction: row;
} */
span.memb-reg-err {
    color: red;
    font-style: unset;
    font-size: 14px;
    font-weight: 500;
}
.memb-link-to-member {
    width: 100%;
}
.memb-link-to-member-select select {
    width: 48%;
}
span.add_more_link_member {
    /* width: 100%; */
    text-align: right;
}
.memb_plus_group_filed {
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.memb_plus_group_filed .memb_group_data {
    padding-top: 9px;
}
.custom-field-box.repeater {
    width: 100%;
    /* margin-left: 2%; */
}
.custom-field-box.repeater .repeter_filed .custom-field-box.repeater {
    width: 100%;
    justify-content: space-between;
    margin: 0 !important;
}
.memb-plus-user-accept,
.memb-plus-user-reject {
    text-decoration: none;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 7px 20px;
    border-radius: 20px;
    margin: 5px 0;
    font-size: 14px;
}
.memb_plus_user_request {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #cfc2c2;
    padding: 11px 0px;
    margin-top: 22px;
    gap: 5px;
}
.custom-field-box label {
    text-transform: capitalize;
    font-size: 16px;
    word-break: break-word;
}
.memb-custom-profiled-label {
    display: flex;
    padding-top: 10px;
}
.memb-search-group-member {
    background: #fff !important;
    padding: 10px;
    margin-left: 2px;
    border-top: unset !important;
    border: 2px solid #e8eeefd1;
    cursor: pointer;
}
.memb-search-group-member .memb-user-search-group {
    border-bottom: 1px solid #e8eeefd1;
}
.memb-search-group-member {
    display: none;
}
.memb-search-group-member.memb-data-show {
    display: block;
}
/* register form */
.memb-user-search-group {
    display: flex;
}
.memb-user-search-group span {
    margin-left: 5px;
}
.memb-user-search-group label:last-child {
    display: none;
}
.memb-user-search-group span:first-child {
    font-weight: bold;
}
form#memb_register_form input[type='text'],
form#memb_register_form input[type='search'],
form#memb_register_form select,
form#memb_register_form input[type='number'],
form#memb_register_form input[type='email'],
form#memb_register_form input[type='password'] {
    width: 100%;
}
.cust_input_field {
    width: 80%;
    margin: 0 auto;
}
form#memb_register_form {
    padding: 30px 0;
}
.cust_input_field {
    margin-bottom: 15px !important;
}
.memb-custom-filed-section label {
    text-transform: capitalize;
}
.cust_input_field.cust_radio {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.cust_input_field.cust_radio label {
    width: 100%;
}
.cust_input_field.cust_radio input {
    margin-left: 10px;
    margin-right: 10px;
}
.page-id-38 .custom-field-box h5 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-transform: none;
}
.page-id-38 .custom-field-box h6 {
    font-size: 16px;
    font-weight: 500;
    margin-left: 7px;
    margin-bottom: 0;
    padding: 0;
    text-transform: none;
}
.page-id-40 .custom-field-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
    margin-bottom: 10px;
}
.page-id-38 .custom-field-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
    margin-bottom: 10px;
}
.memb_plus_group_filed {
margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
        padding: 10px 15px;
}
.content .memb_plus_group_filed{
    margin-top: 0;
    margin-left: 0;
}
.page-id-40 fieldset {
    margin-bottom: 0;
}
/* 22/12/2023 css for view profile page an for space */
.content .memb-custom-profiled-label.grp_label {
    margin-bottom: 0;
    margin-top: 10px;
}
.content .memb_plus_group_filed {
    margin-left: 0;
}
.content .memb-filed-color-setting {
    width: 100%;
}
/* end--------------- */
.page-id-38 .memb_plus_group_filed .memb_group_data {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.page-id-50 input[type="file"]::file-selector-button {
    border: 1px solid #333;
    padding: 0.2em 0.4em;
    border-radius: 0.2em;
    background-color: #ffff;
}
strike {
    color: transparent;
    text-shadow: 0 0 20px #000;
}
.page-id-1023 .show-hide-memb .custom-field-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
    padding-bottom: 10px;
}
.page-id-1023 .show-hide-memb .custom-field-box h5,
h6 {
    margin: 0;
    padding: 0;
}
.grp_border {
    border: 1px solid #55555557;
    margin-top: 15px;
    border-radius: 5px;
    padding: 10px;
}
.grp_border>div {
    padding: 0 3px;
    margin-top: -0.8em;
    width: 100%;
}
.grp_label {
    background: white none repeat scroll 0 0;
    display: inline-flex;
    padding: 0 6px;
    /* margin-left: 2em; */
}
.grp_border {
    width: 100% !important;
}
/* .grp_border .memb_show-hide_class .visibility_check_frontend:after {
    left: 50px;
} */
.grp_border .memb_show-hide_class .visibility_check_frontend::after {
    left: 8px;
    top: -14px;
}
.member-plus-memb-profile-view .custm-single {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 0;
    margin-top: 0;
width: 100%;
}
.memb_value_rep_wrapper {
    display: flex;
    flex-direction: column;
}
.member-plus-memb-profile-view .custm-single h5 {
    margin: 0;
}
.member-plus-memb-profile-view .custom-field-box h5 {
    margin: 0;
    color: black;
font-weight: normal;
}
/* p.memb-plus-alert-success {
    position: absolute;
    top: -29px;
    left: 15px;
} */
.memb_signup_alert_area {
    position: relative;
}
.type-mp-registration-form td.has-row-actions:hover .row-actions {
    visibility: visible;
}
.type-mp-registration-form .row-actions {
    visibility: hidden;
}
.memb_plus_nav_sign_up_btn {
    padding: 10px 20px;
    border-radius: 125px;
    text-decoration: none;
}
/* .memb-plus-wrapper-menu-header.member-plus-sticky-menu{
    width: 10%;
} */
/* .memb-plus-wrapper-menu-header {
    position: absolute;
    right: 5px;
    bottom: 0%;
    transform: translateY(50%);
} */
.primary-menu-container.header-menu-container .menu {
	max-width: 100%;
}
.primary-menu-container.header-menu-container {
	justify-content: space-between;
	align-items: center;
}
.fl-page-nav-left .row {
    align-items: center;
    display: flex !important;
}
.fl-page-nav-left .fl-page-nav-wrap {
    border-bottom: none;
    border-top:none;
    
    border-color: transparent;
    
}
.fl-page-nav-left .fl-page-header-logo {
    text-align: right;
}
.fl-page-nav-left .navbar-collapse.collapse {
    display: flex !important;
    
    justify-content: space-between;
    align-items: center;
}
.fl-page-nav-left .memb-plus-wrapper-menu-header {
    position: static; 
    transform: none
}
.fl-page-nav-left .member-plus-sticky-menu {
    position: static;
}
.fl-page-nav-left .fl-page-nav-search {
    position: static;
}
.fl-page-nav-left .fl-page-nav-search a.fa-search {
    
    position: static;
    
}
.fl-page-nav-right .fl-page-nav {
    
    display: flex;
}
.fl-page-nav-right .member-plus-sticky-menu {
    position: static;
    transform: none;
}
.fl-page-nav-right .fl-page-header-row > div {
    float: left !important;
    
}
.fl-page-nav-centered .fl-page-nav-search{
    position: static;
}
.fl-page-nav-centered .navbar-collapse.collapse {
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.fl-page-nav-centered .fl-page-nav-search a.fa-search {
    position: static;
}
.fl-page-nav-centered  .memb-plus-wrapper-menu-header {
    position: static;
    /* right: 25px; */
    /* bottom: 50%; */
    transform: none;
}
.fl-page-nav-centered .profile-dropdown ul.memb-profile-menu {
    
    z-index: 3;
}
.fl-page-nav-vertical-left .profile-dropdown ul.memb-profile-menu {
    right: -16%;
    z-index: 11;
}
.fl-page-nav-vertical-left .memb-plus-wrapper-menu-header section.notification-dropdown {
    right: 0;
    left: 0;
}
.fl-page-nav-vertical-left .row {
    
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.fl-page-nav-vertical-left .fl-page-header-logo {
    text-align: left;
    margin-bottom: 20px;
}
.fl-page-nav-vertical-left .navbar-collapse.collapse {
    display: flex !important;
    
    position: relative;
}
.fl-page-nav-vertical-left .memb-plus-wrapper-menu-header {
    position: absolute;
    right: 41px;
    transform: none;
    top: -18%;
}
.fl-page-nav-vertical-left .fl-page-nav-search a.fa-search {
    padding: 0 !important;
    right: -29px;
    top: -17px;
}
.fl-page-nav-vertical-left .col-sm-12{
    padding-right: 0;
    padding-left: 0;
}
.fl-page-nav-left .profile-dropdown ul.memb-profile-menu {
    z-index: 3;
    
}
.fl-page-nav-vertical-right .profile-dropdown ul.memb-profile-menu {
    right: -28px;
    z-index: 9;
}
.fl-page-nav-vertical-right .col-sm-12{
    padding-right: 0;
    padding-left: 0;
}
.fl-page-nav-vertical-right  .navbar-collapse.collapse {
    display: flex !important;
    position: relative;
}
.fl-page-nav-vertical-right .memb-plus-wrapper-menu-header {
    
    right: 44px;
    top: -14%;
    transform: none;
}
.fl-page-nav-vertical-right .fl-page-nav-search a.fa-search {
    right: -27px;
    top: -10px;
    padding: 0 !important;
}
.fl-page-nav-vertical-right .fl-page-header-logo {
    text-align: left;
    margin-bottom: 20px;
}
.fl-page-nav-vertical-right .fl-page-nav-collapse ul.navbar-nav {
    margin-top: 30px;
    padding-top: 0 !important;
}
.fl-page-header.fl-page-header-primary {
    position: relative;
    z-index: 1;
}
.fl-row-bg-overlay .fl-row-content {
    z-index: 0;
}
.fl-page-nav-right .fl-page-nav-collapse{
    width: 100%;
}
.fl-page-nav-right .fl-page-header-row {
    
    display: flex !important;
    align-items: center;
}
/* ul.memb-plus-header-menus {
    display: none;
    align-items: center;
    gap: 15px;
} */
/* .nav--toggle-sub ul.memb-plus-header-menus {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 45px !important;
} */
body #horizontalProTab .memb-top-nav-setting .li-active,
body #horizontalProTab .memb-top-nav-setting .li-active span {
    background-color: transparent !important;
}
body #horizontalProTab .memb-top-nav-setting .li-active {
    position: relative;
}
/* body #horizontalProTab .memb-top-nav-setting .li-active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0d61bb;
} */
body #horizontalProTab .memb-top-nav-setting .li-active span {
    color: #0d61bb !important;
}
@media only screen and (max-width: 1024px)  {
    .content-membership span.add_more_link_member {
        right: -5px;
    }
          .content-membership .remove_single_select {
        right: 0;
        }
        form#memb_plus_signin_form, form#memb_plus_signup_form {
            max-width: 80%;
            padding: 20px;
        }
      
        form#memb_plus_signin_form h1 {
            margin-bottom: 10px;
        }
        .memb_plus_ fieldset {
            margin-top: 15px;
        }
}
@media(max-width:767px) {
    body .memb-fund-popup .popup-content{
        width: 90%;
    }
    ul.memb-plus-header-menus.member_mobile_menu li a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: #000 !important;
    }
    ul.memb-plus-header-menus.member_mobile_menu {
        justify-content: center;
        margin-top: 15px;
    }
    header nav {flex-direction: column;}
    .content .memb-filed-color-setting {
        width: 50%;
    }
    .memb-link-to-member-select {
        flex-direction: column;
    }
    .memb_plus_.memb_plus .memb-link .memb-link-to-member-select select {
        width: 100%;
    }
    .pto-form-layout form#memb_register_form {
        margin: auto;
        max-width: 90%;
    }
 
    .pto-form-layout {
        flex-direction: column-reverse;
       height: 100vh;
    }
    .pto-form-layout-wrap {
        max-width: 100%;
        margin-top: 0;
        height: auto;
        padding-bottom: 20px;
    }
   
    form#memb_plus_signin_form, form#memb_plus_signup_form {
        max-width: 90%;
        margin: auto;

    }
    .pto-logo-layout-wrap {
        display: flex;
        justify-content: center;
        height: auto;
        padding: 30px;
        align-items: flex-start;
        position: static;
        background: #fff;
        top: 0;
        width: 100%;
        max-width: 100%;
    }
    .pto-form-wrap-title {
        flex-direction: column;
    }
    .content-membership .remove_single_select {
        /* position: absolute; */
        right: 15px;
        top: 59%;
    }
    form#memb_plus_signin_form h1 {
        margin-bottom: 10px;
    }
    /* .member-plus-memb-profile-view .custm-single {
      
        margin-bottom: 0;
        margin-top: 0;
    }
    */
    .memb_plus_.memb_plus .custom-field-box.repeater {
        align-items: flex-start;
        flex-direction: column;
    }
    .content-membership span.add_more_link_member {
        right:0;
    }
 
}
@media screen and (max-width: 640px) {
    .content .memb-filed-color-setting {
        width: 50%;
    }
}
@media screen and (max-width: 480px) {
    .content .memb-filed-color-setting {
        width: 50%;
    }
}