:root {
  --primary: #047a6d;
  --primary-hover: #029887;
  --primary-light: #c0e1de;
  --primary-extra-light: #ecf3f3;
  --secondary: #ff7800;
  --secondary-hover: #ff800f;
  --secondary-dark: #b95804;
  --secondary-light: #ffddbf;
  --primary-lite-color: #01b29e;
  --primary-color: #02897a;
  --primary-shade-color: #02796b;
  --orange-lite-color: #fd9130;
  --orange-color: #ff7800;
  --orange-shade-color: #e86d00;
  --sider-menu-font-color: #585858;
  --sider-menu-bg: #f6f6f6;
  --switches-bg-color: #fff;
  --switches-label-color: #000;
  --switch-bg-color: #02897a;
  --switch-text-color: #fff;
  --secondary-extra-light: #ffefe5;
  --tertiary: #2483ea;
  --tertiary-hover: #2483ea;
  --tertiary-light: #cae3f1;
  --tertiary-extra-light: #cae3f1;
  --danger: #e65151;
  --danger-hover: #e65151;
  --danger-light: rgba(255, 2, 2, 0.25);
  --danger-extra-light: rgba(255, 2, 2, 0.25);
  --white: #ffffff;
  --black: #151b28;
  --black-100: #f6f6f6;
  --black-200: #d4d4d4;
  --black-300: #928d8d;
  --black-400: #585858;
  --black-500: #262525;
  --default-hover-color: #f6f6f6; 
  --font-family: "SF Pro Display", sans-serif;
  --font-weight-xs: 300;
  --font-weight-sm: 400;
  --font-weight-md: 500;
  --font-weight-lg: 600;
  --font-size-xs: 10px;
  --font-size-sm: 12px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-xxl: 20px;
  --font-color: #151b28;
  --font-color-dark: #262525;
  --font-color-light: #928d8d;
  --border-width: 1px;
  --border-color: #dee3e9;
  --border-radius-xxs: 2px;
  --border-radius-xs: 4px;
  --border-radius-sm: 8px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0px 5px 15px rgba(0, 0, 0, 0.1);
  --spacer: 30px;
  --spacer-lg: 24px;
  --spacer-md: 16px;
  --spacer-sm: 14px;
  --spacer-xs: 12px;
  --spacer-xxs: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  scroll-behavior: smooth;
  font-size: var(--font-size-md);
}

/* subscription plan */
.profile-my-subscription-plan-cards-area {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}
.profile-my-subscription-plan-card {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 96px 32px 32px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.2s;
  max-height: 615px;
}

.profile-my-subscription-plan-card:hover {
  box-shadow: 10px 10px 200px 0px #d8dee7;
  z-index: 1;
  transition: all 0.3s;
}

.local-plan:hover {
  border: solid 1px #1c7ce4;
}

.regional-pluse-plan:hover {
  border: solid 1px #0ab9a6;
}

.uk-wide-plan:hover {
  border: solid 1px #069a2b;
}

.ireland-plan:hover {
  border: solid 1px #ff7800;
}

.profile-my-subscription-plan-card-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
  margin-bottom: 32px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.profile-my-subscription-plan-card-header .plan-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.profile-my-subscription-plan-card-header .plan-description {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 24px;
}
.profile-my-subscription-plan-card-header .plan-price-area {
  display: flex;
  gap: 4px;
  align-items: flex-end;
}
.profile-my-subscription-plan-card-header .plan-price-area .plan-price {
  font-size: 40px;
  font-weight: 600;
}
.profile-my-subscription-plan-card-header .plan-price-area .plan-time {
  color: #6a707d;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 4px;
}
.profile-my-subscription-plan-card-header .subscription-plan-btn {
  margin-top: 24px;
}
.profile-my-subscription-plan-card-header .subscription-plan-btn button {
  border: 1px solid var(--border-color);
  background: var(--white);
  border-radius: 40px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  display: inline-block;
  text-align: center;
}

