@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  text-decoration: none;
  line-height: 1.5;
  overflow-x: hidden;
  background: #f8f9ff;
  color: #111827;
}

a {
  text-decoration: none;
}

ol,
ul {
  padding-left: 0rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0px;
}

/** Main container grid layout **/
.container {
  display: grid;
  grid-template-columns: 15.625rem auto;
  width: 100%;
  gap: 0rem;
  margin: 0 auto;
  background: #f8f9ff;
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

aside {
  background: #011530;
  height: 100vh;
  position: sticky;
  top: 0;
}
@media (max-width: 768px) {
  aside {
    position: fixed;
    background: var(--sidebar-bg);
    width: 15.625rem;
    z-index: 1111113;
    height: 100vh;
    display: none;
  }
}
aside .top {
  background: #fff;
  height: 5.563rem;
  border-bottom: 1px solid #d2d5da;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
@media (max-width: 768px) {
  aside .top {
    justify-content: space-between;
    border-right: 1px solid #edeff1;
  }
}
aside .top .close-sidebar {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border: 3px solid #dbeafe;
  border-radius: 30px;
  cursor: pointer;
  position: relative;
  left: 33px;
}
aside .top button {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}
@media (max-width: 768px) {
  aside .top button {
    display: block;
  }
}
aside .sidebar {
  border-right: 1px solid #d2d5da;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 1rem;
  overflow: auto;
  height: calc(100vh - 89px);
}
@media (max-width: 768px) {
  aside .sidebar {
    background: #011530;
  }
}
aside .sidebar::-webkit-scrollbar {
  width: 0.375rem;
}
aside .sidebar::-webkit-scrollbar-track {
  background: #d2d5da;
}
aside .sidebar::-webkit-scrollbar-thumb {
  background-color: #9ca3af;
}
aside .sidebar .divider {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0px;
}
aside .sidebar .divider .rect {
  width: 1.813rem;
  height: 1px;
  background: #4b5563;
}
aside .sidebar .divider span {
  font-size: 0.75rem;
  color: #4b5563;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.5rem;
  opacity: 40%;
}
aside .sidebar .links a,
aside .sidebar .links button {
  display: flex;
  color: #ffffff;
  margin-left: 0.563rem;
  margin-right: 0.563rem;
  gap: 0.875rem;
  align-items: center;
  position: relative;
  height: 3rem;
  transition: all 300ms ease;
  padding-left: 1rem;
}
aside .sidebar .links a h3,
aside .sidebar .links button h3 {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5rem;
}
aside .sidebar .links button {
  background: none;
  border: none;
  cursor: pointer;
}
aside .sidebar .links button h3 {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-family: "nexa-font", sans-serif;
}
aside .sidebar .links a.active {
  background: #ffb600;
  color: #011530;
  border-radius: 10px 0px 0px 10px;
  border-right: 4px solid #ffffff;
}

main {
  background: #f8f9ff;
  overflow-x: hidden;
}
main .topbar {
  height: 5.563rem;
  background: white;
  border-bottom: 1px solid #d2d5da;
  padding: 0 3.188rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  main .topbar {
    height: 89px;
    padding: 0 1rem;
  }
}
main .topbar #menu-btn {
  display: none;
}
@media (max-width: 768px) {
  main .topbar #menu-btn {
    display: inline-block;
    background: none;
    border: none;
    cursor: pointer;
  }
}
main .topbar .mobile-logo {
  display: none;
}
@media (max-width: 768px) {
  main .topbar .mobile-logo {
    display: block;
  }
}
main .topbar .welcome-message {
  display: block;
}
main .topbar .welcome-message h3 {
  color: #111827;
  font-size: 1.25rem;
  line-height: 170%;
  font-weight: 700;
}
main .topbar .welcome-message h6 {
  color: #111827;
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 300;
}
@media (max-width: 768px) {
  main .topbar .welcome-message {
    display: none;
  }
}
main .topbar .top-right {
  display: flex;
  align-items: center;
  gap: 3.75rem;
}
main .topbar .top-right .pos {
  background: #011530;
  height: 48px;
  width: 115px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  color: #ffb600;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  main .topbar .top-right .pos {
    display: none;
  }
}
main .topbar .top-right .options {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
main .topbar .top-right .options button {
  background: none;
  border: none;
  cursor: pointer;
}
main .main-container {
  min-height: 100vh;
  margin: 2.063rem 3.563rem;
}
@media (max-width: 768px) {
  main .main-container {
    margin: 0.688rem 1rem;
  }
}

.home-data-wrapper {
  background: #ffffff;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 1.25rem;
}
.home-data-wrapper .first-row-data {
  border-bottom: 1px solid #d2d5da;
}
.home-data-wrapper .first-row-data .data-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .home-data-wrapper .first-row-data .data-title {
    flex-direction: column;
    gap: 0.625rem;
  }
}
.home-data-wrapper .first-row-data .data-title .title h3 {
  font-size: 1.25rem;
  margin-bottom: none;
  color: #111827;
}
.home-data-wrapper .first-row-data .data-title .title p {
  font-size: 0.813rem;
  font-family: "Roboto", sans-serif;
  color: #4b5563;
}
.home-data-wrapper .first-row-data .data-title .data-switch-date {
  border: 1px solid #d2d5da;
  border-radius: 4px;
  display: flex;
  height: 30px;
}
.home-data-wrapper .first-row-data .data-title .data-switch-date button {
  background: none;
  border: none;
  border-right: 1px solid #d2d5da;
  padding: 0 0.413rem;
  cursor: pointer;
  font-weight: 400;
  color: #374151;
  font-size: 0.75rem;
}
.home-data-wrapper .first-row-data .data-title .data-switch-date button:first-child {
  border-radius: 4px 0px 0px 4px;
}
.home-data-wrapper .first-row-data .data-title .data-switch-date button:last-child {
  border: none;
  order-radius: 0px 4px 4px 0px;
}
.home-data-wrapper .first-row-data .data-title .data-switch-date button.active {
  background: #f3f4f6;
}
.home-data-wrapper .first-row-data .chart {
  margin-top: 1.25rem;
}
.home-data-wrapper .first-row-data .chart h4 {
  color: #6d7280;
}
.home-data-wrapper .second-row-data {
  padding-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .home-data-wrapper .second-row-data {
    grid-template-columns: 1fr;
  }
}
.home-data-wrapper .second-row-data .data-item {
  border-left: 1px solid #d2d5da;
  padding: 0rem 1.5rem;
}
@media (max-width: 768px) {
  .home-data-wrapper .second-row-data .data-item {
    border-left: none;
    border-bottom: 1px solid #d2d5da;
    padding: 1rem 0px;
  }
}
.home-data-wrapper .second-row-data .data-item:first-child {
  border: none;
  padding: 0px;
}
@media (max-width: 768px) {
  .home-data-wrapper .second-row-data .data-item:first-child {
    border-bottom: 1px solid #d2d5da;
  }
}
@media (max-width: 768px) {
  .home-data-wrapper .second-row-data .data-item:last-child {
    border: none;
  }
}
.home-data-wrapper .second-row-data .data-item .title {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  margin-bottom: 0.625rem;
}
.home-data-wrapper .second-row-data .data-item .content {
  margin-left: 20px;
}
.home-data-wrapper .second-row-data .data-item .content h2 {
  font-size: 1.575rem;
  color: #111827;
}
.home-data-wrapper .second-row-data .data-item .content span {
  font-size: 0.75rem;
  color: #4b5563;
}
.home-data-wrapper .second-row-data .title .circle {
  width: 10px;
  height: 10px;
  background: #f58e62;
  border-radius: 50px;
}
.home-data-wrapper .second-row-data .title .circle.blue {
  background: rgb(7, 111, 230);
}
.home-data-wrapper .second-row-data .title .circle.red {
  background: rgb(233, 7, 7);
}
.home-data-wrapper .second-row-data .title .circle.green {
  background: #08b39c;
}
.home-data-wrapper .second-row-data .title h5 {
  font-size: 0.875rem;
  color: #f58e62;
  font-family: "Roboto";
  font-weight: 400;
}
.home-data-wrapper .second-row-data .title h5.blue {
  color: rgb(7, 111, 230);
}
.home-data-wrapper .second-row-data .title h5.red {
  color: rgb(233, 7, 7);
}
.home-data-wrapper .second-row-data .title h5.green {
  color: #08b39c;
}

