* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* color */
    --body-color: #f4f6fa;
    --primary-orange: #008f3a;
    --primary-white: #ffffff;
    --primary-black: #000000;
    --heading-text-color: #525252;
    --input-label: #5a5a5a;
    --input-placeholder: #999999;
    --input-border-color: #d9d9d9;
    --input-eye-color: #b8b8b8;
    --search-box-color: #f9fef9;
    --page-box-border-color: #e9e9ea;

    /* fonts */
    --body-fonts: "Open Sans", sans-serif;

    /* font size */
    --h1: 32px;
    --h2: 26px;
    --h3: 24px;
    --h4: 21px;
    --h5: 18px;
    --h6: 16px;
    --p: 16px;
}

@media (min-width: 568px) {
    :root {
        /* font size */
        --h1: 36px;
        --h2: 28px;
        --h3: 24px;
        --h4: 22px;
        --h5: 18px;
        --h6: 16px;
        --p: 16px;
    }
}

@media (min-width: 768px) {
    :root {
        /* font size */
        --h1: 40px;
        --h2: 32px;
        --h3: 28px;
        --h4: 24px;
        --h5: 20px;
        --h6: 16px;
        --p: 18px;
    }
}

@media (min-width: 993px) {
    :root {
        /* font size */
        --h1: 36px;
        --h2: 28px;
        --h3: 24px;
        --h4: 22px;
        --h5: 18px;
        --h6: 16px;
        --p: 16px;
    }
}

@media (min-width: 1400px) {
    :root {
        /* font size */
        --h1: 40px;
        --h2: 32px;
        --h3: 28px;
        --h4: 24px;
        --h5: 20px;
        --h6: 16px;
        --p: 18px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    font-family: var(--body-fonts);
}

li,
ul {
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: var(--body-fonts);
}

a,
a:hover,
a:focus {
    text-decoration: none;
    font-family: var(--body-fonts);
}

body {
    font-family: var(--body-fonts);
    font-size: var(--p);
    background-color: var(--body-color);
}

p {
    color: var(--heading-text-color);
    font-size: var(--p);
    font-family: var(--body-fonts);
}

input,
select,
button {
    font-family: var(--body-fonts);
}

/* start */
/* header start */
.header {
    width: 100%;
    background-color: var(--primary-white);
    position: relative;
}

@media (max-width: 992px) {
    .header {
        padding-inline: 15px;
    }
}

.btn-show {
    display: none;
}

.logo-btn {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}

.logo {
    display: block;
    color: #edac8d;
    font-size: var(--h3);
    font-weight: bolder;
}

.header-venzare-button {
    width: 191px;
    height: 48px;
    background-color: var(--primary-orange);
    color: var(--primary-white);
    text-align: center;
    font-family: var(--body-fonts);
    border: none;
    border-radius: 10px;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.25);
    font-weight: 700;
}

.profile-language {
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 15px;
}

/* .header-dropdown {
    padding-top: 32px; */
/* } */

.header-dropdown {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 5px;
}

.header-img {
    overflow: hidden;
    border: none;
    margin-right: 10px;
}

.header-img > img {
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
}

.dropdown {
    /* width: 80px;
    height: 64px; */
    position: relative;
}

/* .dropdown::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 27px;
    z-index: 9999;
    width: 8px;
    height: 8px;
    border: 2px solid grey;
    border-top: transparent;
    border-right: transparent;
    transform: rotate(-45deg);
    pointer-events: none;
    transition: all 0.3s linear;
} */
.language-selection {
    cursor: pointer;
    color: #249f37;
    font-weight: 700;
    font-size: 16px;
}

.language-selection .language-option {
    display: none;
    cursor: pointer;
}

.language-selection:hover .language-option {
    display: inline;
}

/*
.dropdown input {
    width: 100%;
    height: 100%;
    border-radius: 9px;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 12px;
    position: absolute;
    top: 0;
    left: 0;
    user-select: none;
}

.dropdown .options {
    width: 100%;
    border-radius: 9px;
    padding: 8px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 10px 25px rgba(124, 130, 141, 0.2);
    font-size: 12px;
    overflow: hidden;
    position: absolute;
    top: 80px;
    transition: all 0.7s ease;
    opacity: 0;
    transform: translateY(-50px);
    visibility: hidden;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 2;
}

.dropdown .options .option {
    border-radius: 9px;
    transition: all 0.2s ease;
    padding-inline-start: 7px;
    padding-block: 7px;
}

.dropdown .options .option:not(:last-of-type) {
    margin-bottom: 8px;
}

.dropdown .options .option:hover,
.dropdown .options .option.active {
    color: var(--primary-white);
    background: var(--primary-orange);
    box-shadow: unset;
}

.dropdown.opened .options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.opened::before {
    transform: rotate(-225deg);
    top: 30px;
} */
.profile-btn {
    position: relative;
    display: inline;
}

.show-profile-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 250px;
    border: 2px solid #249f37;
    border-radius: 0px;
    background-color: #e6e8e7;
    padding: 4px;
    gap: 5px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .profile-btn {
        display: block;
        /* display: none; */
    }
    .show-profile-box {
        display: flex;
        flex-direction: column;
    }
    .language-selection {
        margin: 45px;
    }
}

.profile-name {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.profile-name > span {
    display: block;
    color: #1e1e1e;
    font-size: 13px;
    text-align: start;
    font-weight: 700;
}

.profile-image img {
    display: block;
    width: auto;
    height: 100%;
}

/* .profile-name>span:first-child {
    font-weight: 400;
    font-size: 12px;
}

.profile-name>span:last-child {
    font-weight: 700;
    font-size: var(--p);
} */

.profile-image {
    background-color: #b190b6;
    border: 2px solid #249f37;
    border-radius: 0px;
    overflow: hidden;
}

.profile-image > img {
    width: 60px;
    text-align: center;
    display: block;
}

.hidden-profile-box {
    position: absolute;
    top: 70px;
    right: 0;
    overflow: hidden;
    background-color: #fff;
    width: 230px;
    stroke: #f2f2f2;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

#showHideProfileBox.active {
    height: auto;
    visibility: visible;
    opacity: 1;
}

ul.hidden-profile-ul {
    padding-block: 10px;
}

ul.hidden-profile-ul > li:first-child {
    padding-bottom: 4px;
    margin-bottom: 0px;
}

ul.hidden-profile-ul > li:first-child > p {
    font-weight: 400;
    color: var(--heading-text-color);
    font-size: 12px;
}

.profile-person {
    padding-inline: 9px;
}

.profile-person > p,
.profile-person > p > a {
    color: #008f3a;
    font-size: 15px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .btn-show {
        display: block;
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
        width: 90px;
        height: 40px;
        text-align: center;
        line-height: 40px;
        border: none;
        border-radius: 8px;
        font-size: var(--h5);
        transition: all 0.7s ease-in-out;
        background-color: var(--primary-orange);
        color: var(--primary-white);
        border: 1px solid var(--primary-orange);
        z-index: 9999;
    }

    .btn-show:is(:hover, :focus) {
        background-color: var(--primary-orange);
        color: var(--primary-white);
    }

    .mobile-device__element {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 270px;
        /* width: 160px; */
        z-index: 999;
        background-color: var(--primary-white);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        transition: all 0.7s ease-in-out;
    }

    .mobile-device__element.active {
        right: 0;
    }

    .profile-language {
        flex-direction: column;
        align-items: flex-end;
        height: 100vh;
        width: 100%;
        text-align: start;
        white-space: nowrap;
        justify-content: start;
        text-align: end;
    }

    .header-dropdown {
        margin-top: 90px;
    }

    .header-img {
        display: none;
    }

    .profile-name {
        /* display: none; */
        display: inline;
    }

    /* .dropdown {
        width: 59px;
    } */

    .dropdown::before {
        right: 0px;
    }

    .dropdown .options {
        top: 20px;
        right: 87px;
        width: 94px;
        text-align: start;
    }

    .hidden-profile-box {
        top: 0;
        right: 87px;
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
        transform: translateY(-80px);
    }

    #showHideProfileBox.active {
        transform: translateY(0);
    }
}

/* header end */

/* hero banner start */
.hero-banner {
    position: relative;
    width: 100%;
    background-image: url("/assets/images/banner-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-block-start: 20px;
    padding-block-end: 40px;
    z-index: -1;
}

@media (max-width: 992px) {
    .hero-banner {
        padding-inline: 15px;
    }
}

.hero-content {
    overflow: hidden;
}

ul.bread-crumb {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
    margin-bottom: 30px;
}

ul.bread-crumb > li:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.bread-crumb > li:nth-child(2) {
    width: 0px;
    height: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.bread-crumb > li > svg {
    width: 14px;
    height: 15px;
    text-align: center;
    fill: var(--primary-white);
}

ul.bread-crumb > li:nth-child(2) > i {
    font-size: 8px;
    color: var(--primary-white);
}

ul.bread-crumb > li:nth-child(3) {
    color: var(--primary-white);
    font-weight: 400;
    font-size: 12px;
}

ul.hero-title {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-bottom: 10px;
}

ul.hero-title > li {
    color: var(--primary-white);
}

ul.hero-title > li > svg {
    width: 33px;
    height: 33px;
    fill: var(--primary-white);
}

ul.hero-title > li:last-child {
    font-weight: bold;
    font-size: var(--h4);
}

.li-client-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-inline: 9px;
}

.li-client-box > p {
    padding-block-start: 5px;
    font-size: 16px;
    color: #525252;
    font-weight: 600;
}

.clients-rcoface {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.clients-rcoface > span {
    font-size: 16px;
    font-weight: 700;
    color: #525252;
}

.client-name {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 3px;
}

.client-name > span:first-child {
    color: var(--primary-orange);
    width: 14px;
    height: 14px;
    display: block;
    border: 1px solid var(--primary-orange);
    text-align: center;
    line-height: 14px;
    border-radius: 50%;
    font-size: 11px;
}

.client-name > span:last-child {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-text-color);
}

.li-client-title > p > a {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-orange);
    background-color: #f6f0ed;
    display: inline-block;
    border-radius: 4px;
    padding-block: 6px;
    padding-inline: 6px;
}

