@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*, body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}
a {
  text-decoration: none;
}
body {
    overflow-x: hidden;
}
body.rtl {
    direction: rtl;
}
input, select{
    outline: 0;
}
.login_btn {
    padding: 60px 0 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}
.log_in_btn, .send_reset_btn, .create_signup_btn, a.notice_back__btn, .create_project_btn a {
    background: #11f4f9;
    color: #00254b;
    padding: 10px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid #11f4f9;
    transition: all .3s ease;
    font-weight: 400;
}
.log_in_btn:hover, .send_reset_btn:hover, .create_signup_btn:hover, a.notice_back__btn:hover, .create_project_btn a:hover {
    background: #00254b;
    color: #fff;
    border: 1px solid #00254b;
    transition: all .3s ease;
}
.signup_btn, .create_account_btns .contact_us_btn, .notice_continue_btn {
    background: transparent;
    color: #00254b;
    border: 1px solid #00254b;
    padding: 10px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all .3s ease;
}
.signup_btn:hover, .create_account_btns .contact_us_btn:hover, .notice_continue_btn:hover {
    background: #00254b;
    color: #fff;
    border: 1px solid #00254b;
     transition: all .3s ease;
}
section.login_signup_section {
    background: url(../images/main_bg.png);
    min-height: 100vh;
    width: 100vw;
    background-size: cover;
    background-position: center center;
    overflow-x: hidden;
    background-attachment: fixed;
}
section.login_signup_section.signup_bg {
    background: url(../images/signup_bg.png);
    min-height: 100vh;
    width: 100vw;
    background-size: cover;
    background-position: center center;
    overflow-x: hidden;
    background-attachment: fixed;
}

.reminder_me label input {
    margin-right: 5px;
}
.login_header {
    margin: 0 auto;
    padding-top: 50px;
    text-align: center;
}
.login_header img {
    max-width: 160px;
    margin-bottom: 1rem;
}
.login_header h1 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 10px;
    font-weight: 600;
    color: #1C2B39;
}
.login_header p {
    color: #05294f;
    font-size: 16px;
    padding: 0 60px;
    line-height: 1.5;
    font-weight: 500;
}
.login_body {
    max-width: 390px;
    margin: 40px auto 0;
    background: #fff;
    padding: 60px 100px 30px;
    border-radius: 20px;
    box-shadow: 6px 6px 20px 11px #dddddd33;
    width: 100%;
}
.login_detail label, .reminder_me label {
    font-size: 16px;
    color: #1C2B39;
    font-weight: 400;
}
.login_body .login_detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
}
.login_detail input {
    padding: 7px 10px;
    border-radius: 10px;
    border: 1px solid #a4a4a4;
    font-size: 14px;
    color: #585858;
    font-weight: 400;
    width: 100%;
}
.reminder_me {
    margin-top: 15px;
    display: block;
}
.forgot_password a {
    color: #1d2431;
    font-size: 16px;
}
.forgot_password {
    text-align: center;
}
.login_body.forgot_password {
    padding: 60px 75px 41px;
    max-width: 430px;
    margin-bottom: 50px;
    margin-top: 50px;
}
.login_body.forgot_password input[type="text"] {
    max-width: 235px;
    width: 100%;
}
.login_body.forgot_password p {
    font-size: 16px;
    color: #1C2B39;
    margin-bottom: 35px;
}
.login_body.forgot_password .login_btn {
    padding: 80px 0 0px;
}
.sign_up_body {
    max-width: 800px;
    margin: 30px auto 0;
    background: #fff;
    padding: 47px 90px;
    border-radius: 20px;
    box-shadow: 6px 6px 20px 11px #dddddd33;
    width: 100%;
}
.sign_up_row .col_6 {
    width: 50%;
}

.sign_up_row {
    display: flex;
    gap: 55px;
}
.sign_up_detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 13px;
    align-items: center;
}
.sign_up_detail label {
    font-size: 16px;
    color: #1C2B39;
    font-weight: 400;
}
.sign_up_detail input {
    padding: 7px 10px;
    border-radius: 10px;
    border: 1px solid #a4a4a4;
    font-size: 14px;
    max-width: 220px;
    width: 100%;
    color: #585858;
    font-weight: 400;
    line-height: 1.3;
}
.sign_up_detail select {
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px solid #a4a4a4;
    font-size: 16px;
    max-width: 220px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="currentColor"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
    cursor: pointer;
    outline: 0;
}
.create_password p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 35px;
    color: #00254B;
    font-weight: 500;
}
.create_password {
    max-width: 400px;
    margin: 0 auto;
}
.sign_up_body hr {
    border-color: #dddddd2b;
    width: calc(100% - 40px);
    margin: 30px auto;
}
.accept_terms_me {
    text-align: center;
    margin-top: 20px;
}
.accept_terms_me label, .accept_terms_me label a {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
}
.create_account_btns a {
    display: block !important;
    min-width: 100px;
    text-align: center;
}
.create_account_btns {
    margin: 60px 0 0px;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    padding-bottom: 50px;
}

/*modal css*/
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 0px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0 0 0 / 30%); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 60px;
    /* width: 370px; */
    border-radius: 20px;
    position: relative;
}
.modal_body {
    display: flex;
    height: 100%;
}
/* The Close Button */
.close {
    color: #00254B;
    float: right;
    font-size: 28px;
    font-weight: 400;
    position: absolute;
    top: 10px;
    right: 15px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.notice_content {
    text-align: center;
}
.notice_content h3 {
    color: #00254B;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 600;
}
.notice_content p {
    font-size: 16px;
    line-height: 1.4;
    color: #00254B;
    font-weight: 400;
}
.new_file_project_hint {
    font-size: 15px;
    color: #585858;
    text-align: center;
    margin: 12px 0 20px;
    line-height: 1.5;
}
.new_file_project_hint strong {
    color: #00254B;
    font-weight: 600;
}
.accept_notice_btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 52px;
    gap: 25px;
}
/*end modal css*/
.my_project_header {
    background: #00254b;
    display: flex;
    justify-content: space-between;
    padding: 5px 30px;
    border-radius: 70px;
    align-items: center;
    /*margin-bottom: 70px;*/
    margin-bottom: 30px;
}
.left_header {
    display: flex;
    align-items: center;
    gap: 15px;
}
.left_header h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
    font-weight: 200;
}
.left_header h3 span {
    color: #00cbd5;
}
.right_header button svg {
    width: 20px;
    height: 20px;
}


section.dashboard_section {
    background: #f7fcfe;
    padding: 50px 0px;
}
.create_new_project {
    text-align: center;
    padding-top: 70px;
}
.create_new_project p {
    color: #071135;
    font-size: 16px;
    margin-bottom: 10px;
}
.create_project_btn a {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    margin-top: 60px;
    align-items: center;
    gap: 5px;
}
.create_project_btn a svg {
    width: 25px;
    height: 25px;
}
.right_header ul li:last-child {
    margin-bottom: 0;
}
.right_header ul li {
    list-style: none;
    margin-bottom: 10px;
}
.right_header ul {
    position: absolute;
    background: #fff;
    padding: 20px;
    box-shadow: 2px 3px 6px 0px #dddddd6e;
    border-radius: 5px;
    width: max-content;
    top: 46px;
}
.right_header {
    position: relative;
    cursor: pointer;
    display: flex;
    gap: 25px;
}
.right_header ul li a {
    display: block;
    width: 100%;
    text-align: start;
    color: #00254b;
    list-style: none;
    text-decoration: none;
}
.right_header ul li a span {
    color: #333;
}
.right_header button {
    margin: 0;
    color: #fff;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent!important;
    outline: 0;
    box-shadow: none;
    border: 0;
    cursor: pointer;
    font-weight: 400;
}
.right_header ul {
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
}
.profile_btn.active_profile ul {
    visibility: visible;
    opacity: 1;
    transition: all .3s ease;
    z-index: 99;
}

