/* ---------------------------------------------
  IMPORTS & FONTS
--------------------------------------------- */
/* ---------------------------------------------
  COLORS & VARIABLES
--------------------------------------------- */
/* Tab configuration */
/* Responsive breakpoints */
/* Selectors related to radio tabs */
/* ---------------------------------------------
  MIXIN: Cross-browser user-select
--------------------------------------------- */
/* ---------------------------------------------
  MIXIN: Tab input states and content toggle
--------------------------------------------- */
/* ---------------------------------------------
  BASE STYLES
--------------------------------------------- */
html,
body {
  width: 100%;
  height: 100%;
  font-family: "Raleway", sans-serif;
  background: #efefef;
  color: #333;
}

h1 {
  text-align: center;
  color: #428bff;
  font-weight: 300;
  padding: 40px 0 20px;
  margin: 0;
}

/* ---------------------------------------------
  TABS CONTAINER
--------------------------------------------- */
section#hdlDashboard {
  min-width: 100%;
  background-color: #f2f6f8;
}
section#hdlDashboard .container .tabs {
  min-width: 420px;
  max-width: 100vw;
  padding: 50px;
  padding-bottom: 80px;
  height: auto;
  border-radius: 5px;
}
section#hdlDashboard .container .tabs input[name=tab-control] {
  display: none;
}
section#hdlDashboard .container .tabs .tabs-nav-wrapper {
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  section#hdlDashboard .container .tabs .tabs-nav-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  }
  section#hdlDashboard .container .tabs .tabs-nav-wrapper::-webkit-scrollbar {
    height: 4px;
  }
  section#hdlDashboard .container .tabs .tabs-nav-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
  }
  section#hdlDashboard .container .tabs .tabs-nav-wrapper::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
  }
  section#hdlDashboard .container .tabs .tabs-nav-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
  }
}
section#hdlDashboard .container .tabs ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: nowrap;
  align-items: center;
  margin-right: auto !important;
  margin-left: auto;
  background: white;
  padding: 5px 0 !important;
  border-radius: 50px;
  margin-bottom: 0 !important;
  overflow: hidden !important;
}
@media (max-width: 768px) {
  section#hdlDashboard .container .tabs ul {
    min-width: -moz-max-content;
    min-width: max-content;
    justify-content: flex-start;
    gap: 8px;
    padding: 12px 20px !important;
    border-radius: 25px;
  }
}
section#hdlDashboard .container .tabs ul li {
  flex: 0 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  padding: 0 8px;
}
@media (min-width: 769px) {
  section#hdlDashboard .container .tabs ul li {
    flex: 1;
    width: 14.2857142857%;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  section#hdlDashboard .container .tabs ul li {
    padding: 0 6px;
  }
  section#hdlDashboard .container .tabs ul li:first-child {
    padding-left: 0;
  }
  section#hdlDashboard .container .tabs ul li:last-child {
    padding-right: 0;
  }
}
section#hdlDashboard .container .tabs ul li label {
  color: #929daf;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: 16px;
  padding: 8px 12px;
  display: block;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s ease-in-out;
  color: black;
  border-radius: 25px;
  border: 2px solid transparent;
}
@media (max-width: 768px) {
  section#hdlDashboard .container .tabs ul li label {
    font-size: 14px;
    padding: 8px 16px;
    white-space: nowrap;
  }
}
@media (max-width: 480px) {
  section#hdlDashboard .container .tabs ul li label {
    font-size: 13px;
    padding: 6px 12px;
  }
}
section#hdlDashboard .container .tabs ul li label:hover, section#hdlDashboard .container .tabs ul li label:focus, section#hdlDashboard .container .tabs ul li label:active {
  background: rgba(0, 0, 0, 0.05);
}
section#hdlDashboard .container .tabs .slider {
  display: none;
}
section#hdlDashboard .container .tabs .content {
  margin-top: 30px;
}
section#hdlDashboard .container .tabs .content section {
  display: none;
  animation: content 0.3s ease-in-out 1;
  line-height: 1.4;
}
section#hdlDashboard .container .tabs .content section h2 {
  display: none;
  color: #428bff;
}
section#hdlDashboard .container .tabs .content section h2::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #428bff;
  margin-top: 5px;
}
section#hdlDashboard .container .tabs .content section .inner-content {
  display: flex;
  justify-content: center;
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
  cursor: default;
  color: white !important;
  background: #428bff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(66, 139, 255, 0.4);
  transform: translateY(-2px);
  border: 2px solid #0f6cff;
  position: relative;
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #428bff;
  border-radius: 27px;
  z-index: -1;
  opacity: 0.3;
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
    background: #428bff;
    color: white !important;
    box-shadow: 0 4px 12px rgba(66, 139, 255, 0.4);
    transform: translateY(-2px);
    border: 2px solid #0f6cff;
  }
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label::after {
    display: none;
  }
}
@media (min-width: 769px) {
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
    background: #428bff;
    color: white !important;
  }
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(1):checked ~ .content > section:nth-child(1) {
  display: block;
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
  cursor: default;
  color: white !important;
  background: #428bff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(66, 139, 255, 0.4);
  transform: translateY(-2px);
  border: 2px solid #0f6cff;
  position: relative;
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #428bff;
  border-radius: 27px;
  z-index: -1;
  opacity: 0.3;
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
    background: #428bff;
    color: white !important;
    box-shadow: 0 4px 12px rgba(66, 139, 255, 0.4);
    transform: translateY(-2px);
    border: 2px solid #0f6cff;
  }
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label::after {
    display: none;
  }
}
@media (min-width: 769px) {
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
    background: #428bff;
    color: white !important;
  }
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(2):checked ~ .content > section:nth-child(2) {
  display: block;
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
  cursor: default;
  color: white !important;
  background: #428bff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(66, 139, 255, 0.4);
  transform: translateY(-2px);
  border: 2px solid #0f6cff;
  position: relative;
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #428bff;
  border-radius: 27px;
  z-index: -1;
  opacity: 0.3;
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
    background: #428bff;
    color: white !important;
    box-shadow: 0 4px 12px rgba(66, 139, 255, 0.4);
    transform: translateY(-2px);
    border: 2px solid #0f6cff;
  }
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label::after {
    display: none;
  }
}
@media (min-width: 769px) {
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
    background: #428bff;
    color: white !important;
  }
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(3):checked ~ .content > section:nth-child(3) {
  display: block;
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
  cursor: default;
  color: white !important;
  background: #428bff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(66, 139, 255, 0.4);
  transform: translateY(-2px);
  border: 2px solid #0f6cff;
  position: relative;
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #428bff;
  border-radius: 27px;
  z-index: -1;
  opacity: 0.3;
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
    background: #428bff;
    color: white !important;
    box-shadow: 0 4px 12px rgba(66, 139, 255, 0.4);
    transform: translateY(-2px);
    border: 2px solid #0f6cff;
  }
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label::after {
    display: none;
  }
}
@media (min-width: 769px) {
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
    background: #428bff;
    color: white !important;
  }
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(4):checked ~ .content > section:nth-child(4) {
  display: block;
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(5):checked ~ ul > li:nth-child(5) > label {
  cursor: default;
  color: white !important;
  background: #428bff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(66, 139, 255, 0.4);
  transform: translateY(-2px);
  border: 2px solid #0f6cff;
  position: relative;
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(5):checked ~ ul > li:nth-child(5) > label::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #428bff;
  border-radius: 27px;
  z-index: -1;
  opacity: 0.3;
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(5):checked ~ ul > li:nth-child(5) > label {
    background: #428bff;
    color: white !important;
    box-shadow: 0 4px 12px rgba(66, 139, 255, 0.4);
    transform: translateY(-2px);
    border: 2px solid #0f6cff;
  }
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(5):checked ~ ul > li:nth-child(5) > label::after {
    display: none;
  }
}
@media (min-width: 769px) {
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(5):checked ~ ul > li:nth-child(5) > label {
    background: #428bff;
    color: white !important;
  }
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(5):checked ~ .content > section:nth-child(5) {
  display: block;
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(6):checked ~ ul > li:nth-child(6) > label {
  cursor: default;
  color: white !important;
  background: #428bff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(66, 139, 255, 0.4);
  transform: translateY(-2px);
  border: 2px solid #0f6cff;
  position: relative;
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(6):checked ~ ul > li:nth-child(6) > label::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #428bff;
  border-radius: 27px;
  z-index: -1;
  opacity: 0.3;
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(6):checked ~ ul > li:nth-child(6) > label {
    background: #428bff;
    color: white !important;
    box-shadow: 0 4px 12px rgba(66, 139, 255, 0.4);
    transform: translateY(-2px);
    border: 2px solid #0f6cff;
  }
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(6):checked ~ ul > li:nth-child(6) > label::after {
    display: none;
  }
}
@media (min-width: 769px) {
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(6):checked ~ ul > li:nth-child(6) > label {
    background: #428bff;
    color: white !important;
  }
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(6):checked ~ .content > section:nth-child(6) {
  display: block;
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(7):checked ~ ul > li:nth-child(7) > label {
  cursor: default;
  color: white !important;
  background: #428bff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(66, 139, 255, 0.4);
  transform: translateY(-2px);
  border: 2px solid #0f6cff;
  position: relative;
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(7):checked ~ ul > li:nth-child(7) > label::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #428bff;
  border-radius: 27px;
  z-index: -1;
  opacity: 0.3;
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(7):checked ~ ul > li:nth-child(7) > label {
    background: #428bff;
    color: white !important;
    box-shadow: 0 4px 12px rgba(66, 139, 255, 0.4);
    transform: translateY(-2px);
    border: 2px solid #0f6cff;
  }
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(7):checked ~ ul > li:nth-child(7) > label::after {
    display: none;
  }
}
@media (min-width: 769px) {
  section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(7):checked ~ ul > li:nth-child(7) > label {
    background: #428bff;
    color: white !important;
  }
}
section#hdlDashboard .container .tabs input[name=tab-control]:nth-of-type(7):checked ~ .content > section:nth-child(7) {
  display: block;
}
section#hdlDashboard .tabs-nav-wrapper label.active {
  background-color: #6d6ffc !important;
  color: white !important;
}

/* ---------------------------------------------
  ANIMATIONS
--------------------------------------------- */
@keyframes content {
  from {
    opacity: 0;
    transform: translateY(5%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.1;
  }
}
/* ---------------------------------------------
  RESPONSIVE STYLES
--------------------------------------------- */
@media (max-width: 768px) {
  section#hdlDashboard .container .tabs {
    padding: 20px 15px 60px;
  }
  .tabs .content {
    margin-top: 20px;
  }
  .tabs .content section h2 {
    display: block;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .tabs .content section h2 {
    font-size: 1.2em;
  }
}
@media (max-width: 480px) {
  section#hdlDashboard .container .tabs {
    padding: 15px 10px 40px;
  }
}
/* ---------------------------------------------
  ADDITIONAL MOBILE ENHANCEMENTS
--------------------------------------------- */
@media (max-width: 768px) {
  .tabs-nav-wrapper {
    scroll-behavior: smooth;
  }
  .tabs ul {
    touch-action: pan-x;
  }
  .tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
    position: relative;
  }
  .tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #428bff;
    border-radius: 1px;
  }
  .tabs input[name=tab-control]:nth-of-type(1):checked ~ .content > section:nth-child(1) {
    display: block;
  }
  .tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
    position: relative;
  }
  .tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #428bff;
    border-radius: 1px;
  }
  .tabs input[name=tab-control]:nth-of-type(2):checked ~ .content > section:nth-child(2) {
    display: block;
  }
  .tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
    position: relative;
  }
  .tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #428bff;
    border-radius: 1px;
  }
  .tabs input[name=tab-control]:nth-of-type(3):checked ~ .content > section:nth-child(3) {
    display: block;
  }
  .tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
    position: relative;
  }
  .tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #428bff;
    border-radius: 1px;
  }
  .tabs input[name=tab-control]:nth-of-type(4):checked ~ .content > section:nth-child(4) {
    display: block;
  }
  .tabs input[name=tab-control]:nth-of-type(5):checked ~ ul > li:nth-child(5) > label {
    position: relative;
  }
  .tabs input[name=tab-control]:nth-of-type(5):checked ~ ul > li:nth-child(5) > label::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #428bff;
    border-radius: 1px;
  }
  .tabs input[name=tab-control]:nth-of-type(5):checked ~ .content > section:nth-child(5) {
    display: block;
  }
  .tabs input[name=tab-control]:nth-of-type(6):checked ~ ul > li:nth-child(6) > label {
    position: relative;
  }
  .tabs input[name=tab-control]:nth-of-type(6):checked ~ ul > li:nth-child(6) > label::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #428bff;
    border-radius: 1px;
  }
  .tabs input[name=tab-control]:nth-of-type(6):checked ~ .content > section:nth-child(6) {
    display: block;
  }
  .tabs input[name=tab-control]:nth-of-type(7):checked ~ ul > li:nth-child(7) > label {
    position: relative;
  }
  .tabs input[name=tab-control]:nth-of-type(7):checked ~ ul > li:nth-child(7) > label::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #428bff;
    border-radius: 1px;
  }
  .tabs input[name=tab-control]:nth-of-type(7):checked ~ .content > section:nth-child(7) {
    display: block;
  }
}
/* ---------------------------------------------
  EXISTING STYLES (keeping your other components)
--------------------------------------------- */
.hld_payment_method_wrap label {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.4) !important;
  padding: 20px 30px;
  border-radius: 10px;
  background: #f7f7f7;
  min-width: -moz-fit-content;
  min-width: fit-content;
  cursor: pointer;
}