.profile-my-subscription-plan-card-header .subscription-plan-btn a,
.profile-my-subscription-plan-card
  .profile-my-subscription-plan-card-body
  .subscription-plan-btn
  a {
  border: 1px solid #089081;
  background: #089081;
  border-radius: 40px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  color: #fff;
  display: inline-block;
  text-align: center;
}

.profile-my-subscription-plan-card-header .subscription-plan-btn a:hover {
  border: 1px solid #0c2724;
  background: #0c2724;
  color: #fff;
}

.profile-my-subscription-plan-card-header .header-plan-icon {
  position: absolute;
  top: 32px;
  left: 32px;
}
.profile-my-subscription-plan-card-header .header-plan-shape1 {
  position: absolute;
  top: 0px;
  right: 0px;
}
.profile-my-subscription-plan-card-header .header-plan-shape2 {
  position: absolute;
  top: 0px;
  right: 0px;
}
.profile-my-subscription-plan-card-body .plan-card-body-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}
.profile-my-subscription-plan-card-body .plan-card-body-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.profile-my-subscription-plan-card-body .plan-card-body-list li {
  display: grid;
  grid-template-columns: 18px auto;
  gap: 10px;
}
.profile-my-subscription-plan-card-body .plan-card-body-list-check-icon {
  margin-top: 3px;
}
.profile-my-subscription-plan-card-body .plan-card-body-list-text-area {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.profile-my-subscription-plan-card-body
  .plan-card-body-list-text-area
  .plan-card-body-list-text {
  color: #393f4c;
  font-size: 14px;
}
.profile-my-subscription-plan-card-body
  .plan-card-body-list-text-area
  .plan-card-body-list-limit {
  color: #e65151;
  font-size: 12px;
  font-weight: 500;
}
.profile-my-subscription-plan-card.local-plan
  .profile-my-subscription-plan-card-header
  .plan-price-area
  .plan-time
  .plan-save-txt {
  color: #1c7ce4;
}
.profile-my-subscription-plan-card.local-plan
  .profile-my-subscription-plan-card-header
  .subscription-plan-btn
  button {
  background: #1c7ce4;
  color: var(--white);
}
.profile-my-subscription-plan-card.local-plan
  .profile-my-subscription-plan-card-body
  .plan-card-body-title {
  color: #1c7ce4;
}
.profile-my-subscription-plan-card.local-plan
  .profile-my-subscription-plan-card-body
  .plan-card-body-list-check-icon
  path {
  fill: #1c7ce4;
}
.profile-my-subscription-plan-card.uk-wide-plan
  .profile-my-subscription-plan-card-header
  .plan-price-area
  .plan-time
  .plan-save-txt {
  color: #069a2b;
}
.profile-my-subscription-plan-card.uk-wide-plan
  .profile-my-subscription-plan-card-header
  .subscription-plan-btn
  button {
  color: #069a2b;
}
.profile-my-subscription-plan-card.uk-wide-plan
  .profile-my-subscription-plan-card-body
  .plan-card-body-title {
  color: #069a2b;
}
.profile-my-subscription-plan-card.uk-wide-plan
  .profile-my-subscription-plan-card-body
  .plan-card-body-list-check-icon
  path {
  fill: #069a2b;
}
.profile-my-subscription-plan-card.regional-pluse-plan
  .profile-my-subscription-plan-card-header
  .subscription-plan-btn
  button {
  color: #0ab9a6;
}
.profile-my-subscription-plan-card.regional-pluse-plan
  .profile-my-subscription-plan-card-body
  .plan-card-body-title {
  color: #0ab9a6;
}
.profile-my-subscription-plan-card.regional-pluse-plan
  .profile-my-subscription-plan-card-body
  .plan-card-body-list-check-icon
  path {
  fill: #0ab9a6;
}
.profile-my-subscription-build-package-area {
  border: 1px solid #ede3d4;
  border-radius: 20px;
  background: #fffbf5;
  padding: 40px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: auto 160px;
  gap: 160px;
  align-items: flex-end;
}
.profile-my-subscription-build-package-area .build-package-subtitle {
  color: #006e62;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}
.profile-my-subscription-build-package-area .build-package-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 6px;
}
.profile-my-subscription-build-package-area .build-package-description {
  color: #393f4c;
  font-size: 14px;
  font-weight: 500;
}
.profile-my-subscription-build-package-area
  .build-package-customize-btn
  button {
  width: 160px;
  height: 48px;
  background: #006e62;
  color: var(--white);
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #006e62;
  border-radius: 40px;
}

.profile-my-subscription-build-package-area {
  background-color: #ffe47a;
}

.profile-my-subscription-plan-card.ireland-plan
  .profile-my-subscription-plan-card-body
  .plan-card-body-title {
  color: #ff7800;
}

.profile-my-subscription-plan-card.ireland-plan
  .profile-my-subscription-plan-card-header
  .subscription-plan-btn
  button {
  color: #ff7800;
}

.profile-my-subscription-plan-card.ireland-plan
  .profile-my-subscription-plan-card-body
  .plan-card-body-list-check-icon
  path {
  fill: #ff7800;
}

.profile-my-subscription-plan-card.ireland-plan
  .profile-my-subscription-plan-card-header
  .plan-price-area
  .plan-time
  .plan-save-txt {
  color: #ff7800;
}

/* SWITCH STYLES ––––––––––––––––––––––––––––––– */
.switch-wrapper {
  position: relative;
  display: inline-flex;
  padding: 4px;
  margin-bottom: 80px;
  /* border: 1px solid lightgrey; */
  border-radius: 30px;
  background: #f7f8fa;
}

.switch-wrapper [type="radio"] {
  position: absolute;
  left: -9999px;
}

.switch-wrapper [type="radio"]:checked#monthly ~ label[for="monthly"],
.switch-wrapper [type="radio"]:checked#yearly ~ label[for="yearly"] {
  color: var(--white);
}

