@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;200;300;400;500;600;700&display=swap");

/* General Css */

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

h3 {
  margin-bottom: 15px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  /* background-color: #f8f8f8; */
  font-size: 18px;
  line-height: 24px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  color: #898989;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
  margin: 0;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  transition: ease-in-out 0.4s;
}

::selection {
  color: #707070;
  background-color: #f2f2f2;
}

a {
  transition: ease-in-out 0.4s;
  color: #000;
}

a:hover {
  text-decoration: none;
  color: #0973ba;
}

button:focus,
a:focus {
  outline: none;
}

.form-control:focus,
.btn.focus,
.btn:focus {
  box-shadow: none;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  padding-right: 20px;
  padding-left: 20px;
}

a {
  transition: ease-in-out 0.4s;
  cursor: pointer;
}

button {
  transition: ease-in-out 0.6s;
  cursor: pointer;
}

.blue-btn {
  background: #0673ba;
  color: #fff;
  font-weight: 600;
  border: 1px solid #0673ba;
}

.blue-btn:hover {
  background: #1f81c1;
  border: 1px solid #1f81c1;
  color: #fff;
}

.grey-btn {
  background: #f5f5f5;
  color: #0673ba;
  font-weight: 600;
  border: 1px solid #f5f5f5;
}

.grey-btn:hover {
  color: #1f81c1;
}

.min-width-160 {
  min-width: 160px;
  padding: 0 12px;
}

.min-width-300 {
  min-width: 300px;
  padding: 0 12px;
}

.height-40 {
  height: 40px;
  line-height: 36px;
}

.signup-section,
.stepper-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px 0;
}

.main-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  padding: 90px 80px 60px 80px;
}

.logo {
  margin-bottom: 30px;
}

.signup-inner > p,
.stepper-top > p {
  margin-bottom: 30px;
  width: 410px;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 18px;
  color: #898989;
}

.form-group input,
.form-group select {
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  height: 42px;
  padding: 0 16px;
  color: #898989;
  font-size: 18px;
}

.form-group select {
  padding: 0 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: url("../images/dropdown-arrow.svg") calc(100% - 12px) center
    no-repeat;
  cursor: pointer;
}

.form-group select::-ms-expand {
  display: none;
}

.form-main .btn {
  margin-top: 10px;
}

.form-check {
  padding-left: 0;
  margin-bottom: 20px;
  margin-top: 10px;
}

.calendar-icon {
  background: url("../images/calendar-icon.svg") calc(100% - 14px) center
    no-repeat;
}

.otp-main {
  display: flex;
  align-items: center;
}

.otp-input {
  display: flex;
}

.otp-main .btn {
  margin: 0 0 0 20px;
}

.opt-expire {
  display: block;
  width: 100%;
  margin: 20px 0 10px;
}

.form-group .otp-input input {
  width: 42px;
  padding: 0;
  text-align: center;
  margin-right: 8px;
}

.control-checkbox {
  display: block;
  position: relative;
  padding-left: 42px;
  cursor: pointer;
  text-align: left;
}

.control-checkbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control-indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 24px;
  width: 24px;
  background: #e6e6e6;
  cursor: pointer;
  text-align: left;
  border-radius: 4px;
}

.control-checkbox input:checked ~ .control-indicator {
  background: #0673ba;
}

.control-indicator::after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 7px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.control-checkbox input:checked ~ .control-indicator::after {
  display: block;
}

.control-checkbox a {
  color: #0673ba;
  text-decoration: underline;
  font-weight: 600;
}

.stepper-tab ul {
  position: relative;
}

.stepper-tab ul::after {
  content: "";
  height: 1px;
  background-image: linear-gradient(
    90deg,
    #707070,
    #707070 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 24px 10px;
  border: none;
  position: absolute;
  top: 33px;
  width: 100%;
  left: 0;
  z-index: 0;
}

.stepper-tab li {
  position: relative;
  z-index: 1;
}

.stepper-tab li a {
  position: relative;
  display: inline-block;
}

.stepper-tab li a.active::after {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}

.step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border-radius: 50%;
}