.hld_payment_method_wrap label div.hld_wrap {
  display: flex;
}

.hld_payment_method_wrap .hld_left {
  justify-content: left;
  flex-direction: column;
  display: flex;
  gap: 10px;
}

.hld_payment_method_wrap label.hld_stripe {
  margin-bottom: 20px;
}

.hld_payment_method_wrap .hld_right {
  flex-direction: column;
  justify-content: center;
  display: flex;
  gap: 7px;
}

.hld_payment_method_wrap label.hld_stripe .hld_title {
  font-size: 18px;
  font-weight: bold;
  font-family: Helvetica;
}

.hld_master_card_wrap {
  display: flex;
  flex-direction: column;
  justify-content: right;
}

.hld_stripe:hover {
  background: #ececec;
  transition: background-color;
}

.hld_payment_method_wrap .StripeElement {
  padding: 15px 10px !important;
  border: 1px solid rgba(0, 0, 0, 0.9) !important;
  border-radius: 10px !important;
  background: #f7f7f7 !important;
}

.btn_edit_settings {
  background: transparent;
  color: black;
  border: 1px solid black;
  border-radius: 40px;
  padding: 4px 17px;
  height: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}

.hld_btn_profile_logout {
  text-align: center;
  margin: auto;
  text-decoration: none;
  background: #5b61fd;
  color: white;
  display: block;
  max-width: 150px;
  padding: 10px 0;
  border-radius: 50px;
}

