:root {
    --mainFontFamily: "Poppins", sans-serif;
    --lighBackground: #F5F5F5;
    --headingTextColor: #222222;
    --paragraphColor: #545454;
    --greenColor: #00B998;
    --whiteColor: #fff;
}
html, body {
    height: 100%;
}
body {
    background-color: var(--lighBackground);
    font-family: var(--mainFontFamily);
}
.colorGreen {
    color: var(--greenColor);
}
.mw-100px {
    max-width: 100px;
}
a {
    outline: none;
}
.main_wrapper {
    height: 100%;
    padding: 20px;
}

/*Login Page CSS*/
.content_wrapper {
    max-width: 500px;
    width: 100%;
}
.main_logo {
    text-align: center;
    margin: 0 auto 25px;
    display: table;
}
.inner_form_conts {
    border-radius: 10px;
    background: var(--whiteColor);
    box-shadow: 2px 2px 20px 0px rgba(8, 21, 66, 0.03);
    padding: 32px 36px 36px;
}
.form_heading {
    text-align: center;
    margin-bottom: 22px;
}
.form_heading h3 {
    color: var(--headingTextColor);
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 12px;
}
.form_heading p {
    color: var(--paragraphColor);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}
.form-group .form-control {
    border-radius: 6px;
    border: 1px solid rgba(0, 185, 152, 0.25);
    background: rgba(0, 185, 152, 0.04);
    min-height: 52px;
    padding: 10px 20px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    box-shadow: none;
    outline: none;
}
.form-group .form-control:focus {
    border-color: rgb(0 185 152 / 50%);
}
.form-group select.form-control {
    background-image: url(../images/select_chevron_icon.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 16px) 50%;
}
.form-group label {
    color: var(--headingTextColor);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
}
.form-group {
    margin-bottom: 15px;
}
.pass_fields {
    position: relative;
}
.toggle-password {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.5;
    cursor: pointer;
}
input[type=checkbox] {
    position: relative;
    border: 1px solid rgba(0, 185, 152, 0.40);
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0px 5px 0px 0px;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
}
input[type=checkbox] ~ label {
    font-size: 14px;
    font-weight: 500;
    color: var(--paragraphColor);
    position: relative;
    top: 0px;
    cursor: pointer;
    user-select: none;
    margin: 0px;
    flex: 1;
}
input#remember-me ~ label {
    top: -2px;
}
input[type=checkbox]:checked {
    background-color: var(--greenColor);
    border-color: var(--greenColor);
}
input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 6px;
    height: 10px;
    border: solid var(--whiteColor);
    border-width: 0 2px 2px 0;
    margin: -1px -2px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}
