@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --mainBg: radial-gradient(
    71.74% 41.82% at 50% 50%,
    #f7f7f7 0%,
    rgba(247, 247, 247, 0.53) 47.1%,
    rgba(78, 167, 224, 0.62) 68.57%,
    #37eba9 100%
  );
  --labelColor: #7a86a1;
  --textPrimary: #1e1e1e;
  --tableBg: #f0f5ff;
  --tdborder: #d7deee;
  --red: #ff6266;
  --green: #17bca8;
  --blue: #3668f2;
  --white: #fff;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.entry-header{
  display: none!important;
}

.table-container {
  overflow-x: auto;
  width: 100%;
  height: fit-content;
  padding-inline: 1px;
}

.table-container::-webkit-scrollbar {
  display: none;
}

table {
  min-width: 1000px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

thead {
  position: relative;
}

thead th {
  color: var(--labelColor);
  font-size: 18px;
  font-weight: 400;
  padding: 21px 32px;
  text-align: start;
  line-height: normal;
  background-color: transparent;
}

thead::after {
  content: "";
  display: block;
  height: 16px;
  width: 100%;
  background: transparent;
}

thead::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 16px;
  border-radius: 42px;
  backdrop-filter: blur(32px);
  box-shadow: 0px 0px 50px 0px #ffffff inset;
  background-color: var(--tableBg);
  z-index: -1;
}

thead tr th:first-child {
  border-top-left-radius: 43px;
  border-bottom-left-radius: 43px;
}
thead tr th:last-child {
  border-top-right-radius: 43px;
  border-bottom-right-radius: 43px;
}

tbody {
  position: relative;
  background-color: transparent;
}

p {
  margin: 0px;
}

tbody::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 40px;
  background: linear-gradient(180deg, #ffffff 0%, #cee3f1 100%);
  z-index: -2;
  padding: 1px;
}

tbody::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background-color: var(--tableBg);
  border-radius: 39px;
  box-shadow: 0px 0px 50px 0px #ffffff inset;
  backdrop-filter: blur(32px);
  z-index: -1;
}

tbody td {
  border-bottom: 1px solid var(--tdborder);
  padding: 21px 32px;
  text-align: start;
  font-size: 18px;
  font-weight: 400;
  color: var(--textPrimary);
  line-height: normal;
  background-color: transparent;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:last-child td:first-child {
  border-bottom-left-radius: 40px;
}
tbody tr:last-child td:last-child {
  border-bottom-right-radius: 40px;
}

tbody tr:first-child td:first-child {
  border-top-left-radius: 40px;
}

tbody tr:first-child td:last-child {
  border-top-right-radius: 40px;
}

.id-cell {
  color: var(--blue);
  font-weight: 500;
}

.status-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffffc4;
  border-radius: 31px;
  padding: 10px 14px;
  width: fit-content;
}

.status-tag .status-indicator {
  width: 22px;
  height: 11px;
  border-radius: 21px;
}

.status-tag .active-indicator {
  background-color: var(--green);
}

.status-tag .cancelled-indicator {
  background-color: var(--red);
}

.status-tag .status-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--textPrimary);
  text-transform: capitalize
}

.payment-method-cell {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.delete-btn{
  all: unset;
  width: 100px;
  height: 45px;
  border-radius: 31px;
  background-color: var(--blue);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  cursor: pointer
}
.delete-btn:hover{
  opacity: 0.8;
  transition: all 0.3s ease;
}

.mainNavbar {
  box-sizing: border-box;
  width: 100%;
  height: 90px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  border-radius: 25px;
  border: 2px solid #FFF;
  background: radial-gradient(166.36% 133.51% at 96.78% 97.35%, rgba(223, 228, 240, 0.60) 0%, rgba(234, 238, 249, 0.60) 100%);
  box-shadow: 0px 0px 50px 0px #FFF inset;
  backdrop-filter: blur(16px);
}

.mainNavbar picture,
.mainNavbar img {
  height: 225px;
  max-height: 30px;
}

.actionButton {
  display: flex;
  gap: 8px;
}

.actionButton button {
  border-radius: 38.91px;
  padding: 11px 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  height: 50px;
  border: none;
  outline: none;
  cursor: pointer;
}

.actionButton button:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}

.actionButton button:nth-child(1) {
  width: 154px;
  background: #ffffffa6;
  backdrop-filter: blur(12px);
  color: #1f1f1f;
}

.actionButton button:nth-child(2) {
  width: 182px;
  color: #ffffff;
  background-color: var(--blue);
  opacity: 0.8;
}

#menuButton{
  display: none;
  font-size: 35px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--blue);
}