.step-icon img {
  filter: grayscale(100%);
}

.step-single h4 {
  font-size: 16px;
  color: #898989;
  margin-top: 16px;
  font-weight: 400;
}

.stepper-tab a.completed .step-icon {
  background: #fff;
}

.stepper-tab a.completed .step-icon img {
  filter: none;
}

.stepper-tab a.active .step-icon {
  background: #0673ba;
}

.stepper-tab a.active .step-icon i {
  color: #fff;
}

.stepper-tab a.active .step-single h4 {
  color: #0673ba;
  font-weight: 600;
}

.stepper-tab a.disabled {
  /* pointer-events: none; */
}

.stepper-content-main {
  margin-top: 5px;
}

.stepper-left h1,
.pan-info h5 {
  font-size: 24px;
  color: #696969;
  font-weight: 600;
  margin-bottom: 36px;
}

.pan-info h5 {
  margin-bottom: 16px;
}

.total-amount {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  margin: 30px 0;
}

.total-amount label,
.total-amount span {
  font-size: 20px;
  font-weight: 600;
  color: #696969;
}

.custom-radio {
  position: relative;
  margin-left: 0;
  width: 100%;
}

.payment-checkbox .custom-radio {
  width: 150px;
}

.custom-radio input[type="radio"] {
  /* opacity: 0; */
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  /* border-radius: 50%; */
}

.custom-radio label {
  cursor: pointer;
  width: 100%;
  padding-left: 36px;
  font-size: 18px;
  color: #898989;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 0;
  position: relative;
  float: left;
}

.custom-radio label::before {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  /* content: ""; */
  display: inline-block;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  border: 3px solid #cbcbcb;
  background: #fff;
  transform: translateY(-50%);
}

.custom-radio input[type="radio"] {
  margin: 0px;
}

.custom-radio input[type="radio"]:disabled + label {
  color: #898989;
}

.custom-radio input[type="radio"]:disabled + label:before {
  background-color: #0673ba;
}

.custom-radio input[type="radio"]:checked + label:before {
  border: 3px solid #0673ba;
}

.custom-radio input[type="radio"]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  display: inline-block;
  font-size: 11px;
  width: 11px;
  height: 11px;
  /* background-color: #0673BA; */
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  transform: translateY(-50%);
}

.stepper-form .btn {
  margin-top: 30px;
}