.create_new_project_body {
    max-width: 550px;
    margin: 60px auto 0;
    background: #fff;
    padding: 60px 130px;
    border-radius: 20px;
    box-shadow: 6px 6px 20px 11px #dddddd33;
    width: 100%;
}
.create_new_projects h3 {
    text-align: center;
    font-size: 20px;
    color: #00254b;
}
.create_new_project_detail select {
    padding: 10px 10px;
    border-radius: 10px;
    border: 1px solid #a4a4a4;
    font-size: 16px;
    max-width: 300px;
    width: 100%;
    appearance: none; /* Disable the default arrow */
    -webkit-appearance: none; /* For WebKit-based browsers */
    -moz-appearance: none; /* For Firefox */
    background-color: #fff;
    background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="currentColor"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    cursor: pointer;
    outline: 0;
}
.create_new_project_detail input, .create_new_project_detail textarea {
    padding: 10px 10px;
    border-radius: 10px;
    border: 1px solid #a4a4a4;
    font-size: 16px;
    max-width: 280px;
    width: 100%;
}

.create_new_project_detail input[type="checkbox"] {
    width: auto;
    max-width: none;
}

.create_new_project_detail label {
    font-size: 16px;
    color: #1C2B39;
}
.create_new_project_detail {
    display: flex;
    gap: 10px 20px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: fit-content;
}
.create_new_project_detail:last-child {
    margin-bottom: 0;
}
.create_new_project_detail {
    margin-bottom: 15px;
}
.create_new_project_body h2 {
    margin-bottom: 25px;
    font-size: 20px;
    color: #00254b;
}
.next_in_btn {
    background: #11f4f9;
    color: #00254b;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid #11f4f9;
    transition: all .3s ease;
    display: block;
    width: fit-content;
    margin: 0 auto;
}
.next_in_btn:hover {
    background: #00254b;
    border: 1px solid #00254b;
    color: #fff;
    transition: all .3s ease;
}
.next_btn {
    text-align: center;
    margin-top: 25px;
}


/*accordian table*/

.list-card {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}
.list-title {
  font-size: 24px; font-weight: 700; color: #212121; margin-top: 0;
  margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #eeeeee;
}

.accordion-item {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}
.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    padding: 16px 35px 16px 27px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    border: 0;
    background: transparent;
    outline: none;
}
.dashboard_list_head {
    padding: 0 80px;
    display: flex;
    margin-bottom: 14px;
}
.accordion-icon {
    width: 24px;
    height: 24px;
    fill: #00254b;
    flex-shrink: 0;
    margin-left: 0;
    transition: transform 0.3s ease;
}
.accordion-button[aria-expanded='true'] .accordion-icon {
  transform: rotate(90deg);
}
.accordion-content {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out;
  color: #555; font-size: 15px; line-height: 1.6;
}
.accordion-content p {
  padding-bottom: 16px;
}

.product_date {
    text-align: end;
}
.project_heading, .product_date {
    padding: 0 0px;
    width: 30%;
    text-align: center;
}
.dashboard_list_head .product_date {
    text-align: right;
    padding-right: 30px;
    width: calc(30% - 30px);
}
span.project_name, span.date_created{
    width: 40%;
}
.project_customer {
    width: 20%;
    text-align: center;
}

.dashboard_list_head div a {
    color: #333;
}
.dashboard_list_head div svg {
    width: 17px;
    height: 12px;
}

.dashboard_list_head div {
    font-size: 14px;
    color: #00254B;
    font-weight: 400;
}
.dashboard_list_head  .project_heading {
    text-align: left;
    padding-left: 30px;
    width: calc(30% - 40px);
}
.dashboard_list_head .project_heading + .project_heading {
    padding-left: 0px;
    width: calc(20% - 0px);
    text-align: center;
}
.dashboard_list_head {
    padding: 0 50px;
    display: flex;
}
span.project_name {
    text-align: start;
    display: flex;
    align-items: center;
    gap: 10px;
}
span.customer_name {
    border-left: 0px solid #dddddd;
    border-right: 2px solid #dddddd;
    padding: 0 40px;
    width: 20%;
    text-align: start;
}

button.accordion-button.user-data span {
    font-size: 14px;
    padding-left: 5px!important;
    padding-right: 5px!important;
}
button.accordion-button.user-data span {
    font-size: 14px;
    padding-left: 5px!important;
    padding-right: 5px!important;
    /* height: -webkit-fill-available; */
}
span.project_name{
    border-right: 2px solid #dddddd;
}

span.date_created {
    text-align: end;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}
ul.project_lists li {
    text-decoration: none;
    list-style: none;
}

ul.project_lists {
    border-top: 1px dashed #ddd;
    padding: 10px 35px;
    display: flex;
}
li.list_project_name, li.list_project_date {
    width: 40%;
}
li.list_project_share {
    display: flex;
    gap: 15px;
}
li.list_project_share {
    display: flex;
    gap: 15px;
    width: 20%;
}
li.list_project_share a {
    color: #00254b;
    opacity: 0;
    transition: all .3s ease;
}
ul.project_lists:hover li.list_project_share a {
    opacity: 1;
    transition: all .3s ease;
}
.crete_new_calc {
    border-top: 1px dashed #ddd;
    padding: 10px 35px;
    display: block;
}
.crete_new_calc a {
    color: #00254b;
    list-style: none;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
}
.list_project_name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.project_settings_btn {
    width: auto;
    background-color: transparent;
    color: #00254b;
    outline: none;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    border: none;
}

[aria-label][tooltip-position] {
  position: relative;
  letter-spacing: 0.1rem;
}

[aria-label][tooltip-position]::before,
[aria-label][tooltip-position]::after {
  --scale: 0;
  position: absolute;
  font-size: 1rem;
  transition: transform 100ms;
  transition-timing-function: linear;
}

[aria-label][tooltip-position]:hover::before,
[aria-label][tooltip-position]:hover::after {
  --scale: 1;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.45, 1.93);
}

[aria-label][tooltip-position]::before {
    content: attr(aria-label);
    background-color: var(--tooltip-color);
    padding: 0.5em;
    border-radius: 7px;
    width: 130px!important;
    max-width: 119px!important;
    text-align: center;
    transform: scale(0);
    color: #fff;
    font-size: 12px!important;
    font-weight: 100;
}

[aria-label][tooltip-position]::after {
  content: "";
  border: var(--arrow-size) solid transparent;
}

[aria-label][tooltip-position]::before, [aria-label][tooltip-position]::after {
    --tooltip-color: #00254b;
    --arrow-size: 0.4rem;
    --scale: 0;
    z-index: 1;
    font-size: 1rem;
    transform: translate(var(--translate-x), var(--translate-y))
    scale(var(--scale));
}

/** Right  */

[aria-label][tooltip-position="right"]::before {
  --translate-x: calc(100% + var(--arrow-size));
  --translate-y: -50%;
  right: 0px;
  top: 50%;
  transform-origin: left center;
}

