@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");


/* =========================================================
   LOGIN CARD (Tenant Login)
   ========================================================= */
.tenantLoginCard {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 2rem 1rem;
  position: relative;
  background: linear-gradient(140deg, #eaf4f8 0%, #f6fafc 45%, #e3eff5 100%);
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.tenantLoginCard .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  z-index: 0;
  animation: loginCardPulse 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.tenantLoginCard .glow.a {
  width: 480px;
  height: 480px;
  background: rgba(125, 184, 202, 0.35);
  top: -140px;
  left: -120px;
}

.tenantLoginCard .glow.b {
  width: 420px;
  height: 420px;
  background: rgba(90, 158, 181, 0.28);
  bottom: -160px;
  right: -100px;
  animation-delay: -6s;
}

@keyframes loginCardPulse {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.15) translate(30px, 20px); }
}

.tenantLoginCard .card {
  --navy: #2f4858;
  --teal: #7db8ca;
  --teal-deep: #1f6b82;
  --ice: #f0f7fa;
  --ink: #1a2b36;
  --grey: #7a8a94;
  --line: #dfe8ed;

  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 52px 44px 44px;
  box-shadow:
    0 2px 6px rgba(47, 72, 88, 0.05),
    0 14px 34px rgba(47, 72, 88, 0.12),
    0 34px 80px rgba(125, 184, 202, 0.25);
  opacity: 0;
  animation: loginCardFlyIn 1.15s cubic-bezier(0.22, 1.2, 0.32, 1) 0.2s forwards;
}

@keyframes loginCardFlyIn {
  0%   { opacity: 0; transform: translateY(110vh) rotate(-6deg) scale(0.85); }
  55%  { opacity: 1; transform: translateY(-26px) rotate(2deg) scale(1.03); }
  75%  { transform: translateY(10px) rotate(-0.8deg) scale(0.995); }
  100% { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); }
}

.tenantLoginCard .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 1.5px;
  background: linear-gradient(150deg,
    rgba(125, 184, 202, 0.65),
    rgba(125, 184, 202, 0.08) 40%,
    rgba(125, 184, 202, 0.4));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.tenantLoginCard .logo-wrapper { text-align: center; }

.tenantLoginCard .logo {
  display: block;
  max-width: 168px;
  height: auto;
  margin: 0 auto 10px;
}

.tenantLoginCard .portal-label {
  width: 168px;
  margin: 0 auto 34px;
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #9aa7b0;
}

.tenantLoginCard .portal-label.wide {
  width: 236px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
}

.tenantLoginCard .portal-label span.gap { width: 0.35em; }

.tenantLoginCard .welcome { text-align: center; margin-bottom: 34px; }

.tenantLoginCard .welcome h1 { margin-top: 8px; font-size: 25px; font-weight: 800; }

.tenantLoginCard .welcome .strapline {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--grey);
}

.tenantLoginCard .fade-item { opacity: 0; animation: loginCardRise 0.6s ease forwards; }
.tenantLoginCard .fade-item:nth-of-type(1) { animation-delay: 0.95s; }
.tenantLoginCard .fade-item:nth-of-type(2) { animation-delay: 1.05s; }
.tenantLoginCard .fade-item:nth-of-type(3) { animation-delay: 1.15s; }
.tenantLoginCard .fade-item:nth-of-type(4) { animation-delay: 1.25s; }
.tenantLoginCard .fade-item:nth-of-type(5) { animation-delay: 1.35s; }

@keyframes loginCardRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tenantLoginCard .field { position: relative; margin-bottom: 16px; }

.tenantLoginCard .field input {
  width: 100%;
  padding: 16px 18px 16px 48px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: var(--ice);
  border: 2px solid transparent;
  border-radius: 16px !important;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.tenantLoginCard .field input::placeholder { color: var(--grey); font-weight: 600; }

.tenantLoginCard .field input:focus {
  background: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(125, 184, 202, 0.18);
}

.tenantLoginCard .field svg {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  stroke: var(--grey);
  transition: stroke 0.25s ease;
  pointer-events: none;
}

.tenantLoginCard .field input:focus ~ svg { stroke: var(--teal-deep); }

.tenantLoginCard .hint {
  margin: 0 2px 22px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--grey);
  text-align: center;
}

.tenantLoginCard .login-btn {
  width: 100%;
  padding: 17px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, #5a9eb5 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(125, 184, 202, 0.45);
}

.tenantLoginCard .login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(125, 184, 202, 0.55);
}

.tenantLoginCard .login-btn:active { transform: translateY(0) scale(0.99); }

.tenantLoginCard .login-btn:focus-visible { outline: 3px solid var(--teal-deep); outline-offset: 3px; }

.tenantLoginCard .login-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.tenantLoginCard .login-btn:hover::after { left: 130%; }

.tenantLoginCard .foot {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey);
}