.card-wrapper {
  margin-top: 1rem;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #ffffff;
  width: 100%;
  padding: 1.5rem 1.25rem;
}

.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d2d5da;
  padding-bottom: 0.75rem;
}
.card-title .title {
  display: block;
}
.card-title .title h1 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 150%;
  color: #111827;
  font-family: "Inter", sans-serif;
}
@media (max-width: 768px) {
  .card-title .title h1 {
    font-size: 1.2rem;
  }
}
.card-title .title p {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 150%;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 768px) {
  .card-title .title p {
    font-size: 1rem;
  }
}
.card-title .options-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card-title .options-btn .add-new-customer {
  background: #ffb600;
  color: #011530;
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  font-family: "Roboto";
}
.card-title .options-btn .filter-btn {
  background: #011530;
  color: #ffffff;
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  font-family: "Roboto";
}

.report-card-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.125rem;
}
@media (max-width: 768px) {
  .report-card-wrapper {
    grid-template-columns: 1fr;
  }
}
.report-card-wrapper .report-card-item {
  background: #ffffff;
  height: 136px;
  border-radius: 8px;
  border: 1px solid #d2d5da;
  padding: 0.906rem 0.75rem;
  margin-top: 1rem;
}
.report-card-wrapper .report-card-item .head {
  display: flex;
  justify-content: space-between;
}
.report-card-wrapper .report-card-item .report-content {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  align-items: flex-end;
}
.report-card-wrapper .report-card-item .report-content .report-name {
  display: block;
}
.report-card-wrapper .report-card-item .report-content .report-name h5 {
  color: #1f2937;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 130%;
}
.report-card-wrapper .report-card-item .report-content .report-name h2 {
  color: #1f2937;
  font-size: 1.5rem;
  line-height: 150%;
  font-weight: 700;
}