/* hero banner end */

/* content-box/ search-customer start */
.content-box {
    width: 100%;
    background-color: #e6e8e7;
}

@media (max-width: 992px) {
    .content-box {
        padding-inline: 15px;
    }
}

.content-box__box {
    margin-top: 0px;
    padding-block: 20px;
    padding-inline: 30px;
    background-color: var(--primary-white);
    border: none;
    border-radius: 0px;
    padding-block-end: 72px;
}

.content-box__box > h3 {
    font-size: var(--h5);
    font-weight: bold;
    color: var(--primary-orange);
}

.form-group-box {
    margin-top: 24px;
}

.form-group-box-list {
    display: grid;
    grid-template-columns: 31.33% 31.33% 31.33%;
    align-items: center;
    gap: 22px;
    overflow: hidden;
    justify-content: center;
}

.form-group-box-list > li {
    flex-basis: 33%;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    padding-inline: 30px;
    padding-block: 24px;
    transition: all 0.5s ease-in-out;
}

.form-group-box-list > li.active {
    background-color: #e0f8e0;
}

.form-group-box-list > li > label {
    padding-left: 32px;
    position: relative;
    display: block;
    cursor: pointer;
    color: var(--heading-text-color);
    font-weight: 400;
    font-size: var(--p);
}

.form-group-box-list > li.active.active > label {
    color: var(--primary-orange);
}