.tenantLoginCard .foot .create {
  font-size: 14px;
  font-weight: 800;
  color: var(--teal-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tenantLoginCard .foot .create:hover { color: var(--navy); }

.tenantLoginCard .foot .divider {
  height: 1px;
  background: var(--line);
  margin: 0 0 18px;
}

.tenantLoginCard input:focus-visible,
.tenantLoginCard a:focus-visible {
  outline: 3px solid var(--teal-deep);
  outline-offset: 2px;
  border-radius: 6px !important;
}

@media (max-width: 480px) {
  .tenantLoginCard .card { padding: 42px 28px 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .tenantLoginCard .card,
  .tenantLoginCard .glow,
  .tenantLoginCard .fade-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .tenantLoginCard .login-btn::after { display: none; }
  .tenantLoginCard * { transition-duration: 0.01ms !important; }
}


.mkdf-content {
  position: relative;
  margin-top: 0;
  background-color: #fff;
}

.mkdf-full-width {
  position: relative;
  z-index: 100;
}

.main-content {
  display: flex;
  padding: 20px;
}

.tenant-dsh .main-content {
  justify-content: center;
}

.main-content .left {
  padding: 58px;
  max-width: 445px;
}

.main-content .left p {
  color: #325f7e;
  font-size: 30px;
  letter-spacing: 1px;
  line-height: 35px;
  margin-bottom: 60px;
}

.main-content .left a.b-btn {
  letter-spacing: 0.125em;
  line-height: 2em;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  padding: 12px 37px;
  background-color: #7db8ca;
  border-radius: 7px;
}

.main-content .right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-content .right img {
  width: 100%;
  max-width: 400px;
}

.flexbox-container {
  display: flex;
  align-items: center;
  /* height: 70vh; */
  padding: 50px 0px;
}

.box-shadow-2 {
  box-shadow: 0 10px 18px 0 rgba(62, 57, 107, 0.2);
}

.line-on-side {
  border-bottom: 1px solid #dadada;
  line-height: 0.1em;
  margin: 10px 0 20px;
}

.font-small-3 {
  font-size: 0.9rem !important;
}

.line-on-side span {
  background: #fff;
  padding: 0 10px;
}

.has-icon-left .form-control {
  padding-right: 1rem;
  padding-left: calc(2.75rem + 2px);
}

.form-simple input[type="text"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-control-position {
  position: absolute;
  top: 1px;
  right: 0;
  z-index: 2;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 3.2rem;
  text-align: center;
}

.has-icon-left .form-control-position {
  right: auto;
  left: inherit;
}

.btn-info {
  color: #fff;
  background-color: #7db8ca;
  border-color: #7db8ca;
}

.d-flex a {
  margin-left: 6px;
  color: rgba(50, 95, 126, 1);
}

.row.match-height {
  display: flex;
  justify-content: center;
  padding: 50px 0px;
}

.form-actions.right {
  text-align: right;
}

.btn-primary {
  color: #fff;
  background-color: rgba(50, 95, 126, 1);
  border-color: rgba(50, 95, 126, 1);
}

.btn-warning {
  color: #fff;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 225px;
  padding: 8px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li {
  width: 100%;
}

.dropdown-content li a {
  color: rgba(50, 95, 126, 1) !important;
}

.main-content.dashboard h3 {
  color: #325f7e;
  font-size: 31px;
}

.main-content.dashboard .left {
  flex: 1;
}

.main-content.dashboard .left p {
  color: #325f7e;
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 30px;
  margin-bottom: 40px;
  font-weight: 400;
}

.main-content.dashboard .left a.phone {
  font-weight: 400;
  color: #325f7e;
  text-decoration: underline;
}

.main-content.dashboard .left {
  padding: 0px;
  max-width: 780px;
}

.main-content.dashboard .right {
  flex: none;
  align-self: center;
}

.main-content.dashboard .right a.call-me {
  letter-spacing: 0.125em;
  line-height: 2em;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  padding: 7px 23px;
  background-color: #7db8ca;
  border-radius: 7px;
}

.dashboard-box {
  display: flex;
  padding-bottom: 75px;
}

/* .dashboard-box .box{
    flex: 1;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 4px 0px #d2d2d2;
} */

/* .dashboard-box .box.d-box-1,.dashboard-box .box.d-box-2 {
    margin-right: 25px;
} */

.dashboard-box .box .title {
  flex: 1;
  align-items: center;
  display: flex;
}

.dashboard-box .box .title span {
  color: #325f7e;
  font-weight: 400;
  font-size: 32px;
}

.dashboard-box .box .status-block {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-box .box a.status-block {
  padding: 8px 20px;
  color: #fff;
  border-radius: 25px;
  max-width: 150px;
  font-size: 14px;
}

.dashboard-box .box a.status-block.green {
  background: green;
}

.dashboard-box .box a.status-block.blue {
  background: #7db8ca;
}

.dashboard-box .box a.status-block.red {
  background: red;
}

.product-blk-sec {
  padding: 60px 0;
  display: inline-block;
  width: 100%;
}

.large-container {
  max-width: 1600px;
  margin: auto;
}

.product-category-row {
  display: flex;
}

.product-left-category {
  width: 275px;
  background: #fff;
  border: 1px solid #e7e7e7;
  height: fit-content;
}

.filter-options-block {
  display: block;
}

.clear {
  margin-top: -32px;
  margin-right: -1px;
  float: right;
}

.clear a {
  width: 115px;
  text-align: center;
  border: 1px solid #e7e7e7;
  background: #fff;
  padding: 0 12px;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  display: inline-block;
  color: rgba(50, 95, 126, 1);
}

.close-filter {
  display: none;
}

.filter-lbl h2 {
  font-size: 16px;
  border-bottom: 1px solid #e7e7e7;
  padding: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(50, 95, 126, 1);
}

.product-category-box {
  border-bottom: 1px solid #d3d3d3;
  padding: 10px 0;
  margin-bottom: 10px;
}

.product-category-box.last-child {
  border-bottom: none !important;
}

.product-category-inner {
  padding: 0 15px;
}

.product-category-inner h2 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(50, 95, 126, 1);
  margin: 0px 0 10px 0px;
}

.price-range {
  padding: 2px 0 0;
  font-size: 13px;
  display: inline-block;
  width: 100%;
}

.category-listing ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.category-img-listing ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}

.category-img-listing ul li {
  border: 1px solid #e2e2e2;
  margin-bottom: 10px;
}

.category-img-listing ul li.selected {
  border: 2px solid #43e643 !important;
}

.category-img-listing ul li a {
  display: block;
  padding: 10px;
}

.category-img-listing ul li:nth-child(odd) {
  margin-right: 10px;
}

.category-img-listing ul li img {
  max-width: 88px;
}

.check-custom {
  margin-bottom: 7px;
}

.check-custom input[type="checkbox"] {
  display: none;
}

.check-custom input[type="checkbox"] + label {
  background: transparent url(../images/chk.png) no-repeat left top;
  font-weight: 400;
  line-height: 18px;
  margin: 0;
  min-height: 26px;
  min-width: 26px;
  padding: 2px 0 0 32px;
}

.check-custom input[type="checkbox"]:checked + label {
  background: transparent url(../images/chk_a.png) no-repeat left top;
}

.product-right-side {
  width: calc(100% - 250px);
  padding-left: 25px;
}

.price-range .form-control {
  height: 43px !important;
  padding: 8px;
}

.provider-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  background-color: #fff;
  box-shadow: 0 0px 20px -2px #d2d3e0;
  padding: 5px 0px;
}

.name-block {
  text-align: center;
  border-bottom: 1px solid #ececec;
  padding: 5px 0px;
  font-weight: 400;
  color: rgba(50, 95, 126, 1);
}

.main-detail-block {
  display: flex;
  padding: 5px 0px;
  border-bottom: 1px solid #ececec;
  align-items: center;
}

.image-block {
  width: 20%;
  text-align: center;
}

.image-block img {
  width: 100px;
  margin: 25px 0px;
}

.price-block {
  width: 20%;
  padding: 25px;
}

.price-block h2 {
  margin: 0px;
  color: rgba(50, 95, 126, 1);
  font-size: 42px;
}

.info-block {
  display: flex;
  width: 55%;
}

.info-block > div {
  width: 22%;
  padding: 25px 5px 30px;
  text-align: center;
}

.info-block > div i {
  font-size: 25px;
  line-height: 40px;
  margin-bottom: 20px;
  display: block;
  color: #00c686;
}

.info-block > div h2 {
  margin: 0px;
  margin-bottom: 22px;
  color: #00c686;
  font-size: 32px;
  line-height: 37px;
}

.button-block {
  width: 20%;
  display: flex;
  align-self: center;
}

.label-block {
  text-align: center;
  padding: 5px 10px;
  font-size: 14px;
}

.label-block i {
  margin-right: 5px;
  font-size: 14px;
}

.provider-page {
  max-width: 100%;
  background-color: #f5f6fa;
}

.button-block a {
  letter-spacing: 0.75px;
  line-height: 2em;
  font-weight: 500;
  cursor: pointer;
  color: #fff;
  padding: 7px 23px;
  background-color: #7db8ca;
  border-radius: 7px;
}

.line-on-side {
  border-bottom: 1px solid #dadada;
  line-height: 0.1em;
  margin: 10px 0 20px;
}

.card-header {
  padding: 1.5rem 1.5rem;
  margin-bottom: 0;
  background-color: #fff;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.25;
  color: #4e5154;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #babfc7;
  border-radius: 0.25rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

#tenancyModal .modal-dialog {
  width: 80%;
  max-width: 768px;
}

#tenancyModal .modal-header {
  background-color: #58468c;
  padding: 0px;
}

#tenancyModal .modal-header h5 {
  color: #fff;
  font-size: 18px;
  margin: 0px;
}

#tenancyModal .modal-body h3 {
  color: #58468c;
  font-size: 18px;
  margin: 22px 0px;
}

.energy-blocks .main-detail-block > div {
  width: 25% !important;
  text-align: center;
}

.energy-blocks .main-detail-block div.estimated-cost h5 {
  margin-bottom: 0px;
  color: rgba(50, 95, 126, 1);
  font-weight: 500;
}

.energy-blocks .main-detail-block div.estimated-cost p {
  color: rgba(50, 95, 126, 1);
  font-weight: 400;
  margin: 0px;
  margin-top: 6px;
}

.energy-blocks .main-detail-block div.estimated-cost p:last-child {
  margin: 0px;
}

.energy-blocks .main-detail-block div.new-saving-block h2 {
  font-size: 24px;
  color: #00c686;
}

.energy-blocks .main-detail-block {
  padding: 15px 0px !important;
}

.form-group select {
  height: 45px !important;
}

.alert {
  font-size: 15px;
}

.btn-warning,
.btn-success,
.btn-primary,
.btn-danger {
  border-color: #7db8ca !important;
  background-color: #7db8ca !important;
  color: #fff;
}

.btn-warning:hover,
.btn-success:hover,
.btn-primary:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-success:focus,
.btn-success:active,
.btn-primary:focus,
.btn-primary:active,
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
  border-color: #325f7e !important;
  background-color: #325f7e !important;
  color: #fff !important;
}

.ct-featureBox h4 {
  padding: 10px 0 5px;
  color: #325f7e;
  font-size: 1.8rem;
}

.ct-featureBox p {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}

.main-content h2,
.main-content h3 {
  color: #fff;
  font-size: 5.5rem;
  text-align: center;
}

.main-content h2 {
  text-transform: uppercase;
  margin-bottom: 0;
}

.main-content h3 {
  margin-top: 0;
}

.dashboard-box h3,
.dashboard-box .fa {
  font-size: 3rem;
  color: #325f7e;
}

.ct-featureBox {
  width: 100%;
  background: #fff;
  padding: 40px 55px;
  margin: 15px 0;
  min-height: 250px;
  display: flex;
  text-align: center;
  color: inherit;
  -webkit-transition: background-color, 0.25s, ease-in-out;
  transition: background-color, 0.25s, ease-in-out;
  box-shadow: 0 0px 10px 5px #ccc8c8;
  border-radius: 30px;
}

.ct-featureBox .inner {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}

.ct-featureBox .image {
  text-align: center;
}

.ct-featureBox .image img {
  display: inline-block;
}

img,
figure {
  max-width: 100%;
}

@media screen and (max-width: 991px) {
  .ct-featureBox {
    padding: 20px 55px;
  }
}

.small-loader {
  display: none;
  position: absolute;
  right: 11px;
  top: 11px;
}

.autocomplete-div {
  position: absolute;
  background-color: white;
  z-index: 1000;
  width: 100%;
  margin-bottom: 12px;
  max-height: 250px;
  overflow-y: auto;
}

.autocomplete-form-group {
  width: 100%;
  position: relative;
}

.autocomplete-div ul {
  list-style: none;
  padding: 0px;
  background-color: white;
  border: 1px solid #e0dada;
}

.autocomplete-div ul li {
  padding: 6px 41px;
  border-bottom: 1px solid #e0dada;
  cursor: pointer;
  font-size: 13px;
}

.autocomplete-div ul li:hover {
  background-color: blue;
  color: white;
}

.new-dashboard .new-tiles .btn {
  background: #7db8ca !important;
}

.new-dashboard .new-tiles .btn.green {
  background: green !important;
}

.new-dashboard .planning-tools.style1:hover .icon-bx {
  box-shadow:
    inset 0 0 0px 6px #7db8ca,
    10px 0px 40px -5px rgba(57, 0, 0, 0.17);
}

.new-dashboard .planning-tools.style1:after {
  background: #7db8ca !important;
}

.new-dashboard .planning-tools.style1:hover .btn {
  background: #fff !important;
}

.new-dashboard .home-banner {
  background: #2e5c80;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.new-dashboard .section-head .box-title {
  font-size: 18px;
}