[aria-label][tooltip-position="right"]::after {
  --translate-x: calc(var(--arrow-size));
  --translate-y: -50%;
  right: 0px;
  top: 50%;
  border-right-color: var(--tooltip-color);
  transform-origin: left center;
}


.left_header .dropbtn {
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    margin: 0;
    background: transparent;
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 10px 0;
    font-weight: 500;
}
.left_header .dropbtn span {
    color: #00cbd5;
}

.left_header .dropdown {
  position: relative;
}

.left_header .dropdown-content {
    display: none;
    position: absolute;
    min-width: 200px;
    background: #fff;
    padding: 20px;
    box-shadow: 2px 3px 6px 0px #dddddd6e;
    border-radius: 5px;
}

.left_header .dropdown-content a {
    color: #00254b;
    padding: 12px 0px;
    text-decoration: none;
    display: block;
    font-size: 18px;
    font-weight: 500;
}


.left_header .dropdown:hover .dropdown-content {
  display: block;
}
.select_language select {
    font-size: 14px;
    padding: 4px;
    border-radius: 7px;
    background: #fff;
}

.select_language p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}
.select_language {
    position: absolute;
    display: flex;
    top: 20px;
    right: 30px;
    gap: 10px;
    align-items: anchor-center;
}
.my_project_form, .dashboard_list {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 30px;
}
section.dashboard_section {
    /* background: url(../images/dashboard.png); */
    min-height: 100vh;
    width: 100vw;
    background-size: cover;
    background-position: center center;
    overflow-x: hidden;
    background: linear-gradient(180deg, #f3fdff, #ffffff);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
section.dashboard_section > * {
    width: 100%;
    flex-shrink: 0;
}
.filter {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 80px;
    margin-bottom: 40px;
}
.filter h2 {
    font-size: 14px;
    font-weight: 400;
}
.filter select {
    padding: 8px 10px;
    border: 1px solid #B8B8B8;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="currentColor"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
    cursor: pointer;
    outline: 0;
    min-width: 200px;
}
.filter .date_calender input[type="date"] {
    padding: 8px 10px;
    border: 1px solid #B8B8B8;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    outline: 0;
    min-width: 150px;
    cursor: pointer;
}
.filter .date_calender input[type="date"]::-webkit-calendar-picker-indicator {
  background: url(../images/calender.png) no-repeat;
  background-position: right 0px center;
  background-size: contain;
}
.change_lang_div svg {
    width: 20px;
    fill: #fff;
}

.change_lang_div {
    display: flex;
    gap: 10px;
}
.change_lang_div select {
    /* border: 1px solid #fff; */
    border: none;
    padding: 5px;
    background: transparent;
    color: #fff;
    border-radius: 5px;
}
.change_lang_div select option {
    color: #000;
}
.sign_up_detail input#floatingPhoneInput {
    max-width: 220px;
}
/*end accordian table*/


/*responsive css*/
@media only screen and (max-width:767px) { 
.login_body {
    max-width: fit-content;
    margin: 40px 20px 40px;
    padding: 50px 30px 30px;
    width: 100%;
}
.login_body .login_detail {
    flex-wrap: wrap;
}
.login_detail input, .sign_up_detail input, .sign_up_detail select {
    width: 100%;
    margin-top: 10px;
    max-width: 100%;
}
.login_btn {
    gap: 15px;
}
.login_header p {
    padding: 0 20px;
}
.sign_up_body {
    max-width: fit-content;
    margin: 30px 20px 0;
    padding: 47px 20px;
    width: 100%;
}
.sign_up_row {
    gap: 20px;
    flex-wrap: wrap;
}
.sign_up_row .col_6 {
    width: 100%;
}
.sign_up_detail {
    flex-wrap: wrap;
}
.sign_up_detail label {
    width: 100%;
}
.accept_terms_me {
    padding: 0 20px;
}
.signup_btn, .create_account_btns .contact_us_btn, .notice_continue_btn {
    padding: 10px 20px;
}
.login_body.forgot_password {
    padding: 60px 20px 41px;
    max-width: fit-content;
    margin-left: 20px;
    margin-right: 20px;
}
.login_body .login_detail {
    flex-wrap: wrap;
    gap: 15px;
}
.login_body.forgot_password input[type="text"] {
    max-width: 100%;
    width: 100%;
}
section.dashboard_section {
    padding: 20px 0;
}
.change_lang_div {
    display: none;
}
.filter {
    flex-wrap: wrap;
}
.filter h2 {
    width: 100%;
}
.list-card {
    padding: 0 0px;
}
.dashboard_list_head {
    padding: 0;
}
.dashboard_list_head {
    display: none;
}
.accordion-button {
    padding: 10px 25px 10px 25px;
    flex-wrap: wrap;
}
span.customer_name {
    border-left: 0px solid #dddddd;
    border-right: 0px solid #dddddd;
    padding: 10px 0px;
    width: 100%;
    text-align: start;
}

span.project_name {
    border-right: 0px solid #dddddd;
}

span.project_name, span.date_created {
    width: 100%;
}
span.date_created {
    text-align: start;
    justify-content: space-between;
    gap: 10px;
}
ul.project_lists {
    flex-wrap: wrap;
}
li.list_project_name, li.list_project_date {
    width: 100%;
}
li.list_project_share {
    width: 100%;
}
.next_btn {
    margin-top: 30px;
}
.filter {
    padding-left: 0px;
}
}



@media only screen and (min-width:768px) and (max-width:991px) { 
.sign_up_body {
    max-width: fit-content;
    margin: 30px 20px 0;
    padding: 47px 90px;
    width: 100%;
}
.sign_up_row {
    flex-wrap: wrap;
}
.sign_up_row .col_6 {
    width: 100%;
}

}

@media only screen and (min-width:992px) and (max-width:1025px) { 

}
.filter .search {
    position: relative;
    display: inline-block;
}

.filter .search input[type="text"] {
    padding: 8px 30px 8px 10px; /* extra right padding for cross */
    border: 1px solid #B8B8B8;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    outline: 0;
    min-width: 150px;
}

.filter .search .clear-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #888;
    cursor: pointer;
    /* display: none; hidden until input has value */
}

/*end responsive css*/
.login_header.edit_profile_header {
    padding-top: 0;
}
.edit_profile_body {
    max-width: 630px;
    margin: 30px auto 0;
    background: #fff;
    padding: 47px 90px;
    border-radius: 20px;
    box-shadow: 6px 6px 20px 11px #dddddd33;
    width: 100%;
}
.edit_profile label {
    font-size: 16px;
    color: #1C2B39;
    font-weight: 400;
}
.edit_profile input {
    padding: 7px 10px;
    border-radius: 10px;
    border: 1px solid #a4a4a4;
    font-size: 14px;
    max-width: 360px;
    width: 100%;
    color: #585858;
    font-weight: 400;
    line-height: 1.3;
}
.edit_profile select {
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px solid #a4a4a4;
    font-size: 16px;
    max-width: 380px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="currentColor"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
    cursor: pointer;
    outline: 0;
}
.rtl .edit_profile select {
background-position: left 10px center;
}
.edit_profile {
    display: flex;
    justify-content: space-between;
    margin-bottom: 13px;
    align-items: center;
    width: 100%;
}
.save_profile_btn {
    background: #11f4f9;
    color: #00254b;
    padding: 10px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid #11f4f9;
    transition: all .3s ease;
    font-weight: 400;
}
.save_profile_btn:hover {
    background: #00254b;
    color: #fff;
    border: 1px solid #00254b;
    transition: all .3s ease;
}