.mainSider {
  box-sizing: border-box;
  width: 100%;
  height: 485px;
  padding: 55px 45px 45px 45px;
  border-radius: 40px;
  background-image: url('../assets/images/order-history.png');
  background-size: 99% 100%;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease-in-out;

  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.headingBox {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.headingBox .shape {
  border-radius: 21px;
  width: 41px;
  height: 11px;
  background: linear-gradient(90deg, #37eca9 0%, #2390c0 52%, #3347d3 100%);
}
.submitButton {
  box-sizing: border-box;
  display: flex;
  float: right;
  align-items: center;
  justify-content: center;
  background: var(--blue) !important;
  height: 50px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: white !important;
  border-radius: 50px!important;
  margin-top: 20px!important;
}

.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  gap: 8px;
  margin-bottom: 30px;
}

.breadcrumb p {
  margin: 0;
  cursor: pointer;
  transition: color 0.2s;

  font-size: 18px;
  font-weight: 400;
}

.breadcrumb p:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}

.breadcrumb span {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  color: #fff;
}


.mainSider ul {
  padding: 0px;
  box-sizing: border-box;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mainSider ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  color: rgba(122, 134, 161, 1);
  height: 27px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
.mainSider ul li.active {
  color: rgba(30, 30, 30, 1);
}

.mainSider .logoutBox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: max-content;
  margin-top: 80px;
}
.mainSider .logoutBox p {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  color: rgba(122, 134, 161, 1);
  margin: 0px;
}
.mainSider .logoutBox i {
  font-size: 20px;
  transform: rotate(180deg);
  color: rgba(255, 98, 102, 1);
}


.logo-btn-parent{
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .mainNavbar{
    padding: 20px 10px;
  }
  #menuButton {
    display: block !important;
  }
  .layoutContainer {
    padding: 20px;
  }
  .layoutContainer .contentLeft {
    display: none;
  }
  .contentBody .contentRight {
    width: 100%;
  }
  .mainNavbar picture,
  .mainNavbar img {
    height: 18px;
    max-height: 18px;
  }
  .actionButton button {
    padding: 11px 14px;
    font-weight: 400;
    font-size: 16px;
  }
  .actionButton button:nth-child(1) {
    width: fit-content;
  }
  .actionButton button:nth-child(2) {
    width: fit-content;
  }
}
@media (max-width: 420px) {
  .logo-btn-parent{
    gap: 5px
  }
  .mainNavbar picture,
  .mainNavbar img {
    height: 28px;
    max-height: 28px;
  }
}
@media (max-width: 360px) {
  .actionButton button:nth-child(2){
    display: none;
  }
}


/* CONSTANT */
.background {
  position: fixed;
  width: 3025px;
  height: 3025px;
  top: -540px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;

  background: var(--mainBg);
}

.width100 {
  width: 100%;
  box-sizing: border-box;
}

.bg {
  border: 2px solid #fff;
  background: radial-gradient(
    166.36% 133.51% at 96.78% 97.35%,
    rgba(223, 228, 240, 0.6) 0%,
    rgba(234, 238, 249, 0.6) 100%
  );
  box-shadow: 0px 0px 50px 0px #fff inset;
  backdrop-filter: blur(16px);
}

.inputWrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inputWrapper p {
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--labelColor);
}

.inputWrapper input {
  width: 100%;
  height: 50px;
  border-radius: 5950px;
  padding: 14px 20px;
  color: var(--textPrimary);
  backdrop-filter: blur(31.399999618530273px);

  border: none;
  outline: none;
}

._divider {
  width: 100%;
  margin-block: 10px;
  border-bottom: 1px solid #d7deee;
}

/* ROW */
/* MANAGE SUBSCRIPTION DETAILS */
/* ORDER DETAILS */
._rowMainBox {
  width: 100%;
  padding: 32px;
  border-radius: 40px;
}
._rowBox {
  padding: 20px;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 65%);
  margin-top: 30px;
}
._row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
._row p {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: var(--textPrimary);
}
._row .buttonShape {
  padding: 8px;
  height: 43px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 31px;
}

._row ._actionButtons {
  display: flex;
  gap: 16px;
  align-items: center;
}
._row ._actionButtons button {
  all: unset;
  cursor: pointer;
}
._row ._actionButtons button:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
._row ._actionButtons button:nth-child(1) {
  background-color: var(--blue);
  color: #fff;
  border-radius: 31px;
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 400;
}
._row ._actionButtons button:nth-child(2) {
  color: var(--green);
}
._row ._actionButtons button:nth-child(3) {
  color: var(--red);
}