.new-dashboard .section-head .box-title span {
  font-size: 22px;
}

.new-dashboard .section-head .box-title span:first-child {
  margin-bottom: 16px;
}

.new-dashboard .section-head .box-title span.new_address_text {
  font-size: 16px;
  color: #666;
}

.new-dashboard .icon-bx {
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-dashboard .icon-bx .icon {
  font-size: 60px;
  color: #325f7e;
}

.new-dashboard .planning-tools.style1 .icon-bx,
.new-dashboard .planning-tools.style1 .icon-bx img {
  width: 100px;
  height: 100px;
}

.new-dashboard .planning-tools.style1:hover .icon-bx {
  border-radius: 100% !important;
}

.new-dashboard .apps-box {
  background: #7db8ca;
}

.small-image-dsh {
  display: none;
  width: 100%;
}

.checkterms div {
  display: flex;
}

.checkterms .termcondition-label {
  font-size: 13px !important;
  margin-left: 8px;
  margin-top: -4px;
}

.checkterms .termcondition-label a {
  text-decoration: underline;
}

.new-dashboard video {
  height: 330px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -65px;
}

.dlab-bnr-inr.dlab-bnr-inr-sm {
  height: 300px !important;
  top: -1px;
}

.new-dashboard .planning-tools.style1 .icon-bx.couimg,
.planning-tools.style1 .icon-bx.couimg img {
  max-width: 190px;
  width: auto;
  height: auto;
  border-radius: 0px;
  max-height: 130px;
}

.new-dashboard .planning-tools.style1 .content-bx p a {
  text-decoration: underline;
  color: #666;
}

.new-dashboard .planning-tools.style1:hover .icon-bx.couimg {
  border-radius: 0px !important;
}

.web-res {
  display: block;
}

.mobile-res {
  display: none;
}

.icon-bx h5 {
  display: none;
}

.information-message-block {
  display: none;
}

.information-block {
  display: none;
}

.new-dashboard .home-banner img {
  display: none;
}

.new-dashboard .home-banner video {
  display: block;
  margin: auto;
}

.new-dashboard .section-head-banner {
  background: #fff;
  max-width: 360px;
  margin: 0 auto;
  position: absolute;
  top: 198px;
  left: 50%;
  border-radius: 25px;
  padding: 15px;
  z-index: 10000;
  min-height: 150px;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
  flex-direction: column;
}

.section-head .box-title {
  font-size: 18px;
  line-height: unset;
}

.new-dashboard .content-inner {
  margin-top: 70px;
}

.rd-navbar-fixed .rd-navbar-panel {
  box-shadow: none;
}

.loadingProgressG,
.rd-navbar-fixed .rd-navbar-panel {
  background: #2e5c80 !important;
}

.big-image-dsh {
  display: none;
}

.greyout-overlay {
  position: absolute;
  background-color: rgb(224 217 217 / 50%);
  height: 93%;
  z-index: 100;
  top: 0px;
  width: 90%;
}

#broadbandModal .modal-content {
  border-radius: 60px;
  padding: 25px 10px;
}

#broadbandModal .modal-body p {
  text-align: center;
}

#broadbandModal .modal-body p.pcode {
  font-size: 32px;
  margin-top: 45px;
  position: relative;
  margin-bottom: 8px;
}

#broadbandModal .modal-body p.pcode span {
  font-size: 18px;
  font-weight: 600;
  margin-left: 13px;
  position: absolute;
  text-transform: uppercase;
  display: none;
}

#broadbandModal .modal-footer {
  display: flex;
  justify-content: center;
}

#broadbandModal a {
  border-radius: 23px;
}

#broadbandModal .pcode i {
  border: 1px solid #d2c9c9;
  padding: 0px 6px;
  background-color: #e4e4e4;
  font-size: 20px;
  position: relative;
  top: -4px;
  cursor: pointer;
}

.new-dashboard .section-head .box-title {
  margin-top: 0px;
  margin-bottom: 10px;
}

.new-dashboard .social-channel-block .list.list-xs li a {
  color: #325f83;
}

.new-dashboard .social-channel-block .list.list-xs li:hover a {
  color: #fff;
}

.new-dashboard .social-channel-block .list.list-xs li:hover {
  background-color: #325f83;
}

.new-dashboard .social-channel-block .list.list-xs li:hover a span.icon {
  color: #fff;
}

@media screen and (min-width: 768px) {
  #broadbandModal .modal-dialog {
    min-width: 685px;
  }

  .safe-secure-box {
    height: 140px;
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .new-dashboard video {
    width: 100%;
  }

  .new-dashboard .content-inner {
    margin-top: 155px;
  }

  .big-image-dsh {
    display: block;
  }

  .greyout-overlay {
    width: 91.8%;
  }
}