.max-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
}
.max-table thead tr {
  background: #eff6ff;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
  font-size: 0.75rem;
  text-transform: uppercase;
  line-height: 130%;
  font-weight: 600;
}
.max-table th {
  padding: 0.75rem;
}
.max-table td {
  padding: 0.5rem 0.75rem;
}
.max-table td span.active {
  background: #dcfce7;
  border: 0.5px solid #22c55e;
  border-radius: 4px;
  padding: 0 1.094rem;
  color: #166534;
  font-weight: 400;
  font-size: 0.75rem;
}
.max-table td span.recieved {
  background: #dcfce7;
  border-radius: 4px;
  padding: 0 1.094rem;
  color: #166534;
  font-weight: 400;
  font-size: 0.75rem;
}
.max-table td span.paid {
  background: #dcfce7;
  border-radius: 4px;
  padding: 0 1.094rem;
  color: #166534;
  font-weight: 400;
  font-size: 0.75rem;
}
.max-table td button {
  background: none;
  border: none;
  cursor: pointer;
}
.max-table td .view-customers {
  color: #111827;
}
.max-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
  font-size: 0.875rem;
}

.onboarding-layout {
  display: flex;
  justify-content: center;
  align-items: center;
}
.onboarding-layout .form-wrapper {
  width: 450px;
  background: #ffffff;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-top: 80px;
  padding: 1.25rem;
  border-top: 2px solid #011530;
  margin-bottom: 1rem;
}
.onboarding-layout .form-wrapper .logo {
  display: flex;
  justify-content: center;
  margin-bottom: 0.625rem;
}
.onboarding-layout .form-wrapper .title {
  text-align: center;
  margin-bottom: 1.25rem;
}
.onboarding-layout .form-wrapper .title h3 {
  font-size: 1.475rem;
  color: #111827;
}
.onboarding-layout .form-wrapper .title p {
  font-weight: 300;
  font-size: 0.875rem;
  color: #374151;
}
.onboarding-layout .form-wrapper .form-box {
  margin-bottom: 1rem;
}
.onboarding-layout .form-wrapper .form-box label {
  display: block;
  font-size: 0.875em;
}
.onboarding-layout .form-wrapper .form-box input {
  height: 3rem;
  width: 100%;
  padding: 1rem;
  border: 1px solid #cfd0d4;
  background: #ffffff;
  border-radius: 5px;
  font-size: 1rem;
  color: #6e737f;
  font-weight: 400;
  line-height: 24px;
}
.onboarding-layout .form-wrapper .form-box select {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #cfd0d4;
  background: #ffffff;
  border-radius: 5px;
  font-size: 1rem;
  color: #6e737f;
  font-weight: 400;
}
.onboarding-layout .form-wrapper .form-btn {
  margin-top: 0.625rem;
}
.onboarding-layout .form-wrapper .form-btn button {
  background: #ffb600;
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  height: 48px;
  cursor: pointer;
  color: #011530;
  font-weight: 500;
  font-family: "Roboto";
  font-size: 0.875rem;
}

.customer-info-wrapper {
  display: flex;
  gap: 2rem;
  margin: 2rem 0rem;
}
@media (max-width: 768px) {
  .customer-info-wrapper {
    flex-direction: column;
  }
}
.customer-info-wrapper h1 {
  font-size: 1.8rem;
  color: #111827;
}
@media (max-width: 768px) {
  .customer-info-wrapper h1 {
    font-size: 1.5rem;
  }
}
.customer-info-wrapper .company-content-box {
  display: block;
}
.customer-info-wrapper .company-content-box label {
  font-size: 0.75rem;
  color: #6d7280;
  display: block;
}
.customer-info-wrapper .company-content-box span {
  font-size: 0.875rem;
  color: #1f2937;
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sub-title {
  margin-top: 1.5rem;
  border-bottom: 1px solid #d2d5da;
}
.sub-title h3 {
  font-size: 1.5rem;
  color: #111827;
  padding: 0.5rem 0;
}
@media (max-width: 768px) {
  .sub-title h3 {
    font-size: 1.3rem;
  }
}

.modalOneGrid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: flex-end;
  margin-top: 2rem;
}

.modalTwoGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 2rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .modalTwoGrid {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
}

.modalThreeGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 2rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .modalThreeGrid {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
}

.ContentTwoGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .ContentTwoGrid {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
}

.ContentoneGrid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: flex-end;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.fort-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  padding-top: 30px;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1111111111111;
}