.save_profile_btns {
    display: block;
    text-align: center;
    margin: 60px 0 30px;
}


.err_message p {
    background: #ffe6e6;
    border-bottom: 2px solid red;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.err_message {
    position: fixed;
    top: 123px;
    width: calc(100% - 60px);
    max-width: 1330px;
    margin: 0 auto;
    right: 0;
    left: 0;
    z-index: 31;
}

.success_message p {
    background: #c8f7c8;
    border-bottom: 2px solid green;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.success_message {
    position: fixed;
    top: 123px;
    width: calc(100% - 60px);
    max-width: 1330px;
    margin: 0 auto;
    right: 0;
    left: 0;
    z-index: 31;
}
span.edit_svg {
    position: relative;
}
span.edit_svg ul li a {
    color: #fff;
    font-size: 14px;
    list-style: none;
    text-decoration: none;
    padding: 5px;
    display: block;
}

span.edit_svg ul li {
    list-style: none;
}
span.edit_svg ul {
    position: absolute;
    right: auto;
    background: #00254b;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 1;
}
span.edit_svg:Hover ul {
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
}

/*end profile page*/
.master_heading {
    margin-bottom: 50px;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    color: #00254b;
}
.right_header .dropdown {
    position: relative;
    padding-top: 5px;
}
.right_header .dropdown-content {
    display: none;
    position: absolute;
    min-width: 200px;
    background: #fff;
    padding: 20px;
    box-shadow: 2px 3px 6px 0px #dddddd6e;
    border-radius: 5px;
}
.right_header .dropdown-content a {
    color: #00254b;
    padding: 12px 0px;
    text-decoration: none;
    display: block;
    font-size: 18px;
    font-weight: 500;
}
.right_header .dropdown:hover .dropdown-content {
  display: block;
  z-index: 50;
}
/* pagination css */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid #00254b;
    border-radius: 50px;
    color: #00254b;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    min-width: 40px;
    height: 40px;
    line-height: 1;
}

.pagination li a:hover {
    background-color: #00254b;
    color: #fff;
}

.pagination li.active a {
    background-color: #00254b;
    color: #fff;
    border-color: #00254b;
    border-radius: 50px;
}
/* Ensure each field + error stays grouped */
.edit_profile {
    margin-bottom: 18px;
    position: relative;
}

.edit_profile label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.edit_profile input,
.edit_profile select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Highlight invalid input fields */
.edit_profile input.is-invalid,
.edit_profile select.is-invalid {
    border-color: #d93025;
    background-color: #fff5f5;
}

/* Optional: highlight input box when there's an error */
input.is-invalid,
select.is-invalid {
    border-color: #d93025!important;
    background-color: #fff5f5;
}

.error_message {
    padding-left: calc(100% - 300px);
    color: red;
    font-size: 12px;
}
div#username-status {
    width: 100%;
    padding-left: calc(100% - 300px);
}

.alert.alert-danger {
    width: fit-content;
    background: #ff000070;
    color: #fff!important;
    padding: 8px 10px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-weight: 500;
    border-radius: 5px;
    border: 1px solid red;
    top: 8px;
    font-size: 14px;
}
.alert.alert-success {
    width: fit-content;
    background: #00800042;
    color: green!important;
    padding: 8px 10px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-weight: 500;
    border-radius: 5px;
    border: 1px solid green;
    top: 8px;
    font-size: 14px;
}

.customer_name.inactive .status_span {
    background: #dd0000;
    color: #fff;
    font-size: 13px;
    padding: 3px 8px;
    border-radius: 10px;
}
.customer_name.active .status_span {
    background: #006a00;
    color: #fff;
    font-size: 13px;
    padding: 3px 8px;
    border-radius: 10px;
}
.select2-container--default .select2-selection--multiple {
    position: relative;
    padding: 7px 10px 12px;
    border-radius: 10px;
    border: 1px solid #a4a4a4;
    font-size: 16px;
    max-width: 300px;
    width: 100%;
}
div#series-wrapper .select2-container {
    width: 300px!important;
}
div#series-wrapper span.select2.select2-container.select2-container--default.select2-container--above.select2-container--focus.select2-container--open span.select2-selection.select2-selection--multiple {
    border: 1px solid #ddd;
    padding: 5px 10px 9px;
}