@media screen and (max-width: 500px) {
  .big-image-dsh {
    display: none;
  }

  .small-image-dsh {
    display: block;
  }

  #broadbandModal .modal-body p.pcode span {
    position: relative;
  }

  .new-dashboard video {
    height: 130px;
  }

  .dlab-bnr-inr.dlab-bnr-inr-sm {
    height: 130px !important;
  }

  .web-res {
    display: none;
  }

  .mobile-res {
    display: block;
  }

  .new-dashboard .planning-tools.style1 {
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 10px 4px #dadada;
    border-radius: 15px;
  }

  .new-dashboard .planning-tools.style1 .icon-bx.couimg {
    margin: 0px;
  }

  .new-dashboard .planning-tools.style1 .icon-bx.couimg,
  .planning-tools.style1 .icon-bx.couimg img {
    max-width: 200px;
  }

  .new-dashboard .tiles {
    position: relative;
  }

  .new-dashboard .information-block {
    position: absolute;
    top: 6px;
    right: 26px;
    color: #325f7e;
    font-size: 18px;
    display: block;
  }

  .new-dashboard .mobile-res {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .new-dashboard .mobile-res i {
    color: green;
    font-size: 5em;
  }

  .new-dashboard .icon-bx {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .new-dashboard .icon-bx .icon {
    font-size: 40px;
  }

  .icon-bx h5 {
    display: block;
  }

  .planning-tools.style1 .title {
    font-size: 19px;
  }

  .planning-tools.style1 .icon-bx {
    margin: 0px;
  }

  .new-dashboard .m-b30 {
    margin-bottom: 15px;
  }

  .information-message-block {
    position: absolute;
    background: #fff;
    z-index: 1000;
    padding: 5px 16px;
    width: 80%;
    top: 40px;
    border: 1px solid #ccc;
    right: 17px;
    display: none;
  }

  .information-message-block p {
    margin: 0px;
  }

  .information-message-block::after {
    content: "";
    background-color: #fff;
    border-color: #ccc;
    border-style: solid;
    border-width: 1px 1px 0 0;
    height: 16px;
    position: absolute;
    width: 16px;
    top: -9px;
    transform: rotate(-45deg);
    right: 8px;
  }

  .information-message-block .fa-close {
    font-size: 18px;
    position: absolute;
    top: 1px;
    right: 8px;
    margin-bottom: 12px;
  }

  .new-dashboard .home-banner img {
    display: block;
    margin: auto;
    top: -21px;
    position: relative;
  }

  .new-dashboard .home-banner video {
    display: none;
  }

  .dlab-bnr-inr.dlab-bnr-inr-sm.home-banner {
    padding-top: 20px !important;
  }

  .new-dashboard .section-head-banner {
    top: 70px;
    width: 90%;
  }
}

/*New Css*/
.dsh .rd-navbar-nav {
  margin-bottom: 0px !important;
}

.svg-inline--fa {
  display: inline-block;
  font-size: inherit;
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}

.muuvo-dashboard {
  padding: 2rem 0;
  background-color: #f5f6fa;
  color: rgb(16, 16, 16);
  line-height: 1.867;
  font-size: 13px;
}

.muuvo-dashboard .row + .row {
  margin-top: 0;
}

.muuvo-dashboard h5 {
  font-size: 13px;
  margin-bottom: 0;
}

p:last-child {
  margin-bottom: 0;
}

.layout-card {
  border: 1px solid #e6dfdf;
  position: relative;
  color: #727272;
  border-radius: 7px;
  margin-bottom: 18px;
  overflow: hidden;
}

.padding-layout-card {
  padding: 36px 30px;
}

.layout-card.layout-borde {
  border-radius: 0;
}

.layout-card.layout-border::after {
  position: absolute;
  content: "";
  width: 4px;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #5766cb;
  display: block;
}

.layout-icon-box {
  position: relative;
  padding-left: 55px;
}

.layout-icon-box img.layout-img {
  max-width: 35px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.suppliers-block-box .layout-icon-box img.layout-img {
  max-width: 103px;
}

.suppliers-block-box .layout-content p {
  padding-left: 85px;
}

.sitebtn {
  padding: 1.2em 1.8em;
  color: #fff;
  line-height: 1.5;
  background-color: #5766cb;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 11px;
}

.sitebtn .btn-icon {
  padding-right: 5px;
}

.welcome-box {
  font-size: 13px;
  line-height: 1.385;
  background-color: #fdefe4;
}

.broadband-box {
  background-color: #e8f2fa;
}

/* .welcome-box .inner-box {
    display: flex;
    justify-content: space-between;
    align-items: end;
} */
.welcome-box .inner-box .sinner-1 h5 {
  font-size: 16px;
  color: #000;
}
.welcome-box .inner-box .sinner-1 h5 b {
  font-weight: 600;
}
.welcome-box .inner-box h4.address {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 650;
  color: #000;
  margin: 0;
}
.welcome-box .inner-box p.all-address {
  color: #323232d6;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 15px;
}
.welcome-box .inner-box p.all-address1 {
  margin: 0;
  color: #323232d6;
  font-size: 16px;
  margin-bottom: 15px;
}
.welcome-box .inner-box p {
  color: #323232d6;
  font-size: 16px;
}
.welcome-box .inner-box p.mt-0 {
  font-style: italic;
}

.welcome-box .inner-box .sinner-1 {
  padding: 36px 30px;
}

.welcome-box .inner-box .sinner-2 img {
  max-width: 350px;
  padding: 40px;
}

.broadband-box .sitebtn {
  background-color: #5766cb;
  color: white !important;
  margin-right: 10px !important;
}

.insurance-link {
  color: #c97c7c;
  margin-right: 15px;
}
.council-box.layout-border::after,
.council-box.sitebtn {
  background-color: #c97c7c;
}

.council-box.layout-border::after {
  background-color: #c97c7c;
}

.water-box.layout-border::after,
.water-box.sitebtn {
  background-color: #c97c7c;
}

.water-box.layout-border::after {
  background-color: #c97c7c;
}

.insurance-box.layout-border::after,
.insurance-box .sitebtn {
  background-color: #c97c7c;
}

.insurance-box.layout-border::after {
  background-color: #c97c7c;
}

.n-insurance.layout-border::after,
.n-insurance .sitebtn {
  background-color: #b4111a;
}

.n-insurance.layout-border::after {
  background-color: #b4111a;
}

.n-councile.layout-border::after,
.n-councile .sitebtn {
  background-color: #b4111a;
}

.n-councile.layout-border::after {
  background-color: #b4111a;
}

.n-water.layout-border::after,
.n-water .sitebtn {
  background-color: #b4111a;
}

.n-water.layout-border::after {
  background-color: #b4111a;
}

.electric-box.layout-border::after {
  background-color: #7db8ca;
}

.rent-tracking-block-dsh.layout-border::after,
.rent-tracking-block-dsh .sitebtn {
  background-color: #25debc;
}

.inner-box::after {
  background-color: #100030 !important;
}

.energy-box::after {
  background-color: #004ecc !important;
}

.energy a.ovebtn {
  background-color: #004ecc !important;
  color: #fff;
  margin-right: 10px;
}

.councile-tracking-block-dsh.layout-border::after,
.councile-tracking-block-dsh .ovebtn {
  background-color: #5868c8;
  color: white;
  margin-right: 10px;
}

.water-tracking-block-dsh.layout-border::after,
.water-tracking-block-dsh .ovebtn {
  background-color: #c57b7c;
  color: white;
  margin-right: 10px;
}

.virgin-broadband-new-block .get-boardband-connect-button,
.virgin-broadband-new-block .mobile-broadband-content {
  display: flex;
  flex-direction: column;
}

.virgin-broadband-new-block .get-boardband-connect-button a:first-child,
.virgin-broadband-new-block .mobile-broadband-content a:first-child {
  margin-bottom: 12px;
}

.rebel-energy-block.layout-border::after,
.rebel-energy-block .sitebtn {
  background-color: #ff3f5c;
}

.green-val-block.layout-border::after,
.green-val-block .sitebtn {
  background-color: #13ce66;
}

.rebel-energy-block .layout-content p {
  margin-bottom: 0px !important;
}

.energy-box.layout-border::after {
  background-color: #c3baba;
}

.energy-box.layout-border.available-e::after,
.energy-box .sitebtn {
  background-color: #30af5f;
}

.energy-box.layout-border {
  border-color: rgb(230, 223, 223);
}

.energy-box .energy-lock-content {
  color: rgba(114, 114, 114, 50%);
}

.sidebar-card {
  color: rgba(112, 112, 112, 0.8);
  border-radius: 5px;
  margin-bottom: 1rem;
}

.sidebar-card .sidebar-inner {
  padding: 25px;
  border-bottom: 1px solid #f1ebeb;
}

.sidebar-card .sidebar-inner h4 {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(16, 16, 16, 0.8);
}

.sidebar-card .sidebar-inner h4.address {
  margin-bottom: 2px;
}

.sidebar-card .sidebar-inner p.all-address {
  margin: 0px;
  margin-bottom: 15px;
  font-size: 15px;
  color: rgba(16, 16, 16, 0.8);
}

.progress-track {
  padding: 18px 25px;
  border-right: 1px solid #f0f0f0;
  border-left: 1px solid #f0f0f0;
}

.progress-menu ul li {
  padding: 20px 24px;
  border: 1px solid #f1ebeb;
  margin-bottom: -1px;
}

.progress-menu ul li.active {
  background-color: #f9fcf2;
}

.progress-menu .progress-content {
  position: relative;
  padding-left: 45px;
  padding-right: 50px;
}

.progress-menu ul li.disabled {
  color: rgba(112, 112, 112, 0.8);
}

.progress-menu ul li.disabled h5 {
  color: rgb(114, 114, 114);
}

.progress-menu ul li.disabled:last-child {
  border: 1px solid #f0f0f0;
  border-top: 1px solid #f1ebeb;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}

.progress-menu ul li.disabled .progress-task-img {
  opacity: 0.4;
}

.progress-menu .progress-content .progress-task-img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 28px;
}

.progress-menu .progress-content .progress-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}

.progress-icon img {
  max-width: 30px;
}

.progress-icon .white-circle {
  width: 22px;
  height: 22px;
  content: "";
  border: 1px solid;
  border-radius: 50%;
}

.progress-icon .circle-img {
  width: 24px;
  height: 24px;
  display: block;
  opacity: 0.1;
  background-color: #707070;
  border-radius: 50%;
}

.progress-radio {
  width: 30px;
  height: 30px;
}

.home-sidebar {
  padding: 25px;
  border: 1px solid rgb(240, 240, 240);
}

.home-sidebar .sitebtn {
  background-color: #34678b;
}

.n-insurance.padding-layout-card {
  padding: 30px 30px;
}

.n-insurance .layout-icon-box {
  padding-left: 170px;
}

.n-insurance .layout-img {
  max-width: 150px !important;
}

.n-councile.padding-layout-card {
  padding: 30px 30px;
}

.n-councile .layout-icon-box {
  padding-left: 170px;
}

.n-councile .layout-img {
  max-width: 150px !important;
}

.n-water.padding-layout-card {
  padding: 30px 30px;
}

.n-water .layout-icon-box {
  padding-left: 170px;
}

.n-water .layout-img {
  max-width: 150px !important;
  height: 100px !important;
}

.rent-tracking-block-dsh .layout-img {
  max-width: 140px !important;
  width: 100%;
  top: 68% !important;
}

.water-tracking-block-dsh .layout-img {
  max-width: 120px !important;
  top: 77% !important;
}
.councile-tracking-block-dsh .layout-img {
  max-width: 120px !important;
  top: 77% !important;
}

.virgin-broadband-new-block .layout-img {
  max-width: 142px !important;
}

.n-insurance .layout-content p {
  font-size: 12px;
  line-height: 17px;
}

.n-insurance .col-md-auto {
  display: flex;
  flex-direction: column;
}

.n-insurance .col-md-auto a.get-a-quote {
  margin-bottom: 13px;
}

.n-councile .layout-content p {
  font-size: 12px;
  line-height: 17px;
}

.n-councile .col-md-auto {
  display: flex;
  flex-direction: column;
}

.n-councile .col-md-auto a.get-a-quote {
  margin-bottom: 13px;
}

.n-water .layout-content p {
  font-size: 12px;
  line-height: 17px;
}

.n-water .col-md-auto {
  display: flex;
  flex-direction: column;
}

.n-water .col-md-auto a.get-a-quote {
  margin-bottom: 13px;
}

.a-b-group .layout-img {
  min-width: 170px;
  left: -12px !important;
  top: 56% !important;
}

.legal-4-landlords .layout-img {
  min-width: 150px;
}

.removal-box {
  background-color: #fff;
}

.removal-box .sitebtn {
  background-color: #41a5dd;
}

.safe-secure-box .sitebtn {
  background-color: #0f004e;
}

.legal-4-landlords .sitebtn {
  background-color: #3c3c3b;
}

.uw-box .sitebtn {
  background-color: #550091;
}

.hb-easy .sitebtn {
  background-color: #f7c929;
  color: #000;
}

.removal-box.layout-border::after {
  background-color: #41a5dd;
}

.safe-secure-box.layout-border::after {
  background-color: #0f004e;
}

.legal-4-landlords.layout-border::after {
  background-color: #3c3c3b;
}

.urban-jungle .sitebtn {
  background-color: #3d5cde;
}

.urban-jungle.layout-border::after {
  background-color: #3d5cde;
}

.uw-box.layout-border::after {
  background-color: #550091;
}

.hb-easy.layout-border::after {
  background-color: #f7c929;
}

.safe-secure-box .layout-img {
  max-width: 150px !important;
}

.removal-box .layout-icon-box {
  padding-left: 170px;
}

.removal-box.padding-layout-card {
  padding: 30px 30px;
}

.removal-box .layout-content p {
  font-size: 12px;
  line-height: 17px;
  margin-bottom: 10px !important;
}

.removal-box .layout-icon-box .layout-img-1 {
  max-width: 148px;
  top: 32%;
}

.removal-box .layout-icon-box .layout-img-2 {
  max-width: 88px;
  margin-top: 35px;
  top: 31%;
}

.main-ind .broadband-box.padding-layout-card {
  padding: 30px 30px;
}

.main-ind .broadband-box .layout-content p {
  font-size: 12px;
  line-height: 17px;
  margin-bottom: 10px !important;
}

.main-ind .broadband-box div.layout-img {
  position: absolute;
  left: 0px;
  top: 0px;
}

.main-ind .broadband-box.energy-tile-dt div.layout-img {
  position: absolute;
  left: 0px;
  top: -8px;
}

.main-ind .broadband-box .layout-img-1 {
  max-width: 60px;
}

.main-ind .broadband-box .layout-img-2 {
  max-width: 70px;
}

.main-ind .broadband-box .layout-img-3 {
  max-width: 40px;
}

.main-ind .broadband-box .layout-img-4 {
  max-width: 80px;
}

.main-ind .broadband-box .layout-img-3,
.broadband-box .layout-img-4 {
  margin-top: 3px;
}

.main-ind .broadband-box.energy-tile-dt .layout-img-3,
.broadband-box.energy-tile-dt .layout-img-4 {
  margin-top: -10px;
}

.main-ind .broadband-box,
.removal-box,
.insurance-box,
.council-box,
.water-box,
.energy-box {
  background-color: #f2f2f2 !important;
}

.main-ind .broadband-box .sitebtn {
  background-color: #7245a0;
}

.main-ind .broadband-box.energy-tile-dt .sitebtn {
  background-color: #0070c0;
}

.main-ind .broadband-box.layout-border::after {
  background-color: #7245a0;
}

.main-ind .broadband-box.layout-border.energy-tile-dt::after {
  background-color: #0070c0;
}

.main-ind .bespoke-slide .sitebtn {
  background-color: #ffbd59;
  color: #142640;
}

.main-ind .bespoke-slide.layout-border::after {
  background-color: #ffbd59;
}

.virgin-broadband-new-block.layout-border::after,
.virgin-broadband-new-block .sitebtn {
  background-color: #ff0000 !important;
}

.main-ind .broadband-box .layout-icon-box {
  padding-left: 167px;
}

.get-boardband-connect-button {
  display: none !important;
}

@media only screen and (max-width: 1024px) {
  .layout-card.layout-border {
    border-left: 0;
  }

  .layout-card.layout-border::after {
    width: 5px;
  }
}

@media only screen and (max-width: 991px) {
  .progress-menu {
    display: none;
  }

  #progress-dropdown-task {
    cursor: pointer;
  }
}

