.wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
padding: 0 100px;
}

/*----------------Form Design----------------*/
#signup {
    height: auto;
    padding: 20px;
    background: rgba(255,255,255,0.95);
    position: relative;
    width: 100%;
     max-width: 100%;
    min-height: 80vh;
    border-radius: 20px;
}

  #fieldsets {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
display: block;
    line-height: 1.5;
}

.form-group .select-input {
    position: relative;
}

.form-group input, .form-group textarea, .form-group select, .form-group .select-input .input-field {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    height: 38px;
    font-size: 14px;
    color: #111;
}

.form-group .select-input .input-field {
    cursor: pointer;
}

.form-group .select-input ul {
    list-style: none;
    background: #fff;
    padding: 5px 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 1px solid #eee;
    border-radius: 10px;
    display: none;
    position: absolute;
    width: 100%;
    z-index: 1;
    max-height: 150px;
    overflow-y: auto;
}

.form-group .select-input ul li a{
    font-size: 14px;
    display: block;
    padding: 3px 10px;
    color: var(--text);
    text-transform: capitalize;
}

.form-group .select-input ul li a:hover{
    background: #f4f4f4;
}

.form-group .select-input .input-field {
    position: relative;
    text-transform: capitalize;
    font-size: 14px;
    color: #777;
    line-height: 1;
    background: #fff;
}

.form-group .select-input .input-field .fa-caret-down {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ddd;
    cursor: pointer;
}

  fieldset {
    border: none;
    position: absolute;
    width: 100%;
    padding: 10px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    opacity: 0;
    max-width: calc(100% - 40px);
    overflow-y: auto;
    height: calc(100% - 90px);
}
  fieldset.current {
    opacity: 1;
    z-index: 9;
  }
  fieldset.next {
    z-index: 8;
  }
  input[type="submit"] {
    display: none;
    border: none;
  }
  #section-tabs {
    height: 50px;
    position: relative;
    margin-top: -50px;
    margin-bottom: 50px;
    padding: 0;
    list-style: none;
    text-transform: uppercase;
}
  #section-tabs li {
    color: var(--text);
    cursor: not-allowed;
    border-left: 1px solid #aaa;
    text-decoration: none;
    padding: 0 6px;
    float: left;
    width: 25%;
    box-sizing: border-box;
    text-align: center;
    font-weight: 500;
    line-height: 30px;
    background: #eee;
    position: relative;
    font-size: 0.9rem;
}
  #section-tabs li span {
    color: #bababa;
  }
  #section-tabs li.active {
    color: #444;
    cursor: pointer;
  }
  #section-tabs li:after {
    content: "";
    display: block;
    margin-left: 0;
    position: absolute;
    left: 0;
    top: 0;
  }
  #section-tabs li.current {
    opacity: 1;
    background: #fff;
    z-index: 999;
    border-left: none;
  }
  #section-tabs li.current:after {
    border: 15px solid transparent;
    border-left: 15px solid var(--primary);
  }
/*
  input.error,
  textarea.error {
    border-color: #bf2424;
  }
  input.error:focus,
  textarea.error:focus {
    border-color: #bf2424;
  }
  label.error {
    margin-bottom: 20px;
  }
  input.valid {
    color: green;
  }
  label.valid {
    position: absolute;
    right: 20px;
  }
  input + .valid,
  textarea + .valid {
    display: none;
  }
  .valid + .valid {
    display: inline;
    position: absolute;
    right: 10px;
    margin-top: -36px;
    color: green;
  }*/
  .btn {
    border: none;
    padding: 8px;
    background: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    color: #fff;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-family: "Merriweather Sans", sans-serif;
  }
  .btn:hover {
    background: #26a19a;
  }
  

  .two-column {
    display: flex;
    flex-direction: column;
}

.two-column .column {
    flex: 1;
}

.two-column .column h2 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 10px;
}

.two-column .column h2 span {
    color: #777;
    font-size: 14px;
}