.create_new_project_body.seperate-container {
    padding: 60px 60px;
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 30px;
}
.create_new_project_body.seperate-container h2 {
    flex: 0 0 100%;
}
.create_new_project_body.seperate-container .create_new_project_detail {
    width: calc(50% - 15px);
}
.create_new_project_body.seperate-container .create_new_project_detail#series-wrapper {
    width: calc(100% - 0px);
}
.create_new_project_body.seperate-container .create_new_project_detail#series-wrapper span.select2.select2-container.select2-container--default {
    width: calc(100% - 180px)!important;
}
.create_new_project_body.seperate-container .create_new_project_detail#series-wrapper .select2-container--default .select2-selection--multiple {
    max-width: 100%!important;
    height: 90px;
}
.row.value_data{
    max-width: 1130px;
    margin: 0 auto;
}
.project_body {
    max-width: 1190px;
    margin: 0 auto;
    border-radius: 16px;
}
.value_data.unit_value {
    border-radius: 16px;
}
.rtl .create_new_project_detail select {
    background-position: left 10px center;
}
.rtl .create_new_project_detail .select2-container .select2-search--inline .select2-search__field {
    text-align: right;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.dropdown-content.master-dropdown {
    max-height: 60vh;
    overflow-x: hidden;
    overflow-y: scroll;
}
.rtl .select_language {
    left: 30px;
    right: auto;
}
.resetbtn {
    background: #11f4f9;
    color: #00254b;
    padding: 8px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid #11f4f9;
    transition: all .3s 
ease;
    display: block;
    width: fit-content;
    cursor: pointer;
}

    .gauge-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gauge-bar {
        position: relative;
        width: 25px;
        height: 200px;
        border-radius: 6px;
        overflow: hidden;
        margin-right: 10px;
    }

    .gauge-gradient {
        width: 100%;
        height: 100%;
        /*background: linear-gradient(to top, #00b300, #ffff66, #ff0000);*/
        background: url(../images/liner_gradient.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .arrow {
        position: absolute;
        left: 1px;
        width: 10px;
        height: 0;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 12px solid #003366;
        transition: top 0.5s ease;
    }
    .gauge-labels div {
        font-size: 14px;
        font-weight: 500;
    }
    .gauge-labels {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 200px;
        color: #002244;
        font-weight: 600;
        text-align: left;
    }
.invalid-feedback
{
    color:red;
    display: none!important;
}
/* .error_message
{
    display:none!important;
} */

div#shareIcons button {
    padding: 0;
    width: 50px;
    height: 50px;
    margin: 0 7px;
}
.result_table tr td:first-child input {
    max-width: 100% !important;
    width: 100%;
    margin: 0;
}
.create_new_project_detail .select2-container--default .select2-selection--multiple {
    border-radius: 10px;
    cursor: pointer;
    padding-bottom: 10px;
    padding-right: 10px;
    padding-top: 10px;
}
.create_new_project_detail .select2-container .select2-search--inline .select2-search__field {
    margin-top: 0px;
    margin-left: 0px;
}

#relief_errors
{
    text-align: center;
    color:red
}
.calculate_div
{
        text-align: right;
    margin-top: 20px;
}
#textBox11
{
     text-align: center;
    color:red
}

@media only screen and (min-width: 992px) and (max-width: 1025px) {
.create_new_project_body.seperate-container {
    width: calc(100% - 120px);
}
}
small{
    margin-left: 40%;
}
table.list-grid tbody tr td:last-child {
            border-right: 1px solid #ddd;
            border-radius: 0 10px 10px 0;
        }
        table.list-grid tbody tr td:first-child {
            border-left: 1px solid #ddd;
            border-radius: 10px 0 0 10px;
        }
        table.list-grid tbody tr td {
            background: #fff;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
            padding: 15px 20px;
            min-width: fit-content;
            white-space: nowrap;
        }
        table.list-grid thead th {
            font-size: 13px;
            padding: 20px 20px;
            text-align: left;
            min-width: fit-content;
            white-space: nowrap;
            
        }
        .list-grid-table {
            max-width: 1200px;
            margin: 0 auto;
            overflow-x: scroll;
            min-height: fit-content;
            overflow-y: auto;
            height: 685px;
        }
        .list-grid-table::-webkit-scrollbar:horizontal {
        height: 0;
        width: 0;
        display: none;
        }

        .list-grid-table::-webkit-scrollbar-thumb:horizontal {
        display: none;
        }


.toggle_btn_style button span {
    width: 32px;
    height: 2px;
    display: block;
    background: #fff;
    transition: all .3s ease;
}
.create_new_projects h3{
        margin-bottom: 70px;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    color: #00254b;
}
.toggle_btn_style button {
    outline: none;
    border: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    width: 32px;
    background: transparent;
}
.toggle_btn_style button.active_button span.sec_line {
    display: none;
}
.toggle_btn_style button.active_button span.first_line {
    transform: rotate(45deg);
    position: relative;
    top: 6px;
    transition: all .3s ease;
}
.toggle_btn_style button.active_button span.third_line {
    transform: rotate(-45deg);
    position: relative;
    top: -2px;
    transition: all .3s ease;
}
#main_pipe_specific_id {
    max-width: 240px;
    width: 100%;
    margin: 0;
    text-align: left;
}
.accordion-button[aria-expanded="true"] .project_name svg {
    transform: rotate(90deg);
    transition: all .3s ease;
}
.accordion-button svg {
    transition: all .3s ease;
}
@media only screen and (min-width: 768px) {
    .toggle_btn_style{
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .right_header {
        display: none;
    }
    .my_project_header {
    position: relative;
}
.right_header.active_menu > * {
    width: 100%;
    padding: 5px 20px;
}

.right_header.active_menu {
    display: flex;
    position: absolute;
    background: #00254b;
    right: 0px;
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 30px 10px;
    max-width: 250px;
    top: 60px;
    z-index: 1;
}
.my_project_header {
    margin-bottom: 30px;
}
.master_heading {
    margin-bottom: 30px;
}
.create_new_project_body.seperate-container .create_new_project_detail {
    width: calc(100% - 0px);
}
.create_new_project_body.seperate-container {
    padding: 60px 20px;
    max-width: calc(100% - 40px);
}
.create_new_project_body.seperate-container .select2-container {
    width: 100%!important;
}
.create_new_project_detail select {
    max-width: 100%;
}
.create_new_project_body.seperate-container .create_new_project_detail#series-wrapper span.select2.select2-container.select2-container--default {
    width: calc(100% - 00px)!important;
}
.create_new_project_detail input {
    max-width: 100%;
    width: 100%;
}
.create_new_project_body.seperate-container .select2-container--default .select2-selection--multiple {
    max-width: 100%;
    width: 100%;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.filter {
    padding-left: 0;
    justify-content: center;
}
.list-card {
    padding: 0 10px;
}
.create_new_project_body.seperate-container .create_new_project_detail {
    width: calc(100% - 0px);
}
.create_new_project_body.seperate-container {
    padding: 60px 20px;
    max-width: calc(100% - 40px);
}
.create_new_project_body.seperate-container .select2-container {
    width: 100%!important;
}
.create_new_project_detail select {
    max-width: 100%;
}
.create_new_project_body.seperate-container .create_new_project_detail#series-wrapper span.select2.select2-container.select2-container--default {
    width: calc(100% - 00px)!important;
}
.create_new_project_detail input {
    max-width: 100%;
    width: 100%;
}
.create_new_project_body.seperate-container .select2-container--default .select2-selection--multiple {
    max-width: 100%;
    width: 100%;
}
}

@media only screen and (min-width: 992px) and (max-width: 1025px) {
    .create_new_project_detail span.select2.select2-container.select2-container--default {
        max-width: 300px;
    }
    .create_new_project_body.seperate-container .create_new_project_detail#series-wrapper span.select2.select2-container.select2-container--default {
    width: calc(100% - 135px)!important;
    max-width: 100%!important;
}
.create_new_project_detail label {
    max-width: calc(100% - 325px);
}
}