.fort-modal-content {
  position: relative;
  background-color: white;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  margin: auto;
  width: 522px;
  max-width: 100%;
  height: 75vh;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}
.fort-modal-content .title {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .fort-modal-content .title {
    display: block;
  }
}
.fort-modal-content .title h2 {
  font-size: 1.875rem;
  line-height: 150%;
  font-weight: 700;
  color: #111827;
}
@media (max-width: 768px) {
  .fort-modal-content .title h2 {
    font-size: 1.5rem;
  }
}
.fort-modal-content .title p {
  font-size: 1.125rem;
  color: #111827;
  line-height: 150%;
  font-weight: 300;
}
.fort-modal-content .fort-modal-wrapper {
  height: calc(100% - 150px);
  overflow: auto;
}
.fort-modal-content .fort-modal-wrapper::-webkit-scrollbar {
  width: 0.375rem;
}
.fort-modal-content .fort-modal-wrapper::-webkit-scrollbar-track {
  background: #d2d5da;
}
.fort-modal-content .fort-modal-wrapper::-webkit-scrollbar-thumb {
  background-color: #9ca3af;
}
.fort-modal-content .footer {
  position: absolute;
  bottom: 24px;
}
.fort-modal-content .footer .footer-center {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.fort-modal-content .footer .btn {
  width: 159px;
  height: 48px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  color: #011530;
}
.fort-modal-content .footer .btn.primary-btn {
  background: #ffb600;
}

.fort-close-btn {
  float: right;
  color: lightgray;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.fort-close-btn:hover {
  color: darkgray;
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.referral-code {
  margin-top: 20px;
}
.referral-code label {
  color: #011530;
  font-weight: 500;
  font-size: 14px;
  padding-bottom: 15px;
}
.referral-code input {
  width: 100%;
  height: 36px;
  border-radius: 4px;
  border: 1px solid #6d7280;
  padding: 10px;
  color: #011530;
  font-size: 15px;
  font-weight: 500;
  margin-top: 5px;
}
.referral-code button {
  background: #ffb600;
  color: #011530;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.form-box {
  width: 100%;
  display: block;
}

.form-box label {
  display: block;
  font-size: 1rem;
  color: #111827;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}

.form-box select {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: url(/Dashboard/asset/img/icons/arrow-down.svg) no-repeat right #ffffff;
  height: 50px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
  color: #111827;
  -webkit-appearance: none;
  background-position-x: calc(100% - 24px);
}

.form-box select:focus {
  outline: none;
}

.form-box input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  height: 50px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
  color: #111827;
}

.form-box input:focus {
  outline: none;
}

.form-box textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  height: 100px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
  color: #111827;
}

.form-box textarea:focus {
  outline: none;
}

.setting-one-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 2rem;
  gap: 1.5rem;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .setting-one-grid {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
}
.setting-two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
  gap: 1.5rem;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .setting-two-grid {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
}
.setting-three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
  gap: 1.5rem;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .setting-three-grid {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
}
.profile-page-information {
  margin-top: 20px;
  display: flex;
  gap: 1rem;
  align-items: center;
}
@media (max-width: 480px) {
  .profile-page-information {
    gap: 10px;
  }
}
.profile-page-information .avatar img {
  width: 70px;
  height: 70px;
  border: 4px solid #eff6ff;
  border-radius: 100px;
  padding: 1px;
}
.profile-page-information .profile-user-name {
  display: flex;
  flex-direction: column;
}
.profile-page-information .profile-user-name span.user-name {
  color: #011530;
  font-size: 1rem;
  font-weight: 500;
}
.profile-page-information .profile-user-name span.email {
  color: #4b5563;
  font-size: 14px;
  font-weight: 300;
  text-decoration: underline;
}
.profile-page-information .upload-avatar-btn {
  padding-left: 20px;
}
.profile-page-information .upload-avatar-btn button {
  background: #ffb600;
  color: #011530;
  padding: 7px 10px;
  border: none;
  font-size: 0.75rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
}

.footer-btn {
  margin-top: 50px;
}

.max-btn {
  background: #ffb600;
  padding: 0.75rem 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 24px;
  color: #011530;
  cursor: pointer;
}

.add-user-modal-bg,
.filter-modal-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(1, 21, 48, 0.3568627451);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s;
}
@media (max-width: 768px) {
  .add-user-modal-bg,
  .filter-modal-bg {
    padding: 0.75rem;
  }
}

.add-user-bg-active,
.filter-modal-bg-active {
  visibility: visible;
  opacity: 1;
}

.add-user-modal,
.filter-modal {
  background: #fff;
  width: 922px;
  height: 95vh;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  position: relative;
}
@media (max-width: 768px) {
  .add-user-modal,
  .filter-modal {
    padding: 1rem;
  }
}
.add-user-modal .title,
.filter-modal .title {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .add-user-modal .title,
  .filter-modal .title {
    display: block;
  }
}
.add-user-modal .title h2,
.filter-modal .title h2 {
  font-size: 1.875rem;
  line-height: 150%;
  font-weight: 700;
  color: #111827;
}
@media (max-width: 768px) {
  .add-user-modal .title h2,
  .filter-modal .title h2 {
    font-size: 1.5rem;
  }
}
.add-user-modal .title p,
.filter-modal .title p {
  font-size: 1.125rem;
  color: #111827;
  line-height: 150%;
  font-weight: 300;
}
.add-user-modal .add-user-modal-content,
.add-user-modal .filter-modal-content,
.filter-modal .add-user-modal-content,
.filter-modal .filter-modal-content {
  height: calc(100% - 130px);
  overflow: auto;
}
.add-user-modal .add-user-modal-content::-webkit-scrollbar,
.add-user-modal .filter-modal-content::-webkit-scrollbar,
.filter-modal .add-user-modal-content::-webkit-scrollbar,
.filter-modal .filter-modal-content::-webkit-scrollbar {
  width: 0.375rem;
}
.add-user-modal .add-user-modal-content::-webkit-scrollbar-track,
.add-user-modal .filter-modal-content::-webkit-scrollbar-track,
.filter-modal .add-user-modal-content::-webkit-scrollbar-track,
.filter-modal .filter-modal-content::-webkit-scrollbar-track {
  background: #d2d5da;
}
.add-user-modal .add-user-modal-content::-webkit-scrollbar-thumb,
.add-user-modal .filter-modal-content::-webkit-scrollbar-thumb,
.filter-modal .add-user-modal-content::-webkit-scrollbar-thumb,
.filter-modal .filter-modal-content::-webkit-scrollbar-thumb {
  background-color: #9ca3af;
}
.add-user-modal .footer,
.filter-modal .footer {
  position: absolute;
  bottom: 24px;
}
.add-user-modal .footer .footer-center,
.filter-modal .footer .footer-center {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.add-user-modal .footer .btn,
.filter-modal .footer .btn {
  width: 159px;
  height: 48px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  color: #011530;
}
.add-user-modal .footer .btn.primary-btn,
.filter-modal .footer .btn.primary-btn {
  background: #ffb600;
}

@media (max-width: 768px) {
  .auth-sidebar {
    display: none;
  }
}
@media (max-width: 768px) {
  .auth-sidebar .auth-layout .auth-form {
    width: 100%;
    padding: 0 30px;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  border: 1px solid #e5e7eb;
  padding: 0 50px;
}
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }
}

.top-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.top-heading .go-back {
  background: #ffb600;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #011530;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 13px;
}

.package-page-title {
  margin-top: 50px;
  text-align: center;
}
.package-page-title h2 {
  font-size: 50px;
  color: #011530;
  font-weight: 700;
}
@media (max-width: 768px) {
  .package-page-title h2 {
    font-size: 25px;
  }
}

.packages-wrapper {
  width: 1200px;
  margin: 5rem auto 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .packages-wrapper {
    max-width: 100%;
    grid-template-columns: 1fr;
    margin: 4rem auto 4rem;
  }
}
.packages-wrapper .packages-item {
  background: #011530;
  border-radius: 8px;
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px 21px;
}
@media (max-width: 768px) {
  .packages-wrapper .packages-item {
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
  }
}
.packages-wrapper .packages-item.recommended {
  transform: scale(1.1);
}
.packages-wrapper .packages-item.list {
  background: #fff;
}
.packages-wrapper .packages-item.list .head h3 {
  color: #111827;
}
.packages-wrapper .packages-item.list .price-details h1 {
  color: #111827;
}
.packages-wrapper .packages-item.list .package-features .item span {
  color: #4b5563;
}
.packages-wrapper .packages-item .head {
  display: flex;
  justify-content: space-between;
}
.packages-wrapper .packages-item .head h3 {
  font-weight: 600;
  font-size: 25px;
  line-height: 150%;
  color: #fff;
}
.packages-wrapper .packages-item .head p {
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: #9ca3af;
  margin-top: 8px;
}
.packages-wrapper .packages-item .head .recommended-text {
  border-radius: 4px;
  background: #fef08a;
  padding: 0 4px;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 12px;
  color: #854d0e;
}
.packages-wrapper .packages-item .price-details {
  margin-top: 32px;
}
.packages-wrapper .packages-item .price-details h1 {
  color: #fff;
  font-size: 28px;
  line-height: 150%;
  font-weight: 600;
}
.packages-wrapper .packages-item .price-details h1 span {
  color: #9ca3af;
  line-height: 150%;
  font-weight: 600;
  font-size: 20px;
}
.packages-wrapper .packages-item .price-details p {
  font-size: 12px;
  line-height: 130%;
  font-weight: 400;
  color: #9ca3af;
}
.packages-wrapper .packages-item .package-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.packages-wrapper .packages-item .package-features .item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}
.packages-wrapper .packages-item .package-features .item span {
  color: #fff;
  line-height: 130%;
  font-weight: 400;
  font-size: 16px;
}
.packages-wrapper .packages-item .package-link {
  background: #ffb600;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 4px;
  color: #011530;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.login-layout {
  background: #011530;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.login-layout .auth-logo {
  margin-bottom: 30px;
}
.login-layout .auth-logo img {
  width: 200px;
}
.login-layout .form-content {
  background: #ffffff;
  width: 480px;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 5px;
  padding: 40px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .login-layout .form-content {
    padding: 20px;
  }
}
.login-layout .form-content .auth-text-heading {
  font-size: 25px;
  margin-bottom: 20px;
  text-align: center;
  color: #011530;
}
@media (max-width: 768px) {
  .login-layout .form-content .auth-text-heading {
    font-size: 20px;
  }
}
.login-layout .form-content span {
  display: block;
  color: #6d7280;
  text-align: center;
  font-size: 14px;
}
.login-layout .form-content h5 {
  display: block;
  text-align: center;
  margin-bottom: 20px;
  font-size: 15px;
  color: #374151;
  font-weight: 400;
}
@media (max-width: 768px) {
  .login-layout .form-content {
    margin: 0 10px;
  }
}
.login-layout .form-content .logo {
  margin-bottom: 20px;
  text-align: center;
}
.login-layout .form-content .details {
  text-align: center;
}
.login-layout .form-content .details p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #6d7280;
}
.login-layout .form-content form {
  margin-top: 2rem;
}
.login-layout .form-content .input-wrapper {
  margin-bottom: 1.688rem;
  border: 1px solid #cfd0d4;
  padding: 0px 15px;
  border-radius: 5px;
  position: relative;
}
.login-layout .form-content .input-wrapper label {
  color: rgba(59, 59, 59, 0.671);
  font-size: 13px;
  display: block;
  margin-top: 5px;
}
.login-layout .form-content .input-wrapper input,
.login-layout .form-content .input-wrapper select {
  height: 2rem;
  width: 100%;
  padding: 0 0;
  border: 1px solid #cfd0d4;
  background: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  color: #6e737f;
  font-weight: 100;
  line-height: 24px;
  position: relative;
  border: none;
}
.login-layout .form-content .input-wrapper input:focus,
.login-layout .form-content .input-wrapper select:focus {
  outline: none;
}
@media (max-width: 768px) {
  .login-layout .form-content .input-wrapper input,
  .login-layout .form-content .input-wrapper select {
    font-size: 0.75rem;
  }
}
.login-layout .form-content .input-wrapper input::-moz-placeholder, .login-layout .form-content .input-wrapper select::-moz-placeholder {
  color: #6e737f;
}
.login-layout .form-content .input-wrapper input::placeholder,
.login-layout .form-content .input-wrapper select::placeholder {
  color: #6e737f;
}
.login-layout .form-content .forget-password {
  display: flex;
  justify-content: flex-end;
  color: #011530;
  font-size: 14px;
}
.login-layout .form-content .button-wrapper {
  margin-top: 1.438rem;
  display: flex;
  gap: 1.5rem;
}
.login-layout .form-content .button-wrapper button {
  background: #ffb600;
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  line-height: 24px;
  height: 60px;
  border-radius: 5px;
  cursor: pointer;
}
.login-layout .form-content .form-footer {
  text-align: center;
  padding-top: 20px;
}
.login-layout .form-content .form-footer p {
  font-size: 14px;
}
.login-layout .form-content .form-footer a {
  color: #011530;
  font-size: 14px;
  font-weight: bold;
}
.login-layout .footer-links {
  padding-top: 30px;
  display: flex;
  gap: 1.6rem;
}
.login-layout .footer-links a {
  font-size: 14px;
  color: hsl(214, 87%, 53%);
}
.login-layout .footer-links a::after {
  content: "|";
  position: relative;
  left: 13px;
}