@media only screen and (max-width: 767px) {
  .padding-layout-card {
    padding: 25px;
  }

  .muuvo-dashboard p,
  .muuvo-dashboard span {
    font-size: 13px;
  }

  .welcome-box {
    min-height: 235px;
  }

  .welcome-box p {
    font-size: 11px;
  }

  .welcome-box .inner-box {
    display: block;
  }

  .welcome-box .inner-box .sinner-1 {
    padding: 25px;
  }

  .welcome-box .inner-box .sinner-2 img {
    max-width: 100%;
  }

  .n-insurance .layout-icon-box {
    padding-left: 120px;
  }

  .n-insurance .layout-img {
    max-width: 100px !important;
    min-width: unset !important;
    left: 0px;
    top: 50%;
  }

  .n-councile .layout-icon-box {
    padding-left: 120px;
  }

  .n-councile .layout-img {
    max-width: 100px !important;
    min-width: unset !important;
    left: 0px;
    top: 50%;
  }
  .n-water .layout-icon-box {
    padding-left: 120px;
  }

  .n-water .layout-img {
    max-width: 100px !important;
    min-width: unset !important;
    left: 0px;
    top: 50%;
  }
  .virgin-broadband-new-block .layout-img {
    max-width: 100px !important;
    min-width: unset !important;
    left: 0px;
    top: 50%;
  }

  .legal-4-landlords .layout-img {
    max-width: 100px !important;
    min-width: unset !important;
    left: 0px;
    top: 50%;
  }

  .removal-box .layout-img {
    max-width: 100px !important;
  }

  .removal-box .layout-img-2 {
    max-width: 72px !important;
  }

  .removal-box .layout-icon-box {
    padding-left: 120px;
  }

  .removal-box .sitebtn,
  .broadband-box .sitebtn,
  .rent-tracking-block-dsh .sitebtn {
    width: 100%;
  }

  .main-ind .broadband-box div.layout-img {
    top: 30%;
  }

  .mobile-broadband-content {
    display: none !important;
  }

  .mobile-broadband-styles.padding-layout-card {
    padding: 21px 30px 7px !important;
  }

  .mobile-broadband-styles div.layout-img {
    top: 8px !important;
  }

  .get-boardband-connect-button {
    display: block !important;
    padding: 0px;
    margin-top: 10px;
  }

  .mobile-broadband-styles .layout-icon-box {
    padding-left: 134px !important;
  }

  .mobile-broadband-styles .layout-content h5 {
    font-size: 13px !important;
  }

  .mobile-broadband-styles .sitebtn {
    font-size: 10px !important;
  }
  .mobile-broadband-styles .ovebtn {
    font-size: 10px !important;
  }

  a.btn.ovebtn {
    width: 100%;
  }

  .sitwidth100 {
    width: 100%;
  }

  .mobile-broadband-styles .layout-img-1 {
    max-width: 50px !important;
  }

  .mobile-broadband-styles .layout-img-2 {
    max-width: 50px !important;
  }

  .mobile-broadband-styles .layout-img-3 {
    max-width: 35px !important;
  }

  .mobile-broadband-styles .layout-img-4 {
    max-width: 70px !important;
  }

  .paddingLeft134 {
    padding-left: 134px !important;
  }

  .fontsize14 {
    font-size: 14px !important;
  }
}

.rent-tracking-banner-section .heading-decorate.text-large {
  font-size: 50px;
}

.rent-tracking-banner-section .heading-decorate.text-large.fs50 {
  font-size: 30px;
}

.rent-tracking-banner-section p span.slideInDown {
  color: #fff;
  font-size: 22px;
}

#uwModal .modal-content {
  border-radius: 50px;
  border: 2px solid #5d0c96;
}

#uwModal .modal-body {
  text-align: center;
}

#uwModal p.uw-heading {
  font-size: 20px;
  color: #5d0c96;
  font-weight: 600;
}

#uwModal p.uw-content {
  color: #7028a2;
  font-size: 16px;
}

#uwModal .modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}

#uwModal .modal-footer a {
  background: #79a9fb !important;
  color: #28409c;
  font-weight: 600;
  border-radius: 50px;
}

.ovebtn {
  padding: 1.2em 1.8em;
  color: #fff;
  line-height: 1.5;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 11px;
}

.welcome-card {
  margin: auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.welcome-title {
  font-size: 24px;
  font-weight: 600;
  color: #0f1729;
  margin-bottom: 0;
}

.welcome-subtitle {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 15px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6b7280;
  line-height: 12px;
  margin-bottom: 8px;
}

.info-value {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  line-height: 14px;
}

.muuvo-dashboard .title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.muuvo-dashboard .title-wrapper::before,
.muuvo-dashboard .title-wrapper::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd;
}

.muuvo-dashboard .title-wrapper span {
  margin: 0 15px;
  letter-spacing: 4px;
  font-size: 14px;
  color: #777;
  font-weight: 600;
}