@media only screen and (max-width: 767px) {
.row.value_data.unit_value .value_data_box {
    width: calc(100% - 0px);
}
.row.value_data.unit_value .value_data_select {
    position: relative;
    padding-right: 0;
}
.row.value_data {
    margin: 0 15px;
    padding: 16px 20px;
    flex-wrap: wrap;
}
.col-9 {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
}
.col-3 {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    text-align: right;
}
.value_data h3 span {
    margin-left: 0;
    width: 100%;
    display: block;
    margin-top: 10px;
}
.value_data_field .value_data_left, .value_data_field .value_data_right {
    width: calc(100% - 0px);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
    align-content: flex-start;
}
.pump_image {
    width: calc(100% - 50px);
    border: 1px solid #b8b8b8;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    right: 4px;
    margin: 0 auto!important;
}
.project_body {
    max-width: 1230px;
    margin: 0 15px;
}
.project_body .row.value_data.for_value_row {
    margin: 0;
}
ul.opration_data_img {
    width: calc(100% - 0px);
    flex-wrap: wrap;
    margin-top: 40px;
}
ul.opration_data_img li {
    width: 100%;
}
.remark_box {
    padding: 0 30px;
}
.remark_box {
    flex-wrap: wrap;
    gap: 10px;
}
.result_table table {
    width: max-content;
}
.result_table {
    overflow: scroll;
}
.result_table .table_first_heading {
    width: 280px;
}
.col-5 {
    max-width: calc(100% - 0px);
    flex: 0 0 100%;
    width: 100%;
}
.opration_data {
    padding: 20px 15px;
}
.value_data_box {
    flex-wrap: wrap;
}
.value_data_box label {
    width: 100%;
    margin-bottom: 10px;
}
.value_data_select {
    width: 100%;
}
.value_data_box select {
    width: 100%;
}
.value_data h3 {
    gap: 0px 14px;
    flex-wrap: wrap;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row.value_data.unit_value .value_data_box {
    width: calc(50% - 10px);
}
.row.value_data.unit_value .value_data_select {
    position: relative;
    padding-right: 0;
}
.row.value_data {
    max-width: 1130px;
    margin: 0 15px;
    padding: 10px 15px;
    flex-wrap: wrap;
}
.col-9 {
            max-width: 60%;
        width: 60%;
        flex: 0 0 60%;
}
.col-3 {
    max-width: 30%;
    width: 30%;
    flex: 0 0 30%;
    text-align: right;
}
.value_data h3 span {
    margin-left: 0;
    width: 100%;
    display: block;
    margin-top: 10px;
}
.value_data_field .value_data_left, .value_data_field .value_data_right {
    width: calc(100% - 0px);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
    align-content: flex-start;
}
.pump_image {
    width: calc(100% - 50px);
    border: 1px solid #b8b8b8;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    right: 4px;
    margin: 0 auto!important;
}
.project_body {
    max-width: 1230px;
    margin: 0 15px;
}
.project_body .row.value_data.for_value_row {
    margin: 0;
}
ul.opration_data_img {
    width: calc(100% - 0px);
    flex-wrap: wrap;
    margin-top: 40px;
}
ul.opration_data_img li {
    width: calc(50% - 30px);
}
.remark_box textarea {
    width: 100%;
}
.remark_box {
    padding: 0 30px;
}
.remark_box {
    flex-wrap: wrap;
    gap: 10px;
}
.result_table table {
    width: max-content;
}
.result_table {
    overflow: scroll;
}
.result_table .table_first_heading {
    width: 280px;
}
.col-5 {
    max-width: calc(100% - 0px);
    flex: 0 0 100%;
    width: 100%;
}
.opration_data {
    padding: 20px 15px;
}
}
.dashboard_list .filter {
    padding-left: 50px;
}
.modal_body .create_new_project_detail input {
    max-width: 320px;
}
div#shareIcons {
    display: flex;
    max-width: 340px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
div#shareIcons button.notice_continue_btn {
    width: fit-content;
    height: 50px;
    margin: 0;
    background: #F5F5F5;
    border: 0;
    padding: 10px 32px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    color: #00254B;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
}
div#shareIcons button.notice_continue_btn:hover {
    color: #00254B;
}
div#shareIcons button.notice_continue_btn svg {
    width: 18px;
    height: 18px;
}
#SuccessModal h4, #FileExportModal h4 {
    font-weight: 400;
    margin-bottom: 26px;
    color: #00254B;
    font-size: 16px;
}
#series-wrapper .error_message {
    text-align: center;
    padding: 0;
    width: 100%;
}
#series-wrapper small{
    margin-left: 0;
    text-align: center;
    width: 100%;
}
.value_data.unit_value ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    margin-left: 20px;
}
.value_data.unit_value ul li {
    font-size: 14px;
    list-style: none;
    position: relative;
    color: #585858;
}
.value_data.unit_value ul li:before {
    content: '';
    background: #585858;
    width: 1px;
    height: 20px;
    position: absolute;
    right: -10px;
    top: -1px;
    opacity: .3;
}
.value_data.unit_value ul li:last-child::before {
    display: none;
}
table#pipedatafrm3 tr td p span:before {
    content: '';
    width: 11px;
    height: 11px;
    position: absolute;
    background: transparent;
    border-radius: 50px;
    outline: 1px solid #585858;
    left: -22px;
    top: 4px;
}
table#pipedatafrm3 tr td p input:checked + span:before {
    background: #585858;
}
table#pipedatafrm3 tr td p input {
    width: 11px;
    margin-right: 12px;
    z-index: 99;
    position: relative;
    opacity: 0;
    cursor: pointer;
}
table#pipedatafrm3 tr td p span{
    position: relative;
}

.close_accordian span.unit_hading_span {
    opacity: 0;
    transition: all .3s ease;
}
span.unit_hading_span {
    opacity: 1;
    transition: all .3s ease;
}


ul.dropdown_menu li {
    list-style: none;
    text-decoration: none;
}

ul.dropdown_menu {
    position: absolute;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0px 31px 31px 0px #87878717;
    max-width: 380px;
    width: 380px;
    z-index: 99;
}
ul.dropdown_menu li a {
    padding: 10px;
    font-size: 16px;
    color: #585858;
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    border-radius: 6px;
}
ul.dropdown_menu li a {
    padding: 10px;
    font-size: 16px;
    color: #585858;
    display: flex;
    align-items: center;
    gap: 9px;
    width: calc(100% - 20px);
    border-radius: 6px;
}
ul.dropdown_sub_menu {
    position: absolute;
    right: -400px;
    top: 0;
}
ul.dropdown_menu li a:hover {
    background: #eeeeee;
}
ul.dropdown_sub_menu {
    right: -400px;
    top: -10px;
    position: absolute;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0px 31px 31px 0px #87878717;
    max-width: 360px;
    width: 100%;
}
ul.dropdown_menu > li > a {
    justify-content: space-between;
}
ul.dropdown_menu {
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
}
ul.dropdown_menu.active_dropdown {
    visibility: visible;
    opacity: 1;
    transition: all .3s ease;
}
ul.dropdown_sub_menu {
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
}
li.dropdown_inner.active_dropdown_inner ul.dropdown_sub_menu {
    visibility: visible;
    opacity: 1;
    transition: all .3s ease;
}
a.active_anchor {
    background: #eee;
}
.change_lang_div svg {
    display: none;
}
.save_btn.new_save_generate {
    background: #fff;
    border: 1px solid #00254b;
}
.row.value_data.for_value_row h3 {
    gap: 0 25px;
    margin-bottom: 15px;
}
.row.value_data.for_value_row h3 span a {
    margin-right: 7px;
    position: relative;
    top: 1px;
}
@media only screen and (max-width: 767px) {
   .dashboard_list .filter {
        padding-left: 0px;
    } 
    .dashboard_list .filter select, .dashboard_list .filter input, .dashboard_list .filter > div {
        width: 100%;
        display: flex;
    }
    span.unit_hading_span {
        display: none!important;
    }
    .value_data_field.value_deta_detail .value_data_box select {
        width: 100%;
    }
    ul.dropdown_menu {
        left: 0;
        width: calc(100% - 20px);
    }
    .left_header .dropdown {
        position: unset;
    }
    ul.dropdown_sub_menu {
        right: 0px;
        position: relative;
        box-shadow: none;
        border: 1px solid #eee;
        margin: 10px 0;
        visibility: hidden;
        opacity: 0;
        transition: all .3s ease;
        height: 0;
        padding: 0;
        margin: 0!important;
    }
    li.dropdown_inner.active_dropdown_inner ul.dropdown_sub_menu {
        padding: 10px;
        height: 100%;
        margin: 10px 0!important;
        max-width: calc(100% - 20px)!important;
    }
    ul.dropdown_sub_menu li a {
        padding: 0;
    }
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
.dashboard_list .filter {
    padding-left: 10px;
}
.value_data.unit_value ul li {
    font-size: 12px;
}
span.unit_hading_span {
    display: none!important;
}
.value_data h3 {
    gap: 0 14px;
    flex-wrap: wrap;
}
.left_header .dropdown {
    position: unset;
}
ul.dropdown_menu li a {
    font-size: 13px;
    gap: 6px;
}
ul.dropdown_menu {
    max-width: 310px;
    width: 310px;
    left: 40px;
}
ul.dropdown_sub_menu {
    right: -330px;
}
}
.align_center {
text-align: center;
}
.body_heading_right.bottom_btns.no_shadow {
    padding: 0;
    box-shadow: none;
}
.rtl .value_data.unit_value h3:before {
    left: 0;
    right: auto;
}
.rtl .value_data.unit_value h3:after {
    left: 5px;
    right: auto;
}
.rtl .value_data.unit_value ul {
    margin-left: 0;
    direction: ltr;
    margin-right: 20px;
}
.rtl .row.value_data.for_value_row h3 span a {
    margin-right: 0;
    margin-left: 7px;
}
.rtl table#pipedatafrm3 tr td p span:before {
    right: -22px;
    left: auto;
}
.rtl #main_pipe_pressure_rating, .rtl #main_pipe_nominal_diameter {
    background-position: 6% 50%;
    text-align: right;
}
.rtl .result_table table tr td:first-child input {
    text-align: right;
}
.rtl table#pipedatafrm3 tr td p input {
    margin-right: 0;
    margin-left: 12px;
}
.mt-15
{
    margin-top: 15px;
}
#remarks
{
    max-width: 758px;
    margin: 0 auto;
}
.validationerr textarea
{
    border: 1px solid red!important;
    color: red!important;
}
#valve_size_multiple, #relief_valve_size 
{
    padding: 3px 5px;
}