.btn-wrapper {
    margin-bottom: 15px;
    margin-top: -10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.btn-wrapper .remove {
    color: #d61919;
}

.btn-wrapper .add {
    color: #08b708;
}

.check-input {
    display: flex;
    background: #fff;
    padding: 15px;
    align-items: flex-start;
    gap: 10px;
   border: 1px solid #fff;
}

.form-group.error .check-input {
    border: 1px solid #ff0000;
}

.check-input input[type="checkbox"] {
    width: auto;
    height: auto;
    display: inline-block;
    position: relative;
    margin-top: 6px;
}
label span {
  font-size: 14px;
  color: red;
  margin-left: 2px;
}

.form-group.error input {
    border: 1px solid #ff0000;
}

.form-group span.error {
    position: absolute;
    bottom: -18px;
    font-size: 12px;
    color: #ff0000;
}

.admin-page {
  background: rgba(255,255,255,0.8);
  height: 100%;
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.admin-page .custom-table caption {
  background: var(--primary);
  padding: 15px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1px;
  caption-side: top;
  color: #fff;
  text-align: center;
}

.custom-table table {
  width: 100%;
}

.custom-table th,.custom-table td {
  padding: 10px 10px;
  text-align: left;
  font-size: 14px;
  white-space: nowrap;
}

.custom-table table thead tr {
  background: #eee;
}

.custom-table table thead tr th {
  text-transform: capitalize;
  font-weight: 600;
}

.admin-wrapper {
  padding-top: 50px;
}

.iti__country-list {
    top: 100%;
    left: 0;
    font-size: 14px;
    max-width: 240px;
    overflow-x: hidden;
    z-index: 9;
}

.iti__flag-container {
    z-index: 1;
}
.iti__arrow {
    position: absolute;
    top: 17px;
    left: 20px;
}

.item-list .item .btn-wrapper .add {
    display: none;
}

.item-list .item:last-child .btn-wrapper .add {
    display: block;
}

.item-list.no-remove .item .btn-wrapper .remove {
    display: none;
}

.thank-message {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    text-align: center;
    border: 1.5px solid green;
    color: #fff;
    width: max-content;
    margin: 0 auto;
    background: rgb(148 200 149);
    border-radius: 10px;
    display: none;
}

.thank-message h3 {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 16px;
    padding: 15px 50px;
}

body.login-page {
  background: #fff;
}

body.login-page:after {
  display: none;
}

body.login-page .form-wrapper {
  min-width: 500px;
  background: #eee;
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

body.login-page .form-wrapper input[type=submit] {
  background: var(--primary);
  color: #fff;
}


body.login-page .form-wrapper input[type=submit] {
  background: var(--primary);
  color: #fff;
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
}

body.login-page .form-wrapper h3 {
  text-align: center;
  font-size: 30px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 22px;
}

body.login-page .form-wrapper h3:after {
  content: "";
  width: 45px;
  height: 3px;
  background: var(--primary);
  display: block;
  margin: 6px auto;
}

.thank-page-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 70vh;
  justify-content: center;
  align-items: center;
}

.thank-page-wrapper h3 {
  text-transform: uppercase;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0px;
  background: -webkit-linear-gradient(#8fecc8, #1a837f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thank-page-wrapper h2 {
  font-size: 22px;
  font-weight: 600;
}

.thank-page-wrapper p {
  margin: 30px 0;
  max-width: 60%;
}

.thank-page-wrapper small {
  font-weight: 600;
  font-style: italic;
}

.admin-page .custom-table .row , .admin-page .custom-table .row > [class*="col"] {
  padding: 0;
  margin: 0;
}

.custom-table table thead tr th p {
  margin: 0;
}

.custom-table table thead tr th p a {
  color: #000;
  font-weight: 500;
  text-transform: capitalize;
}

.custom-table table thead tr th p a .fa-solid {
  font-size: 12px;
  margin-left: auto;
}

.custom-table td {
  max-width: 100px;
  text-overflow: ellipsis;
  overflow: hidden;
}

#clientList_length, #clientList_filter {
  padding: 10px;
  padding-bottom: 0;
  margin-bottom: -5px;
}

#clientList_info {
  padding: 10px;
}

#clientList_paginate {
  padding-right: 10px;
}

.custom-table td {
  padding-top: 5px;
  padding-bottom: 5px;
}

.custom-table table thead tr th input[type="search"] {
  border: 1px solid #ccc;
  padding: 0;
  font-size: 12px;
  padding-left: 5px;
}

.custom-table td .dn {
  display: block;
  text-align: center;
}

.form-group.text-upper input {
  text-transform: uppercase;
}

.page-header {
  text-align: center;
  margin-bottom: 20px;
  background: var(--primary);
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px;
}

a.logout {
  float: right;
  display: inline-block;
  margin-bottom: 5px;
  position: absolute;
  top: 10px;
  right: 35px;
  background: #000;
  color: #fff;
  border-radius: 10px;
  text-transform: capitalize;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 500;
}

.thank-page-wrapper img {
  width: 135px;
  margin-bottom: 20px;
}
.tax-note{
  font-size: 11px;
  padding-left: 40px;
}
.tax-note::before{
  content: "Note: ";
  font-weight: 600;
  position: absolute;
  left: 15px;
  font-style: italic;
}

[section=reference] .form-group span{
  display:none;
}