.plan-detail {
  border: 1px solid #ebebeb;
  padding: 26px 26px 22px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.plan-detail h3 {
  font-weight: 700;
  font-size: 20px;
  color: #0673ba;
}

.short-desc {
  font-size: 14px;
}

.plan-detail ul {
  margin: 8px 0 20px;
}

.plan-detail li {
  font-size: 16px;
  background: url("../images/list-checkbox.svg") left 6px no-repeat;
  padding-left: 25px;
  margin-top: 24px;
}

.link-btn a {
  text-decoration: underline;
  font-size: 16px;
  color: #0673ba;
  font-weight: 600;
}

.select-plan-price {
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #ebebeb;
  margin-top: 22px;
}

.select-plan-price .custom-radio {
  flex: 1;
}

.plan-price {
  text-align: right;
}

.plan-price span {
  font-size: 20px;
  color: #0673ba;
  font-weight: 600;
}

.plan-price small {
  font-size: 14px;
  line-height: 16px;
}

.sidebar-image {
  position: relative;
  right: 0;
  margin-top: -40px;
}

.sidebar-image img {
  max-width: calc(100% + 60px);
}

.pan-info {
  width: 305px;
  margin-left: 150px;
  margin-top: 40px;
}

.pan-info p a {
  color: #0673ba;
  font-weight: 600;
  text-decoration: underline;
}

.label-value {
  display: flex;
  flex-direction: column;
}

.single-label-value {
  display: flex;
  margin-bottom: 20px;
}

.single-label-value > label {
  width: 225px;
  font-weight: 600;
  font-size: 14px;
}

.single-label-value > span,
.single-label-value .form-check {
  flex: 1;
  margin: 0;
}

.infobox-single {
  margin-bottom: 30px;
}

.table-detail {
  max-width: 90%;
}

.upload-document th,
.proof {
  font-size: 18px;
  color: #898989;
  font-weight: 600;
}

.proof-detail {
  font-size: 18px;
  color: #898989;
  margin: 20px 0;
  max-width: 500px;
}

.upload-document tr {
  border-bottom: 1px solid #dcdcdc;
  padding: 1rem 0;
}

.b-none {
  border-bottom: unset !important;
}

.upload-document .table th,
.upload-document .table td {
  border-top: unset;
  border-bottom: unset;
  padding: 1rem 0;
}

.form-group small {
  font-size: 14px;
  color: #898989;
  margin-top: 5px;
  display: block;
}

.t-margin {
  vertical-align: bottom !important;
}

.t-margin .btn {
  margin-top: 0;
  margin-bottom: 46px;
}

.view-center,
.request-label {
  vertical-align: middle !important;
}

.view-center .btn {
  margin-top: 0;
}

.upload-documents-title,
.last-step,
.enquiry-form {
  font-size: 18px;
  color: #898989;
}

.image-unclear {
  display: flex;
  align-items: baseline;
  /* flex-wrap: wrap; */
  margin-top: 15px;
  font-size: 14px;
  color: #898989;
}

.image-unclear p {
  position: relative;
  top: -5px;
}

.image-unclear img {
  margin-right: 10px;
}

.image-unclear a {
  font-weight: 600;
  color: #0673ba;
  text-decoration: underline;
  margin-left: 5px;
}

.min-width-144 label {
  width: 144px;
  height: 24px;
  text-align: center;
  font-size: 14px;
  border-radius: 4px;
}

.light-pink label {
  background: #fff0f0;
  color: #e16666;
}

.light-orange label {
  background: #ffe7c8;
  color: #ff7701;
}

.light-green label {
  background: #eefff2;
  color: #18822e;
}

.v-middle {
  vertical-align: middle !important;
}

.last-step {
  margin-top: 20px;
}

.enquiry-form {
  max-width: 530px;
  margin-top: 20px;
}

.enquiry-form a {
  font-weight: 600;
  color: #0673ba;
}

.congratulation .container {
  max-width: 866px;
}

.congratulation .sidebar-image {
  right: 0;
  margin: 0;
  padding: 0 120px;
}

.congratulation .sidebar-image img {
  max-width: 100%;
}

.congratulation .main-box {
  padding: 30px 30px 40px 30px;
}

.cong-content {
  text-align: center;
}

.cong-content h1 {
  font-size: 24px;
  padding: 0 0 20px 0;
  font-weight: 600;
  color: #696969;
  margin-top: 20px;
}

.cong-content a {
  font-weight: 600;
  color: #0673ba;
  text-decoration: underline;
}

.cong-content a.btn {
  color: #fff;
  text-decoration: none;
}

.cong-content p {
  padding: 0 70px 30px;
}

.payment-checkbox .custom-radio2 {
  width: 50%;
}

.gray-btn {
  background: #f5f5f5;
  color: #0673ba;
  font-size: 16px;
  width: auto;
  margin-top: 30px;
  height: 40px;
  text-align: center;
  line-height: 40px;
}

.gray-btn a {
  color: #0673ba;
  font-weight: bold;
}

.mt-zero {
  margin-top: 0;
}

.mb-30 {
  margin-bottom: 30px;
}

.webcam-verification p {
  margin-bottom: 30px;
}

.random-number {
  width: 160px;
  height: 55px;
  line-height: 55px;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 600;
  color: #0673ba;
  text-align: center;
  margin-bottom: 30px;
}

.face-camera {
  width: 300px;
  height: 300px;
  border: 1px solid #707070;
  background: #f5f5f5;
  margin-bottom: 10px;
}

.e-sign-btn .btn,
.verified-documents .btn,
.continue-btn .btn {
  margin-top: 30px;
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-new2 {
  border: 2px solid #f1f1f1;
  cursor: pointer;
  color: #0673ba;
  background-color: #f1f1f1;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
}

.upload-btn-wrapper input[type="file"] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.payment-checkbox,
.payment-checkbox .custom-radio2 {
  width: 100%;
}

.payment-checkbox .custom-radio2 {
  padding-left: 6px;
}

.ml-2 {
  margin-left: -10px !important;
}

.ml-1 {
  margin-left: 8px !important;
}

.mb-11 {
  margin-bottom: 20px;
}
#go-back {
  display: none;
}

@media (max-width: 600px) {
  .ml-2 {
    margin-left: 8px !important;
  }

  #go-back {
    display: block;
  }
}