.form-group-box-list > li > label::before {
    content: "\f111";
    font: var(--fa-font-regular);
    position: absolute;
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: var(--primary-orange);
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.form-group-box-list > li > label::after {
    content: "\f111";
    font: var(--fa-font-solid);
    position: absolute;
    width: 14px;
    height: 14px;
    font-size: 14px;
    color: var(--primary-orange);
    left: 3px;
    top: 53%;
    transform: translateY(-50%);
    border-radius: 50%;
    visibility: hidden;
}

.form-group-box-list > li > label.active::after {
    visibility: visible;
}

@media (min-width: 568px) and (max-width: 992px) {
    .form-group-box-list {
        grid-template-columns: 48% 48%;
    }
}

@media (max-width: 567px) {
    .form-group-box-list {
        grid-template-columns: 100%;
    }

    .form-group-box-list > li > label::after {
        top: 53%;
    }
}

/* content-box/ search-customer end */

/* footer start */
.footer {
    width: 100%;
    background-color: #008f3a;
    padding-top: 40px;
    padding-bottom: 30px;
    z-index: 100;
    position: relative;
    background-image: url("/assets/images/footer-image.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
}

@media (max-width: 992px) {
    .footer {
        padding-inline: 15px;
    }
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-copyright {
    display: flex;
    align-items: center;
    gap: 10px;
}

.copyright-left {
    justify-content: start;
}

.copyright-copyright > li,
.copyright-copyright > li > a {
    font-weight: 400;
    font-size: 12px;
    color: var(--heading-text-color);
}

/* footer end */

/* search-list.blade.php */
/* searchCustomer.blade.php */
.content-box.search-content-box {
    padding-bottom: 0px;
}

.content-box__box.search-box {
    background-color: white;
}

.form-submit-list__form {
    display: flex;
    justify-content: start;
    flex-direction: column;
    column-gap: 100px;
}

.form-group-customer.from-customer-number,
.form-group-customer.form-group-customer-date {
    flex-basis: 33.3%;
    display: flex;
    flex-wrap: wrap;
}

@media (min-width: 500px) and (max-width: 800px) {
    .form-group-customer.from-customer-number,
    .form-group-customer.form-group-customer-date {
        flex-basis: 100%;
        display: flex;
        /* flex-wrap: wrap;       */
    }

    .form-group {
        /* display: flex;

        min-width: 150px;
        align-items: center;
        margin-bottom: 10px;
        margin-right: 10px; */

        padding-bottom: 0px;
        width: 100%;
        flex: 1 1 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .form-group label {
        width: 100%;
        margin-bottom: 5px;
    }

    .form-group input {
        width: 200px;
        max-width: none;
    }

    .form-group .char-count {
        margin-left: 0;
        margin-top: 5px;
    }
}

.form-group {
    display: flex;
    width: 33.3%;
    flex: 1 1 33%;
    padding-bottom: 20px;
    min-width: 150px;
    align-items: center;
    margin-bottom: 10px;
}

.form-group label {
    width: 100px;
    margin-right: 20px;
    color: #525252;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    flex-shrink: 0;
}

.form-group input {
    flex: 0.4;
    background-color: #f0f2f1;
    width: 200px;
    border: 3px solid #d9d9d9;
    border-radius: 1px;
}

.form-group .char-count {
    margin-left: 10px;
    font-size: 16px;
    color: #525252;
    line-height: 21px;
    white-space: nowrap;
}

@media (max-width: 1200px) and (min-width: 1000px) {
    .form-group label {
        margin-right: 0px;
    }
}

@media (max-width: 600px) {
    .form-group {
        flex-direction: column;

        padding-bottom: 0px;
        align-items: flex-start;
    }

    .form-group label {
        width: 100%;
        margin-bottom: 5px;
    }

    .form-group input {
        width: 200px;
        max-width: none;
    }

    .form-group .char-count {
        margin-left: 0;
        margin-top: 5px;
    }
}

.from-group-customer-date {
    display: grid;
    grid-template-columns: calc(50% - 0px) calc(50% - 0px);
    align-items: center;
    justify-content: center;
}

.from-g-c-form-d {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    position: relative;
}

.from-g-c-form-d.from-g-c-form-date {
    margin-right: 17px;
    justify-content: start;
}

.content-box__box.search-box label.form-label {
    font-size: var(--p);
    color: #00af01;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 18px;
}

.content-box__box.search-box input.form-control {
    border: 1px solid var(--input-border-color);
    box-shadow: none;
    height: 48px;
    border-radius: 10px;
    background-color: var(--primary-white);
    padding-inline: 20px;
    font-weight: 700;
    color: var(--heading-text-color);
    font-size: 14px;
    line-height: 14px;
}

.content-box__box.search-box input.form-control::placeholder {
    color: var(--input-placeholder);
    font-size: var(--p);
    font-weight: 400;
}

.input-de__label {
    background-color: transparent;
    border: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--heading-text-color);
    padding: 0px;
    height: 48px;
}

.datepicker-toggle-button {
    position: absolute;
    right: 0;
    top: -12px;
    width: 40px;
    height: 48px;
    cursor: pointer;
    background-color: #f3edea;
    background-image: url(/assets/images/calendar_month.png);
    z-index: 1;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid var(--primary-orange);
}

.form-group-customer.form-group-customer-date
    .from-group-customer-date
    > .from-g-c-form-d
    .datepicker-input {
    position: absolute;
    right: 0;
    top: 0px;
    width: calc(100% - 28px);
    opacity: 1;
    border: 1px solid var(--primary-orange);
    box-sizing: border-box;
}

.form-group-customer.form-group-customer-date
    .from-group-customer-date
    > .from-g-c-form-d
    .datepicker-input::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 48px;
    cursor: pointer;
    background-color: var(--primary-orange);
    margin: 0;
    padding: 0;
    font-size: 24px;
    opacity: 0;
    z-index: 9;
}

.form-group-customer.form-group-customer-date
    .from-group-customer-date
    > .from-g-c-form-d
    .datepicker-input::after {
    content: "\f073";
    font: var(--fa-font-regular);
    position: absolute;
    right: 0;
    top: 0px;
    width: 40px;
    height: 48px;
    cursor: pointer;
    background-color: #f9fef9;
    text-align: center;
    line-height: 48px;
    color: var(--primary-orange);
    font-size: 22px;
    border-left: 1px solid var(--primary-orange);
}

@media (min-width: 1200px) {
    .btn-submit {
        display: flex;
        align-items: center;
        justify-content: end;
        /* margin-top: -400px;
        margin-left: -20px; */
    }
}

@media (min-width: 1000px) and (max-width: 1199px) {
    .btn-submit {
        display: flex;
        align-items: center;
        justify-content: end;
        /* margin-top: -400px;
        margin-left: -300px; */
    }
}

.search-form-submit {
    background-color: #008f3a;
    border: 1px solid var(--primary-orange);
    width: 220px;
    height: 54px;
    text-align: center;
    font-weight: 600;
    border-radius: 19px;
    font-size: 18px;
    line-height: 15px;
    color: white;
    transition: all 0.5s ease-in-out;
}

.search-form-submit:is(:hover, :focus) {
    background-color: var(--primary-orange);
    color: var(--primary-white);
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .form-submit-list__form {
        column-gap: 60px;
    }

    .form-group-customer.from-customer-number {
        flex-basis: 30%;
    }

    .form-group-customer.form-group-customer-date {
        flex-basis: 50%;
    }
}

@media (min-width: 993px) and (max-width: 1199px) {
    .content-box__box.search-box label.form-label {
        margin-bottom: 10px;
    }

    .content-box-box {
        margin-bottom: 10px;
    }

    .content-round-box {
        margin-bottom: 10px;
    }

    .form-group-customer.from-customer-number {
        flex-basis: 30%;
    }

    .form-group-customer.form-group-customer-date {
        flex-basis: 50%;
    }
}

@media (max-width: 1024px) {
    .form-submit-list__form {
        column-gap: 60px;
    }
}

@media (max-width: 992px) {
    .form-submit-list__form {
        column-gap: unset;
        row-gap: 20px;
        padding-top: 0px;
        flex-direction: column;
    }

    .form-group-customer.from-customer-number,
    .form-group-customer.form-group-customer-date {
        flex-basis: 100%;
        width: 100%;
        justify-content: center;
        margin-top: 0px;
        margin-left: 0px;
    }
}

@media (max-width: 700px) {
    .btn-submit {
        flex-basis: 100%;
        width: 100%;
        justify-content: center;
        margin-top: 0px;
        margin-left: 0px;
    }
}

@media (max-width: 576px) {
    .from-group-customer-date {
        grid-template-columns: 100%;
        grid-row-gap: 20px;
    }
}

/* list and search list */
.list-section {
    width: 100%;
}

@media (max-width: 992px) {
    .list-section {
        padding-inline: 15px;
    }
}

.list-item-box {
    background-color: var(--primary-white);
    border-radius: 0px;
    border: none;
    stroke: var(--page-box-border-color);
    padding-inline: 30px;
    padding-block-start: 20px;
    padding-block-end: 20px;
}

.list-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 27px;
}

.list-item-left > p {
    color: var(--primary-orange);
    font-weight: bold;
    font-size: var(--p);
    line-height: 24px;
}

.list-item-right {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.list-item-right > p {
    color: var(--primary-orange);
    font-weight: bold;
    font-size: var(--p);
}

ul.export-item {
    display: flex;
    justify-content: end;
    align-items: center;
    column-gap: 8px;
}

ul.export-item > li > button {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    padding-block: 10px;
    padding-inline: 25px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 8px;
    border: 1px solid var(--page-box-border-color);
    background-color: var(--primary-white);
    transition: all 0.5s ease-in-out;
}

ul.export-item > li > button:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

ul.export-item > li > button > span {
    font-size: 7px;
    color: var(--heading-text-color);
    border: 1px solid var(--heading-text-color);
    width: 14px;
    height: 16px;
    text-align: center;
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.export-item > li > button:hover > span {
    color: var(--primary-white);
    border-color: var(--primary-white);
}

ul.export-item > li > button > p {
    font-size: 14px;
    color: var(--heading-text-color);
    transition: all 0.5s ease-in-out;
}

ul.export-item > li > button:hover > p {
    color: var(--primary-white);
}

@media (min-width: 1200px) and (max-width: 1400px) {
    ul.export-item > li > button {
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 10px;
        padding-block: 10px;
        padding-inline: 25px;
        font-size: 14px;
        font-weight: 400;
        border-radius: 8px;
        border: 1px solid var(--page-box-border-color);
        background-color: var(--primary-white);
        transition: all 0.5s ease-in-out;
    }

    ul.export-item > li > button:hover {
        background-color: var(--primary-orange);
        border-color: var(--primary-orange);
    }

    ul.export-item > li > button > span {
        font-size: 7px;
        color: var(--heading-text-color);
        border: 1px solid var(--heading-text-color);
        display: block;
        width: 14px;
        height: 16px;
        text-align: center;
        line-height: 14px;
        transition: all 0.5s ease-in-out;
    }

    ul.export-item > li > button:hover > span {
        color: var(--primary-white);
        border-color: var(--primary-white);
    }

    ul.export-item > li > button > p {
        font-size: 14px;
        color: var(--heading-text-color);
        transition: all 0.5s ease-in-out;
    }

    ul.export-item > li > button:hover > p {
        color: var(--primary-white);
    }
}

@media (min-width: 993px) and (max-width: 1199px) {
    ul.export-item > li > button {
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 8px;
        padding-block: 6px;
        padding-inline: 20px;
        font-size: 14px;
        font-weight: 400;
        border-radius: 8px;
        border: 1px solid var(--page-box-border-color);
        background-color: var(--primary-white);
        transition: all 0.5s ease-in-out;
    }

    .table-data {
        overflow: hidden;
    }
}

@media (max-width: 992px) {
    .list-item-right {
        position: relative;
    }

    .list-item-right > p {
        cursor: pointer;
        color: var(--primary-orange);
        border: 1px solid var(--primary-orange);
        background-color: #e0f8e0;
        padding-block: 10px;
        padding-inline: 25px;
        font-weight: bold;
        border-radius: 8px;
        transition: all 0.5s ease-in-out;
    }

    .list-item-right > p:is(:hover, :focus) {
        background-color: var(--primary-orange);
        color: var(--primary-white);
    }

    ul.export-item {
        justify-content: center;
        column-gap: unset;
        flex-direction: column;
        row-gap: 8px;
        position: absolute;
        top: 54px;
        right: 0;
        visibility: hidden;
        opacity: 0;
        transform: translateY(50px);
        background-color: var(--primary-white);
        padding-inline: 10px;
        padding-block: 15px;
        box-shadow: 0 10px 25px rgba(124, 130, 141, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 8px;
        transition: all 0.7s ease-in-out;
        z-index: 99999;
    }

    .list-item-right.opened > ul.export-item {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    ul.export-item > li > button {
        width: 190px;
    }
}

@media (max-width: 576px) {
    .list-item-header {
        column-gap: 10px;
    }
}

.list-items-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.list-items-table::-webkit-scrollbar {
    width: 5px;
    /* width of the entire scrollbar */
}

.list-items-table::-webkit-scrollbar-track {
    background: var(--body-color);
    /* color of the tracking area */
}

.list-items-table::-webkit-scrollbar-thumb {
    background-color: var(--search-box-color);
    /* color of the scroll thumb */
    border-radius: 10px;
    /* roundness of the scroll thumb */
    border: 1px solid var(--search-box-color);
    /* creates padding around scroll thumb */
}

.table-data {
    width: 100%;
    margin-bottom: 70px;
    max-width: 100%;
}

.table-data > thead > tr > th {
    color: #737373;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    border: 1px solid #d4d4d4;
    text-align: start;
}

.table-data > tbody > tr > td,
.table-data > tbody > tr > td > a {
    color: #737373;
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.table-data > tbody > tr > td {
    border: 1px solid #d4d4d4;
}

.table-data > tbody > tr > td > a {
    font-size: 16px;
}

.table-data > tbody > tr > td > a > span {
    display: block;
    width: 100%;
}

.table-data > tbody > tr > td > a > span:not(:last-child) {
    padding-bottom: 2px;
}

.table-data > tbody > tr > td,
.table-data > thead > tr > th {
    /* padding-inline: 8px; */
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 0px;
    padding-bottom: 0px;
    white-space: nowrap;
}

.select_td {
    color: #008f3a;
    text-decoration: underline;
}

.table-data > tbody > tr:hover .select_td {
    color: white;
}

.table-data > tbody > tr:hover {
    background-color: #008f3a;
}

.table-data > tbody > tr:hover td {
    color: white;
}

.table-data > tbody > tr:hover a {
    color: white;
}

.table-data > tbody > tr > td > a {
    transition: all 0.5s ease-in-out;
}

.table-data > tbody > tr > td > a:is(:hover, :focus) {
    color: var(--primary-orange);
}

.showing-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 10px;
}

.show-page-box {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
}

.show-page-text > p,
.show-page-box > span,
.show-page-box > .list-arrow-box > ul > li {
    color: #ababab;
    font-weight: 400;
    font-size: 12px;
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
}

.show-page-box > span {
    color: #737373;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 400px) {
    .show-page-text > p,
    .show-page-box > span,
    .show-page-box > .list-arrow-box > ul > li {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.list-arrow-box {
    width: 50px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    position: relative;
    border: 1px solid #000000;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 0;
}

.list-arrow-box::before {
    /* content: "";
    position: absolute;
    right: 20px;
    top: 6px;
    z-index: 9999;
    width: 8px;
    height: 8px; */

    /* border: 2px solid grey; */
    /* border-top: transparent;
    border-right: transparent; */
    /* transform: rotate(-45deg); */
    /* pointer-events: none; */
    transition: all 0.3s linear;
}

.show-page-box > .list-arrow-box > input {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 12px;
    position: absolute;
    top: 0;
    left: 0;
    user-select: none;
    text-align: left;
    padding-inline: 15px;
}

.page-box-item {
    width: 100%;
    border-radius: 9px;
    padding: 8px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 10px 25px rgba(124, 130, 141, 0.2);
    font-size: 12px;
    overflow: hidden;
    position: absolute;
    bottom: 30px;
    transition: all 0.7s ease;
    opacity: 0;
    transform: translateY(-50px);
    visibility: hidden;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 2;
}

.page-box-item > li.item {
    border-radius: 9px;
    transition: all 0.2s ease;
    padding-inline-start: 7px;
    padding-block: 0px;
    text-align: center;
}

.page-box-item > li.item:not(:last-child) {
    margin-bottom: 3px;
}

.page-box-item > li.item.active,
.page-box-item > li.item:is(:hover, :focus) {
    color: var(--primary-white);
    background: var(--primary-orange);
    box-shadow: unset;
}

.list-arrow-box.opened::before {
    /* transform: rotate(135deg); */
    top: 10px;
}

.list-arrow-box.opened > .page-box-item {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.customer-list {
    display: none;
}

.customer-list.active {
    display: table-row;
}

/* search-list.blade.php end */

/* customer-details.blade.php */
/* searchCustomer.blade.php */
.go-prev-next {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 20px;
    column-gap: 30px;
}

.go-list > a {
    color: var(--primary-orange);
    font-size: var(--p);
    font-weight: bold;
    line-height: 24px;
    text-decoration: underline;
}

@media (max-width: 576px) {
    .go-prev-next {
        flex-direction: column;
        column-gap: unset;
        row-gap: 10px;
        justify-content: center;
        align-items: start;
    }
}

/* searchCustomer.blade.php end */
/* customer details box */
.list-section.customer-detail__page
    .list-items-table
    > .table-data
    > thead
    > tr
    > th {
    padding-bottom: 8px;
    padding-top: 8px;
}

.list-section.customer-detail__page
    .list-items-table
    > .table-data
    > tbody
    > tr,
.list-section.customer-detail__page
    .list-items-table
    > .table-data
    > thead
    > tr {
    border-bottom: 1px dotted #bbbbbb;
}

/* individual customer details */
.individual-customer-detail-section {
    padding-top: 50px;
}

#individualCustomerDetail {
    display: none;
}

#individualCustomerDetail.active {
    display: block;
}

@media (max-width: 992px) {
    .individual-customer-detail-section {
        padding-inline: 15px;
    }
}

.customer-detail__detail {
    background-color: var(--primary-white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    height: 100%;
    box-shadow: 0 10px 25px rgba(124, 130, 141, 0.2);
    border-radius: 24px;
    padding-block: 25px;
    padding-inline: 30px;
}

.title-name-customer {
    margin-bottom: 20px;
}

.title-name-customer > h5 {
    font-size: var(--p);
    font-weight: bold;
    color: var(--primary-orange);
    line-height: 24px;
}

ul.basic-details > li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

ul.basic-details > li:not(:first-child) {
    padding-top: 8px;
}

ul.basic-details > li:not(:last-child) {
    padding-bottom: 14px;
    border-bottom: 1px dotted #bbbbbb;
}

ul.basic-details > li > span {
    line-height: 14px;
    font-size: 12px;
}

ul.basic-details > li > span:first-child {
    color: #bbbbbb;
    font-weight: bold;
}

ul.basic-details > li > span:last-child {
    color: var(--heading-text-color);
    font-weight: 700;
    flex-basis: 50%;
}

.field-box {
    margin-bottom: 16px;
}

.label {
    color: var(--input-label);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 15px;
}

.field-box > input,
.field-box > textarea {
    height: 48px;
    border-radius: 10px;
    border-color: var(--input-border-color);
    box-shadow: none;
    padding-inline: 20px;
    font-family: var(--body-fonts);
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    color: var(--input-placeholder);
}

.field-box > textarea {
    height: 90px;
    resize: none;
}

.field-box > input::placeholder,
.field-box > textarea::placeholder {
    color: var(--input-placeholder);
    font-family: var(--body-fonts);
    font-size: 14px;
    font-weight: 400;
}

.field-box > input:is(:focus),
.field-box > textarea:is(:focus) {
    box-shadow: none;
    border-color: var(--input-border-color);
    color: var(--input-placeholder);
}

.error {
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 400;
}

.field-submit > input {
    height: 48px;
    background-color: var(--primary-orange);
    color: var(--primary-white);
    font-weight: bold;
    font-size: var(--h5);
    border-radius: 10px;
    border: none;
}

.field-submit > input:is(:focus) {
    background-color: var(--primary-orange);
    color: var(--primary-white);
}

.add-attachments > .field-box {
    position: relative;
}

.add-attachments > .field-box > input[type="file"] {
    position: relative;
    z-index: 1;
    width: 100%;
    user-select: none;
    color: transparent;
}

.add-attachments > .field-box > input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
    margin-left: 0px;
    padding: 0;
    height: 0px;
    line-height: 48px;
    width: 0;
}

.add-attachments > .field-box > input::before {
    content: "Fisier";
    position: absolute;
    color: var(--input-placeholder);
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    font-size: 14px;
    font-weight: 400;
}

.add-attachments > .field-box > input::after {
    content: "Browse";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 83px;
    text-align: center;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    font-weight: bold;
    user-select: none;
    background-color: var(--input-border-color);
    color: var(--heading-text-color);
}

.file-status-input-box > input {
    cursor: pointer;
}

.file-status {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: var(--primary-white);
    border: 1px solid var(--input-border-color);
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
}

.file-status-input-box.opened > .file-status {
    visibility: visible;
    opacity: 1;
}

.file-status > li {
    padding-inline: 20px;
    display: block;
    width: 100%;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    background-color: transparent;
    transition: all 0.7s ease-in-out;
    padding-bottom: 12px;
    padding-top: 12px;
}

.file-status > li:not(:last-child) {
    border-bottom: 1px solid var(--input-border-color);
}

.file-status > li:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.file-status > li:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.file-status > li:hover,
.file-status > li.active {
    background-color: var(--primary-orange);
    color: var(--primary-white);
}

/* customer-details.blade.php end */

/* model start */
.backdrop {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #d9d9d9bf;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
}

.backdrop.active {
    top: 0;
    visibility: visible;
    opacity: 1;
}

.model {
    position: fixed;
    top: -100%;
    left: 0%;
    transform: translate(0%, 0%);
    width: 100%;
    height: auto;
    max-width: 600px;
    background-color: var(--primary-white);
    z-index: 99999;
    border: none;
    border-radius: 30px;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    visibility: hidden;
    opacity: 0;
}

.model.active {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: visible;
    opacity: 1;
}

.model-head {
    font-size: var(--h4);
    border: none;
    background-color: var(--input-border-color);
    width: 40px;
    height: 40px;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.7s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    float: right;
    color: var(--heading-text-color);
    border-radius: 10px;
    font-weight: bolder;
}

.model-head:is(:hover, :focus) {
    background-color: var(--primary-orange);
    color: var(--primary-white);
}

.model-body > h3 {
    font-weight: 700;
    font-size: var(--h3);
    color: var(--heading-text-color);
    margin-bottom: 15px;
}

.model-body > p {
    font-size: 14px;
    font-weight: 400;
    color: var(--heading-text-color);
}

.model-footer {
    margin-top: 15px;
}

.model-close {
    border: none;
    background-color: var(--input-border-color);
    padding: 10px 15px;
    font-size: 16px;
    vertical-align: middle;
    transition: all 0.7s ease-in-out;
    color: var(--heading-text-color);
    border-radius: 10px;
    font-weight: 700;
}

.model-close:is(:hover, :focus) {
    background-color: var(--primary-orange);
    color: var(--primary-white);
}

/* model end */
/* Done by harshit */
.footer .footer-heading h4 {
    color: #00af01;
    font-weight: 700;
}

.footer .footer-heading svg {
    margin-block: 12px;
    margin-left: 25px;
}

.footer .footer-column2 .footer-logo p {
    margin-left: 15px;
}

@media (max-width: 900px) {
    .footer .footer-heading > p {
        padding-left: 0px;
        padding-top: 20px;
    }

    .footer .footer-column2 .widget-content {
        text-align: center;
        text-align: left;
    }

    .footer .footer-column2 .widget-content ul {
        padding: 0;
        margin-left: 10px;
    }

    .footer .footer-column2 .widget-content ul li {
        display: inline-block;
        width: 100%;
    }

    .footer .footer-column2 .widget-content ul li a {
        text-align: left;
        display: block;
        /* margin-left: 10px; */
    }

    .footer .footer-column2 .footer-logo p {
        text-align: left;
        display: block;
        margin-left: 38px;
    }
}

@media (min-width: 992px) {
    .footer .footer-column1 {
        width: 41.33%;
    }

    .footer .footer-column2 {
        width: 30.66%;
    }

    .footer .footer-column3 {
        width: 28%;
    }
}

.footer .footer-column3 {
    margin-left: 0px;
    padding-left: 0px;
}

.footer .footer-column2 {
    margin-left: 0px;
    padding-left: 0px;
}

.footer .footer-column3 .widget-content svg {
    margin-left: 0px;
    padding-left: 0px;
}
.footer .footer-heading svg {
    margin-block: 12px;
    margin-left: 0px;
}
.footer .footer-column1 .logo-widget .text p {
    color: white;
    font-size: 14px;
    line-height: 15px;
    font-weight: 700;
}

@media (min-width: 1400px) {
    .auto-container {
        max-width: 1360px;
    }
}

.footer .auto-container .widget-content a {
    /* margin-left: 20px; */
    color: #737373;
    font-size: 14px;
    font-weight: 600;
}

.footer .footer-heading > p {
    padding-left: 40px;
    padding-top: 15px;
    font-weight: 700;
    font-size: 16px;
    line-height: 15px;
    color: white;
}

.footer .footer-column2 .footer-heading > p {
    padding-left: 0px;
}

.footer .footer-column2 .footer-heading > h5 {
    min-height: 30px;
}

@media (min-width: 1000px) {
    .footer .footer-column3 .footer-heading > p {
        padding-left: 64px;
    }
}

@media (max-width: 768px) {
    .footer .auto-container .widget-content a {
        margin-left: 0px;
    }

    .footer .footer-heading h4 {
        text-align: center;
    }

    .footer .footer-column1 .logo-widget .text p {
        margin-left: 10px;
    }

    .footer .footer-heading h5 {
        text-align: center;
        margin-top: 14px;
    }
}

@media (min-width: 800px) {
    .footer .footer-heading h4 {
        margin-left: 45px;
    }

    .footer .footer-heading h5 {
        margin-left: 60px;
    }
}

.footer .footer-heading h5 {
    color: #00af01;
    font-weight: 700;
    font-size: 24px;
}

.footer-content {
    display: flex;
    align-items: center;
}

.text span {
    margin-top: 10px;
    display: block;
    color: #737373;
    font-size: 14px;
    line-height: 15px;
    font-weight: 600;
}

.footer-content {
    display: flex;
    align-items: start;
}

.footer-content svg {
    margin-right: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column3 .logo-widget .widget-content .footer-links a {
    /* text-decoration: underline; */
    color: white;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
}

/* .footer-column3 .logo-widget .widget-content .footer-links a::before {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.43051e-06 0.400241L1.43051e-06 7.60045C0.000306606 7.67334 0.0271616 7.7448 0.0776749 7.80712C0.128188 7.86944 0.200447 7.92027 0.286674 7.95413C0.372901 7.988 0.469831 8.00361 0.56703 7.9993C0.664229 7.99498 0.758016 7.97091 0.838296 7.92965L7.78401 4.32955C8.072 4.18035 8.072 3.82114 7.78401 3.67153L0.838296 0.0714315C0.758183 0.0297603 0.664349 0.00532331 0.566988 0.000775592C0.469627 -0.00377212 0.372464 0.0117434 0.286054 0.0456364C0.199645 0.0795294 0.127293 0.130504 0.0768614 0.193021C0.0264301 0.255538 -0.000152588 0.327207 1.43051e-06 0.400241Z' fill='%2300AF01'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
} */

.search-buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.search-submit {
    background-color: #008f3a;
    border: 1px solid #008f3a;
    width: 150px;
    height: 44px;
    text-align: center;
    font-weight: 600;
    border-radius: 1px;
    margin-right: 16px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 20px;
    line-height: 15px;
    color: white;
    transition: all 0.5s ease-in-out;
}

.search-submit:is(:hover, :focus) {
    background-color: var(--primary-orange);
    color: var(--primary-white);
}

.reset-submit {
    background-color: #737373;
    border: 1px solid #737373;
    width: 150px;
    height: 44px;
    text-align: center;
    font-weight: 600;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 1px;
    font-size: 20px;
    line-height: 15px;
    color: white;
    transition: all 0.5s ease-in-out;
}

.reset-submit:is(:hover, :focus) {
    background-color: var(--input-label);
    color: var(--primary-white);
}

.form-container {
    background-color: #f0f2f1;
    margin-top: 16px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-left: 10px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .form-container {
        margin-left: 4px;
    }
    .footer .footer-column2 .widget-content ul li a {
        text-align: left;
        display: block;
        /* margin-left: 10px; */
    }
    .footer .footer-heading svg {
        margin-block: 12px;
        margin-left: 0px;
        width: 25px;
    }
}

.green-line {
    width: 100%;
    height: 2px;
    background-color: #008f3a;
    margin: 10px 0;
}

.content-box-box {
    background-color: white;
    margin-top: 0px;
    padding-block: 20px;
    padding-inline: 30px;
    background-color: var(--primary-white);
    border: none;
    border-radius: 0px;
    padding-block-end: 72px;
}

.content-round-box {
    background-color: white;
    margin-top: 0px;
    padding-block: 20px;
    padding-inline: 30px;
    background-color: var(--primary-white);
    border: none;
    border-radius: 24px;
    padding-block-end: 72px;
}

.notification-header > p {
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 36px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.notification-header > h1 {
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 32px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 20px;
}

@media (max-width: 692px) {
    .notification-header > p {
        font-size: 22px;
        margin-top: 0px;
    }

    .notification-header > h1 {
        font-size: 20px;
        margin-top: 0px;
    }
}

.center-btn-submit {
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
    justify-content: center;
    width: 100%;
}

.client-btn {
    background-color: #008f3a;
    border: 1px solid var(--primary-orange);
    width: 251px;
    height: 44px;
    text-align: center;
    font-weight: 700;
    border-radius: 0px;
    text-decoration: underline;
    font-size: 16px;
    line-height: 15px;
    color: white;
    transition: all 0.5s ease-in-out;
}

.client-btn:is(:hover, :focus) {
    background-color: var(--primary-orange);
    color: var(--primary-white);
}

.bottom_notificare {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border: 1px solid #008f3a;
    padding-bottom: 18px;
}

.notificare-text {
    color: #00af01;
    align-self: flex-start;
    margin-bottom: 10px;
    font-size: 24px;
    padding: 10px;
    font-weight: 600;
}

.center-btns {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 80px;
}

.start-btns {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    gap: 50px;
}

.start-btns > p {
    color: #00af01;
    font-weight: 600;
    display: none;
}

.notify-form-submit-1 {
    background-color: #008f3a;
    border: 1px solid var(--primary-orange);
    height: 120px;
    text-align: center;
    font-weight: 600;
    border-radius: 19px;
    font-size: 32px;
    line-height: 30px;
    color: white;
    padding-inline: 64px;
    transition: all 0.5s ease-in-out;
}

.notify-green-btn {
    background-color: #008f3a;
    border: 1px solid var(--primary-orange);
    height: 56px;
    text-align: center;
    font-weight: 600;
    border-radius: 14px;
    font-size: 20px;
    line-height: 15px;
    color: white;
    padding-inline: 24px;
    transition: all 0.5s ease-in-out;
}

.notify-form-submit-2 {
    background-color: #94c11f;
    border: 1px solid #94c11f;
    padding-inline: 64px;
    height: 120px;
    text-align: center;
    font-weight: 600;
    border-radius: 19px;
    font-size: 32px;
    line-height: 30px;
    white-space: nowrap;
    color: white;
    transition: all 0.5s ease-in-out;
}

.notify-green-btn-2 {
    background-color: #737373;
    border: 1px solid #737373;
    padding-inline: 80px;
    height: 56px;
    text-align: center;
    font-weight: 600;
    border-radius: 19px;
    font-size: 20px;
    line-height: 15px;
    white-space: nowrap;
    color: white;
    transition: all 0.5s ease-in-out;
}

.notify-green-btn-3 {
    background-color: #737373;
    border: 1px solid #737373;
    padding-inline: 60px;
    height: 56px;
    text-align: center;
    font-weight: 600;
    border-radius: 19px;
    font-size: 20px;
    line-height: 15px;
    white-space: nowrap;
    color: white;
    transition: all 0.5s ease-in-out;
}

@media (max-width: 700px) {
    .center-btns {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .start-btns {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .notify-form-submit-1 {
        padding-inline: 24px;
    }

    .notify-green-btn {
        padding-inline: 16px;
    }

    .notify-form-submit-2 {
        padding-inline: 14px;
    }
}

.information {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-inline: 20px;
    background-color: #f0f2f1;
    border: 0px;
    border-radius: 33px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1200px) {
    .information {
        justify-content: center;
        align-items: center;
        width: 80%;
    }
}

.info-row {
    display: grid;
    grid-template-columns: 200px auto;
    column-gap: 20px;
    align-items: center;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .info-row {
        column-gap: 8px;
        grid-template-columns: 75px auto;
    }

    .information {
        padding-inline: 6px;
    }

    .content-box-box {
        padding-inline: 10px;
        padding-block-end: 0px;
    }

    .content-round-box {
        border-radius: 12px;
        padding-inline: 10px;
        padding-block-end: 0px;
    }
}

.info-label {
    font-weight: 600;
    line-height: 26px;
    font-size: 18px;
    color: #008f3a;
}

.info-value {
    font-weight: 600;
    line-height: 26px;
    font-size: 18px;
    color: #008f3a;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

.brown-container {
    background-color: #d9d9d9;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 16px;
}

.grey-container {
    background-color: #eeeeee;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 16px;
}

.brown-container > h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: #008f3a;
    padding-top: 4px;
    padding-inline: 6px;
}

.grey-container > h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: #008f3a;
    padding-bottom: 10px;
    padding-top: 4px;
    padding-inline: 6px;
}

@media (max-width: 600px) {
    .brown-container > h4 {
        font-size: 18px;
    }

    .grey-container > h4 {
        font-size: 18px;
        padding-bottom: 0px;
    }

    .brown-container {
        margin-left: calc(0.5 * var(--bs-gutter-x));
        margin-top: 0px;
        width: 90%;
    }

    .grey-container {
        margin-left: calc(0.5 * var(--bs-gutter-x));
        margin-top: 0px;
        width: 90%;
    }
}

.brown-container > p {
    color: #737373;
    font-weight: 600;
    font-size: 19px;
    line-height: 26px;
    padding-inline: 6px;
    padding-bottom: 8px;
    padding-top: 28px;
}

.grey-row {
    display: grid;
    grid-template-columns: 180px auto;
    column-gap: 10px;
    align-items: center;
    padding-inline: 4px;
    margin-top: 6px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-bottom: 10px;
}

.grey-label {
    font-weight: 700;
    line-height: 26px;
    font-size: 18px;
    color: #737373;
}

.grey-value {
    font-weight: 600;
    line-height: 26px;
    font-size: 18px;
    color: #737373;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 600px) {
    .grey-row {
        column-gap: 8px;
        grid-template-columns: 1fr;
    }

    .grey-label,
    .grey-value {
        display: block;
    }
}

.mcq-container {
    padding-left: 16px;
    padding-bottom: 20px;
    padding-right: 20px;
}

.mcq-heading {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 8px;
    color: #008f3a;
}

.mcq-form {
    display: flex;
    flex-direction: column;
}

.mcq-option {
    color: #1d1d1b;
    font-weight: 600;
    line-height: 26px;
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.mcq-option input {
    margin-right: 10px;
    accent-color: var(--primary-black);
}

.center-btns {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 30px;
}

@media (max-width: 700px) {
    .center-btns {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

.feedback-container {
    margin-top: 20px;
    padding: 20px;
}

.feedback-heading {
    font-size: 24px;
    margin-bottom: 10px;
}

.feedback-form {
    display: flex;
    flex-direction: column;
}

.feedback-input {
    width: 100%;
    padding: 10px;
    border: 2px solid #008f3a;
    border-radius: 5px;
    font-size: 16px;
    resize: none;
    min-height: 200px;
}

.rows-container {
    margin-top: 20px;
}

.inner-rows-container {
    background-color: #fff;
    border-radius: 10px;
    border: 2px solid #008f3a;
}

.row-item {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-inline: 10px;
    border-bottom: 2px solid #008f3a;
    display: flex;
    flex-wrap: wrap;
}

.row-item:nth-child(even) {
    background-color: #dddddd;
}

.row-item:last-child {
    border-bottom: none;
}

.row-content {
    display: flex;
    flex-wrap: wrap;
}

.row-text-field {
    flex: 1;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.row-text-field label {
    flex: 0 0 auto;
    white-space: nowrap;
    color: #1d1d1b;
    font-weight: 600;
    font-size: 18px;
    margin-right: 10px;
}

.row-text-field input {
    flex: 1;
    width: 40%;
    min-width: 220px;
    padding-inline: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 16px;
    border: 1px solid #505050;
    border-radius: 0px;
}

.row-text-field .second-row {
    flex: 1;
    width: 40%;
    min-width: 220px;
    padding-inline: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 16px;
    border: 1px solid #505050;
    border-radius: 0px;
}

.row-text-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2214%22%20height%3D%227%22%20viewBox%3D%220%200%2014%207%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M0%200L7%207L14%200H0Z%22%20fill%3D%22%23008F3A%22%2F%3E%3C%2Fsvg%3E")
        no-repeat right 10px center;
    padding-right: 30px;
    width: 40%;
    min-width: 200px;
    color: #737373;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.row-text-field button {
    width: 190px;
    height: 37px;
    vertical-align: middle;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    line-height: 15px;
    font-weight: 700;
    padding-top: -18px;
    padding-bottom: -18px;
    align-items: center;
    border: none;
}

.row-content .first-row {
    margin-left: 100px;
}

.row-content .second-row {
    margin-left: 116px;
}

.row-content .third-row {
    margin-left: 76px;
    margin-right: 70px;
}

.row-content .four-row {
    margin-left: 104px;
    margin-right: 70px;
}

.row-content .fifth-row {
    margin-left: 34px;
}

@media (max-width: 768px) {
    .row-text-field {
        flex-direction: column;
        align-items: center;
        /* Center items within each row-text-field */
        margin: auto;
        /* Center the row-text-field horizontally */
    }

    .row-text-field button {
        width: 220px;
    }

    .row-content {
        justify-content: center;
        /* Center the row-text-field within the row-content */
    }

    .row-item {
        justify-content: center;
        /* Center the row-text-field within the row-content */
    }

    .row-text-field label {
        margin-bottom: 5px;
        margin-right: 0;
    }

    .row-content .first-row {
        margin-left: 0px;
    }

    .row-content .second-row {
        margin-left: 0px;
    }

    .row-content .third-row {
        margin-left: 0px;

        margin-bottom: 6px;
        margin-right: 0px;
    }

    .row-content .four-row {
        margin-left: 0px;
        margin-bottom: 6px;
        margin-right: 0px;
    }

    .row-content .fifth-row {
        margin-left: 0px;
    }
}

.swal2-confirm.custom-confirm-btn {
    background-color: green !important;
    color: white !important;
    font-weight: bold !important;
}

.swal2-popup.custom-popup .swal2-title,
.swal2-popup.custom-popup .swal2-content {
    font-family: var(--body-fonts);
    font-weight: 600;
    font-size: 16px;
}

.side-container {
    display: flex;
    background-color: #e6e8e7;
    width: 100%;
    min-height: 100vh;
}

.sidebar {
    background-image: url("/assets/images/side-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    width: 270px;
    min-width: 270px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-heading {
    display: flex;
    justify-content: start;
    align-items: center;
}

.side-heading > img {
    width: 33px;
    height: 33px;
}

.side-heading > span {
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    color: #ffffff;
    padding-left: 5px;
}

.sidebar-item {
    padding: 10px 15px;
}

.sidebar-item > a {
    color: white;
    text-align: left;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
}

.sidebar-item-active > a {
    color: #008f3a;
    background-color: white;
    width: min-content;
    padding-inline: 4px;
    border-radius: 10px;
}

.sidebar-item:hover {
    cursor: pointer;
}

.item-header {
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.item-header .item-header-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    padding-right: 6px;
    line-height: 26px;
}

.item-header .arrow {
    color: white;
    transition: transform 0.3s;
    font-size: 10px;
    margin-top: 2px;
}

.item-header.active .arrow {
    transform: rotate(180deg);
}

.item-list {
    display: none;
    list-style-type: none;
    padding-left: 0;
}

.item-list li a {
    padding: 10px 15px;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.admin-content {
    background-color: #e6e8e7;
    padding: 20px;
    margin-right: 0px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cod-admin-content {
    background-color: #e6e8e7;
    padding: 20px;
    margin-right: 0px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 601px) {
    .admin-content {
        flex-direction: column;
    }

    .cod-admin-content {
        flex-direction: column;
    }
}

.admin-center-container {
    margin-inline: 140px;
    background-color: #f0f2f1;
    width: 60%;
    border-radius: 22px;
    box-shadow: 8px 8px 8px 0px rgba(45, 45, 45, 0.25);
    display: flex;
    flex-wrap: wrap;
    padding-top: 60px;
    padding-bottom: 60px;
    justify-content: space-around;
}

@media (max-width: 1024px) {
    .admin-center-container {
        width: 100%;
        margin-inline: 40px;
    }
}

.admin-center-excel-container {
    margin-inline: 0px;
    background-color: #f0f2f1;
    width: 100%;
    border-radius: 22px;
    box-shadow: 8px 8px 8px 0px rgba(45, 45, 45, 0.25);
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 60px;
    justify-content: space-around;
}

.admin-horizontal-center {
    margin: 10px;
    width: calc(50% - 20px);
    max-width: 380px;
    display: flex;
    background-color: #008f3a;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
}

.admin-horizontal-center h4 {
    color: #ffffff;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    text-align: start;
    margin-bottom: 10px;
}

.admin-horizontal-center p {
    color: #ffffff;
    font-weight: 400;
    font-size: 20px;
    padding-bottom: 15px;
    line-height: 30px;
    text-align: start;
    margin: 0;
}

@media (max-width: 600px) {
    .admin-center-container {
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        margin-inline: 0px;
        padding-bottom: 20px;
    }

    .admin-horizontal-center {
        width: calc(100% - 20px);
    }
}

@media (max-width: 600px) {
    .side-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .admin-content {
        flex-grow: 0;
        margin-right: 0px;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-inline: 0px;
    }

    .cod-admin-content {
        flex-grow: 0;
        margin-right: 0px;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-inline: 0px;
    }

    .admin-center-container {
        margin-inline: 0px;
    }
}

.admin-form-heading {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #1a9135;
    font-weight: 700;
    line-height: 30px;
}

.admin-form-heading span {
    color: #737373;
    font-size: 16px;
}

.admin-user-form {
    display: flex;
    flex-wrap: wrap;
}

.admin-password-form {
    display: flex;
    flex-wrap: wrap;
}

.admin-form-row {
    display: flex;
    justify-content: space-between;
    padding-inline: 60px;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}

.admin-form-row h4 {
    font-weight: 600;
    font-size: 14px;
    color: #737373;
    line-height: 18px;
}

.admin-form-row a {
    color: #008f3a;
}

.admin-form-submit-row {
    display: flex;
    padding-top: 20px;
    justify-content: center;
    padding-inline: 60px;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}

.admin-form-group {
    width: calc(50% - 20px);
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.admin-form-group label {
    margin-bottom: 5px;
    font-weight: 700;
    color: #737373;
    line-height: 18px;
    font-size: 16px;
}

.admin-form-group input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
}

.admin-form-group input:focus {
    background-color: #c0c0c0;
    border-color: #737373;
    outline: none;
}

.admin-submit-button {
    padding: 10px 20px;
    background-color: #008f3a;
    color: #fff;
    border: none;
    border-radius: 0px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.admin-submit-button-2 {
    padding: 10px 50px;
    background-color: #94c11f;
    color: #fff;
    border: none;
    border-radius: 0px;
    font-size: 18px;
    margin-left: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.admin-submit-button:hover {
    background-color: #007a32;
}

.admin-submit-button-2:hover {
    background-color: #007a32;
}

@media (max-width: 600px) {
    /* .admin-center-container {
        margin-inline: 10px;
    } */

    .admin-form-row {
        flex-direction: column;
        padding-inline: 0px;
        align-items: center;
    }

    .admin-form-submit-row {
        padding-top: 8px;
        flex-direction: column;
        padding-inline: 0px;
        align-items: center;
    }

    .admin-form-group {
        width: calc(100% - 20px);
    }

    .admin-submit-button-2 {
        margin-left: 0px;
        padding: 10px 60px;
        margin-top: 16px;
    }

    .admin-form-row h4 {
        width: calc(100% - 20px);
    }
}

.swal2-confirm.custom-confirm-btn {
    padding-inline: 24px;
    background-color: green !important;
    color: white !important;
    font-weight: bold !important;
    margin-bottom: 20px;
}

.swal2-cancel.custom-cancel-btn {
    background-color: green !important;
    color: white !important;
    font-weight: bold !important;
    margin-bottom: 20px;
}

.swal2-popup.custom-popup .swal2-title {
    font-family: var(--body-fonts);
    font-weight: 700;
    color: #1a9135;
    font-size: 24px;
    line-height: 32px;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #158b35;
}

.swal2-popup.custom-popup .swal2-content {
    font-family: var(--body-fonts);
    font-weight: 700;
    color: #737373;
    font-size: 20px;
    line-height: 30px;
}

.swal2-close {
    color: #000000;
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=utf8,<svg width='42' height='42' viewBox='0 0 42 42' fill='none' xmlns='http://www.w3.org/2000/svg'><g clip-path='url(%23clip0_2289_644)'><path d='M6.15324 35.847C4.14753 33.9098 2.5477 31.5926 1.44711 29.0305C0.346521 26.4684 -0.232789 23.7128 -0.25702 20.9244C-0.28125 18.1361 0.250086 15.3708 1.30598 12.79C2.36188 10.2091 3.9212 7.86445 5.89294 5.8927C7.86469 3.92095 10.2094 2.36164 12.7902 1.30574C15.371 0.249842 18.1363 -0.281494 20.9247 -0.257264C23.713 -0.233034 26.4686 0.346277 29.0307 1.44687C31.5928 2.54746 33.9101 4.14728 35.8472 6.153C39.6726 10.1136 41.7892 15.4183 41.7414 20.9244C41.6935 26.4306 39.485 31.6976 35.5914 35.5912C31.6979 39.4848 26.4308 41.6933 20.9247 41.7411C15.4185 41.789 10.1139 39.6723 6.15324 35.847ZM23.9402 21L29.8832 15.057L26.9222 12.096L21.0002 18.039L15.0572 12.096L12.0962 15.057L18.0392 21L12.0962 26.943L15.0572 29.904L21.0002 23.961L26.9432 29.904L29.9042 26.943L23.9612 21H23.9402Z' fill='%23737373'/></g><defs><clipPath id='clip0_2289_644'><rect width='42' height='42' fill='white'/></clipPath></defs></svg>");
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.swal2-close:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.swal3-confirm {
    background-color: green !important;
    color: white !important;
}

.swal3-cancel {
    background-color: green !important;
    color: white !important;
    border: 1px solid green !important;
}

.swal3-popup {
    border: 2px solid green !important;
}

.swal3-title {
    color: green !important;
    border-bottom: 2px solid green;
    display: inline-block;
    padding-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
}

.swal4-confirm {
    background-color: green !important;
    color: white !important;
}

.swal4-cancel {
    background-color: white !important;
    color: green !important;
    border: 1px solid green !important;
}

.swal4-popup {
    border: 2px solid green !important;
}

.swal4-title {
    color: green !important;
    display: inline-block;
    padding-bottom: 5px;
    margin-top: 35px;
    font-size: 18px;
    font-weight: 700;
}

.swal4-hr {
    border: 0;
    height: 2px;
    background-color: green;
    margin: 10px 0;
}

.full-row {
    width: 100%;
}

.excel-showing-result-container {
    width: 100%;
    justify-content: end;
}

.excel-showing-result {
    display: flex;
    justify-content: end;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 10px;
}

.excel-heading {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.excel-left-content {
    display: flex;
    align-items: center;
}

.excel-search-date-form {
    display: flex;
    align-items: center;
    gap: 10px;
    /* width: 70%; */
    justify-content: space-around;
}

.excel-right-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.my-excel-right-content {
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 600px) {
    .excel-heading {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .excel-heading h4 {
        margin-bottom: 12px;
    }
}

.excel-heading h4 {
    color: #008f3a;
    font: var(--body-fonts);
    font-size: 20px;
    font-weight: 600;
}

.excel-right-content {
    display: flex;
    align-items: center;
}

.my-excel-right-content {
    display: flex;
    align-items: center;
}

.excel-heading span {
    font: var(--body-fonts);
    margin-right: 10px;
    color: #008f3a;
    font-size: 20px;
    font-weight: bolder;
}

.excel-icon {
    width: 30px;
    height: 30px;
}

.excel-table-container {
    overflow-x: auto;
}

.excel-table {
    width: 100%;
    border-collapse: collapse;
    /* table-layout: fixed; */
}

.excel-table th,
.excel-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.excel-table th {
    background-color: #f2f2f2;
    color: #737373;
    font-size: 16px;
    font-weight: 700;
    text-align: start;
}

.excel-table tr {
    color: #737373;
    font-size: 15px;
    font-weight: 600;
}

.excel-table td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.excel-table td.scrollable {
    overflow: auto;
    white-space: nowrap;
}

.excel-table tr:hover {
    background-color: #008f3a;
    color: white;
}

.col-large {
    width: 20%;
}

.col-mid {
    width: 17%;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.admin-search-button {
    margin-left: 0px;
    padding: 6px 20px;
    background-color: #008f3a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.admin-search-button:hover {
    background-color: #007a32;
}

.excel-search-date-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

.date-picker {
    padding: 5px;
    position: relative;
    width: 220px;
    height: 34px;
    color: #00af01;
    border: #d9d9d9;
    text-align: center;
    background-color: #d9d9d9;
    font-weight: 600;
}

.date-picker::-webkit-calendar-picker-indicator {
    filter: invert(35%) sepia(58%) saturate(2000%) hue-rotate(70deg)
        brightness(90%) contrast(90%);
}

.date-picker-container {
    padding-left: 4px;
    padding-right: 4px;
    position: relative;
}

/* .date-picker-container::after {
    content: '\f073';
    font-family: 'FontAwesome';
    color: green;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
} */

.assign-container {
    padding-top: 20px;
    padding-bottom: 20px;
}

.assign-heading {
    color: #008f3a;
    text-align: left;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.assign-form .form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.assign-form .form-group {
    flex: 1;
    padding: 10px;
}

.assign-form .form-group.col-md-6 {
    width: calc(50% - 20px);
}

.assign-form .form-group.col-md-6:first-child {
    margin-right: 20px;
}

.assign-form .form-group.col-md-6:last-child {
    margin-left: 20px;
}

.assign-form .form-group.text-center {
    width: 100%;
    padding-top: 20px;
    justify-content: center;
    align-items: center;
}

.assign-form select {
    width: 200px;
    padding: 6px;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #737373;
}

.assign-form .form-group.select-group {
    flex: 1;
    padding: 10px;
}

.assign-form .form-control {
    border: 1px solid #737373;
    background-color: #ffffff;
}

.assign-form .form-group.select-group select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.assign-form select option {
    color: #737373;
}

.assign-form select {
    color: #737373;
}

.assign-form .btn-primary {
    width: 100%;
    background-color: #158b35;
    font-weight: 700;
    border-radius: 0;
    margin-top: 40px;
    max-width: 150px;
}

@media (max-width: 768px) {
    .excel-heading {
        flex-direction: column;
        /* Stack items vertically */
        align-items: flex-start;
        /* Align items to the start */
    }

    .excel-left-content,
    .excel-right-content {
        width: 100%;
        /* Full width for small screens */
        margin-bottom: 10px;
        /* Space between sections */
    }

    .my-excel-right-content {
        /* width: 100%; */
        /* Full width for small screens */
        margin-bottom: 10px;
        /* Space between sections */
    }

    .excel-search-date-form {
        flex-direction: column;
        align-items: flex-start;
    }

    .date-picker-container {
        margin-right: 0;
        margin-bottom: 5px;
        margin-top: 5px;
    }
    #end-date {
        margin-left: 20px;
    }
    .date-picker {
        width: 220px;
        height: 40px;
    }
    .admin-search-button {
        align-self: flex-start;
        margin-left: 65px;
        margin-bottom: 20px;
    }
}

.admin-terms-row {
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-inline: 60px;
    justify-content: flex-start;
    align-items: flex-start;
}

@media (max-width: 600px) {
    .admin-terms-row {
        padding-inline: 10px;
    }
}

.admin-terms-row input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    margin-top: 2px;
    height: 18px;
}

.admin-terms-row label {
    font-size: 14px;
    color: #737373;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
}

.admin-terms-row label span {
    margin-left: -24px;
    text-indent: 24px;
}

.aggregator-swal-title {
    margin-top: 30px;
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 2px solid #008f3a;
    color: #008f3a;
}

.aggregator-swal-text {
    color: #737373;
}

.aggregator-swal-button-1 {
    background-color: #008f3a;
    /* color: white;  */
}

.aggregator-swal-button-1:hover {
    background-color: #006c2b;
}

.cod-form-group {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.cod-form-group label {
    font-size: 24px;
    font-weight: 600;
    color: #008f3a;
}

.cod-admin-input {
    padding: 10px;
    border-radius: 0;
    /* width: 60%; */
    border: 1px solid #ccc;
}

.cod-admin-button {
    padding: 10px 36px;
    border: none;
    border-radius: 0px;
    background-color: #008f3a;
    color: #fff;
    cursor: pointer;
}

.cod-admin-button:hover {
    background-color: #006a29;
}

@media (max-width: 600px) {
    .cod-form-group {
        flex-direction: column;
        align-items: flex-start;
        width: 80%;
    }

    .cod-admin-input,
    .cod-admin-button {
        width: 100%;
    }
}

.cod-center-container {
    margin-left: 40px;
    background-color: #f0f2f1;
    overflow-x: auto;
    width: 95%;
    border-radius: 22px;
    box-shadow: 8px 8px 8px 0px rgba(45, 45, 45, 0.25);
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
    justify-content: space-around;
}

@media (max-width: 1024px) {
    .cod-center-container {
        width: 100%;
        margin-inline: 40px;
    }
}

@media (max-width: 600px) {
    .cod-center-container {
        margin-inline: 10px;
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        margin-inline: 0px;
        padding-bottom: 20px;
    }
}

.cod-table-wrapper {
    display: block;
    width: 100%;
    /* overflow-x: auto; */
    margin: 10px;
}

.cod-table {
    width: 1400px;
    border-collapse: collapse;
    table-layout: fixed;
}

.cod-table th,
.cod-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    box-sizing: border-box;
}

.cod-table th {
    color: #737373;
    font-size: 16px;
    font-weight: 700;
}

.cod-table td {
    color: #737373;
    font-weight: 600;
    font-size: 14px;
}

.cod-table td:last-child,
.cod-table th:last-child {
    color: #008f3a;
    font-weight: 700;
    font-size: 16px;
    text-decoration: underline;
}

.cod-table tr {
    width: 100%;
}

.cod-table thead {
    width: 100%;
}

.cod-table tbody {
    width: 100%;
}

.cod-col-1 {
    width: 11.5%;
}

.cod-col-2 {
    width: 20%;
}

.cod-col-3 {
    width: 14%;
}

.cod-col-4 {
    width: 10%;
}

.cod-col-5 {
    width: 11.5%;
}

.cod-col-6 {
    width: 25%;
}

.cod-col-7 {
    width: 8%;
}

.cod-table tbody tr:nth-child(odd) {
    background-color: #d3d3d3;
}

.greycontent-box {
    width: 100%;
    height: 100vh;
    padding-bottom: 400px;
    background-color: #e6e8e7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grey-container2 {
    background-color: #e6e8e7;
    box-shadow: 5px 10px 8px 5px #888888;
    padding-left: 40px;
    padding-top: 20px;
    border-radius: 20px;
    width: 600px;
    height: 450px;
    display: flex;
    margin-top: 500px;
    margin-bottom: 100px;
    flex-direction: column;
}

@media (max-width: 400px) {
    .grey-container2 {
        width: 100%;
        padding-left: 8px;
    }
}

.k-text-font {
    font-size: large;
    color: #1a9135;
    font-weight: 700;
    margin-bottom: 14px;
    margin-top: 20px;
    line-height: 18px;
}

/* radio button */

.k-form-check-label {
    font-size: 18px;
    color: #737373;
    font-weight: 700;
    line-height: 13px;
}

.k-form-check {
    margin-bottom: 35px;
    margin-left: 30px;
}

.k-radio-color {
    accent-color: green;
}

.k-btn-yellow {
    background-color: #94c11f;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    width: 140px;
    height: 40px;
}

.k-btn-green {
    background-color: green;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    width: 140px;
    height: 40px;
}

.k-btn-yellow:hover {
    background-color: green;
    color: white;
}

.cod-tabs {
    margin-top: 50px;
    width: 50%;
    display: flex;
    margin-left: 100px;
    justify-content: space-evenly;
    overflow-x: auto;
}

.cod-tab-btn {
    color: #008f3a;
    font-weight: 700;
    font-size: 20px;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #e6e8e7;
}

.cod-tab-btn.active {
    background-color: #008f3a;
    color: white;
}

@media (max-width: 768px) {
    .cod-tabs {
        margin-left: 0px;
        width: 100%;
        flex-direction: column;
        overflow-x: hidden;
    }

    .cod-tab-btn {
        width: 100%;
        text-align: left;
    }
}

.admin-item-container {
    width: 99%;
    align-items: center;
    justify-content: center;
}

.admin-item {
    width: 99%;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    gap: 136px;
    padding-inline: 150px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #737373;
}

.admin-first-item {
    width: 99%;
    padding-top: 0px;
    padding-bottom: 30px;
    display: flex;
    gap: 188px;
    padding-inline: 150px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #737373;
}

.admin-last-item {
    width: 99%;
    padding-top: 30px;
    padding-bottom: 0px;
    display: flex;
    gap: 150px;
    padding-inline: 150px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

@media (max-width: 700px) {
    .admin-item {
        margin-inline: 0px;
        gap: 0px;
        padding-inline: 0px;
        flex-direction: column;
        border-bottom: none;
    }

    .admin-last-item {
        margin-inline: 0px;
        gap: 0px;

        padding-inline: 0px;
        flex-direction: column;
        border-bottom: none;
    }

    .admin-first-item {
        padding-inline: 0px;
        margin-inline: 0px;
        gap: 0px;
        flex-direction: column;
        border-bottom: none;
    }

    .admin-label,
    .admin-value {
        text-align: center;
    }
}

.admin-label {
    min-width: 100px;
    font-weight: 600;
    font-size: 20px;
    color: #737373;
}

.admin-value {
    font-weight: 600;
    font-size: 20px;
    color: #737373;
    flex: 1;
}

.outer-date-container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    padding-top: 60px;
    background-color: #e6e8e7;
    display: flex;
}

.inner-container {
    color: #007a32;
}

.left-column,
.right-column {
    margin-bottom: 20px;
}

.left-column {
    width: 40%;
    margin-right: 20px;
    padding-top: 35px;
    text-align: center;
}

.left-column > p {
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 600;
}

.grey-box {
    width: 100%;
    padding-bottom: 20px;
    background-color: var(--body-color-two);
    box-shadow: 5px 5px 10px 2px #888888;
    margin-top: 10px;
    border-radius: 18px;
    padding-top: 6px;
}

.grey-box-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    font-size: 14px;
    margin-left: 20px;
    margin-right: 15px;
}

.grey-box-lable {
    font-weight: 600;
    color: #737373;
}

.divider {
    border: none;
    border-top: 2px solid var(--primary-orange);
    margin: 4px 0;
}

.right-column {
    width: 35%;
}

.k-green-button:hover {
    background-color: var(--primary-orange);
}

.k-green-button {
    width: 100%;
    height: 35px;
    background-color: #94c11f;
    color: white;
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    padding-left: 10px;
    font-weight: 700;
}

.col-heading {
    margin-top: 40px;
    margin-right: 10px;
}

.col-heading > h5 {
    color: var(--primary-orange);
    font-weight: 700;
}

.col-heading > a {
    color: var(--primary-orange);
    text-decoration: underline;
    font-weight: 700;
}

.col-heading > a > img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.contract-container {
    background-color: #e6e8e7;
    box-shadow: 6px 5px 5px 5px #888888;
    width: 100%;
    display: flex;
    padding-top: 20px;
    padding-bottom: 40px;
    margin-top: 20px;
    padding-inline: 20px;
    margin-bottom: 10px;
}

.first-date-technice {
    width: 50%;
    padding-right: 60px;
}

.backfromdata {
    display: flex;
    width: 100%;
    justify-content: end;
    align-content: end;
    margin-top: 20px;
}

.divider-vertical {
    border-left: 2px solid var(--primary-orange);
    height: 10px;
    margin: 0 10px;
}

.first-date-technice h4 {
    color: #008f3a;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}

@media (max-width: 768px) {
    .col-12056 {
        flex-direction: column;
    }

    .contract-container {
        padding: 4px;
        overflow-x: auto;
    }

    .left-column,
    .right-column {
        width: 100%;
        margin-right: 0;
    }

    .contract-container {
        flex-direction: column;
    }

    .first-date-technice {
        width: 100%;
        padding-right: 0px;
    }
}

.first-date-technice ul {
    list-style-type: disc;
    padding-left: 4px;
    padding-top: 18px;
}

.first-date-technice ul li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #737373;
    line-height: 22px;
    font-weight: 700;
}

.contor-table {
    width: 1280px;
    border-collapse: collapse;
    table-layout: fixed;
}

.contor-table thead {
    width: 100%;
}

.contor-table th {
    color: #0d8234;
    font-size: 16px;
    font-weight: 600;
}

.contor-table td {
    color: #737373;
    font-size: 12px;
    font-weight: 600;
    padding-top: 22px;
    padding-bottom: 22px;
}

.contor-col-1 {
    width: 9%;
}

.contor-col-2 {
    width: 10%;
}

.temp-list {
    margin-right: 20px;
}

@media (max-width: 350px) {
    .temp-list {
        margin-right: 0px;
    }
}

.contor-table tbody {
    width: 100%;
}

.contract-container {
    background-color: #e6e8e7;
    box-shadow: 6px 5px 5px 5px #888888;
    padding-left: 10px;
    padding-top: 20px;
    width: 100%;
    display: flex;
    margin-top: 20px;
    margin-bottom: 10px;
}

.data-container {
    margin-top: 2px;
    width: 100%;
    margin-right: 2px;
    margin-left: 2px;
}

.data-item-lable {
    font-weight: 600;
    color: #737373;
    padding: 15px 10px;
}

.data-item-value {
    font-weight: 700;
    color: #737373;
    padding: 15px 10px;
}

.left-data-item-value {
    font-weight: 600;
    color: #737373;
    max-width: 250px;
    padding: 15px 10px;
}

.data-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    width: 100%;
}

.left-data-item-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.left-data-item-list li {
    margin-left: 15px;
    padding: 2px 0;
}

.divider-vertical {
    border-left: 5px solid white;
    height: 50px;
    margin: 0 0px;
}

@media (max-width: 600px) {
    .data-item {
        flex-direction: column;
    }

    .divider-vertical {
        display: none;
    }

    .data-item-value {
        text-align: center;
    }

    .left-data-item-value {
        text-align: center;
    }

    .left-data-item-list li {
        margin-left: 0px;
    }
}

.left-section,
.right-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 0 10px;
    box-sizing: border-box;
}

.data-item:nth-child(odd) {
    background-color: #d3d3d3;
}

.data-item:last-child {
    border-bottom: none;
}

.data-text-field {
    flex: 1;
    margin-right: 10px;
    /* margin-left: 100px; */
    display: flex;
    align-items: center;
}
.errormessage {
    color: red;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    padding-top: 6px;
}

@media (max-width: 1400px) {
    .contract-container {
        padding: 2px;
        overflow-x: auto;
    }
    .footer .auto-container .widget-content a {
        color: #737373;
        font-size: 14px;
        font-weight: 600;
        padding-left: 8px;
    }
}

@media (max-width: 370px) {
    #end-date {
        margin-left: 0px;
    }
}
.fa-bar {
    width: 25px;
    height: 20px;
}

/* k add for pagination list scroll*/
.list-scroll-k {
    padding: 0;
    max-height: 170px;
    overflow-y: auto;
}
/* ////////////////////////////// */
#next a,
#prev a {
    cursor: pointer;
}
