.wordpress-accounting .top-head-content {
  margin-block: 40px;
}

.wordpress-accounting .top-head-content table {
  margin: 20px 0;
  border: 1px solid #c9c9c9 !important;
}

.wordpress-accounting .formStep-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  margin: 0 0 30px;
  background: #fff;
  z-index: 0;
}

.wordpress-accounting .formStep-container .step {
  --sepWidth: 40%;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background: var(--red);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wordpress-accounting .formStep-container .step:before {
  content: "";
  position: absolute;
  width: var(--sepWidth);
  height: 5px;
  background: var(--red);
  z-index: -1;
  border-radius: 10px;
}

.wordpress-accounting .formStep-container .step:after {
  position: absolute;
  top: 53px;
  font-weight: 600;
}

.wordpress-accounting .formStep-container #step1-indicator:after {
  content: "Client Details";
}

.wordpress-accounting .formStep-container #step2-indicator:after {
  content: "Add-On";
}

.wordpress-accounting .formStep-container #step3-indicator:after {
  content: "Payment Details";
}
.wordpress-accounting .formStep-container .step.active:before {
  background: var(--secondry-color);
}

.wordpress-accounting .step :is(svg, svg path) {
  fill: #fff;
}

.wordpress-accounting .step.active {
  background: var(--secondry-color);
}

.wordpress-accounting .step-form {
  box-shadow: unset !important;
  height: unset !important;
}

.wordpress-accounting .step-form :is(select, input, textarea) {
  border: 1px solid #c9c9c9;
  margin: 10px 0;
  padding: 10px;
  width: 100%;
  border-radius: 4px;
  font-size: 16px;
}

.wordpress-accounting .step-form select {
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px 40px 10px 10px;
}
.wordpress-accounting .phone-group {
  display: flex;
  border: 1px solid #c9c9c9;
  margin: 10px 0;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  font-family: sans-serif;
}

.wordpress-accounting .phone-group select,
.wordpress-accounting .phone-group input {
  border: none;
  outline: none;
  width: fit-content;
}

.wordpress-accounting .phone-group select {
  width: fit-content;
  margin: 0;
  background-color: #e4f2f2;
  border-radius: 0;
}

.wordpress-accounting .phone-group input {
  flex: 1;
  margin: 0;
}

.wordpress-accounting .phone-group input:focus {
  border: none !important;
}

.wordpress-accounting .phone-group:focus-within,
.contact-p select:focus {
  border-bottom: 1px solid var(--secondry-color) !important;
  outline: unset;
  transition: all 0.5s;
}


.dashboard-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-menu a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #0b6662;
  position: relative;
}

.dashboard-menu a.active {
  background: var(--red);
}

.dashboard-menu a.active::after {
  position: absolute;
  right: -5px;
  content: "";
  background: #fff;
  width: 10px;
  height: 10px;
  rotate: 45deg;
}

.dashboard .dashboard-content {
  background: #9999990f;
  padding: 20px;
  height: 100%;
}

.accountant-details,
.total-company {
  flex-direction: row !important;
  background: #fff;
  gap: 25px;
}