ul.dropdown_menu li.dropdown_inner {
    position: relative;
}

ul.dropdown_menu li.dropdown_inner {
    position: relative;
}
.my_project_header .left_header img {
    width: 34px;
    margin-bottom: -3px;
}

@media only screen and (max-width: 767px) {
    .right_header {
        gap: 5px;
    }
    ul.dropdown_sub_menu li a {
        padding: 0;
    }
    .left_header ul.dropdown_menu ul.dropdown_sub_menu li {
        padding: 10px 0;
    }
    .edit_profile_body, .create_new_project_body {
        max-width: calc(100% - 60px);
        padding: 30px!important;
    }
    .edit_profile {
        flex-wrap: wrap;
    }
    .edit_profile label {
        width: 100%;
    }
    .edit_profile input, .edit_profile select {
        width: calc(100% - 0px);
    }
    .my_project_header {
        padding: 5px 15px;
    }
}


.value_data h3 {
    width: 100%;
    cursor: pointer;
    margin: 0;
    position: relative;
}
.value_data_row {
    flex-wrap: nowrap;
    display: flex;
}
.row.value_data.value_data_row_outer {
    flex-wrap: wrap;
}
.row.value_data.value_data_row_outer .col-12 {
    width: 100%;
}

.row.value_data.value_data_row_outer {
    border-radius: 16px;
    background: #fff;
    margin-bottom: 12px;
    gap: 10px;
}

.row.value_data.value_data_row_outer h3:before {
    content: '';
    position: absolute;
    width: 13px;
    height: 2px;
    background: #000;
    right: 0;
    top: 9px;
}
.row.value_data.value_data_row_outer h3:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 13px;
    background: #000;
    right: 5px;
    top: 4px;
    opacity: 1;
    transition: all .3s ease;
}
.row.value_data.value_data_row_outer h3.close_accordian:after {
    opacity: 0;
    transition: all .3s ease;
}

.row.value_data.value_data_row_outer ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    margin-left: 20px;
}
.row.value_data.value_data_row_outer ul li {
    font-size: 14px;
    list-style: none;
    position: relative;
    color: #585858;
}
.row.value_data.value_data_row_outer ul li:before {
    content: '';
    background: #585858;
    width: 1px;
    height: 20px;
    position: absolute;
    right: -10px;
    top: -1px;
    opacity: .3;
}
.row.value_data.value_data_row_outer ul li:last-child::before {
    display: none;
}
.row.value_data.value_data_row_outer h3 span{
    opacity: 1;
    transition: all .3s ease;
}
.row.value_data.value_data_row_outer h3.close_accordian span {
    opacity: 0;
    transition: all .3s ease;
}
.row.value_data.value_data_row.value_data_row_outer .value_data_row {
    gap: 20px;
}
@media only screen and (max-width: 767px) {
    .row.value_data.value_data_row_outer h3 span {
        opacity: 0;
        transition: all .3s ease;
        display: none;
    }
    .row.value_data.value_data_row.value_data_row_outer .value_data_row {
        flex-wrap: wrap;
        gap: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row.value_data.value_data_row_outer h3 span {
        display: none !important;
    }
}

ul.calculation_dropdown_menu{
     max-width: 320px;
    width: 320px;
}

ul.calculation_dropdown_menu > li > a {
    justify-content: flex-start;
}

.user_heading, .user-column {
    padding: 0 20px;
    width: 30%;
}

.user_heading{
    width: 45%;
}

.user_date_created{
    width: 28% !important;
}

.user_name{
    padding: 0px 20px !important;
}

.series-name{
    width: 36% !important;
    text-align: center !important;
    padding: 0px 5px !important;
    border-left: 2px solid #dddddd !important;
    border-right: 2px solid #dddddd !important;
}

.status-name{
    width: 15% !important;
    border-left: none !important;
}

.roles-name{
    border-right: none !important;
    width: 15% !important;
}

/* Column header + filter shared background */
.dashboard_list_head.user_list_heads:not(.user_filter_row) {
    background: #edf2f7;
    border-radius: 8px 8px 0 0;
    padding: 10px 20px 6px 20px !important;
    margin: 0 51px !important;
    box-sizing: border-box;
}
/* Column filter row */
.user_filter_row {
    background: #edf2f7;
    border-bottom: 1px solid #d4dde6;
    border-radius: 0 0 8px 8px;
    padding: 0 20px 8px 20px !important;
    min-height: auto !important;
    margin: 0 51px 14px 51px !important;
    box-sizing: border-box;
}
/* Shared separators for header + filter rows */
.dashboard_list_head.user_list_heads > div + div {
    border-left: 2px solid #d4dde6;
}
.user_filter_row > div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
}
.user_filter_row .user_heading .column-filter {
    margin-left: 0;
    width: calc(100% - 6px);
}
.user_filter_row .column-filter {
    width: calc(100% - 12px);
    min-width: 0;
    margin: 0 6px;
    padding: 5px 8px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 12px;
    background: #fff;
    color: #333;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.user_filter_row .column-filter::placeholder {
    color: #9ca8b5;
    font-size: 11px;
    letter-spacing: 0.02em;
}
.user_filter_row .column-filter:hover {
    border-color: #b8c6d4;
}
.user_filter_row .column-filter:focus {
    border-color: #076FB3;
    box-shadow: 0 0 0 2px rgba(7,111,179,0.10);
    background: #fff;
}
/* Highlight active filters */
.user_filter_row .column-filter.is-active {
    border-color: #076FB3;
    background: #f0f7fc;
}
/* Clear filters button */
.clear-filters-btn {
    background: #11f4f9;
    border: 1px solid #11f4f9;
    color: #00254b;
    font-size: 12px;
    cursor: pointer;
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.clear-filters-btn:hover {
    background: #0dd5d9;
    border-color: #0dd5d9;
}
/* Pagination count */
.pagination-count {
    font-size: 13px;
    color: #585858;
    padding: 8px 0;
}
.user_filter_row select.column-filter {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2300254B' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 7px center;
    background-size: 10px 6px;
    padding-right: 22px;
}

.user-data{
    padding: 16px 20px 16px 20px !important;
}

.login_info_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00254b;
    cursor: pointer;
    margin-right: 8px;
}
.login_info_icon svg {
    display: block;
}

.login_info_icon[aria-label][tooltip-position]::before {
    content: attr(data-tooltip);
    font-weight: 700 !important;
    line-height: 1.7;
    max-width: 245px !important;
    min-width: 218px;
    padding: 10px 12px;
    text-align: center;
    white-space: pre-line;
    width: auto !important;
}


.filter-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.filter-section .page-title {
    font-size: 28px;
    font-weight: 600;
    color: #00254B;
    margin: 0;
}