._rowMainBox ._rowBox .bigRow .bigRowLeft {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
._rowMainBox ._rowBox .bigRow .bigRowLeft > p {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: var(--blue);
}
._rowMainBox ._rowBox .bigRow .bigRowLeft > div {
  display: flex;
  align-items: center;
  gap: 80px;
}
._rowMainBox ._rowBox .bigRow .bigRowLeft > div > p {
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}
.orderDetailsContainer
  ._rowMainBox
  ._rowBox
  .bigRow
  .bigRowLeft
  > div
  > p
  span {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

/* LAYOUT */
.layoutContainer {
  padding: 30px 140px;
}
.contentBody {
  display: flex;
  gap: 50px;
  margin-top: 90px;
}
.contentBody .contentLeft {
  width: 290px;
}
.contentBody .contentRight {
}

/* --------------------LOGIN PAGE START-------------------- */
.loginContainer {
  width: 100%;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 77px 20px;
}

.loginContainer .logo {
  width: 248px;
  height: 34px;
}

.loginContainer .formBox {
  width: 666px;
  height: 626px;

  margin-top: 80px;
  border-radius: 61px;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 74px 153px;
}
.loginContainer .formBox .heading {
  font-weight: 400;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--textPrimary);
}
.loginContainer .formBox .emailInput {
  margin-top: 53px;
}
.loginContainer .formBox .passwordInput {
  margin-top: 24px;
}
.loginContainer .formBox .forgotPassText {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  text-decoration: underline;
  color: var(--labelColor);
  margin-block: 40px;

  cursor: pointer;
}

.loginContainer .helpDesk {
  margin-top: 142px;
  display: flex;

  align-items: center;
  gap: 8px;

  cursor: pointer;
}
.loginContainer .helpDesk p {
  color: var(--labelColor);
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
}
.loginContainer .helpDesk i {
  font-size: 24px;
  color: var(--labelColor);
}
/* --------------------LOGIN PAGE END-------------------- */

/* --------------------MANAGE SUBSCRIPTION PAGE START-------------------- */
.manageSubscriptionContainer {
  padding: 30px 140px;
}

.content {
  padding-block: 52px;
}

.table-bottom-btn-parent {
  margin-top: 32px;
}
.table-bottom-btn-parent custom-button {
  width: 256px;
  margin-left: auto;
}

/* --------------------MANAGE SUBSCRIPTION PAGE END-------------------- */

/* --------------------PAYMENT METHODS PAGE START-------------------- */
.payMethodsContainer .add-payment-btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
}
.payMethodsContainer .add-payment-btn custom-button {
  width: 380px;
}
/* --------------------PAYMENT METHODS PAGE END-------------------- */

/* --------------------MANAGE SUBSCRIPTION PAGE START-------------------- */
.billingDetailsContainer .bg {
  padding: 32px;
  border-radius: 25px;
}

.billingDetailsContainer .bg,
.billingDetailsContainer .buttonBox {
  width: 710px;
}

.billingDetailsContainer .form {
  display: flex;
  /* flex-direction: column; */
  column-gap: 24px;
  row-gap: 20px;
  flex-wrap: wrap;
}

.billingDetailsContainer custom-input {
  width: calc((100% - 24px) / 2);
}

.billingDetailsContainer .buttonBox {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
.billingDetailsContainer .buttonBox custom-button {
  width: 256px;
}
/* --------------------MANAGE SUBSCRIPTION PAGE END-------------------- */

@media (max-width: 1440px) {
  .layoutContainer {
    zoom: 0.8;
  }
}

@media (max-width: 1024px) {
  /* LAYOUT */
  .layoutContainer {
    padding: 30px;
  }
  .contentBody {
    gap: 30px;
  }
  .contentBody .contentRight {
    width: calc((100% - 30px) - 290px);
  }
}

@media (max-width: 900px) {
  .contentBody {
    gap: 20px;
  }
  ._rowMainBox ._rowBox .bigRow .bigRowLeft > div {
    flex-direction: column;
    gap: 0px;
    align-items: start;
  }
  ._rowMainBox {
    padding: 25px 15px;
  }
  .contentBody .contentRight {
    width: calc((100% - 20px) - 290px);
  }
  .billingDetailsContainer .bg,
  .billingDetailsContainer .buttonBox {
    width: 100%;
  }
  .billingDetailsContainer custom-input {
    width: 100%;
  }
  .loginContainer .formBox {
    width: fit-content;
    height: fit-content;
    padding: 74px 110px;
  }
  ._row {
    flex-wrap: wrap;
    row-gap: 8px;
  }
}

@media (max-width: 600px) {
  .layoutContainer {
    padding: 20px;
  }
  .layoutContainer .contentLeft {
    display: none;
  }
  .contentBody .contentRight {
    width: 100%;
  }
  .contentBody {
    margin-top: 40px;
  }
  .billingDetailsContainer .bg {
    padding: 25px 15px;
  }

  .billingDetailsContainer {
    zoom: 0.9 !important;
  }

  .billingDetailsContainer navbar-component {
    zoom: 0.8 !important;
  }

  .loginContainer {
    padding: 50px 20px;
  }

  .loginContainer .formBox {
    width: 100%;
    padding: 60px 25px;
    margin-top: 50px;
    border-radius: 30px;
  }
  .loginContainer .formBox .heading {
    font-size: 20px;
  }
  .loginContainer .logo {
    width: 215px;
    height: unset;
  }
  .loginContainer .helpDesk {
    margin-top: 50px;
  }
  .loginContainer .formBox .forgotPassText {
    font-size: 15px;
    margin-block: 30px;
  }
  ._row ._actionButtons {
    flex-wrap: wrap;
  }
  .loginContainer .formBox .emailInput {
    margin-top: 35px;
  }
}