.tenant-card-wrapper .card-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.tenant-card-wrapper .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.tenant-card-wrapper .title {
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.tenant-card-wrapper .subtitle {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 500;
}

.tenant-card-wrapper .arrow svg {
  width: 16px;
  opacity: 0.4;
}

.essential-services-header {
  margin: 40px auto 25px auto;
  display: flex;
  align-items: center;
  gap: 0px;
}

.icon-circle-sm {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle-sm svg {
  width: 24px;
  height: 24px;
  color: #6b7280;
}

.essential-title {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  text-transform: capitalize;
}

.essential-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.council_card {
  max-width: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

.council_card .left-section {
  display: flex;
  gap: 20px;
}

.council_card .content {
  display: flex;
  flex-direction: column;
}

.council_card .title {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.council_card .description {
  font-size: 14px;
  color: #6b7280;
  margin-top: 6px;
}

.council_card .actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.council_card .btn-primary svg,
.council_card .btn-outline svg {
  width: 16px !important;
  height: 16px !important;
}

.council_card .dropdown-icon svg {
  color: #6b7280;
  width: 16px;
}

.council_card .status-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  flex-shrink: 0;
}

.essential-progress-wrapper {
  max-width: 100%;
  margin: 40px auto 50px auto;
  text-align: center;
}

.progress-percentage {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0px;
}

.progress-bar {
  width: 100%;
  height: 15px;
  background: #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: #00c686;
  border-radius: 20px;
  transition: width 0.6s ease;
}

.progress-label {
  margin-top: 12px;
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}
@media (max-width: 767px) {
  .tenant-card-wrapper .card-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .tenant-card-wrapper .card {
    width: 100% !important;
  }
}
@media (max-width: 430px) {
  .council_card .icon-box {
    width: 40px;
    height: 40px;
  }
  .council_card {
    padding: 20px;
  }
  .council_card .left-section {
    gap: 10px;
  }
  .council_card .actions {
    gap: 5px;
  }
}

.disabled-card {
  opacity: 0.6;
  pointer-events: none;
  filter: grayscale(0.5);
  cursor: not-allowed;
}

.disabled-card .track-icon-click {
  pointer-events: auto;
  cursor: pointer;
}

.disabled-card .additional-icon-click {
  pointer-events: auto;
  cursor: pointer;
}
.profile-section {
  background-color: #f6f7f9;
}
.profile-section .back-dashboard-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  color: #6b7280;
  text-decoration: none;
  margin-bottom: 25px;
  text-transform: capitalize;
  font-family: system-ui;
}

.profile-section .back-dashboard-link:hover {
  text-decoration: none;
  color: #0f1729;
}

.profile-section .back-arrow svg {
  width: 16px;
}

.profile-section .title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-section .title-wrapper::before,
.profile-section .title-wrapper::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd;
}

.profile-section .title-wrapper span {
  margin: 0 15px;
  letter-spacing: 4px;
  font-size: 16px;
  color: #777;
  font-weight: 600;
}

.profile-section .profilecard {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  padding: 10px;
}
.profile-section .form-group input,
.profile-section .form-group select {
  border-radius: 16px !important;
  background: none !important;
  color: #000000 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  font-family: system-ui;
  border-color: #aca9a9;
}

.profile-section .btn-cancel {
  background: #ffffff;
  border: 2px solid #a8a8a8;
  border-radius: 16px;
  padding: 15px 18px;
  color: #181818;
}

.feature-deal .card-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.feature-deal .card-wrapper > *:only-child {
  grid-column: 1 / -1;
}
.feature-deal .deal-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.5s;
}
.feature-deal .deal-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}
/* Coloured top border stripe */
.feature-deal .deal-card::before {
  content: "";
  display: block;
  height: 10px;
  width: 100%;
}

.feature-deal .deal-card.octopus::before {
  background: linear-gradient(90deg, #897ce7, #f6d0f1);
}

.feature-deal .deal-card.virgin::before {
  background: linear-gradient(90deg, #c00, #e53935);
}

.feature-deal .deal-card.cuckoo::before {
  background: linear-gradient(90deg, #fde047, #f7ee92);
}

.feature-deal .deal-card.dummy::before {
  background: linear-gradient(90deg, #6b7280, #9ca3af);
}

.feature-deal .deal-card-body {
  padding: 22px 22px 0;
  flex: 1;
}

.feature-deal .card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.feature-deal .badge {
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 20px;
}

.feature-deal .badge-purple {
  background: #ede9fe;
  color: #6d28d9;
}

.feature-deal .badge-yellow {
  background: #fef9c3;
  color: #854d0e;
}

.feature-deal .badge-red {
  background: #fee2e2;
  color: #b91c1c;
}

.feature-deal .badge-gray {
  background: #f3f4f6;
  color: #374151;
}

.feature-deal .brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.95rem;
}

.feature-deal .brand-octopus {
  color: #1e0a3c;
}

.feature-deal .brand-virgin {
  color: #c00;
}

.feature-deal .brand-cuckoo {
  color: #1a1a1a;
}

.feature-deal .brand-dummy {
  color: #374151;
}

.feature-deal .brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.feature-deal .card-provider-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
}

.feature-deal .card-sub {
  font-size: 1.2rem;
  color: #9ca3af;
  margin: 0;
}

.feature-deal .card-divider {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin-bottom: 14px;
  margin-top: 18px;
}

.feature-deal .headline-offer {
  font-size: 24px;
  font-weight: 600;
  color: #231845;
}
.front-offer-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feature-deal .headline-offer span {
  font-size: 28px;
  font-weight: 700;
}
.feature-deal .headline-offer .highlight-red {
  color: #c00;
}
.feature-deal .headline-offer .highlight-purple {
  color: #231845;
}

.feature-deal .headline-offer .highlight-yellow {
  color: #b45309;
}

.feature-deal .headline-offer .highlight-gray {
  color: #6b7280;
}
.feature-deal .headline-offer .highlight-dark-red {
  color: #c40000;
  margin: 2px 0;
  font-size: 28px;
}

.feature-deal .sub-price .highlight-dark-yellow {
  color: #ca8a04;
}
.feature-deal .sub-price {
  font-size: 24px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 10px;
}

.feature-deal .sub-price strong {
  color: #1a1a2e;
}

.feature-deal .feature-list {
  list-style: none;
  margin-bottom: 15px;
}

.feature-deal .feature-list li {
  font-size: 14px;
  color: #374151;
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-deal .feature-list li::before {
  content: "•";
  font-size: 20px;
  flex-shrink: 0;
  line-height: 20px;
}

.feature-deal .octopus .feature-list li::before {
  color: #7c3aed;
}

.feature-deal .virgin .feature-list li::before {
  color: #c00;
}

.feature-deal .cuckoo .feature-list li::before {
  color: #ca8a04;
}

.feature-deal .dummy .feature-list li::before {
  color: #6b7280;
}

.feature-deal .card-footer {
  padding: 0 22px 22px;
  background-color: #ffffff;
  border-top: unset;
}

.feature-deal .btn-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.feature-deal .btn {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: none;
  transition:
    opacity 0.15s,
    transform 0.1s;
  display: flex;
  align-items: anchor-center;
  justify-content: center;
  gap: 5px;
}
.feature-deal .btn svg {
  width: 22px;
}

.feature-deal .btn:active {
  transform: translateY(0);
}

.feature-deal .btn-primary-purple {
  background: #7c3aed;
  color: #fff;
  border: 2px solid #7c3aed;
}

.feature-deal .btn-primary-red {
  background: linear-gradient(135deg, #ff3b3b, #c40000);
  color: #fff;
  border: 2px solid linear-gradient(135deg, #ff3b3b, #c40000);
}

.feature-deal .btn-primary-yellow {
  background: #fee752;
  color: #1a1a1a;
  border: 2px solid #fee752;
}

.feature-deal .btn-primary-gray {
  background: #6b7280;
  color: #fff;
  border: 2px solid #6b7280;
}
.feature-deal .btn-primary-dark-red {
  background: red;
  color: #ffffff;
  border: 2px solid red;
}
.feature-deal .btn-outline-purple {
  background: transparent;
  border: 2px solid #7c3aed;
  color: #6d28d9;
}

.feature-deal .btn-outline-red {
  background: transparent;
  border: 2px solid #c00;
  color: #c00;
}

.feature-deal .btn-outline-yellow {
  background: transparent;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
}

.feature-deal .btn-outline-gray {
  background: transparent;
  border: 2px solid #9ca3af;
  color: #374151;
}

.feature-deal .disclaimer {
  font-size: 14px;
  color: #9ca3af;
  line-height: 20px;
  padding-left: 10px;
}

.feature-deal .corner-tag {
  position: absolute;
  top: 5px;
  left: 0;
  background: linear-gradient(135deg, #c00, #b71c1c);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 14px 6px 10px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.feature-deal .deal-card-body .progress-task-img {
  object-fit: contain;
}
.feature-deal .badge-virgin-row {
  justify-content: right;
}
.feature-deal .badge-virgin {
  color: #ffffff;
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  padding: 10px 40px 10px 20px;
  position: absolute;
  top: 10px;
  left: 0;
  background: linear-gradient(135deg, #ff3b3b, #c40000);
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% 0%, 80% 100%, 0 100%);
}

/* .tenant-login *,
.tenant-login *::before,
.tenant-login *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
} */

html,
body {
  height: 100%;
  font-family: "Poppins", sans-serif !important;
  letter-spacing: 0 !important;
}

/* .tenant-login h1,
.tenant-login .heading-1,
.tenant-login h2,
.tenant-login .heading-2 {
  font-family: "Poppins", sans-serif;
}
.tenant-login p {
  letter-spacing: 0 !important;
}
.tenant-login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.tenant-login .panel-left {
  background: linear-gradient(160deg, #2b5270 0%, #1a3d57 55%, #0f2a3e 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}
.tenant-login .panel-left::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1px solid rgba(107, 174, 198, 0.15);
  top: -110px;
  right: -130px;
}
.tenant-login .panel-inner {
  position: relative;
  z-index: 1;
}

.tenant-login .brand-tagline {
  font-size: 12px;
  font-weight: 500;
  color: #6baec6;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.tenant-login .panel-headline {
  font-size: clamp(1.75rem, 2.4vw, 3.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.tenant-login .panel-headline span {
  color: #6baec6;
  display: inline;
}

.tenant-login .panel-body {
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 340px;
  margin-bottom: 2.5rem;
}

.tenant-login .service-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.tenant-login .service-item {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
}

.tenant-login .service-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(107, 174, 198, 0.15);
  border: 1px solid rgba(107, 174, 198, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tenant-login .service-icon svg {
  width: 16px;
  height: 16px;
  color: #6baec6;
}

.tenant-login .panel-footer {
  position: relative;
  z-index: 1;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 3rem;
}

.tenant-login .panel-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: #f2f8fb;
}

.tenant-login .form-box {
  width: 100%;
  max-width: 420px;
  animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
} */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .tenant-login .logo-wrap {
  margin-bottom: 2.25rem;
}

.tenant-login .logo-wrap img {
  width: 128px;
  height: auto;
  display: block;
}

.tenant-login .form-title {
  font-size: 21px;
  font-weight: 600;
  color: #1e3a4f;
  margin-bottom: 4px;
}

.tenant-login .form-sub {
  font-size: 13.5px;
  font-weight: 300;
  color: #6b8fa3;
  margin-bottom: 1.75rem;
  margin-top: 0;
  font-family: "Poppins", sans-serif;
}

.tenant-login .field {
  margin-bottom: 1.2rem;
}

.tenant-login .field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #1e3a4f;
  margin-bottom: 6px;
  letter-spacing: 0;
  line-height: 14px;
}

.tenant-login .input-wrap {
  position: relative;
}

.tenant-login .input-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: #6baec6;
  pointer-events: none;
}

.tenant-login .field input {
  width: 100%;
  height: 50px;
  padding: 0 16px 0 44px;
  background: #ffffff;
  border: 1.5px solid #d4e8f0;
  border-radius: 14px !important;
  font-size: 14px;
  color: #1e3a4f;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.tenant-login .field input::placeholder {
  color: #b0c9d4;
}

.tenant-login .field input:focus {
  border-color: #6baec6;
  box-shadow: 0 0 0 4px rgba(107, 174, 198, 0.13);
}

.tenant-login .options-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.6rem 0 1.6rem;
}

.tenant-login .check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  color: #6b8fa3;
  user-select: none;
}

.tenant-login .check-label input[type="checkbox"] {
  appearance: none;
  width: 17px;
  height: 17px;
  border: 1.5px solid #d4e8f0;
  border-radius: 5px;
  background: #ffffff;
  cursor: pointer;
  position: relative;
  transition:
    border-color 0.2s,
    background 0.2s;
  flex-shrink: 0;
}

.tenant-login .check-label input[type="checkbox"]:checked {
  background: #6baec6;
  border-color: #6baec6;
}

.tenant-login .check-label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid #ffffff;
  border-top: none;
  border-left: none;
  transform: rotate(42deg);
}

.tenant-login .forgot {
  font-size: 13px;
  font-weight: 500;
  color: #6baec6;
  text-decoration: none;
  transition: color 0.2s;
}

.tenant-login .forgot:hover {
  color: #2b5270;
}

.tenant-login .btn-primary {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 14px;
  background: #234460 !important;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(43, 82, 112, 0.22);
  margin-bottom: 0.875rem;
  text-transform: capitalize;
}

.tenant-login .btn-primary:hover {
  background: #234460;
  box-shadow: 0 6px 22px rgba(43, 82, 112, 0.32);
  transform: translateY(-1px);
}

.tenant-login .btn-primary:active {
  transform: translateY(0);
}

.tenant-login .btn-secondary {
  width: 100%;
  height: 52px;
  border: 1.5px solid #6baec6;
  border-radius: 14px;
  background: transparent;
  color: #2b5270;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding-top: 12px;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s;
}

.tenant-login .btn-secondary:hover {
  background: #e8f4f9;
  border-color: #2b5270;
  transform: translateY(-1px);
}

.tenant-login .btn-secondary:active {
  transform: translateY(0);
}

.tenant-login .divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.1rem 0;
  font-size: 12px;
  color: #6b8fa3;
}