.upload-title,
.bank-documents-detail {
  border-bottom: 1px solid #dcdcdc;
  padding: 1rem 0;
}

.upload-document span,
.upload-document th,
.proof {
  font-size: 18px;
  color: #898989;
  font-weight: 600;
}

.bank-documents-detail .table-detail {
  max-width: 100%;
  padding-right: 30px;
}

.btn-status {
  display: flex;
  align-items: center;
}

.btn-status .btn {
  margin-left: 30px;
}

.file-upload input {
  display: none;
}

.file-value {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.file-value:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.uploaded-files-name .file-value {
  border: solid 1px #f1f1f1 !important;
  padding: 10px 10px 10px 20px;

  background: #f9f9f9;
}

.file-value-text {
  font-size: 16px;

  line-height: 22px;
  flex: 1;
}

.file-value-remove {
  cursor: pointer;
}

.ml-auto {
  margin-left: auto;
}
.mt-20 {
  margin-top: 34px;
  display: inline-block;
  margin-right: 10px;
}
.mt-20:hover {
  opacity: 0.5;
}
#mtn-20 {
  margin-top: 80px;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: transparent;
  opacity: 1;
  cursor: no-drop;
}
.uploaded-files-name {
  width: 31.5%;
  float: right;
}
.bluebg-dark {
  background: #ffe1e1;
}
.bluebg-light {
  background: #f2faff;
  margin-bottom: 2px;
}
.bluebg-dark .form-group,
.bluebg-light .form-group {
  margin-bottom: 0;
  margin-top: 10px;
}

/* Tab Container */
.account-setup-tabs,
.document-upload-tabs {
  margin-top: 30px;
}

/* Tab Navigation */
.setup-tabs,
.doc-tabs {
  border-bottom: 2px solid #e0e0e0;
  /* margin-bottom: 15px; */
  display: flex;
  justify-content: space-between;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.setup-tabs .nav-item,
.doc-tabs .nav-item {
  flex: 1;
}

.setup-tabs .nav-link,
.doc-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  color: #6c757d;
  text-decoration: none;
}

.setup-tabs .nav-link:hover:not(.disabled),
.doc-tabs .nav-link:hover:not(.disabled) {
  background-color: #f8f9fa;
  border-bottom-color: #dee2e6;
}

.setup-tabs .nav-link.active,
.doc-tabs .nav-link.active {
  color: #db202f;
  border-bottom-color: #db202f;
  font-weight: 600;
}

.setup-tabs .nav-link.completed,
.doc-tabs .nav-link.completed {
  color: #28a745;
}

.setup-tabs .nav-link.completed .tab-number,
.doc-tabs .nav-link.completed .tab-number {
  background-color: #28a745;
  color: white;
}