.affiliate-link-wrapper {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
.affiliate-link-wrapper .title {
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
  font-family: "Inter", sans-serif;
}
.affiliate-link-wrapper .form-wrapper {
  width: 400px;
  max-width: 100%;
  height: 50px;
  background: #d4d4d4;
  border-radius: 0.4rem;
  display: flex;
}
.affiliate-link-wrapper .form-wrapper .input-link {
  width: 100%;
  padding: 10px;
  border: none;
  background: none;
  font-size: 15px;
  color: #011530;
  font-family: inherit;
  font-weight: 200;
}
.affiliate-link-wrapper .form-wrapper .affiliate-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: 10px;
}
.affiliate-link-wrapper .form-wrapper .affiliate-buttons button {
  cursor: pointer;
  background: none;
  border: none;
}

.view-affiliate-modal {
  margin: 20px 0;
}
.view-affiliate-modal .copy-link {
  background: #011530;
  width: 100%;
  border: none;
  padding: 15px 0;
  color: #ffb600;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 400;
}

.share-affiliate-modal {
  display: flex;
  align-items: center;
  gap: 20px;
}
.share-affiliate-modal img {
  width: 80px;
}

/**************************
  Basic Modal Styles
**************************/
.modal {
  font-family: inherit;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.modal__container {
  width: 614px;
  height: 100%;
  max-width: 100%;
  overflow-y: auto;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 10px;
}

@supports (display: flex) {
  .modal__container {
    height: initial;
    max-height: 80vh;
  }
  @media (max-width: 768px) {
    .modal__container {
      max-height: -moz-fit-content;
      max-height: fit-content;
    }
  }
}
.modal__header {
  position: relative;
  display: block;
  height: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d0d0d0;
  padding: 1.2rem 1.6rem;
}

.modal__footer {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #dbdbdb;
  gap: 1rem;
}
@media (max-width: 768px) {
  .modal__footer {
    padding: 0 2rem;
  }
}
.modal__footer button {
  width: 165px;
  height: 44px;
  border-radius: 0.4rem;
}
.modal__footer button.modal__btn {
  border: none;
  background: none;
  color: #011530;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.modal__footer button.modal__btn-primary {
  border: 1px solid #ffb600;
  background: #ffb600;
  color: #011530;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

@supports (display: flex) {
  .modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: initial;
    margin-bottom: 0px;
  }
}
.modal__title {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  box-sizing: border-box;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  margin: 0px;
  padding: 0px;
}

@supports (display: flex) {
  .modal__title {
    position: static;
  }
  .modal__close {
    position: static;
  }
}
.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin: 1rem 2.4rem;
  color: rgba(0, 0, 0, 0.8);
  background: #fff;
}