input[type=checkbox] ~ label a {
    color: var(--greenColor) !important;
    text-decoration: none;
    position: relative;
}
input[type=checkbox] ~ label a::after {
    content: "";
    width: 0px;
    height: 1px;
    background: var(--greenColor);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s ease-in-out 0s;
}
input[type=checkbox] ~ label a:hover::after {
    width: 100%;
}
.btn-primary {
    color: var(--whiteColor);
    padding: 13px 32px;
    box-shadow: none;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 1;
    border: 1px solid var(--greenColor);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.5s ease-in-out 0s;
    background: unset;
}
.btn-primary i {
    margin-left: 5px;
}
/* 4. hover-filled-slide-right */
.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: var(--greenColor);
    transition: all 0.5s ease-in-out 0s;
    border-radius: 4px;
    z-index: -1;
}
.btn-primary:hover {
    color: var(--greenColor);
}
.btn-primary:hover::before {
    width: 0%;
}
.btn-outline {
    background: transparent;
    border: 1px solid rgba(84, 84, 84, 0.30);
    border-radius: 6px;
    padding: 13px 32px;
    box-shadow: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.5s ease-in-out 0s;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #545454;
    margin-right: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.btn-outline:hover {
    color: #fff;
    border-color: #545454;
}
.btn-outline i {
    margin-left: 5px;
}
.btn-outline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #545454;
    transition: all 0.5s ease-in-out 0s;
    border-radius: 4px;
    z-index: -1;
}
.btn-outline:hover::before {
    width: 100%;
}
.mtb-10 {
    margin-top: 6px;
    margin-bottom: 2px;
}
.forgot_password_link {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: all 0.5s ease-in-out 0s;
    color: var(--greenColor);
}
.forgot_password_link::before {
    content: "";
    height: 1px;
    background: var(--paragraphColor);
    position: absolute;
    bottom: -2px;
    left: 0;
    display: inline-block;
    transition: all 0.5s ease-in-out 0s;
    width: 0%;
}
.forgot_password_link:hover::before {
    width: 100%;
    background: var(--greenColor);
}
.register_eccount {
    font-size: 14px;
    color: var(--paragraphColor);
    font-weight: 400;
    text-align: center;
    margin-top: 0px;
}
.register_link {
    color: var(--greenColor);
    text-decoration: none;
    position: relative;
    transition: all 0.5s ease-in-out 0s;
    font-weight: 500;
}
.register_link::before {
    content: "";
    width: 0;
    height: 1px;
    background: var(--greenColor);
    position: absolute;
    bottom: -2px;
    left: 0;
    display: inline-block;
    transition: all 0.5s ease-in-out 0s;
}
.register_link:hover::before {
    width: 100%;
}
.register_link:hover {
    color: var(--greenColor);
}
.or_datas {
    margin: 20px 0px 10px;
    text-align: center;
    position: relative;
    color: var(--paragraphColor);
    font-size: 14px;
}
.or_datas span {
    background-color: #fff;
}
.or_datas::before {
    content: "";
    background: #E8E8E8;
    height: 1px;
    width: 44%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.or_datas::after {
    content: "";
    background: #E8E8E8;
    height: 1px;
    width: 44%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
/*Page Header CSS*/
.page_wrapper {
    position: relative;
    overflow: hidden;
}
.page_wrapper.compact_wrapper .page_header {
    margin-left: 300px;
    width: calc(100% - 300px);
}
.page_wrapper .page_header {
    max-width: 100vw;
    position: fixed;
    top: 0;
    z-index: 8;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.main_sidebar {
    position: fixed;
    top: 0;
    z-index: 9;
    height: 100%;
    line-height: inherit;
    background: var(--greenColor);
    width: 300px;
    padding: 30px;
    text-align: left;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0 0 21px 0 rgba(89, 102, 122, 0.1);
    box-shadow: 0 0 21px 0 rgba(89, 102, 122, 0.1);
}
.inner_header_contents {
    display: flex;
    gap: 20px;
}
.inner_header_contents h1 {
    color: var(--headingTextColor);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.inner_header_contents h1 img {
    width: 34px;
    position: relative;
    top: -1px;
}
.right_header_datas ul.header_btns {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    align-items: center;
}
.right_header_datas {
    margin-left: auto;
}
.main_header {
    margin: 0px 30px 20px;
    border-bottom: 1px solid #ddd;
    padding: 20px 0px;
    background: #f5f5f5;
}
.header_btns li.nav-item.dropdown a.nav-link {
    border-radius: 6px;
    border: 1px solid #A5A5A5;
    color: #545454;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    padding: 13px 24px;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: none;
    outline: none;
}
.header_btns li.nav-item.dropdown a.nav-link::after {
    display: none;
}
.header_btns li.nav-item.dropdown a.nav-link i {
    font-size: 12px;
}
.header_btns li.nav-item.dropdown a.nav-link img {
    width: 17px;
}
ul.dropdown-menu {
    border-radius: 10px;
    border: 1px solid #E9E9E9;
    background: var(--whiteColor);
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.03);
    padding: 0px 20px;
    left: auto !important;
    right: 0;
    margin: 0 !important;
    transform: translateY(-40px) !important;
    opacity: 0;
    visibility: hidden;
    display: unset;
    inset: unset !important;
    transition: all 0.3s ease-in-out 0s;
    width: 100%;
    min-width: 225px;
}
ul.dropdown-menu.show {
    transform: translateY(0px) !important;
    opacity: 1;
    visibility: visible;
    display: unset;
}
ul.dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #eee;
}
ul.dropdown-menu a.dropdown-item img {
    margin-right: 10px;
    transition: all 0.5s ease-in-out 0s;
}
ul.dropdown-menu a.dropdown-item:hover {
    color: var(--greenColor);
}
ul.dropdown-menu a.dropdown-item:hover img {
    filter: invert(53%) sepia(98%) saturate(1055%) hue-rotate(126deg) brightness(87%) contrast(101%);
}
ul.dropdown-menu a.dropdown-item {
    padding: 14px 0px;
    color: var(--paragraphColor);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.5s ease-in-out 0s;
    background: unset;
    display: flex;
    align-items: center;
}
/* .header_btns li.nav-item.dropdown a.nav-link.show {
    background-color: #fff;
    border-color: #fff;
} */
.header_btns li.nav-item.dropdown a.nav-link i {
    transition: all 0.5s ease-in-out 0s;
}
.header_btns li.nav-item.dropdown a.nav-link.show i {
    transform: rotate(-180deg);
}
.sidebar_logo small {
    color: var(--whiteColor);
    font-size: 13px;
    font-weight: 500;
    position: relative;
    top: 3px;
}
.sidebar_logo {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}
.sidebar_logo {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.side_menus ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.side_menus ul li a {
    color: #FFF;
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s ease-in-out 0s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.side_menus ul li:not(:last-child) {
    margin-bottom: 25px;
}
.side_menus ul li a i {
    font-size: 12px;
}
.page_body {
    min-height: calc(100vh - 90px);
    margin-top: 90px;
    margin-left: 300px;
    padding: 30px 30px 0px;
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: flex;
}
.inner_body_page {
    width: 100%;
}
.main_content_datas {
    background: var(--whiteColor);
    border-radius: 6px;
    padding: 30px;
}
.main_content_datas {
    display: flex;
    height: calc(100% - 0px);
}
.timeline_data ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.page_body {
    margin-bottom: 30px;
}
.timeline_data ul::after {
    content: "";
    background: rgb(163 163 163 / 30%);
    width: 2px;
    height: calc(100% - 20px);
    position: absolute;
    top: 10px;
    border-radius: 10px;
    left: 1px;
}
.timeline_data ul li {
    color: #ababab;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-left: 28px;
    position: relative;
}
.timeline_data ul li:not(:last-child) {
    margin-bottom: 35px;
}
.timeline_data ul li::before {
    content: "";
    background: #9b9b9b;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    position: absolute;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.timeline_data ul li.current::before {
    box-shadow: 0px 0px 0px 8px #9b9b9b;
    background: #fff;
}
.timeline_data ul li.completed::before {
    width: 26px;
    height: 26px;
    background-image: url(../images/check_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    left: -11px;
    background-color: #00B998;
}
.timeline_data ul li.current span, .timeline_data ul li.completed span {
    color: #545454;
}
.timeline_data {
    border-right: 1px solid rgba(0, 185, 152, 0.16);
    width: 250px;
    padding-right: 30px;
}
.body_contents {
    flex: 1;
    padding-left: 30px;
}
.body_headings h2 {
    color: #222;
    font-size: 20px;
    font-weight: 600;
    margin: 0px 0px 10px;
}
.body_headings p {
    color: #545454;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}
.body_headings {
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 20px;
    margin-bottom: 25px;
}
body.height_auto {
    height: auto;
}
.copyright_footer p {
    color: #222;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}
.copyright_footer {
    padding: 22px 0px;
}
.choose_cms_datas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    max-width: 680px;
}
.inner_cms_choose_items {
    border-radius: 6px;
    border: 2px solid rgba(0, 185, 152, 0.25);
    background: rgba(0, 185, 152, 0.05);
    padding: 40px 20px;
}
.inner_cms_choose_items.active {
    background: var(--greenColor);
    border-color: var(--greenColor);
}
.inner_cms_choose_items.active label {
    color: var(--whiteColor);
}
/*Radio Button CSS*/
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label, [type="radio"]:not(:checked) + label {
    position: relative;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    color: var(--paragraphColor);
    padding-top: 66px;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
[type="radio"]:checked + label:before, [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 2px solid rgba(0, 185, 152, 0.25);
    transform: translateX(-50%);
    background: unset;
}
[type="radio"]:checked + label:before {
    background: var(--whiteColor) url('../images/green_check_icon.svg') no-repeat;
    background-position: center;
    border-color: #fff;
}
.inner_cms_choose_items.active label.cms_label {
    color: #fff;
}
/*Choose Supplier CSS*/
.choose_supplier_wrapper {
    max-width: 800px;
}
.choose_supplier_data {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    row-gap: 15px;
}
.inner_supplier {
    width: 25%;
    padding-left: 15px;
    position: relative;
}
.inn_content_supplier {
    border-radius: 6px;
    border: 2px solid rgba(0, 185, 152, 0.25);
    background: rgba(0, 185, 152, 0.05);
    text-align: center;
    padding: 25px 15px;
}
.inner_supplier input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.inn_content_supplier h4 {
    color: #545454;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 10px 0px 0px;
}
.inner_supplier input[type="radio"]:checked ~ .inn_content_supplier {
    border: 2px solid #00B998;
    /*background: rgba(0, 185, 152, 0.10);*/    
}
.inner_supplier input[type="radio"]:checked ~ .inn_content_supplier::after {
    content: "";
    background: url('../images/green_supplier_check.svg') no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
}
.margin_0 {
    margin: 0px;
}
/*Plan page css*/
.main_plan_lists {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}
.plan_details {
    border-radius: 6px;
    border: 2px solid rgba(0, 185, 152, 0.25);
    background: rgba(0, 185, 152, 0.05);
    padding: 25px;
}
.plan_informations {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 25px;
}
.plan-conts p {
    color: var(--headingTextColor);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 7px;
}
.plan_details .plan-conts h3 {
    color: var(--headingTextColor);
    font-size: 32px;
    font-weight: 600;
    margin: 0px;
}
.plan_details .plan-conts h3 small {
    font-size: 70%;
}
.subscribe_btns {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
span.save_text {
    color: #FFF;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    background: #00B998;
    padding: 4px 12px;
    margin-left: 5px;
}
.use_feed_data p {
    color: #545454;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
}
.enable_stock_checkbox {
    border-radius: 6px;
    border: 1px dashed rgba(0, 185, 152, 0.25);
    background: rgba(0, 185, 152, 0.10);
    padding: 21px 24px 18px;
    margin-top: 25px;
}
.enable_stock_checkbox .form-group {
    margin: 0;
    display: flex;
    gap: 4px;
}
.mt-4 {
    margin-top: 20px !important;
}
/*File Upload CSS*/
.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 52px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(0, 185, 152, 0.25);
    background: rgba(0, 185, 152, 0.04);
}
.file-upload-wrapper:after {
    content: attr(data-text);
    font-size: 13px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 12px 10px 12px 142px;
    display: block;
    width: 100%;
    pointer-events: none;
    z-index: 20;
    height: 100%;
    color: #646464;
    font-weight: 400;
    line-height: 26px;
}
.file-upload-wrapper:before {
    content: "Choose File";
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    height: 100%;
    background: #AFAFAF;
    z-index: 25;
    padding: 0 25px;
    pointer-events: none;
    border-radius: 0;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    align-items: center;
}
.file-upload-wrapper input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 100%;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
}
.right_body_contents h3 {
    color: #222;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}
span.example_line {
    color: #646464;
    font-size: 13px;
    font-style: italic;
    font-weight: 400;
    margin-top: 7px;
    display: inline-block;
}
.example_line a {
    text-decoration: none;
    color: #646464;
    position: relative;
    transition: all 0.5s ease-in-out 0s;
    outline: none;
}
.example_line a::after {
    content: "";
    width: 0px;
    height: 1px;
    background: var(--greenColor);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s ease-in-out 0s;
}
.example_line a:hover::after {
    width: 100%;
}
.example_line a:hover {
    color: var(--greenColor);
}
.mapping_col_tabs {
    list-style-type: none;
    padding: 0;
    margin: 0px 0px 25px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}
.mapping_col_tabs.wp_product_mapping {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.mapping_col_tabs li {
    border-radius: 5px 5px 0px 0px;
    background: rgba(0, 185, 152, 0.10);
    padding: 14px 10px;
    border-bottom: 2px solid rgba(84, 84, 84, 0.20);
    color: #545454;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.mapping_col_tabs li img {
    margin-right: 5px;
    display: flex;
}
.mapping_col_tabs li.active {
    background: var(--greenColor);
    color: var(--whiteColor);
    border-bottom-color: var(--greenColor);
}
.mapping_col_tabs li.active img {
    filter: invert(1) brightness(2);
}
.mapping_col_tabs li.active::after {
    content: "";
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--greenColor);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.right_body_contents p {
    color: #545454;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
}
.prdct_table_details {
    margin-bottom: 0px;
}
.prdct_table_details table {
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(0, 185, 152, 0.25);
}
.prdct_table_details table th {
    border-bottom: 1px solid rgba(0, 185, 152, 0.25);
    background: rgba(0, 185, 152, 0.10);
    padding: 14px 7px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: #545454;
}
.prdct_table_details table tr th:first-child {
    padding-left: 24px;
}
.prdct_table_details table tr th:last-child {
    padding-right: 24px;
}
.prdct_table_details table td {
    padding: 7px;
    color: #222;
    font-size: 14px;
    font-weight: 400;
    vertical-align: baseline;;
}
.prdct_table_details table tbody tr td:first-child {
    padding-left: 24px;
}
.prdct_table_details table tbody tr td:last-child {
    padding-right: 24px;
}
.prdct_table_details table tbody tr:first-child td {padding-top: 24px;}
.prdct_table_details table tbody tr:last-child td {
    padding-bottom: 24px;
}
.prdct_table_details table td .form-group {
    margin: 0;
}
.csv_collection_datas {
    display: flex;
    gap: 10px;
}
.add_more_rows {
    border-radius: 4px;
    border: 1px solid var(--greenColor);
    background: var(--greenColor);
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out 0s;
}
.csv_collection_datas .form-group {
    flex: 1;
}
.prdct_table_details.rule_add_price_table th {
    width: 10%;
}
.continue_supplier {
    display: flex;
    gap: 5px;
}
.right_body_contents .form-group {
    margin-bottom: 0;
}
.markup_are_items:not(:last-child) {
    margin-bottom: 25px;
}
.plan_review_information {
    border-radius: 6px;
    background: rgba(0, 185, 152, 0.05);
    padding: 25px;
    margin-top: 10px;
}
.plan_review_items:first-child {
    padding-top: 0;
}
.plan_review_items {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 185, 152, 0.15);
    padding: 16px 0px;
    color: #545454;
    font-size: 14px;
    font-weight: 400;
}
.plan_review_items h4 {
    color: #222;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    width: 30%;
}
.review_plan_conts {
    flex: 1;
}
.review_plan_conts p {
    margin: 0;
    line-height: unset;
}
.plan_review_items p img {
    margin-right: 7px;
}
.inner_review_cont_lists {
    display: flex;
    gap: 50px;
}
.cont_list_infos h5 {
    color: #222;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    margin-bottom: 10px;
}
.cont_list_infos {
    width: 15%;
}
.plan_review_items:last-child {
    border: none;
    padding-bottom: 0;
}
.inner_feed_data.rule_spacing_check:not(:last-child) {
    margin-bottom: 25px;
}
.feed_created_confirmation {
    text-align: center;
    margin-top: 20px;
}
.modal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 10px;
    color: #1C1C1C;
    opacity: 1;
    font-size: 14px;
    box-shadow: none;
    outline: none;
}
.feed_created_confirmation h4 {
    color: #222;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    margin: 20px 0px 0px;
}
a.click_here {
    color: #00B998;
}
.body_contents.padding_0 {
    padding-left: 0;
}
.profile_items:not(:last-child) {
    margin-bottom: 25px;
}
.project_head_datas {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.project_head_datas h4 {
    margin: 0;
    color: #545454;
    font-size: 16px;
    font-weight: 600;
}
.edit_profile {
    border-radius: 4px;
    border: 1px solid rgba(84, 84, 84, 0.30);
    color: #545454;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 9px 12px;
    transition: all 0.5s ease-in-out 0s;
}
.btn-outline img {
    margin-right: 5px;
}
.profile_head_btns {
    display: flex;
    gap: 8px;
}
.btn-outline img {
    transition: all 0.5s ease-in-out 0s;
}
.btn-outline:hover img {
    filter: invert(1) brightness(2);
}
.btn-danger {
    border-radius: 6px;
    border: 1px solid #EE1B24;
    background: #EE1B24;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 9px 12px;
    transition: all 0.5s ease-in-out 0s;
    text-decoration: none;
}
.btn-danger:hover {
    background: #d12738;
}
.btn-danger img {
    margin-right: 5px;
}

.account_disabled {
    color: #EE1B24;
}

.account_enabled {
    color: #146c43;
}
.prifle_inner_data {
    border-radius: 6px;
    background: rgba(0, 185, 152, 0.05);
    padding: 25px;
    margin-top: 15px;
}
.prfl_list_datas {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 185, 152, 0.15);
    padding: 14px 0px;
    color: #545454;
    font-size: 14px;
    font-weight: 400;
}
.prfl_table_headings {width: 25%;}
.prfl_table_conts {
    width: 75%;
}
.prfl_list_datas:last-child {
    border: none;
    padding-bottom: 0;
}
.prfl_list_datas:first-child {
    padding-top: 0;
}
.prfl_list_datas h5 {
    color: #545454;
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}
.prfl_mapping_btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.prfl_mapping_btns .btn-primary {
    font-size: 13px;
    padding: 8px 26px;
}
.profile_head_btns .btn-outline {
    padding: 9px 12px;
    font-size: 13px;
    margin: 0;
}
.feed_logs_heading {    
    margin-bottom: 22px;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 20px;
}
.feed_logs_heading a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.back_icon {
    border-radius: 4px;
    background: var(--greenColor);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.feed_logs_heading h3 {
    margin: 0;
}
.inner_log_datas h4 {
    color: #545454;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.log_table {
    border-radius: 6px;
    background: rgba(0, 185, 152, 0.05);
    padding: 0px 30px;
    margin-top: 20px;
}
.log_table table {
    width: 100%;
}
.log_table table th {
    color: #222;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    padding: 20px 10px;
}
.log_table table td {
    color: #545454;
    font-size: 14px;
    font-weight: 400;
    padding: 16px 10px;
    border-top: 1px solid rgba(0, 185, 152, 0.15);
}
.cancel_subscription_data {
    text-align: center;
    padding: 40px 20px;
}
.cancel_subscription_data h3 {
    color: #222;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin: 22px 0px 24px;
}
.subscription_btns {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.cancel_subscription_data h4 {
    color: #222;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    margin: 20px 0px 0px;
}
.feed_listing_datas {
    border-radius: 6px;
    background: rgba(0, 185, 152, 0.05);
    padding: 25px;
}
.feed_outer_desc {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 185, 152, 0.20);
    padding-bottom: 20px;
}
.feed_execution_time {
    border-radius: 4px;
    border: 1px solid #00B998;
    background: #00B998;
    padding: 4px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.feed_execution_time p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}
.feed_left_conts h3 {
    margin: 0;
}
.feed_left_conts p {
    color: #545454;
    font-size: 13px;
    font-style: italic;
    font-weight: 400;
    margin: 7px 0px 0px;
    line-height: unset;
}
.feed_tab_contents ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.feed_tab_contents ul li:not(:last-child) {
    margin-bottom: 4px;
}
.feed_tab_contents {
    margin-top: 20px;
}
.feed_tab_contents ul li {
    color: #545454;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px; /* 200% */
    position: relative;
    padding-left: 22px;
    text-transform: capitalize;
}
.feed_tab_contents ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--whiteColor);
    position: absolute;
    top: 50%;
    left: 0px;
    box-shadow: 0px 0px 0px 4px #00B998;
    border-radius: 100px;
    padding: 3px;
    transform: translateY(-50%);
}
.feed_listing_datas .nav.nav-tabs {
    border: none;
    display: flex;
    gap: 5px;
}
.feed_listing_datas .nav.nav-tabs li.nav-item .nav-link {
    border-radius: 5px 5px 0px 0px;
    background: rgba(0, 185, 152, 0.10);
    padding: 12px 34px;
    border: none;
    border-bottom: 2px solid rgba(84, 84, 84, 0.20);
    color: #545454;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.feed_listing_datas .nav.nav-tabs li.nav-item {
    border: none;
    background: unset;
}
.feed_listing_datas .nav.nav-tabs li.nav-item .nav-link.active {
    background: var(--greenColor);
    color: var(--whiteColor);
    border-bottom-color: var(--greenColor);
}
.feed_listing_datas .nav.nav-tabs li.nav-item .nav-link.active::after {
    content: "";
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--greenColor);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.feed_listing_datas .nav.nav-tabs li.nav-item .nav-link img {
    margin-right: 7px;
}
.feed_listing_datas .nav.nav-tabs li.nav-item .nav-link.active img {
    filter: invert(1) brightness(2);
}
.feed_listing_datas:not(:last-child) {
    margin-bottom: 25px;
}
.help_accordion_data .accordion-item button.accordion-button {
    border-radius: 6px !important;
    background: rgba(0, 185, 152, 0.10);
    border: none;
    color: #545454;
    font-size: 15px;
    font-weight: 500;
    padding: 19px 25px;
    box-shadow: none;
    outline: none;
}
.help_accordion_data .accordion-item {
    border: none;
    background: unset;
}
.help_accordion_data .accordion-item .accordion-body {
    font-size: 14px;
    line-height: 26px;
    color: #545454;
}
.help_accordion_data .accordion-item button.accordion-button::after {
    width: 16px;
    height: 2px;
    background: #545454;
    border-radius: 10px;
    position: absolute;
    right: 25px;
    transition: all 0.5s ease-in-out 0s;
}
.help_accordion_data .accordion-item button.accordion-button::before {
    height: 16px;
    width: 2px;
    background: #545454;
    border-radius: 10px;
    content: "";
    position: absolute;
    right: 32px;
    transition: all 0.5s ease-in-out 0s;
}
.help_accordion_data .accordion-item button.accordion-button:not(.collapsed)::before {    
    transform: var(--bs-accordion-btn-icon-transform);
    opacity: 0;
}
.help_accordion_data .accordion-item:not(:last-child) {
    margin-bottom: 15px;
}
.main_profile_upper_data {
    display: flex;
    gap: 20px;
}
.main_profile_upper_data .prifle_inner_data {flex: 1;}
.right_supplier_data {
    width: 350px;
    margin-top: 15px;
    border-radius: 6px;
    background: rgba(0, 185, 152, 0.05);
    padding: 25px;
}
.supplier_list_datas {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid rgba(0, 185, 152, 0.15);
    padding: 14px 0px;
    color: #545454;
    font-size: 14px;
    font-weight: 400;
}
.supplier_table_headings {
    width: 50%;
}
.supplier_table_conts {
    width: 50%;
    word-wrap: break-word;
}
.prdct_table_details .form-group input[type="radio"] {
    left: unset;
}

.brand_category_popup {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.brand_category_popup li {
    list-style: none;
    background: #f1f1f1;
    padding: 4px 10px;
    border-radius: 4px;
}

a.popup_view_more {
    color: #00bb99;
    text-decoration: none;
}
a.popup_view_more:hover {
    color: #000;
}
.notifications {
    position: fixed;
    top: 110px;
    right: 30px;
    z-index: 999;
}
.loadingMain {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 9;
}
/*#loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.75) url(../images/loading.gif) no-repeat center center;
  z-index: 10000;
}*/

.dashboard-nav a.dashboard-nav-item > i {
    background: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    min-width: unset;
    color: var(--greenColor);
    font-size: 14px;
    transition: all ease-in-out 0.3s;
}
.dashboard-nav a.dashboard-nav-item:hover > i, .dashboard-nav a.dashboard-nav-item.active > i {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
}
.dashboard-nav-dropdown .dashboard-nav-dropdown-menu a.dashboard-nav-dropdown-item.active::marker {
    color: rgba(0, 0, 0, 0.6);
}
.dashboard-nav nav.dashboard-nav-list .dashboard-nav-dropdown .dashboard-nav-dropdown-menu {
    padding-left: 14px;
}
.dashboard-nav nav.dashboard-nav-list .dashboard-nav-dropdown .dashboard-nav-dropdown-menu a.dashboard-nav-dropdown-item {
    font-size: 13px;
    text-transform: uppercase;
}






















































.comman_select_main .select2-container {
    width: 100% !important;
}
.comman_select_main .select2-container--default .select2-selection--single, .comman_select_main .select2-container--default .select2-selection--multiple{
    border-radius: 6px;
    border: 1px solid rgba(0, 185, 152, 0.25);
    background: rgba(0, 185, 152, 0.04);
    min-height: 52px;
    padding: 10px 20px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    box-shadow: none;
    outline: none;
    background-image: url(../images/select_chevron_icon.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 16px) 50%;
}
.comman_select_main .select2-container--default .select2-selection--single .select2-selection__arrow,
 .comman_select_main .select2-container--default .select2-selection--multiple .select2-selection__arrow {
    display: none;
}

.comman_select_main .select2-container--default .select2-selection--single .select2-selection__rendered,
 .comman_select_main .select2-container--default .select2-selection--multiple .select2-selection__rendered{
    color: var(--bs-body-color);
}

/**/

.dashboard-nav a {
    gap: 10px;
    color: #FFF;
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s ease-in-out 0s;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}


.dashboard-nav-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.dashboard-nav-dropdown {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.dashboard-nav-dropdown.show > .dashboard-nav-dropdown-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.dashboard-nav-dropdown-toggle:after {
    content: "";
    margin-left: auto;
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff !important;
    transform: rotate(135deg);
}

.dashboard-nav-dropdown-menu {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.dashboard-nav-dropdown.show .dashboard-nav-dropdown-toggle:after {
    transform: rotate(-45deg);
}
.dashboard-nav-dropdown-menu a.dashboard-nav-dropdown-item {
    display: list-item;
    list-style-position: inside;
    text-transform: none;
}
.menu-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #443ea2;
}

.menu-toggle:hover, .menu-toggle:active, .menu-toggle:focus {
    text-decoration: none;
    color: #875de5;
}

.menu-toggle i {
    font-size: 20px;
}

.dashboard-toolbar {
    min-height: 84px;
    background-color: #dfdfdf;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 27px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
}

.nav-item-divider {
    height: 1px;
    margin: 0;
    overflow: hidden;
    background-color: rgba(236, 238, 239, 0.3);
}
.preIntURL {
    font-size: 13px;
    color: #54595f;
}
.preIntURL:hover {
    color: #000;
    text-decoration: none;
}

.dashboard-nav-list > *:last-child {
    margin-top: 20px;
    margin-bottom: 0;
}

.timeline_data ul li.has_inner_substeps::before {
    top: 10px;
}
.timeline_data ul li.has_inner_substeps>ul {
    margin-top: 20px;
    margin-left: 10px;
}

.informational_content {
    background: #FCE5CD;
}

@media (min-width: 992px) {
    .dashboard-app {
        margin-left: 238px;
    }

    .dashboard-compact .dashboard-app {
        margin-left: 0;
    }
}


@media (max-width: 768px) {
    .dashboard-content {
        padding: 15px 0px;
    }
}

@media (max-width: 992px) {
    .dashboard-nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 1070;
    }

    .dashboard-nav.mobile-show {
        display: block;
    }
}

@media (max-width: 992px) {
    .dashboard-nav header .menu-toggle {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (min-width: 992px) {
    .dashboard-toolbar {
        left: 238px;
    }

    .dashboard-compact .dashboard-toolbar {
        left: 0;
    }
}

/*.herb-dis.comman_select_main .select2-container {
    width: 85% !important;
}*/
td.form-group.comman_select_main.herb-dis {
    max-width: 600px !important;
    /* border: 2px solid red; */
}

table.table.no_profile_found {
    text-align: center;
}
small.form-text.text-muted.upload-note {
    color: rgb(0 153 0) !important;
    font-style: italic;
}
.body_headings.feed_logs_heading h2 {
    display: flex;
    justify-content: space-between;
}

/*.body_headings.feed_logs_heading h2 .supplier_cancel_subscription {
    color: red;
    font-weight: 500;
}*/
.form-group .syncing, .form-group .mapping_columns {
    position: relative;
    left: 0;
    margin-right: 8px;
    margin-left: 10px;
}

a.btn-danger.supplier_cancel_subscription {
    display: none;
}

.profile_limit_reach {
    text-align: center;
    padding-block: 100px;
}
.profile_limit_reach p {
    font-size: 20px;
    background: #f4f4f4;
    display: inline-block;
    padding: 30px 60px;
    border-radius: 10px;
}

/* Pagination Css Start */
.pagination {
    display: flex;
    justify-content: end;
    list-style-type: none;
    padding: 0;
}
.pagination li {
    margin: 0 5px;
}
.pagination a {
    text-decoration: none;
    padding: 8px 12px;
    color: #007bff;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.pagination a:hover {
    background-color: #f4f4f4;
}
.pagination .active a {
    background-color: #007bff;
    color: white;
}
.pagination .disabled a {
    color: #ccc;
    pointer-events: none;
}
/* Pagination Css End */