.filter-section .export-button {
    padding-right: 50px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}


[aria-label][tooltip-position="top"]::before {
  --translate-x: 50%;
  --translate-y: calc(-100% - var(--arrow-size));
  right: 50%;
  top: 0;
  transform-origin: bottom center;
}

[aria-label][tooltip-position="top"]::after {
  --translate-x: 50%;
  --translate-y: calc(-1 * var(--arrow-size));
  right: 50%;
  top: 0;
  border-top-color: var(--tooltip-color);
  transform-origin: bottom center;
}

.user-edit-dropdown ul{
    flex-direction: column;
    text-align: left;
}

.user-edit-dropdown ul li a{
    text-wrap-mode: nowrap;
}

.create_new_project_body.seperate-container .create_new_project_detail#basic-series-wrapper{
    width: calc(100% - 0px);
}

.create_new_project_body.seperate-container .create_new_project_detail#basic-series-wrapper input{
    max-width: none;
    width: calc(100% - 204px);
}

.create_new_project_detail  .input-block{
    max-width: 302px;
    width: 100%;
}

.sign_up_detail .input-block{
    max-width: 220px;
    width: 100%;
}

.login_detail .input-block{
    max-width: 223px;
    width: 100%;
}

.edit_profile .input-block{
    max-width: 382px;
    width: 100%;
}


.create_new_project_detail .admin-permission-checkbox {
    max-width: none;
    width: auto;
}

.create_new_project_detail #access_country_ids + .select2-container--default{
    width: 100% !important;
}

.footer-disclaimer{
    margin: auto auto 0px auto;
    padding: 40px 16px 10px;
    font-size:14px;
    text-align:center;
    color:#333;
    max-width: 600px;
    width: 100%;
}
.footer-links{
    margin-top: 8px;
}
.footer-links a{
    color: rgb(51, 51, 51);
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;
    font-weight: bold;
}
.footer-links a:hover{
    text-decoration: underline;
}

.user-filter + .select2-container {
    min-width: 210px;
}
.user-filter + .select2-container .select2-selection--single {
    height: 33px;
    border-radius: 6px;
    padding: 1px 34px 7px 12px;
}
.user-filter + .select2-container .select2-selection__rendered {
    line-height: 28px;
    color: #585858;
    font-size: 14px;
}
.user-filter + .select2-container .select2-selection__arrow {
    height: 44px;
    right: 8px;
    top: 50% !important;
    transform: translateY(-50%);
}

.modal-content-xl{
    max-width: 700px;
    width: 100%;
}

.export-config-body{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.export-config-body .export-section{
    text-align: left;
}



.dashboard_list_head.user_list_heads > div {
    padding: 0;
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .dashboard_list_head.user_list_heads .user_heading {
        text-align: left;
        width: 22%!important;
        justify-content: flex-start;
    }

    .rtl .dashboard_list_head.user_list_heads .user_heading {
        text-align: right;
    }

    button.accordion-button.user-data span.project_name {
        width: 22%!important;
        text-align: left;
    }
    .dashboard_list_head.user_list_heads .user-column.user_country, button.accordion-button.user-data span.customer_name.user_name.user_country {
        width: 12%!important;
        text-align: center;
    }
    .dashboard_list_head.user_list_heads .user-column.user_phone, button.accordion-button.user-data span.customer_name.user_name.user_phone {
        width: 15%!important;
        text-align: center;
    }
    button.accordion-button.user-data span.customer_name.user_name.user_phone {
        display: block!important;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        min-width: 0;
        padding: 0 8px;
        height: 100%;
        line-height: inherit;
        cursor: pointer;
        border-right: 2px solid #dddddd!important;
    }
    .email-tooltip {
        position: fixed;
        background: #333;
        color: #fff;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        z-index: 9999;
        pointer-events: none;
    }
    .email-tooltip-hint {
        color: #aaa;
        font-size: 11px;
    }
    .dashboard_list_head.user_list_heads .user-column.user_role, button.accordion-button.user-data span.customer_name.user_name.roles-name {
        width: 10%!important;
        text-align: center;
    }
    .dashboard_list_head.user_list_heads .user-column.user_series, button.accordion-button.user-data span.customer_name.user_name.series-name {
        width: 15%!important;
        text-align: center;
    }
    .dashboard_list_head.user_list_heads .user-column.activety_user, button.accordion-button.user-data span.customer_name.user_name.status-name {
        width: 8%!important;
        text-align: center;
    }
    .dashboard_list_head.user_list_heads .user-column.user_date_created, button.accordion-button.user-data span.user_date_created.date_created {
        width: 16%!important;
        text-align: center;
    }
    span.customer_name {
        text-align: center;
        height: -webkit-fill-available;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    button.accordion-button.user-data span.customer_name.user_name.status-name span.status_span {
        height: fit-content;
    }
    .relation_master_btn button.accordion-button span {
        font-size: 13px;
    }
    .dashboard_list_head.relation_master_head .project_heading {
        width: calc(23% - 40px);
    }
}
@media only screen and (max-width: 767px) {
    button.accordion-button.user-data span {
        width: 100%!important;
        padding: 5px 0!important;
        border: 0!important;
        text-align: left!important;
    }
    .user_filter_row {
        display: none !important;
    }
}


/*about modal*/
.about_btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 14px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}
.about_btn:hover {
    background: rgba(255,255,255,0.15);
}
#logoanimation {
    font-size: 0;
    display: inline-block;
    line-height: 1.4;
    direction: ltr;
}
#logoanimation span {
    display: inline-block;
    white-space: nowrap;
    vertical-align: top;
    overflow: hidden;
    transition: 1s ease;
    width: 0;
    visibility: hidden;
    opacity: 0;
    font-size: 13px;
}
#logoanimation span.wletter {
    width: auto;
    visibility: visible;
    opacity: 1;
}
.poweredByAnchor {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.poweredByAnchor:focus #logoanimation span.white,
.poweredByAnchor:hover #logoanimation span.white,
#logoanimation:focus span.white,
#logoanimation:hover span.white {
    width: 27px;
    visibility: visible;
    margin-right: .2vw;
    opacity: 1;
}
.poweredByAnchor:focus #logoanimation span.web,
.poweredByAnchor:hover #logoanimation span.web,
#logoanimation:focus span.web,
#logoanimation:hover span.web {
    width: 17.1719px;
    visibility: visible;
    margin-right: .2vw;
    opacity: 1;
}
.poweredByAnchor:focus #logoanimation span.worx,
.poweredByAnchor:hover #logoanimation span.worx,
#logoanimation:focus span.worx,
#logoanimation:hover span.worx {
    width: 20px;
    visibility: visible;
    margin-right: .2vw;
    opacity: 1;
}
/*end about modal*/

/* Empty state — no projects */
.no-projects-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 0;
    text-align: center;
    gap: 12px;
}
.no-projects-greeting, .no-projects-message {
    color: var(--Dark-Blue, #00254B);
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Password toggle eye icon */
.password-wrapper {
    position: relative;
    max-width: 280px;
    width: 100%;
    padding: 0;
    border: none;
    margin: 0;
}
.password-wrapper input {
    padding-right: 40px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
}
.password-wrapper input[type="password"] {
    letter-spacing: 4px;
    -webkit-text-security: square;
}
.password-wrapper input[type="password"]::placeholder {
    letter-spacing: normal;
}
.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}
.login_detail .password-wrapper {
    max-width: 223px;
}