@supports (display: flex) {
  .modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
  }
}
.modal__btn {
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}

.modal__btn-primary {
  background-color: #ffb600;
  cursor: pointer;
  color: #011530;
  font-size: 16px;
}

/**************************
    Demo Animation Style
  **************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/**************************
    Custom styles for individual modals
  **************************/
.modal__container button {
  outline: none;
  cursor: pointer !important;
}

.modal__container h2.modal__title {
  color: #111827;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 28px;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  font-size: 15px;
  border-radius: 50px;
  font-weight: 700;
  width: 30px;
  height: 30px;
  border: 1.5px solid #1c274c;
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  background-color: #e6e6e6;
  border-radius: 4px;
  -webkit-appearance: none;
}

/**************************
    Mobile custom styles for individual modals
  **************************/
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .modal__container {
    width: 90% !important;
    min-width: 90% !important;
  }
  @supports (display: flex) {
    .modal__container {
      width: 90% !important;
      min-width: 90% !important;
    }
  }
}
/**************************
    Non modal styles
  **************************/
button.external {
  padding: 10px !important;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 15px;
}

.other-links {
  padding: 5px;
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.other-links h2 {
  font-size: 12px;
}

.other-links a {
  font-size: 12px;
}

.progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto;
  margin-top: 1.4rem;
  margin-bottom: 1.5rem;
  gap: 0.6rem;
  width: 400px;
  max-width: 100%;
}
.progress .item {
  background: #e6e6e6;
  width: 100%;
  height: 0.3rem;
  border-radius: 10px;
}
.progress .item.active {
  background: #011530;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-input-wrapper {
  margin-bottom: 27px;
}
.form-input-wrapper input {
  width: 100%;
  height: 50px;
  border-radius: 0.4rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 12px 18px;
  font-family: inherit;
  color: #111827;
  font-size: 14px;
}
.form-input-wrapper input:focus {
  outline: none;
}

