.profile-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 32px;
    padding: 32px;
    position: relative;
    background-color: #fdfdfd;
    border-radius: 12px;
    margin-top: 138px;
    

}

@media (min-width: 992px) { /* Large screens  */
    .responsive-container {
        max-width: 75%;
    }
    
    .profile-container {
        padding: 32px !important;/* Padding for desktop */
    }
}
@media (max-width: 991px) { /* for mobiles */
    .responsive-container {
        max-width: 100%;

    }
    .profile-container{
        padding: 10px 0px 0px 5px;
        font-size: 12px;

    }
}

.title {
    display: flex;
    padding-bottom: 16px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-bottom: 1px solid var(--Border, #e5e5e5);
}

.container_body {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}
.side_bar {
    display: flex;
    padding: 16px 1px 16px 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    border-right: 3px solid #ecedf0;
    background: #fff;
    width: 300px;
}
.tabs {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 8px;
    width: 100%;
}

.tab-li {
    width: 100%;
    text-align: left;
    padding: 10px;
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.14px;

    color: #333;

    background: #fff;
}

@media (max-width: 991px) { /* for mobiles */
    .tab-li {
    font-size: 11px;
    }
}


ul {
    list-style-type: none !important;
}
.active-tab {
    color: inherit !important; /* Reset color */
    font-weight: normal !important; /* Reset font weight */
}
.tab-li.active_tab {
    color: #289f35 !important; /* Active tab text color */
    border-right: 3px solid green;
    background-color: #fafffb;
}
.tab-li.active_tab a.tab-link {
    color: #289f35 !important; /* Active tab text color */
}
.prifile_tabs {
    display: flex;
    width: 173px;
    padding: 10px 15px;
    align-items: center;
    gap: 10px;
    background: #fafffb;
}
.title_1 {
    color: var(--Primary-500, #289f35);
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.14px;
}
.title_2 {
    color: var(--Title, #333);
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.14px;
}

.main_box {
    display: flex;
    padding: 32px 0px 0px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    flex: 1 0 0;
}
.profile_box {
    display: flex;
    align-items: center;
    align-self: stretch;
    gap: 10px;
    position: relative;
    margin-bottom: 40px;
}
.pro_img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background-color: #333;
}
.photo_change_btn {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #289f35;
    cursor: pointer;
}
.remove_btn {
    display: flex;
    align-items: center;
    gap: 12px;
}
.frame {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center; /* Center items horizontally */
}

@media (max-width: 768px) {
    .frame {
        flex-direction: column; /* Stack items vertically on small screens */
        gap: 12px; /* Adjust space between items on mobile */
    }
}

.input_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    position: relative;
    align-self: stretch;
}
.input_field {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}
.input_items {
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #c7c7c7;

    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 1;
    height: 40px;
    min-width: 48%;
}

@media (max-width: 768px) {
    .input_field {
        flex-direction: column; 
        flex-wrap: nowrap; 
        overflow-x: auto;
        padding-top: 8px;
    }

    .input_items {
        min-width: auto;
        flex-grow: 1;
    }
}

.input_items::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 10px;
    width: 77px;
    height: 2px;
    background: white;
}
.input_items.email::before {
    width: 93px;
}
.input_items.mobile-number::before {
    content: none;
}
.input_items.company-name::before {
    width: 107px;
}
.input_items.company-industry::before {
    width: 120px;
}
.input_items.company-email::before {
    width: 108px;
}
.input_items.medical-condition::before {
    width: 123px;
}
.input_items.shirt-size::before {
    width: 70px;
}
.input_items.handicap::before {
    width: 100px;
}
.input_item {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    position: absolute;
    left: 6px;
    top: -11px;
    padding: 0 4px;
}
.item {
    display: flex;
    align-items: center;

    height: 20px;
}
.item_field {
    width: 100%;

    border: none;
    outline: none;
    font-size: 14px;
    font-family: "DmSans-Medium", sans-serif;
    font-weight: 500;
    color: #111111;
}

.field_name {
    color: #54595f;
    font-family: "DM Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 0 6px;
    background: #fff;
}
.input_footer {
    display: flex;
    padding-top: 20px;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    align-self: stretch;
    border-top: 1px solid var(--Border, #e5e5e5);
    width: 100%;
}
.profile_footer {
    width: 100% !important;
}
.remove-btn {
    border: none;
    background: #fff;
    
}
.bottom-btn {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-top: none !important;
    padding-top: 0px !important;
}
.btn-box1 a {
    display: flex;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid var(--Primary-Hover, #35b443);
    text-decoration: none;
}
.btn-box2 button {
    display: flex;
    padding: 5px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: var(--Primary-500, #289f35);
    border: none !important;
    color: #ffffff;
}
.psswd_content_body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    flex: 1 0 0;
    width: 100%;
}
.psswd_content_box {
    display: flex;
    margin-top: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    align-self: stretch;
    width: 100%;
}
.currnt_field {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.discount-container {
    width: 758px;
    height: 682px;
    display: flex;
    padding-top: 12px;
    align-items: flex-start;
    align-content: flex-start;
    gap: 24px;
    flex: 1 0 0;
    flex-wrap: wrap;
}

.discount {
    display: flex;
    width: 367px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0px 4px 8px 0px rgba(69, 74, 79, 0.08);
}

.discount-main {
    display: flex;
    padding: 24px 24px 0px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.discount-top-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.discount-logo {
    width: 168.5px;
    height: 34px;
    aspect-ratio: 168.5/34;
}
.discount-title {
    color: #111111;
}
.discount-content {
    color: var(--Body, #54595f) !important;
    font-family: "DM Sans" !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: normal !important;
}
.discount-content ul {
    list-style-type: disc !important;
    padding-left: 0px !important;
    margin-bottom: 0px !important;
}
.discount-bottom-box {
    display: flex;
    height: 40px;
    padding: 10px 16px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    background: #f9f9fb;
    margin: 24px;
}
.discount-bottom-div {
    display: flex;
    width: 367px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.code-title {
    color: var(--Title, #333);
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 16.8px */
    text-transform: uppercase;
}

.code-copy {
    width: 24px;
    height: 24px;
}
.dash-line {
    height: 0px;
    align-self: stretch;
    stroke-width: 2px;
    stroke: var(--Border, #e5e5e5);
}

.form-switch .form-check-input {
    width: 2.5em;
    height: 1.5em;
    background-color: #ccc;
    border: none;
    transition: background-color 0.3s;
}

.form-switch .form-check-input:checked {
    background-color: var(--primary-color);
}

.form-switch .form-check-label {
    margin-left: 10px;
    margin-top: 3px;
}
.form-switch .form-check-input:focus {
    border-color: #289f35;
}
.form-switch .form-check-input:focus,
.form-switch .form-check-input:checked {
    box-shadow: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
    /* background-color: yellow !important; */
}
@media (max-width: 768px) {
    .form-label {
        font-size: 14px;
    }
    .form-control,
    .form-select {
        font-size: 14px;
        padding: 8px;
    }
    .btn {
        font-size: 14px;
    }
}