/* Checkmark for completed tabs */
.setup-tabs .nav-link.completed::after,
.doc-tabs .nav-link.completed::after {
  content: "\2713";
  position: absolute;
  top: 8px;
  right: 8px;
  background: #28a745;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.setup-tabs .nav-link.disabled,
.doc-tabs .nav-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Tab Number Badge */
.tab-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.setup-tabs .nav-link.active .tab-number,
.doc-tabs .nav-link.active .tab-number {
  background-color: #db202f;
  color: white;
  transform: scale(1.1);
}

/* Tab Label */
.tab-label {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* Tab Content */
.setup-tab-content,
.doc-tab-content {
  padding: 20px 0;
  min-height: 400px;
}

.setup-tab-content .tab-pane,
.doc-tab-content .tab-pane {
  animation: fadeIn 0.3s ease-in;
}

/* Tab Navigation Buttons */
.tab-navigation-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
  gap: 15px;
}

.tab-navigation-buttons .btn {
  min-width: 150px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.tab-navigation-buttons .btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
  color: white;
}

.tab-navigation-buttons .btn-secondary:hover:not(:disabled) {
  background-color: #5a6268;
  border-color: #545b62;
}

.tab-navigation-buttons .blue-btn {
  background: #007bff;
  color: white;
  border: none;
}

.tab-navigation-buttons .blue-btn:hover:not(:disabled) {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.tab-navigation-buttons .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for Tabs */
@media (max-width: 992px) {
  .setup-tabs,
  .doc-tabs {
    flex-wrap: wrap;
  }

  .setup-tabs .nav-item,
  .doc-tabs .nav-item {
    flex: 0 0 48%;
    margin-bottom: 10px;
  }

  .tab-label {
    font-size: 12px;
  }

  .tab-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* Replace/add these media queries in the signup CSS */

@media (max-width: 968px) {
  .main-box {
    padding: 30px;
  }

  /* Keep tabs in a row */
  .setup-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 4px;
  }

  .setup-tabs .nav-item {
    flex: 1;
    min-width: 0;
  }

  .setup-tabs .nav-link {
    padding: 10px 8px;
    flex-direction: column;
    align-items: center;
  }

  .tab-label {
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .tab-navigation-buttons {
    flex-direction: row;
    justify-content: space-between;
  }

  .tab-navigation-buttons .btn {
    min-width: unset;
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
  }

  .tab-navigation-buttons .btn span.btn-text {
    display: none;
  }

  .tab-navigation-buttons .btn-secondary::before {
    content: "\2190";
    font-size: 20px;
  }

  .tab-navigation-buttons .blue-btn::before {
    content: "\2192";
    font-size: 20px;
  }

  /* Override the old 968px rule that used content arrows differently */
  .tab-navigation-buttons .blue-btn::after {
    content: none;
  }
}

@media (max-width: 768px) {
  /* Keep tabs in a row (override the old wrap behavior) */
  .setup-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 4px;
  }

  .setup-tabs .nav-item {
    flex: 1;
    min-width: 0;
  }

  .setup-tabs .nav-link {
    padding: 10px 8px;
    flex-direction: column;
    align-items: center;
  }

  .tab-label {
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .tab-navigation-buttons {
    flex-direction: row;
    justify-content: space-between;
  }

  .tab-navigation-buttons .btn {
    min-width: unset;
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
  }

  .tab-navigation-buttons .btn span.btn-text {
    display: none;
  }

  .tab-navigation-buttons .btn-secondary::before {
    content: "\2190";
    font-size: 20px;
  }

  .tab-navigation-buttons .blue-btn::before {
    content: "\2192";
    font-size: 20px;
  }

  .tab-navigation-buttons .blue-btn::after {
    content: none;
  }
}

@media (max-width: 576px) {
  .setup-tabs .nav-item,
  .doc-tabs .nav-item {
    flex: 0 0 60%;
  }

  .setup-tabs .nav-link,
  .doc-tabs .nav-link {
    /* flex-direction: row; */
    justify-content: flex-start;
    padding: 12px 15px;
  }

  .tab-label {
    margin-left: 12px;
    font-size: 14px;
  }
}