.country-code-form {
  width: 100%;
  height: 50px;
  border-radius: 0.4rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: grid;
  grid-template-columns: 100px auto;
  padding: 0.5rem 1rem;
  gap: 10px;
  margin-bottom: 27px;
}
.country-code-form select {
  border: none;
  background: transparent;
  color: #000;
  font-weight: 400;
  font-size: 16px;
}
.country-code-form input {
  border: none;
  background: transparent;
  color: #000;
  font-weight: 400;
  font-size: 16px;
  font-family: inherit;
}
.country-code-form input:focus {
  outline: none;
}

.terms {
  margin-top: 24px;
  color: #111827;
  font-size: 14px;
  font-weight: 300;
  line-height: 130%;
}
.terms a {
  color: #1d4ed8;
}

.cart-wrapper {
  width: 100%;
  height: 100vh;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}
.cart-wrapper .cart-card {
  width: 533px;
  border-radius: 20px;
  border: 1px solid #d9d9d9;
  background: #fff;
  padding: 32px;
}
.cart-wrapper .cart-card .title h3 {
  color: #111827;
  font-size: 30px;
  font-weight: 700;
  line-height: 150%;
}
.cart-wrapper .cart-card .title p {
  color: #111827;
  font-size: 20px;
  font-weight: 400;
}