.switch-wrapper [type="radio"]:checked#monthly ~ label[for="monthly"]:hover,
.switch-wrapper [type="radio"]:checked#yearly ~ label[for="yearly"]:hover {
  background: transparent;
}

.switch-wrapper
  [type="radio"]:checked#monthly
  + label[for="yearly"]
  ~ .highlighter {
  transform: none;
}

.switch-wrapper
  [type="radio"]:checked#yearly
  + label[for="monthly"]
  ~ .highlighter {
  transform: translateX(100%);
}

.switch-wrapper label {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 1;
  min-width: 124px;
  line-height: 48px;
  cursor: pointer;
  color: #6a707d;
  border-radius: 30px;
  transition: color 0.25s ease-in-out;
  min-height: 48px;
}

.switch-wrapper label:hover {
  background: whitesmoke;
}

.switch-wrapper .highlighter {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 30px;
  background: #0c2724;
  transition: transform 0.25s ease-in-out;
}

.tender-details-body-right-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.subscriptions-pack {
  background-color: #f1f3f6;
  border-radius: 8px;
}
.mt-40 {
  margin-top: 40px !important;
}
.subscriptions-pack .tender-details-body-right-item {
  border: 0;
}

.tender-details-body-right-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  overflow-wrap: anywhere;
}

.side-canvas-title {
  font-size: 18px;
  font-weight: 600;
}

.subscriptions-pack button {
  font-size: 14px;
  font-weight: 500;
  background-color: #2483ea;
  color: #fff;
  border-radius: 8px;
  height: 40px;
  padding: 8px;
  border: solid 1px #2483ea;
}

@media screen and (max-width: 900px) {
  .profile-my-subscription-plan-cards-area {
    grid-template-columns: 1fr 1fr;
  }

  .profile-my-subscription-build-package-area {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .profile-my-subscription-plan-cards-area {
    grid-template-columns: 1fr;
  }
}

.price-packege .mxHeightNont {
  max-height: none !important;
}
