@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: 16px;
    color: #585858;
    font-weight: 400;
}
.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: 100px 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: rgba(0,0,0,0.2); /* 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;
}
.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;
}
.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 {
    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;
}

.create_new_project_body {
    max-width: 520px;
    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 {
    padding: 10px 10px;
    border-radius: 10px;
    border: 1px solid #a4a4a4;
    font-size: 16px;
    max-width: 280px;
    width: 100%;
}
.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;
}
.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: 190px;
}


/*accordian table*/

.list-card {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}
.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 35px;
    width: 40%;
}
span.project_name, span.date_created{
    width: 40%;
}
.project_customer {
    width: 20%;
}

.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 {
    padding: 0 80px;
    display: flex;
}
span.project_name {
    text-align: start;
    display: flex;
    align-items: center;
    gap: 10px;
}
span.customer_name {
    border-left: 2px solid #dddddd;
    border-right: 2px solid #dddddd;
    padding: 0 45px;
    width: 20%;
    text-align: start;
}
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-attachment: fixed;
}
.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;
    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;
}
.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, 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;
}
.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: 0px;
    background: #00254b;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}
span.edit_svg:Hover ul {
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
}

/*end profile page*/
.master_heading
{
    margin-bottom: 70px;
    text-align: center;
}
.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: block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #007bff;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.pagination li a:hover {
    background-color: #f1f1f1;
}

.pagination li.active a {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}
/* 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;
    background-color: #fff5f5;
}

.error_message {
    padding-left: calc(100% - 300px);
    color: red;
}
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);
}
.row.value_data, .project_body {
    max-width: 100%;
    margin: 0 50px;
}

.rtl .create_new_project_detail select {
    background-position: left 10px center;
}
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: 30px;
        height: 200px;
        border-radius: 6px;
        overflow: hidden;
        margin-right: 10px;
    }

    .gauge-gradient {
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, #00b300, #ffff66, #ff0000);
    }

    .arrow {
        position: absolute;
        left: 1px;
        width: 10px;
        height: 0;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 15px solid #003366;
        transition: top 0.5s ease;
    }

    .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;
}