@media only screen and (max-width: 768px) {
  div.ff-summary-inner-wrapper {
    padding: 10px 20px 0 20px;
  }
}
.profile-container .card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}
.profile-container .card-header {
  font-size: 1.2rem;
  border-bottom: 1px dashed #e0e0e0;
}
.profile-container strong {
  min-width: 160px;
  display: block;
  margin-bottom: 7px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
}
.profile-container .profile-img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.hld-orders {
  font-family: Helvetica, sans-serif;
  color: #333;
}
.hld-orders .card {
  border-radius: 10px;
  border: none;
}
.hld-orders .icon-wrap svg {
  fill: #5b61fd;
}
.hld-orders .desc-wrap h5 {
  margin-bottom: 5px;
  color: #5b61fd !important;
}
.hld-orders .hld_color_primary {
  color: var(#5b61fd);
}
.hld-orders .hdl_tab_heading {
  text-align: left;
  margin-top: 10px;
  padding: 0;
  line-height: 0;
  margin: 0 !important;
  margin-bottom: 0px;
  text-align: left;
  margin-bottom: 0px !important;
}
.hld-orders .hld_btn_view_detail {
  padding: 5px 20px;
}
.hld-orders .hld_btn_view_detail_wrap {
  display: flex;
  align-items: center;
  justify-content: end;
}
.hld-orders button.btn {
  font-size: 15px;
  padding: 7px 15px;
  border-radius: 5px;
}
.hld-orders button.btn.btn-outline-primary {
  color: #5b61fd;
  border-color: #5b61fd;
}
.hld-orders button.btn.btn-outline-primary:hover {
  background-color: #2930fc;
  color: #fff;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
}
.hld-orders button.btn.btn-primary {
  background-color: #5b61fd;
  border-color: #5b61fd;
}
.hld-orders button.btn.btn-primary:hover {
  background-color: #2930fc;
  color: #fff;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
}
.hld-orders .hld-order-item .row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.hld-orders .hld-order-item .btn-group-wrapper {
  display: flex;
  gap: 10px;
  flex-direction: row;
  justify-content: flex-end;
}
.hld-orders .hld-order-item .btn-group-wrapper button {
  width: auto;
  flex: 1;
}
@media (max-width: 768px) {
  .hld-orders .hld-order-item {
    padding: 1rem !important;
  }
  .hld-orders .hld-order-item .row {
    flex-direction: column !important;
    gap: 1rem;
  }
  .hld-orders .hld-order-item .col-md-9 {
    flex-direction: row !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 1rem;
  }
  .hld-orders .hld-order-item .icon-wrap {
    flex-shrink: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hld-orders .hld-order-item .desc-wrap {
    flex-grow: 1;
  }
  .hld-orders .hld-order-item .desc-wrap h5 {
    margin-bottom: 0.4rem;
  }
  .hld-orders .hld-order-item .btn-group-wrapper {
    width: 100%;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px;
  }
  .hld-orders .hld-order-item .btn-group-wrapper button {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .hld-lab-order {
    flex-direction: column !important;
  }
  .hld-lab-order .col-md-9 {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 1rem;
  }
  .hld-lab-order .col-md-9 .bg-light {
    flex-shrink: 0;
  }
  .hld-lab-order .col-md-9 .w-100 {
    text-align: left;
  }
  .hld-lab-order .col-md-3 {
    margin-top: 1rem !important;
    text-align: center !important;
    width: 100% !important;
  }
  .hld-lab-order .col-md-3 button {
    width: 100% !important;
  }
  .hld-lab-order .small.d-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.3rem;
  }
}
.access-denied {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f0f0f0;
  padding: 2rem;
}
.access-denied .denied-card {
  background-color: #2c3338;
  border-radius: 0.75rem;
  padding: 2rem 2.5rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 30px #000000;
}
.access-denied .denied-card .title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}
.access-denied .denied-card .message {
  font-size: 1rem;
  color: #c3c4c7;
  margin-bottom: 2rem;
}
.access-denied .denied-card .go-back-btn {
  background-color: #0d6efd;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.access-denied .denied-card .go-back-btn:hover {
  background-color: #0262ef;
}

.login-gate {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f0f0f0;
  padding: 2rem;
}
.login-gate .gate-card {
  background-color: #2c3338;
  border-radius: 0.75rem;
  padding: 2rem 2.5rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 30px #000000;
}
.login-gate .gate-card .title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}
.login-gate .gate-card .message {
  font-size: 1rem;
  color: #c3c4c7;
  margin-bottom: 2rem;
}
.login-gate .gate-card .login-btn {
  background-color: #0d6efd;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.login-gate .gate-card .login-btn:hover {
  background-color: #0262ef;
}