.tenant-login .divider::before,
.tenant-login .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #d4e8f0;
}

.tenant-login .form-footer {
  margin-top: 1.75rem;
  font-size: 12px;
  color: #6b8fa3;
  text-align: center;
  line-height: 1.7;
}

.tenant-login .form-footer a {
  color: #6baec6;
  text-decoration: none;
  font-weight: 500;
}

.tenant-login .form-footer a:hover {
  color: #2b5270;
}

@media (max-width: 780px) {
  .tenant-login {
    grid-template-columns: 1fr;
  }
  .tenant-login .panel-left {
    display: none;
  }
  .tenant-login .panel-right {
    padding: 2.5rem 1.5rem;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .tenant-login .panel-headline {
    font-size: 28px !important;
    line-height: 38px !important;
  }
} */

.ad-wrapper {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.5s;
}
.ad-wrapper .bt-card {
  padding: 22px;
}
.feature-deal .ad-wrapper:hover {
  transform: translateY(-15px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.ad-wrapper .promo-badge {
  color: #ffffff;
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  padding: 10px 40px 10px 20px;
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 0 0 20px 0;
  background: #5514b4;
}
.feature-deal .ad-wrapper::before {
  background: linear-gradient(90deg, #5b18af, #9947ff);
  content: "";
  display: block;
  height: 10px;
  width: 100%;
}

.ad-wrapper .logo-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 34px;
  min-height: 40px;
}

.ad-wrapper .logo-text {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  fill: #5514b4;
  letter-spacing: -0.5px;
}

.ad-wrapper .card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
}

.ad-wrapper .card-subtitle {
  font-size: 1.2rem;
  color: #9ca3af;
  margin: 0;
}

.ad-wrapper .price-highlight {
  font-size: 24px;
  font-weight: 600;
  color: #231845;
}

.ad-wrapper .price-highlight span {
  font-size: 28px;
  font-weight: 700;
  color: #5514b4;
}

.ad-wrapper .feature-list {
  margin-bottom: 15px;
}
.feature-deal .feature-list li {
  font-size: 14px;
  color: #374151;
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-deal .feature-list li::before {
  color: #7c3aed;
  content: "•";
  font-size: 20px;
  flex-shrink: 0;
  line-height: 20px;
}
.ad-wrapper .feature-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: #333;
}

.ad-wrapper .bullet {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5514b4;
  flex-shrink: 0;
}

.ad-wrapper .button-group {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.ad-wrapper .btn-primary {
  background: #5514b4 !important;
  color: #fff;
  border: 2px solid #5514b4 !important;
}

.ad-wrapper .btn-secondary {
  background: #fff;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.ad-wrapper .disclaimer {
  font-size: 14px;
  color: #9ca3af;
  line-height: 20px;
  padding-left: 10px;
}
.ad-wrapper .highlight-bt {
  font-size: 28px;
  margin: 2px 0px;
  color: #5514b4;
}
@media (max-width: 991px) {
  .feature-deal .card-wrapper {
    grid-template-columns: 1fr;
  }
}

.common-wrapper {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.5s;
}
.common-wrapper .bt-card {
  padding: 22px;
}
.feature-deal .common-wrapper:hover {
  transform: translateY(-15px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.common-wrapper .promo-badge {
  color: #ffffff;
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  padding: 15px 30px 15px 20px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 20px 0;
  background: #325f7e;
}
.feature-deal .common-wrapper::before {
  background: linear-gradient(90deg, #325f7e, #8cb5d1);
  content: "";
  display: block;
  height: 10px;
  width: 100%;
}

.common-wrapper .logo-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 34px;
  min-height: 40px;
}

.common-wrapper .logo-text {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  fill: #325f7e;
  letter-spacing: -0.5px;
}

.common-wrapper .card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
}

.common-wrapper .card-subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.common-wrapper .price-highlight {
  font-size: 24px;
  font-weight: 600;
  color: #231845;
}

.common-wrapper .price-highlight span {
  font-size: 28px;
  font-weight: 700;
  color: #325f7e;
}

.common-wrapper .feature-list {
  margin-bottom: 15px;
}
.feature-deal .feature-list li {
  font-size: 14px;
  color: #374151;
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-deal .feature-list li::before {
  color: #325f7e;
  content: "•";
  font-size: 20px;
  flex-shrink: 0;
  line-height: 20px;
}

.common-wrapper .card-provider-name {
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 10px;
  color: #18324d;
}
.common-wrapper .feature-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: #333;
}

.common-wrapper .bullet {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #325f7e;
  flex-shrink: 0;
}

.common-wrapper .button-group {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.common-wrapper .btn-primary {
  background: #325f7e !important;
  color: #fff;
  border: 2px solid #1b5c88 !important;
}

.common-wrapper .btn-secondary {
  background: #fff;
  color: #1b5c88;
  border: 2px solid #1b5c88;
}

.common-wrapper .disclaimer {
  font-size: 14px;
  color: #9ca3af;
  line-height: 20px;
  padding-left: 10px;
}
.common-wrapper .highlight-bt {
  font-size: 28px;
  margin: 2px 0px;
  color: #325f7e;
}

.common-wrapper .offer-badge {
  width: max-content;
  margin-left: auto;
  margin-bottom: 25px;
  padding: 5px 18px;
  border: 1px solid #10b981;
  border-radius: 30px;
  color: #059669;
  font-weight: 600;
  font-size: 14px;
  background: #dff5e4;
}

.common-wrapper .provider-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-block: 20px;
}

.common-wrapper .provider-item {
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.common-wrapper .provider-item img {
  max-width: 85%;
  max-height: 55px;
  object-fit: contain;
}
.bill {
  width: 100%;
  /* display: flex;
        align-items: center;
        justify-content: center; */
  background: radial-gradient(circle at 10% 20%, #f4fbfd 0%, #eaf5f8 100%);
  min-height: 100vh;
  padding: 1.5rem;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
}

.bill .back-dashboard-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  color: #032536;
  text-decoration: none;
  margin-bottom: 25px;
  text-transform: capitalize;
  font-family: system-ui;
}

.bill .back-arrow svg {
  width: 16px;
}

.bill .back-dashboard-link:hover {
  text-decoration: none;
  color: #0f1729;
}

.bill .wizard-app {
  padding-left: 32px;
  padding-right: 32px;
  padding-bottom: 80px;
  width: 100%;
  max-width: 768px;
  margin: auto;
}

.bill .wizard-subtitle {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: #335e74;
  margin-bottom: 8px;
  text-align: center;
}

.bill .wizard-header {
  text-align: center;
  margin-bottom: 24px;
  width: 100%;
}

.bill .wizard-header h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.75px;
  color: #032536;
}

.bill .progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
}

.bill .step-text {
  font-size: 14px;
  font-weight: 500;
  color: #032536;
}

.bill .chip {
  font-size: 14px;
  font-weight: 400;
  color: #6a8296;
}

.bill .progress-wrapper {
  width: 100%;
}

.bill .progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.bill .progress-label span {
  font-size: 13px;
  font-weight: 600;
  color: #061e2d;
}

.bill .progress-bar-track {
  width: 100%;
  height: 8px;
  background: #eaf0f3;
  border-radius: 10px;
  overflow: hidden;
}

.bill .progress-bar-fill {
  width: 0%;
  height: 100%;
  background: #53b1be;
  border-radius: 10px;
  transition: width 0.5s ease;
}

.bill .bill-pills {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-block: 20px 32px;
}

.bill .pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #8da2b2;
  cursor: pointer;
  flex: 1;
  transition: all 0.3s ease;
  position: relative;
  user-select: none;
}

.bill .pill .icon-circle {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d5e4ec;
  transition:
    color 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease;
  background-color: #ffffff;
  color: #536672;
}

.bill .pill .check-badge {
  position: absolute;
  top: -6px;
  right: 10px;
  background: #53b1be;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: none;
  align-items: center;
  justify-content: center;
}

.bill .pill.active {
  color: #061e2d;
}

.bill .pill.active .icon-circle {
  border-color: #335e74;
  color: #335e74;
  box-shadow: 0 4px 14px -6px oklch(46% 0.06 233/0.15);
  transform: scale(1.08);
}

.bill .pill .icon-circle svg {
  width: 20px;
}

.bill .pill.completed .icon-circle {
  background: #53b1be !important;
  color: white !important;
  border-color: #53b1be !important;
}

.bill .pill.completed .check-badge {
  display: flex;
}

.bill .pill.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.bill .service-card {
  background: #ffffff;
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 15px 35px rgba(11, 34, 48, 0.04);
  border: 1px solid #d5e4ec;
  overflow: hidden;
  display: none;
  animation: fadeIn 0.4s ease;
}

.bill .service-card.active-card {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bill .card-top-accent {
  background: linear-gradient(
    to bottom right,
    oklch(78% 0.07 220 / 0.4),
    oklch(92% 0.04 220 / 0.2)
  );
  padding-inline: 40px;
  padding-block: 32px 24px;
}

.bill .card-top-accent-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bill .saving-badge {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 30px;
  background: #ffffff;
  font-size: 12px;
  font-weight: 500;
  color: #335e74;
}

.bill .saving-badge-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.bill .card-header-icon {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #334e61;
  flex-shrink: 0;
}

.bill .card-header-icon svg {
  width: 28px;
  height: 28px;
}

.bill .card-title {
  font-size: 30px;
  font-weight: 700;
  color: #061e2d;
  margin: 0;
}

.bill .card-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #526b7d;
  margin-top: 4px;
}

.bill .card-body-content {
  padding: 28px 40px;
}

.bill .detail-box {
  border: 1px solid #e3edf0;
  border-radius: 18px;
  padding: 20px 24px;
  margin-bottom: 24px;
  background: #fbfdfd;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bill .detail-box label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #536672;
  text-transform: uppercase;
}

.bill .detail-main {
  font-size: 18px;
  font-weight: 700;
  color: #032536;
}

.bill .logo-main {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.bill .provider-item {
  height: 80px;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.bill .provider-item img {
  max-width: 85%;
  max-height: 55px;
  object-fit: contain;
}

.bill .detail-phone {
  font-size: 14px;
  font-weight: 400;
  color: #335e74;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bill .detail-phone svg {
  width: 14px;
  height: 14px;
}

.bill .action-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

.bill .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  border: 0;
  border-radius: 30px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(37, 99, 235, 0.3);
}

.bill .btn-primary {
  background-color: #53b1be !important;
  color: #ffffff;
}

.bill .btn-primary:hover {
  background-color: #378c97 !important;
  box-shadow: none;
}

.bill .btn-primary svg,
.bill .btn-outline svg,
.bill .btn-done svg,
.bill .nav-btn svg {
  width: 16px;
  height: 16px;
}

.bill .btn-outline {
  background: #ffffff;
  color: #335e74;
  border: 2px solid #cedbe0;
}

.bill .btn-outline:hover {
  background: #c8ecf7;
  box-shadow: none;
}

.bill .skip-done-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-top: 1px solid #d5e4ec;
}

.bill .skip-link {
  color: #536672;
  font-size: 14px;
  font-weight: 400;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.bill .skip-link:hover {
  color: #061e2d;
}

.bill .btn-done {
  background: #53b1be;
  color: white;
  border: none;
  padding: 11px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bill .btn-done:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(83, 177, 190, 0.3);
}

.bill .footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 24px;
}

.bill .nav-btn {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 400;
  color: #536672;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  transition: color 0.2s;
}

.bill .nav-btn.next {
  color: #061e2d;
  padding: 8px 16px;
}

.bill .nav-btn.dark:hover {
  color: #061e2d;
}

.bill .nav-btn.next:hover,
.bill .nav-btn.back:hover {
  background: #c8ecf7;
  border-radius: 30px;
}

.bill .finished-screen {
  text-align: center;
  padding: 48px 40px;
  background: linear-gradient(
    160deg,
    oklch(78% 0.07 220/0.22),
    oklch(99% 0.005 240) 65%
  );
}

.bill .finish-ltr-btn {
  text-align: center;
  padding: 24px 40px;
}

.bill .finish-ltr-btn .btn {
  font-size: 14px;
}

.bill .finished-screen .icon-check {
  width: 56px;
  height: 56px;
  background: #e4f3f6;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #53b1be;
  font-size: 24px;
  margin-bottom: 16px;
}

.bill .finished-screen h2 {
  font-size: 24px;
  font-weight: 700;
  color: #061e2d;
  margin-bottom: 8px;
}

.bill .finished-screen p {
  color: #526b7d;
  font-size: 14px;
  margin-bottom: 8px;
}

.bill .finished-screen .services-count {
  font-size: 13px;
  color: #6a8296;
  margin-bottom: 24px;
}

.bill .edit-lovable {
  margin-top: 12px;
  font-size: 11px;
  color: #7d94a6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.bill .edit-lovable i {
  font-size: 12px;
}

.bill .finish-later-screen .icon-clock,
.bill .finished-screen .icon-check {
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, oklch(74% 0.07 218), oklch(68% 0.08 215));
  transform: none;
}

.bill .finish-later-screen .icon-clock svg,
.bill .finished-screen .icon-check svg {
  width: 40px;
  height: 40px;
  color: #ffffff;
}

.bill .finish-later-screen h2,
.bill .finished-screen h2 {
  font-size: 36px;
  font-weight: 700;
  color: #061e2d;
  margin-top: 24px;
  letter-spacing: -0.75px;
}

.bill .finish-later-screen p,
.bill .finished-screen p {
  font-size: 16px;
  color: #6b7280;
  max-width: 448px;
  font-weight: 400;
  margin: 8px auto 0;
}

.bill .finish-later-screen .services-count {
  font-size: 13px;
  color: #6a8296;
  margin-bottom: 24px;
}
.essential-progress-wrapper .rd-dropdown-link {
  background: #20c45f;
  padding: 10px 28px;
  display: inline-block;
  font-size: 20px;
  color: #ffffff;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 2px 2px 6px 1px #20c45f73;
  margin-top: 15px;
}

.essential-progress-wrapper .rd-dropdown-link svg {
  width: 16px;
}
@media (max-width: 768px) {
  .bill {
    padding: 16px;
  }
  .bill .wizard-app {
    padding: 0;
  }
  .bill .wizard-header h1 {
    font-size: 30px;
  }
  .bill .card-title {
    font-size: 24px;
  }
  .bill .card-top-accent {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 12px;
  }

  .bill .card-body-content {
    padding: 20px;
  }

  .bill .action-buttons {
    flex-direction: column;
  }

  .bill .skip-done-row {
    flex-direction: column-reverse;
    gap: 12px;
    padding: 20px;
  }

  .bill .btn-done {
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }

  .bill .footer-nav {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
  }
  .bill .card-top-accent-inner {
    align-items: flex-start;
  }
  .bill .card-subtitle {
    font-size: 14px;
    line-height: 18px;
  }
  .common-wrapper .promo-badge {
    font-size: 14px;
    padding: 10px 20px;
  }
  .common-wrapper .button-group {
    display: grid;
  }
  .common-wrapper .highlight-bt,
  .common-wrapper .feature-deal .headline-offer span {
    font-size: 22px !important;
  }
  .common-wrapper .btn-secondary {
    line-height: 24px;
  }
  .bill .logo-main {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 400px) {
  .common-wrapper .offer-badge {
    margin-block: 30px 15px !important;
  }
  .bill .provider-item {
    height: 60px;
  }
}