.accountant-details .counter-icon {
  margin: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.accountant-details .counter-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.dashboard-content.companies form {
  display: flex !important;
}

.dashboard-content form {
  display: unset !important;
}

.ml-auto {
  margin-left: auto !important;
}

.login-user:hover>ul {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}

.login-user .counter-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.login-user .counter-icon img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.dashboard .tableofcontent {
  position: sticky;
  top: 90px;
  overflow-y: auto;
}

.dashboard .tableofcontent .toc-body {
  overflow: hidden;
}

.login-user {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 20px;
  order: 5;
  position: relative;
  cursor: pointer;
}

.login-user:hover .submenu,
.submenu.show {
  visibility: visible;
  height: auto;
  opacity: 1;
}

.login-user .submenu {
  transition: all 0.3s;
  visibility: hidden;
  height: 0;
  opacity: 0;
  padding: 10px;
  position: absolute;
  right: 0px;
  top: 40px;
  z-index: 99;
  background: var(--white);
  box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
  width: 200px;
}

.menu-item a {
  color: var(--black);
  display: block;
  padding: 5px;
  font-size: 15px;
}

.menu-item a:hover {
  color: var(--secondry-color);
}

.wordpress-accounting .accordions {
    background: transparent !important;
    border: unset !important;
    padding: 0 !important;
    border-radius: 0 !important;
}
.wordpress-accounting .accordions details {
    padding: 10px;
    background: #f7f7f7;
    margin-bottom: 10px;
    border-radius: 0;
}
.wordpress-accounting .accordions summary {
    border:unset !important;
    padding:0 !important;
}
.wordpress-accounting .accordions summary:after {
    top: 0 !important;
}


.companies table tr:first-child th {
  text-align: center;
  font-weight: normal;
}

.companies table tbody tr,
.companies table tbody tr td {
  font-size: 14px;
}

.add-company .step-form :is(select, input, textarea) {
  margin-bottom: 0 !important;
}

.add-company .step-form :is(input[type="checkbox"], input[type="radio"]) {
  margin: 0 !important;
}
.person-wrapper .sub-seperator > span,
.partner-section .sub-seperator > span {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    order: 2;
}

.partner-section .sub-seperator > span:before ,
.person-wrapper .sub-seperator > span:before {
  width: 100px;
}

.add-company .wrapper.step-form {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.align-items-start {
  align-items: flex-start !important;
}

input[type="radio"],
input[type="checkbox"] {
  width: unset !important;
}

.wordpress-accounting .navigation :is(.page-numbers, .page-numbers.current) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fw-500 {
  font-weight: 600;
}

.txt-cap {
  text-transform: capitalize;
}

button {
  border: none;
  outline: none;
}

.remove-btn{
  background:none;
  color: red;  
}
.error-message {
  color: red;
  font-size: 13px;
}

.gap-20 {
  gap: 20px;
}

.gap-10 {
  gap: 10px;
}

.mt-5 {
  margin-top: 5px;
}

.pb-25 {
  padding-bottom: 25px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.row-gap-25 {
  row-gap: 25px;
}

.white-space {
  white-space: nowrap !important;
}

.row-gap-20 {
  row-gap: 20px;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

.hide {
  display: none !important;
}

.rotate-180 {
  rotate: 180deg;
}


.read-btn.submit-btn {
  margin-top: 0;
  margin-bottom: 0;
}

.gap-40 {
  gap: 40px;
}

label {
  font-weight: 600;
  font-size: 15px;
}

.m-0 {
  margin: 0 !important;
}

.mx-auto {
  margin: 0 auto !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.scrollable {
  overflow-x: auto;
}


.wrapper {
  background: #fff;
  padding: 20px;
}

.wrapper .heading {
  padding: 10px;
  background: #0b66623d;
}

.red {
  color: red;
}



@media screen and (min-width: 1024px) {
  .pr-0 {
    padding-right: 0 !important;
  }

  .pl-0 {
    padding-left: 0 !important;
  }

  .dashboard .toc-header {
    display: none;
  }

  .w-30 {
    width: 40% !important;
  }
}

@media screen and (max-width: 1024px) {
  .dashboard .tableofcontent .toc-header {
    background: var(--secondry-color);
    padding: 0 20px;
    color: #fff;
  }

  .dashboard .tableofcontent .toc-body {
    background: #e3e3e3;
    padding: 20px;
  }

  .dashboard-menu a.active::after {
    display: none;
  }

  .dashboard .toc-body.hidden {
    display: none;
  }

  .dashboard .arrow svg {
    fill: var(--white);
  }

  .dashboard-menu a {
    padding: 5px;
    font-size: 15px;
  }

  .dashboard .dashboard-content {
    background: transparent;
    padding: 0;
    margin-top: 20px;
  }

  .dashboard-content.companies .step-form {
    gap: 10px;
  }
}

@media screen and (min-width: 992px){
  .m-lg-0 {
    margin: 0 !important;
  }
}

@media screen and (max-width: 576px) {
  .wordpress-accounting .formStep-container .step:after {
    font-size: 13px;
  }

  .d-flex:has(.total) {
    flex-direction: column;
    gap: 30px;
  }

  .total {
    order: 1;
  }

  .read-btn.submit-btn {
    order: 2;
  }

  .dashboard-content.companies .step-form {
    flex-direction: column;
    gap: 20px;
  }

  .hide-md{
    display: none !important;
  }
   table tbody tr td {
    font-size: 14px;  
  }

  #stepThree .gap-40:has(#step3-prev){
    gap: 20px !important;
  }
  .d-flex.flex-column.gap-0{
    gap: 0 !important;
  }
}

@media screen and (max-width: 360px) {
  #accounting-logo img {
    height: 25px;
  }
}