.cart-details .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dotted #d2d5da;
  padding: 10px;
  margin-bottom: 30px;
}
.cart-details .item .item-first {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-details .item .item-first .title {
  color: #1f2229;
  font-size: 16px;
  font-weight: 600;
}
.cart-details .item .item-first .content {
  color: #1f2229;
  font-size: 16px;
}
.cart-details .item .item-second .title {
  color: #1f2229;
  font-size: 16px;
  font-weight: 600;
}
.cart-details .item .remove-coupon {
  background: none;
  border: none;
  color: #ffb600;
  font-size: 14px;
  font-weight: 100;
  display: block;
  padding-top: 10px;
  cursor: pointer;
}
.cart-details .change-plan {
  position: relative;
  top: -20px;
  text-decoration: underline;
  color: #ffb600;
  font-size: 12px;
  font-weight: 400;
}
.cart-details .coupon-code-status {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  top: -20px;
}
.cart-details .coupon-code-status span {
  color: #1f2229;
  font-size: 12px;
  font-weight: 200;
}

.cart-coupon {
  display: grid;
  grid-template-columns: auto 172px;
  gap: 12px;
}
.cart-coupon input {
  border-radius: 4px;
  background: #fff;
  border: 1px solid #cfd0d4;
  height: 50px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 400;
}
.cart-coupon input:focus {
  outline: none;
}
.cart-coupon input::-moz-placeholder {
  color: #6e737f;
}
.cart-coupon input::placeholder {
  color: #6e737f;
}
.cart-coupon .coupon-btn {
  border-radius: 4px;
  background: #ffb600;
  border: none;
  height: 50px;
  font-weight: 500;
  color: #111827;
  font-size: 16px;
  cursor: pointer;
}

.cart-payment-method {
  margin-top: 30px;
}
.cart-payment-method .bank-transfer {
  background: #ffb600;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.cart-payment-method .bank-transfer img {
  width: 38px;
}
.cart-payment-method .bank-transfer span {
  color: #011530;
}
.cart-payment-method .card-payment {
  border-radius: 8px;
  border: 1px solid #d2d5da;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.cart-payment-method .card-payment img {
  width: 38px;
}

.virtual-account-modal {
  margin: auto auto;
  width: 545px;
  border-radius: 8px;
  box-shadow: 0px 4px 21px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
  border: none;
  padding: 25px;
  position: relative;
}
.virtual-account-modal::backdrop {
  background: rgba(45, 44, 44, 0.6039215686);
}
.virtual-account-modal:focus-visible {
  outline: none;
  border: none;
}
.virtual-account-modal .account_content {
  text-align: center;
  margin-bottom: 20px;
}
.virtual-account-modal .account_content h2 {
  color: #111827;
  font-size: 25px;
  font-weight: 500;
  line-height: 150%;
}
.virtual-account-modal .account_content h1 {
  color: #111827;
  font-size: 30px;
  font-weight: 800;
  line-height: 150%;
}
.virtual-account-modal .close-modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  position: absolute;
}
.virtual-account-modal .close-modal-btn img {
  width: 100%;
}
.virtual-account-modal .account_progress {
  background: #fef9c3;
  width: 70%;
  margin: auto;
  border-radius: 5px;
  padding: 22px;
  text-align: center;
}
.virtual-account-modal .account_progress .title {
  text-align: center;
}
.virtual-account-modal .account_progress .title h3 {
  color: #1f2937;
  font-size: 20px;
  font-weight: 700;
}
.virtual-account-modal .account_progress .preloading-image {
  margin: 30px 0;
}

.cart-success {
  text-align: center;
}
.cart-success img {
  width: 300px;
  margin-bottom: 42px;
}
.cart-success .content {
  text-align: center;
}
.cart-success .content h2 {
  font-size: 30px;
  color: #111827;
  font-weight: 700;
  line-height: 150%;
  padding-bottom: 12px;
}
@media (max-width: 768px) {
  .cart-success .content h2 {
    font-size: 20px;
  }
}
.cart-success .content p {
  color: #111827;
  font-size: 18px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cart-success .content p {
    font-size: 15px;
  }
}

.cart-success-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffb600;
  color: #111827;
  width: 370px;
  height: 45px;
  margin-top: 20px;
  color: #111827;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 768px) {
  .cart-success-btn {
    margin-top: 5px;
    max-width: 100%;
  }
}

.cart-retry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: transparent;
  border: 1px solid #011530;
  color: #111827;
  width: 370px;
  height: 45px;
  margin-top: 20px;
  color: #111827;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 768px) {
  .cart-retry-btn {
    max-width: 100%;
  }
}

.payment-failed-btns {
  width: 471px;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .payment-failed-btns {
    flex-direction: column;
    gap: 10px;
  }
}/*# sourceMappingURL=style.css.map */