.dashboard-wrapper .card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.dashboard-wrapper .card-wrapper .card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: 0.3s ease;
  flex: 1 1 250px;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
}
.dashboard-wrapper .card-wrapper .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
}
.dashboard-wrapper .card-wrapper .card .info h3 {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
}
.dashboard-wrapper .card-wrapper .card .info .value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #5b61fd;
  cursor: pointer;
}
.dashboard-wrapper .card-wrapper .card .icon {
  width: 60px;
  height: 60px;
  background: rgba(91, 97, 253, 0.1);
  color: #5b61fd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.dashboard-wrapper .card-wrapper .card .icon svg {
  width: 32px;
  height: 32px;
}
.dashboard-wrapper .table-wrapper {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: 0.3s ease;
  overflow-x: auto;
}
.dashboard-wrapper .table-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
}
.dashboard-wrapper .table-wrapper h4 {
  margin-bottom: 1rem;
  color: #6c757d;
}
.dashboard-wrapper .table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.dashboard-wrapper .table-wrapper table thead {
  background-color: #5b61fd;
  color: #ffffff;
}
.dashboard-wrapper .table-wrapper table th,
.dashboard-wrapper .table-wrapper table td {
  padding: 0.75rem 1rem;
  text-align: left;
}
.dashboard-wrapper .table-wrapper table tbody tr {
  border-bottom: 1px solid #dee2e6;
}
.dashboard-wrapper .table-wrapper table tbody tr:hover {
  background-color: #f1f3f5;
}
.dashboard-wrapper .table-wrapper table td.status {
  font-weight: 600;
}
.dashboard-wrapper .table-wrapper table td.status.success {
  color: #198754;
}
.dashboard-wrapper .table-wrapper table td.status.pending {
  color: #ffc107;
}
.dashboard-wrapper .table-wrapper table td.status.failed {
  color: #dc3545;
}
.dashboard-wrapper .hld_lab_order_container .card {
  border: none;
}
.dashboard-wrapper .hld_small_title {
  margin-bottom: 0;
}
.dashboard-wrapper .hld_dashboard_title {
  margin-top: 0;
  padding-top: 0;
  text-align: left;
  margin-bottom: 0;
  padding-bottom: 0;
}
.dashboard-wrapper .hld_dashboard_subtitle {
  color: rgba(0, 0, 0, 0.5);
}
.dashboard-wrapper .hld-img-wrap {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}
.dashboard-wrapper .hld-img-wrap img {
  -o-object-fit: cover;
     object-fit: cover;
}
.dashboard-wrapper .hld_content .hld_title {
  margin-bottom: 5px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
}
.dashboard-wrapper .hdl_recent_consultations_home .hld_td {
  width: 100px;
}
.dashboard-wrapper .hdl_recent_consultations_home .hld_td img {
  width: 100%;
}
.dashboard-wrapper .hld_home_notifications tr {
  border-right: 1px solid #dee2e6;
}
@media (max-width: 768px) {
  .dashboard-wrapper {
    padding: 1rem;
  }
  .dashboard-wrapper .card-wrapper {
    flex-direction: column;
  }
  .dashboard-wrapper .card-wrapper .card {
    flex: 1 1 100%;
  }
  .dashboard-wrapper .table-wrapper {
    padding: 1rem;
  }
}/*# sourceMappingURL=main.css.map */