/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
  --p-primary-color: #01A982;
  --p-white-color: #ffffff;
  --p-black-color: #000000;
  --p-border-color:#0000001f;
  --p-font-color:#444444;
  --p-f-form-label-color:#555555;
  --p-primary-color-light:rgba(1,169,130,.9);
  --p-red-color:#FC6161;
  --p-cta-color-black:#1C1C1C;
  --p-f-color-white:#ffffff;
  --p-f-color-drak-grey:#333333;

}

body {
  font-family: "MetricHPEXS", sans-serif;
  background: #F7F7F7;
  color: #444444;
  font-size: 18px;
  font-weight: 400;
}

a {
  color: #444444;
  text-decoration: none;
}

a:hover {
  color: #444444;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "MetricHPEXS", sans-serif;
}


/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 60px;
  padding: 20px 30px ;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 25px;
  transition: all ease .3s;
}

.pagetitle h1 {
  font-size: 42px;
  margin-bottom: 0;
  font-weight: 300;
  color: #000000;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: var(--p-f-color-white);
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: var(--p-f-color-white);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}
@media (max-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 12px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  font-family: "MetricHPEXS", sans-serif;
}

.card-title span span {
  color: #757575;
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 0 20px 20px 20px;
  font-size: 18px;
  font-weight: 400;
  color: #444444;
}

@media screen and (min-width: 1400px){
  .card-body {
    font-size: 18px;
    font-weight: 400;
    color: #444444;
  }
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "MetricHPEXS", sans-serif;
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #012970;
  background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #4154f1;
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "MetricHPEXS", sans-serif;
  color: #899bbd;
  font-weight: 600;
}

.breadcrumb a {
  color: #899bbd;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

.breadcrumb .active {
  color: #51678f;
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border:none;
  border-bottom: 4px solid transparent;
  color: #2c384e;
  font-size: 18px;
  font-weight: 400;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  font-size: 18px;
  font-weight: 400;
  border:none;
  border-bottom: 4px solid #01A982;
}

.nav-tabs-bordered .nav-link.active {
  background-color: transparent;
  font-size: 18px;
  font-weight: 600;
  border:none;
  border-bottom: 4px solid #01A982;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* .logo {
  line-height: 1;
  display: inline-block;
  flex: 0 0 auto;
  width: 66px;
  height: 18px;
  fill: rgb(1, 169, 130);
  stroke: rgb(1, 169, 130);
} */

/* @media (min-width: 1200px) {
  .logo {
    width: 240px;
  }
} */
.logo-section a{
  display: inline-block;
  white-space: nowrap;
  color: #333333;
  text-decoration: none;
}
.logo-section a:hover{
  color: #333333;
  text-decoration: none;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  margin-left: 24px;
}

.logo-subtext{
  font-size: 24px;
  font-weight: 600;
  align-self: center;
}

.logo svg{
  /* margin-top: -3px; */
  fill: #000000;
  display: inline-block;
  height: auto;
  max-height: 45px;
  width: 120px;
}
@media (max-width : 1199px){
  .logo svg{
    /* margin-top: -3px; */
    fill: #000000;
    display: inline-block;
    height: auto;
    max-height: 40px;
    width: 90px;
  }
}

.logo img {
  max-height: 26px;
  margin-right: 6px;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  font-family: "MetricHPEXS", sans-serif;
}

.partner-header {
  transition: all 0.3s;
  z-index: 997;
  height: 60px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  padding-left: 20px;
  display: flex;
  align-items: start;
}

.sidebar .toggle-sidebar-btn{
  width: 24px;
  height: 22px;
  /* padding-left: 10px; */
  /* padding-right: 10px; */
  cursor: pointer;
  /* display: inline-block; */
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 8px;
}

.sidebar .toggle-sidebar-btn-expand{
  height: 24px;
  /* padding-left: 3px;
  padding-right: 3px; */
  margin-bottom: 7px;
}

.partner-header .toggle-sidebar-btn {
  width: 52px;
  height: 32px;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
}

.partner-header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  .partner-header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .partner-header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
  
  .partner-header .toggle-sidebar-btn.hide {
    display: inline-block !important;
  }

}

.partner-header .search-form {
  width: 100%;
}

.partner-header .search-form input {
  border: 0;
  font-size: 14px;
  color: #012970;
  border: 1px solid rgba(1, 41, 112, 0.2);
  padding: 7px 38px 7px 8px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
}

.partner-header .search-form input:focus,
.partner-header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

.partner-header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.partner-header .search-form button i {
  color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: #012970;
  margin-right: 25px;
  position: relative;
}

/* .header-nav .nav-profile {
  color: #012970;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
} */

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--p-f-form-label-color);
}

.header-nav .profile .dropdown-header span {
  font-size: 18px;
  font-weight: 400;
  color:#444444;
}

.header-nav .profile .dropdown-item {
  font-size: 18px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f7f7f7;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 230px;
  z-index: 996;
  transition: all 0.3s;
  padding: 10px 20px 20px 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: #121212;
}

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

.sidebar .sidebar-nav .nav-link span, .sidebar .sidebar-nav .nav-link .bi-chevron-down{
  display: block;
  white-space: nowrap;
  width: auto;
  opacity: 1;
  visibility: visible;
  transition: all ease 0.1s;
}

@media (min-width: 1200px) {
  #main,
  #partner-footer{
    margin-left: 230px;
  }

  .toggle-sidebar .menu-open {
    display: inline-block;
  }


  .toggle-sidebar .menu-close {
    display: none;
  }


  body:not(.toggle-sidebar) .menu-open {
    display: none;
  }


  body:not(.toggle-sidebar) .menu-close {
    display: inline-block;
  }
}

@media (max-width: 1199px) {
  body:not(.toggle-sidebar) .sidebar {
    left: 0;
  }
  body:not(.toggle-sidebar) .sidebar .toggle-sidebar-btn{
    display: none !important;
  }

}

@media (min-width: 1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #partner-footer{
    margin-left: 100px;
  }

  .toggle-sidebar #sidebar {
    width: 100px;
    overflow-y: visible;
  }

  /* .toggle-sidebar .sidebar {
    left: -260px;
  } */

  .toggle-sidebar .menu-icon {
    margin-right: 0;
  }
  .toggle-sidebar .sidebar .sidebar-nav .nav-link span{
    /* display: none; */
    width: 0;
    opacity: 0;
    visibility: hidden;
    /* transition: all ease 0.2s; */
  }
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-top: 18px;
  margin-bottom: 18px;
}

.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color:  var(--p-f-color-white);
  transition: all ease 0.3s;
  background: #FFFFFF0F;
  padding: 9px;
  border-radius: 100px;
  height : 36px;
}

.sidebar-nav .nav-link.collapsed:hover {
  background: #FFFFFF0F;
}

.toggle-sidebar .sidebar-nav .nav-link {
  border-radius: 50%;
}
.toggle-sidebar .sidebar-nav .nav-link:has(.bi-chevron-down){
  border-radius: 100px;
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: var(--p-f-color-white);
}

.sidebar-nav .nav-link.collapsed {
  color: var(--p-f-color-white);
  background: #121212;
}

.sidebar-nav .nav-link.collapsed i {
  color: var(--p-f-color-white);
}

.sidebar-nav .nav-link:hover {
  color: var(--p-f-color-white);
  /* background: #f6f9ff; */
}

.sidebar-nav .nav-link:hover i {
  color: var(--p-f-color-white);
}

.sidebar-nav .nav-link.disabled-link {
  color: #6c757d;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
  margin-left: 10px;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color:  var(--p-f-color-white);
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: var(--p-f-color-white);
}

.sidebar-nav .nav-content a.active i {
  background-color: #fff;
}

.sidebar-nav .nav-link.selected-link{
  border:2px solid var(--p-primary-color);
}


.sidebar-nav .nav-content a.selected-child-link{
  font-weight: 800;
}



/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #4154f1;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
}

.dashboard .info-card h6 {
  font-size: 28px;
  color: #012970;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: #4154f1;
  background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

/* Activity */
.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item+.post-item {
  margin-top: 15px;
}

.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .news h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard .news h4 a {
  color: #012970;
  transition: 0.3s;
}

.dashboard .news h4 a:hover {
  color: #4154f1;
}

.dashboard .news p {
  font-size: 14px;
  color: #777777;
  margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
  font-size: 14px;
}

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
  font-size: 14px;
}

.dashboard .top-selling .table thead {
  background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
  border: 0;
}

.dashboard .top-selling .table tbody td {
  vertical-align: middle;
}

.dashboard .top-selling img {
  border-radius: 5px;
  max-width: 60px;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 15px;
}

.iconslist .icon {
  background-color: #fff;
  border-radius: 0.25rem;
  text-align: center;
  color: #012970;
  padding: 15px 0;
}

.iconslist i {
  margin: 0.25rem;
  font-size: 2.5rem;
}

.iconslist .label {
  font-family: var(--bs-font-monospace);
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 0.25rem;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #012970;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #012970;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
  font-size: 18px;
  font-weight: 600;
  color: #4154f1;
}

.faq .basic p {
  color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--p-f-color-white);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--p-f-color-white);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--p-f-color-white);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #4154f1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: var(--p-f-color-white);
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5969f3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #01A982;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #444444;
  margin-bottom: 30px;
}

/* .error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
} */

@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.partner-footer{
  /* padding: 20px 0; */
  /* font-size: 14px; */
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}

.partner-footer.copyright {
  text-align: center;
  color: #012970;
}

.partner-footer.credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

.custom-badge {
  padding: 6px 4px ;
  min-width: 125px;
  max-width: 150px;
  text-transform: capitalize;
  border :1px;
  border-style: solid;
}

.custom-danger-badge{
  	border-color: #dc3545;
    background-color: #fce6e6;
    color: #dc3545;
}
.custom-success-badge {
    border-color: #2c8e71;
    background-color: #cbf8e3;
    color: #2c8e71;
}
.custom-warning-badge {
    border-color:#d28842;
  	background-color: #FFE8AE;
    color: #d28842;
}
.custom-primary-badge {
    border-color: #425fd2;
    background-color: #d7e5fa;
    color: #425fd2;
}
.custom-info-badge {
    border-color: #3fa6ba;
    background-color: #e3faff;
    color: #3fa6ba;
}

.partner-header.logo span {
margin : 0 auto;
}

table.dataTable tbody th, table.dataTable tbody td {
  padding: 8px 8px;
}

.btn-secondary {
  color: #333333;
  background-color: transparent;
  border-color: transparent;
}

.btn-secondary:hover, .btn:focus-visible, .btn:active {
  color: #333333;
  background-color: transparent;
  border-color:  #01A98280;
}

.order-confirm {
  display : inline-flex;
  margin-top: 14px;
  margin-bottom: 14px;
}

.order-confirm span {
  color: #000;
  background-color: rgba(0,0,0,.15);
  border-color: rgba(0,0,0,.05);
  border-radius : 100px;
  padding : 10px 15px;
  border : 1px;
  margin : 0 5px;
}

.order-confirm span:hover {
  color: var(--p-f-color-white);
  background-color :rgb(92, 99, 106);
}

.order-confirm, .order-confirm label span {
  cursor : pointer;
}

.order-confirm label input {
  display:none;
}

.order-confirm  input:checked + span {
  color: var(--p-f-color-white);
  background-color: #0d6efd;
  border-color: #0d6efd;
  border : 1px;
}

.order-confirm  input:checked + span svg, .order-confirm  input:disabled + span svg {
  stroke: #ffffff;
}

.order-confirm  input:disabled + span{
  color: #ffffff;
  background-color: #6c757d;
  border-color: #6c757d;
  opacity:.65;
  cursor : auto;
}

.product-image {
  width: 75%;
  height: 75%;
  max-width: 350px;
  max-height: 250px;
}

.form-select, .form-control {
  font-size : .825rem;
} 

.shipping-table td {
  padding:0 0.25rem;
  font-size: 18px;
  font-weight: 400;
  color: #444444;
}


/* DataTable Responsive design */

/* CSS to change alternate row color in tables */

.responsiveDataTable {
  background-color: #d7e5fa66;
}

.responsiveDataTable tbody tr > td {
  font-size: 18px;
  font-weight: normal;
  border-bottom-width: 0.2px;
  color: #444444;
}

.responsiveDataTable tbody tr > td a {
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  color: #444444;
}
.responsiveDataTable tbody tr > td a:hover {
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  color: #444444;
}

.responsiveDataTable td[rowspan] {
  text-align: center;
  vertical-align: middle;
}

 .responsiveDataTable .odd td{
  background-color: #f7f7f7;
}

.responsiveDataTable .mobile-view {
  display:none;
}

.responsiveDataTable .desktop-view {
  display:block;
}

/*.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: transparent !important;
} */

.date-time-col{
  display: none;
}

/* #orderTableMob{
  display:none;
}
#orderTableDesktop{
  display:flex;
} */

@media screen and (max-width:769px){

  /* #orderTableDesktop, #orderTableMob table thead tr{
    display:none;
  }
  #orderTableMob{
    display:flex;
  } */
  .responsiveDataTable {
    background-color: #fff;
  }

  .responsiveDataTable .desktop-view {
    display:none;
  }
  
  .responsiveDataTable .mobile-view {
    display:flex;
  }

  .responsiveDataTable thead{
    display: none;
  }

  .responsiveDataTable tbody tr, .responsiveDataTable tbody tr td {
    display: block;
  }

  .responsiveDataTable .odd td{
    background-color: #fff;
  }

  .responsiveDataTable tbody tr > td {
    padding: 0;
  }
  .responsiveDataTable tbody tr > td{
    border-bottom-width: 0; 
  }

  .responsiveDataTable tbody tr {
    background-color: transparent;
    border-bottom: 1px solid lightgrey;
    padding: 10px 0;
}

}
@media screen and (min-width:769px){

  .responsiveDataTable .mobile-view {
    display:none;
  }
  
  .responsiveDataTable .desktop-view {
    display:block;
  }

  .responsiveDataTable thead {
    display: table-header-group;
  }

}

#reinitializeDataTable{
  font-size: 30px;
  vertical-align: middle;
  opacity: 0.7;
  cursor: pointer;
}

#reinitializeDataTable:hover{
  opacity: 1;
}

.responsiveDataTable{
  --bs-gutter-x : 0;
}

.order-label {
  background-color: #efefef;
  text-align: right;
  font-weight: 600 ;
}

.entry-group-lineitems-section{
  display:none;
}

.toggle-entry-group-lineitems{
  text-decoration: underline;
  color: #4154f1;
  cursor: pointer;
}

.hide {
  display: none;
}

.blank-page{
  /* padding:0 !important; */
  margin-left:0 !important;
  /* margin-top:0 !important; */
}

.form-control.error, .form-select.error, .form-check-input.error, .form-control.error:focus, .form-select.error:focus, .form-check-input.error:focus {
  border-color: var(--bs-form-invalid-color);
  box-shadow: none;
}
.invalid-text {
  width: 100%;
  margin-top: 0.25rem;
  font-size: .875em;
  color: var(--bs-form-invalid-color);
  margin-bottom: 0;
}

.page-loader {
  position: fixed;
    top: 0;
    bottom: 0;
    background: rgb(255 255 255 / 90%);
    left: 0;
    right: 0;
    z-index: 1056;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard .info-card .card-title {
  padding-bottom: 10px;
  padding-top: 10px;
}

.dashboard .info-card h6{
  font-size: 16px;
}

.info-card > .card-body > .card-title >  span {
  font-size:14px;
  font-weight: 500;
}

.order-label-holder{
  display:block;  
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
  /* max-width: 100%; */
  /* width: 200px; */
  word-break: break-word;
  font-size: 18px;
  font-weight: 400;
  color: var(--p-f-form-label-color);
}


.display-lineitems {
  color: #012970;
  transform: rotate(0deg);
  transition: transform 0.3s;
}

.rotate-display-lineitems {
  transition: transform 0.3s;
  transform: rotate(180deg);
}

.input-error {
  border-color: #dc3545 !important;
    outline: 0;
    box-shadow: 0 0 0 0.05rem #dc354555 !important;
}

.logo .top-logo {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  font-family: "MetricHPEXS", sans-serif;
  margin : 0 auto;
}

.logo div {
  color: #012970;
  font-family: "MetricHPEXS", sans-serif;
  margin : 0 auto;
}


.shipping-method-mobile {
  display: none;
}
@media screen and (max-width:767px){
    .table-responsive-mobile {
      overflow-x: auto;
      margin-bottom: 10px;
      display: block;
      padding: 0;
    }
}
@media screen and (max-width:768px) {
  
  /* .shipping-table {
    display: flex;
    column-gap: 0;
    flex-wrap:nowrap;
  } */
  .shipping-table thead {
    display: none;
  }

  .shipping-method-mobile {
    display: inline-flex;
      flex-direction: column;
    
  }

  .shipping-table tbody tr:has(td:not([rowspan]):not([colspan])){
    display: inline-flex;
      flex-direction: column;
    width:calc(95%/4);
    border-width: 0;
    border-style: none;
  }
  .shipping-table tbody tr:has(td:not([rowspan])) td{
    min-height: 55px;
    text-align: center;
    vertical-align: middle;
    border-left-width: 0;
    border-right-width: 0;
    border-left-style: none;
    border-right-style: none;
    border-bottom-width:1px ;
    border-bottom-style: solid;
    display: flex;
  }
  .shipping-table tbody tr:has(td[rowspan]), .shipping-table tbody tr:has(td[colspan]){
    display: block;
    border-width: 0;
    border-style: none;
  }
  .shipping-table tbody tr td[colspan], .shipping-table tbody tr td[rowspan]{
    display: block !important;
    border-width: 0;
    border-style: none;
  }
  .shipping-table tbody tr td .row{
    margin: auto
  }
  .shipping-table tbody tr:has(td:not([rowspan]):not([colspan])) td:first-child{					
    border-width: 0;
    border-style: none;
  }
  .shipping-table tbody tr td[rowspan]{
    background-color: #f7f7f7;
    padding : 0.25rem;
  }
  .shipping-charge-label {
    text-wrap: wrap !important;
  }
} 

.back-to-sign-link {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.back-to-sign-link:hover {
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  min-width: 1em !important;
  padding: 0.5em 0.75em !important;
  color: #444444 !important;
  display: inline-flex;
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
}

.dataTables_wrapper .dataTables_paginate .paginate_button svg {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  min-width: 1em !important;
  padding: 0.5em 0.75em !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  color:  var(--p-f-form-label-color) !important;
  text-decoration: underline !important;
  border-radius:0.5em;
  font-weight: 600;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, 
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
  min-width: 1em !important;
  padding: 0.5em 0.75em !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  color:  var(--p-f-form-label-color) !important;
  text-decoration: underline !important;
  border-radius:0.5em;
  font-weight: 600;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.first,
.dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.dataTables_wrapper .dataTables_paginate .paginate_button.next,
.dataTables_wrapper .dataTables_paginate .paginate_button.last{
  padding: 0.5em 0.4em !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.first.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.previous.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.next.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.last.disabled{
  display: none !important;
}

.dataTables_wrapper .dataTables_paginate span a:only-child {
  display: none !important;
}

.sc-fw, .lc-fw{
  font-weight: 600;
}
@media (min-width: 768px) {
  .sc-fw, .lc-fw{
    font-weight: normal;
  }
}

.form-label, .hpe-input__label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--p-f-form-label-color);
}

.form-select, .form-control {
  font-size: 16px;
  font-weight: 400;
  border-color:#0000005c;
}

.header-label {
  font-size: 18px;
  font-weight: 600;
  color:  var(--p-f-form-label-color);
}

.text-label {
  font-size: 18px;
  font-weight: 400;
  color:  var(--p-f-form-label-color);
  padding-left: 5px;
}

.total-price {
  font-size: 22px;
  font-weight: 900;
  padding-left: 5px;
}

.btn{
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  padding: 0.3125rem 0.75rem;
  line-height: 20px;
}

.btn-primary {
  background-color: rgba(1,169,130,.9);
  border-color: rgba(1,169,130,.9);
  color: var(--p-f-color-white);
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus-visible {
  background-color: #01A982 !important;
  border-color: #01A982!important;
  color: var(--p-f-color-white);
  outline: 0;
  box-shadow: 0 0 0.3rem 0.1rem #01A98280;
}

.btn-black{
  background-color: var(--p-cta-color-black);
  border-color: var(--p-cta-color-black);
  color: var(--p-f-color-white);
  padding: 0.375rem 1.125rem; 
}
.btn-black:hover,.btn-black:focus,.btn-black:focus-within,.btn-black:focus-visible{
  background-color: var(--p-cta-color-black);
  border-color: var(--p-cta-color-black);
  color: var(--p-f-color-white);
  padding: 0.375rem 1.125rem; 
  box-shadow: 0 0 0.275rem 0.01rem var(--p-cta-color-black);
}

.order-inp-section {
    font-size: 16px;
    font-weight: 400;
    border:1px solid #0000005c;
    display: flex;
    border-radius: 6px;
    align-items: center;
    background-color: #ffffff;
}

#orderID:focus{
  box-shadow: none;
}

.shape {
  padding-right: 5px;
}

.status-icon {
  display: inline-block;
  width: 10px;
  height:10px;
}

.circle{
  /* display: inline-block;
  width: 12px;
  height: 12px;
  background: #17EBA0;
  border-radius: 50% */
  /* background-image: url( '/_ui/partner/images/circle.svg' ); */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-label='Radial' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%2317EBA0' stroke='%2317EBA0' stroke-width='2'%3E%3C/circle%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width:10px;
  height:10px;
  display: inline-block;
  margin-right:9px;
  margin-left:9px;
}

.triangle{
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right:8px;
  margin-left:8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' viewBox='0 0 1080 1080' xml:space='preserve'%3E%3Cg transform='matrix(14.41 0 0 16.5 538.82 543.73)' %3E%3Cpolygon style=' fill: %23ffbc44; ' points='-37.43,32.41 0,-32.41 37.43,32.41 '/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.diamond{
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right:9px;
  margin-left:9px;
  /* background: #FC5A5A; */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-label='Placeholder Status' viewBox='0 0 24 24' class=''%3E%3Crect width='20' height='20' x='2' y='2' fill='%23FC5A5A' stroke='%23FC5A5A' stroke-width='2' %3E%3C/rect%3E%3C/svg%3E");
  background-repeat: no-repeat;
  transform: rotate(45deg);
}

.square{
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right:9px;
  margin-left:9px;
  /* background: red; */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-label='Placeholder Status' viewBox='0 0 24 24' class=''%3E%3Crect width='20' height='20' x='2' y='2' fill='%23FC5A5A' stroke='%23FC5A5A' stroke-width='2' %3E%3C/rect%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.toggle-section{
  display: inline-block;
}
.logo-section{
  display: inline-block;
  flex-basis: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.header-nav {
  display: inline-block;
  width:50px;
  min-width:50px;
  margin-left: 10px;
}

.user-profile {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background-color: #FFBC44;
  color:#333333;
  font-size: 14px;
  font-weight: 400 !important;
  text-align: center;
  line-height: 24px;
}

.col-form-label {
  font-weight: 600;
  font-size:18px;
  color: var(--p-f-form-label-color);
  line-height: 38px;
}

.col-form-value {
  font-weight: 400;
  font-size:18px;
  color:#444444;
}

.tracking-url-section {
  font-weight: 400;
  font-size: 18px;
  color:#444444;
}

.tracking-url-section a{
  font-weight: 600;
  font-size: 18px;
  color :  var(--p-f-form-label-color);
  text-decoration: underline;
}

.menu-icon {
  min-width: 16px;
  width: 16px;
  height: 16px;
  max-width: 16px;
  color: var(--p-f-color-white);
  margin-right: 10px;
  display: inline-block;
}

.submenu-icon {
  width: 8px;
  height: 8px;
  color: var(--p-f-color-white);
  margin-right: 10px;
  display: inline-block;
}

.profile-dropdown-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.form-search-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-left: 10px;
}

.refresh-btn-icon {
  display: inline-block;
  width:32px;
  height:32px;
}

.form-close-icon {
  width: 18px;
  height: 18px;
  stroke:#000;
  display: inline-block;
}

.form-check-icon {
  width: 12px;
  height: 12px;
  stroke:#000;
  display: inline-block;
}

.order-confirm span:hover .form-close-icon {
  stroke:#fff;
}

.order-confirm span:hover .form-check-icon {
  stroke:#fff;
}

@media screen and (max-width:1119px){

  .orderDataTable {
    background-color: #fff;
  }

  .orderDataTable .desktop-view {
    display:none;
  }
  
  .orderDataTable .mobile-view {
    display:flex;
  }

  .orderDataTable thead{
    display: none;
  }

  .orderDataTable tbody tr, .orderDataTable tbody tr td {
    display: block;
  }

  .orderDataTable .odd td{
    background-color: #fff;
  }

  .orderDataTable tbody tr > td {
    padding: 0;
  }
  .orderDataTable tbody tr > td{
    border-bottom-width: 0; 
  }

  .orderDataTable tbody tr {
    background-color: transparent;
    border-bottom: 1px solid lightgrey;
    padding: 10px 0;
}

}
@media screen and (min-width:1119px){

  .orderDataTable .mobile-view {
    display:none;
  }
  
  .orderDataTable .desktop-view {
    display:block;
  }

  .orderDataTable thead {
    display: table-header-group;
  }

}

.cto-product-icon{
  vertical-align: bottom;
}
.cto-product-icon .bi-chevron-down {
  display: inline-block;
  width:28px;
  height:28px;
}

.headerDivider {
  margin-left: 10px;
  margin-right: 10px;
  box-sizing: border-box;
  width: 2px;
  border: 1px solid #00000077;
  border-radius: 50%;
}

.form-control:focus {
  background-color: var(--bs-body-bg);
  border-color: #01A982;
  outline: 0;
  box-shadow: 0 0 0 0.09rem rgba(1,169,130,.25);
}

.btn-primary.disabled, .btn-primary:disabled, fieldset:disabled{
  background-color: #01A98299;
    border-color: #01A98299;
}
.btn:disabled svg path{
  stroke: #fff;
}

.inactive-section  {
  display: inline-block;
  line-height: 42px;
  /* vertical-align: middle; */
}

.inactive-section svg {
  display:inline-block;
  width:16px;
  height:16px;
  /* vertical-align: sub;   */
  margin : 0 0 0 4px;
}

.inactive-section svg+span {
  color:#D04F4E;
  opacity:1;
  vertical-align: middle;
  font-size:20px
}

@media (max-width:576px) {
  .inactive-section svg+span {
    display:none;
  }
}

.disabled-link {
  pointer-events: none;
}

.disabled-link svg path{
  fill : #6c757d !important;
}

.form-check-input:checked{
  background-color: #01A982;
  border-color: #01A982;
}

.strike-through {
    font-size: .9rem;
    text-decoration: line-through;
    font-weight: 500;
    color: #666;
}

.f-red {
  color:#FC6161;
}


.page{
  position: relative;
  margin-top: 0;
  transition:all 0.5s;
}

#consent_blackbar:not([style*='display: none']):has(#truste-consent-track:not([style*="display: none"])) + .page #partner-header, 
#consent_blackbar:not([style*='display: none']):has(#truste-consent-track:not([style*="display: none"])) + .page #sidebar
{
  position: absolute;
}

#consent_blackbar:not([style*='display: none']):has(#truste-consent-track:not([style*="display: none"])) + .page #main{
  margin-top:0;
  position: relative;
  top:60px;
  margin-bottom: 50px;
}

.col-form-value {
  padding-top: calc(0.375rem + var(--bs-border-width));
  padding-bottom: calc(0.375rem + var(--bs-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 38px;
}


.action-icon{
  display: inline-block;
  width:18px;
  height:18px;
  margin-bottom: 6px;
  cursor: pointer;
}

.action-icon path{
  stroke: var(--p-primary-color);
}

.icon-red path{
  stroke: var(--p-red-color);
}

.custom-accordion {
  border-bottom : 1px solid var(--p-border-color);
}

.custom-accordion .accordion-button {
  font-size: 24px;
  color: var(--p-black-color);
}

.custom-accordion .accordion-button:not(.collapsed){
  color: var(--p-font-color);
}
.custom-accordion .accordion-button::after {
  margin-left:15px;
}

.form-select:focus {
  background-color: var(--p-white-color);
  border-color:  var(--p-primary-color);
  outline: 0;
  box-shadow: 0 0 0 0.09rem rgba(1,169,130,.25);
}

.btn-link {
  color: var(--p-primary-color-light);
  text-decoration: none;
}
.btn-link:hover, .btn-link:focus , .btn-link:active, .btn-link:focus-visible {
  color: var(--p-primary-color) !important;
  text-decoration: underline;
  box-shadow: none;
}

.section-title {
  display: block;
  /* padding: 20px 0 15px 0; */
  font-size: 28px;
  font-weight: 300;
  line-height: 40px;
  text-align: left;
  color:var(--p-f-form-label-color);

}

.border-bottom-1 {
  border-bottom: 0.25rem solid var(--p-border-color);
}

.form-check.form-switch{
  line-height: 30px;
}

.form-switch .form-check-input {
  width: 70px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-3.5 -3.5 8 7'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  background-color: #BBBBBB;
  border:0;
}

.form-switch .form-check-input:checked {
  background-color: #01A982;
  border-color: #01A982;
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4.5 -3.5 8 7'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  border:0;
}

.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-3.5 -3.5 8 7'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked:focus {
  background-position: right center;
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4.5 -3.5 8 7'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input:focus {
  outline: 0;
  box-shadow: 0 0 0 0.09rem rgba(1,169,130,.25);
}


.form-switch .form-check-input:checked::after {
  content: 'ON';
  font-size: 16px;
  color:  var(--p-f-color-white);
  vertical-align: middle;
  margin-left: 10px;
  font-weight: 500;
}

.form-switch .form-check-input::after {
  content: 'OFF';
  font-size: 16px;
  color:  var(--p-f-color-white);
  vertical-align: middle;
  margin-left: 35px;
  font-weight: 500;
}

.page-navigation-link {
  height: 200px;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
}

.page-navigation-link-icon{
  width: 50px;
  height: 50px;
}

.page-navigation-link-icon path{
  stroke: var(--p-f-form-label-color);
}


.page-navigation-link-header {
  display: block;
  font-size: 22px;
  font-weight: 400;
  color:  var(--p-f-form-label-color);
}

.page-navigation-link-subheader{
  display: block;
  font-size: 14px;
  font-weight: 400;
  color:  var(--p-f-form-label-color);
}

.form-check-input:checked{
  background-color: var(--p-primary-color);
  border-color: var(--p-primary-color);
}
.form-check-input:focus{
  border-color: rgba(1,169,130,.25);
  box-shadow: 0 0 0 0.09rem rgba(1,169,130,.25);
}
.section-header {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
}

.add-new-entry {
  line-height: 56px;
  text-align: center;
  background-color: #f7f7f7;
  border: 1px dashed #BBBBBB;
  color: #757575;
  border-radius: 6px;
  cursor: pointer;
}

.country-selection-section{
  line-height: 28px !important;
  border:1px solid #33333320;
  border-radius: 6px;
}

.accordion-flush .accordion-body {
  padding: 0 20px 20px 20px;
  font-size: 18px;
  font-weight: 400;
  color: #444444;
  /* line-height: 40px; */
}

.accordion-flush .accordion-item .accordion-header .accordion-button{
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
  text-align: left;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--p-f-color-drak-grey);
}

.alert {
  position: fixed;
  width: 100%;
  left: 0;
  top: 60px;
  z-index: 996;
  line-height: 36px;
  padding: 0;
  border-radius: 0;
}

.alert-success{
  background:  linear-gradient(0deg, #17EBA03D, #17EBA03D),linear-gradient(0deg, #ffffff, #ffffff);
}

.alert-dismissible .btn-close{
  padding:0.55rem 0.55rem;
}

.alert-msg-indicator > svg {
  width: 20px;
  height:20px;
}

.alert .message-info{
font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  text-align: left;
  color: var(--p-f-form-label-color);
  vertical-align: middle;
}

.country-selection-section .form-check:has(input:checked) {
  border: 1px solid #01A98240;
  background: #01A98208;
  padding-left: 2rem;
  padding-right: 5px;
  border-radius: 6px;
  margin-left: -0.36rem;
}

.country-selection-section:has(.country-list-chkbx.hide) {
  border:1px solid transparent;
  padding: 0 0.75rem;
  border-radius: 6px;
}

.modal-header{
  border-bottom:none !important;
}

.modal-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

#lcListRows hr:last-of-type, #smListRows hr:last-of-type, .country-wise-carrier-list hr:last-of-type{
  display: none;
}

.invalid-feedback{
  line-height: normal;
}

.input-error .invalid-feedback, .input-error + .invalid-feedback {
  display: block;
}

#main:has(.alert.show) {
  margin-top: 90px;
}

.page:has(#main > .alert.show) > .sidebar {
  margin-top: 35px;
}

.modal-alert {
  display:flex;
  position: relative;
  width: 100%;
  line-height: 36px;
  padding: 0;
  border-radius: 0;
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}

.modal-alert-dismissible .btn-close {
  padding: 0.25rem 0.55rem;
}

.modal-alert-dismissible .btn-close {
  position: absolute;
  top: 12%;
  bottom: 12%;
  right: 0px;
  z-index: 2;
  /* padding: 0.75rem 1rem; */
  height: 20px;
  width: 20px;
}

.modal-alert .message-info{
  font-size: 18px;
  font-weight: 400;
  /* line-height: initial; */
  text-align: left;
  color: var(--p-f-form-label-color);
  vertical-align: middle;
  padding-right: 2.5rem;
}

.hide {
  display: none ;
}

.card-button {
  border: 1px solid #E0E0E0;
  box-shadow: none;
}

.card-button:hover {
  box-shadow: 0px 6px 12px 0px #0000001F;
}

.responsive-header-row{
  display: none;
}
.responsive-top-header-row{
  display:flex;
}
@media (max-width: 768px) {

  .responsive-header-row{
    display: block;
    height: 46px;
    background-color: #efefef;
    margin-bottom: 5px;
    line-height: 46px;
    text-align: right;
  }
  .responsive-header-row + div{
    line-height: 46px;
    text-align: left;
  }

  .responsive-top-header-row{
    display:none;
  }
}

.dataTables_wrapper .dataTables_filter input{
  outline:none;
}

.user-link-disabled{
  color: #444444;
  opacity: .5;
  cursor: default !important;
}

#users-list-table.dataTable thead>tr>th.sorting:before, 
#users-list-table.dataTable thead>tr>th.sorting_asc:before, 
#users-list-table.dataTable thead>tr>th.sorting_desc:before, 
#users-list-table.dataTable thead>tr>th.sorting_asc_disabled:before, 
#users-list-table.dataTable thead>tr>th.sorting_desc_disabled:before, 
#users-list-table.dataTable thead>tr>th.sorting:after, 
#users-list-table.dataTable thead>tr>th.sorting_asc:after, 
#users-list-table.dataTable thead>tr>th.sorting_desc:after, 
#users-list-table.dataTable thead>tr>th.sorting_asc_disabled:after, 
#users-list-table.dataTable thead>tr>th.sorting_desc_disabled:after
{
  display:none;
}


#users-list-table.dataTable thead>tr>th.sorting>span, 
#users-list-table.dataTable thead>tr>th.sorting_asc>span, 
#users-list-table.dataTable thead>tr>th.sorting_desc>span, 
#users-list-table.dataTable thead>tr>th.sorting_asc_disabled>span, 
#users-list-table.dataTable thead>tr>th.sorting_desc_disabled>span{
  cursor: pointer;
  position: relative;
  padding-right: 26px;
  
}

#users-list-table.dataTable thead>tr>th.sorting>span:before, 
#users-list-table.dataTable thead>tr>th.sorting_asc>span:before, 
#users-list-table.dataTable thead>tr>th.sorting_desc>span:before, 
#users-list-table.dataTable thead>tr>th.sorting_asc_disabled>span:before, 
#users-list-table.dataTable thead>tr>th.sorting_desc_disabled>span:before,
#users-list-table.dataTable thead>tr>th.sorting>span:after, 
#users-list-table.dataTable thead>tr>th.sorting_asc>span:after, 
#users-list-table.dataTable thead>tr>th.sorting_desc>span:after, 
#users-list-table.dataTable thead>tr>th.sorting_asc_disabled>span:after, 
#users-list-table.dataTable thead>tr>th.sorting_desc_disabled>span:after{
  position: absolute;
  display: block;
  opacity: .125;
  right: 5px;
  line-height: 9px;
  font-size: .8em;
}


#users-list-table.dataTable thead>tr>th.sorting>span:before, 
#users-list-table.dataTable thead>tr>th.sorting_asc>span:before, 
#users-list-table.dataTable thead>tr>th.sorting_desc>span:before, 
#users-list-table.dataTable thead>tr>th.sorting_asc_disabled>span:before, 
#users-list-table.dataTable thead>tr>th.sorting_desc_disabled>span:before
{
  bottom: 50%;
  content: "▲";
  content: "▲" / "";
}

#users-list-table.dataTable thead>tr>th.sorting>span:after, 
#users-list-table.dataTable thead>tr>th.sorting_asc>span:after, 
#users-list-table.dataTable thead>tr>th.sorting_desc>span:after, 
#users-list-table.dataTable thead>tr>th.sorting_asc_disabled>span:after, 
#users-list-table.dataTable thead>tr>th.sorting_desc_disabled>span:after
{
  top: 50%;
  content: "▼";
  content: "▼" / "";
}

#users-list-table.dataTable thead>tr>th.sorting_asc>span:before, 
#users-list-table.dataTable thead>tr>th.sorting_desc>span:after, 
#users-list-table.dataTable thead>tr>td.sorting_asc>span:before, 
#users-list-table.dataTable thead>tr>td.sorting_desc>span:after {
  opacity: .6;
}

#consent_blackbar:not([style*='display: none']):has(#truste-consent-track:not([style*="display: none"])) + .page #main .alert {
  position: absolute;
  width: -webkit-fill-available;
  left: -100px;
  top: 0;
}

#consent_blackbar:not([style*='display: none']):has(#truste-consent-track:not([style*="display: none"])) + .page #main:has(.alert.show) > .pagetitle {
  margin-top: 30px;
}
/* phase 2 changes*/
.quote-action .action-icon{
  height: 16px;
  width: 16px;
  margin-bottom: 0;
}
.quote-action .icon-disabled{
  cursor: not-allowed;
}
.quote-action .icon-disabled path{
  stroke:rgba(85, 85, 85, .3);
}

.icon-gray path{
  stroke: #444444;
}

.icon-red path {
  stroke: var(--p-red-color);
}

.icon-green path {
  stroke: var(--p-primary-color);
}
.quote-action .form-select, .offer-field.form-control{
  border: none;
  color: #555555;
  background-color: rgba(0, 0, 0, 0.04);
}

.page-subtitle .text-1{
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  color: #000000;
}

.page-subtitle .text-2{
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

.quoteRejectBtn{
  border: 2px solid #FC5A5A;
}
.expiry-label{
  border: 1px solid #FC5A5A;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 500;
  padding: 1px 5px 2px;
  background-color: #FC5A5A;
  color: #fff;  
}
#rejectConfrimBtn:disabled, #rejectConfrimBtn[disabled]{
  opacity: .5;
}
.dashboard .info-card .card-title.withExpiry{
  margin-bottom: 0;
  padding-bottom: 0;
}
.card-title.withExpiry .expiry-label{
  padding: 1px 5px 0px;
}
.info-card > .card-body .card-title.withExpiry > span {
  font-size: 14px;
  font-weight: 500;
}
.editIcon-clicked_qty .offer-field, .editIcon-clicked_amt .offer-field{
  width: 100px;
  display: inline;
  margin: 0 8px 0 16px
}
.editIcon-clicked_shopNowURL .offer-field{
  width: 200px;
  display: inline;
  margin: 0 8px 0 16px;
}
.form-check.form-switch{
  line-height: 30px;
}

.form-switch .form-check-input {
  width: 70px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-3.5 -3.5 8 7'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  background-color: #BBBBBB;
  border:0;
  color: #fff;
}

.form-switch .form-check-input:checked {
  background-color: #01A982;
  border-color: #01A982;
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4.5 -3.5 8 7'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  border:0;
}

.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-3.5 -3.5 8 7'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked:focus {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4.5 -3.5 8 7'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input:focus {
  outline: 0;
  box-shadow: 0 0 0 0.09rem rgba(1,169,130,.25);
}

.form-switch .form-check-input:checked::after {
  content: 'ON';
  font-size: 16px;
  color:  var(--p-f-color-white);
  vertical-align: middle;
  margin-left: 10px;
  font-weight: 500;
}

.form-switch .form-check-input::after {
  content: 'OFF';
  font-size: 16px;
  color:  var(--p-f-color-white);
  vertical-align: middle;
  margin-left: 35px;
  font-weight: 500;
}

#createNewOffer .create-new-offer-switch {
  padding-left: -58px;
}

#createNewOffer .create-new-offer-switch input[type=checkbox] {
  margin-top: 0;
}


/* phase 2 changes*/


.dashboard .info-card .card-body .card-title {
  display: flex;
  justify-content: space-between;
}
.dashboard .info-card .card-body .card-title #editBtn
{
  cursor: pointer;
}
.dashboard .info-card .card-body .overlay-status{
    display: none;
    position: absolute;
    top: 8px;
    /* padding-top: 42px; */
    background-color: #ffffff;
    height: 115px;
    right: 10px;
    left: 10px;
    padding: 0px 10px 10px 10px;
}  
.dashboard .info-card .card-body .overlay-status .card-title
{ 
    padding-bottom: 0px;
    margin-bottom: 5px;
    padding-left: 5px;
}
.dashboard .info-card .card-body .overlay-status .card-title> span {
  font-size: 14px;
  font-weight: 500;
}
.dashboard .info-card .card-body .overlay-status div:first-of-type{
  padding-bottom: .6rem;
}
.dashboard .info-card .card-body .overlay-status .btn-light.cancel{
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  margin-left: 5px;
}
.dashboard .info-card .card-body .overlay-status p{
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 16px; 
  margin-bottom: 5px;
  padding-left: 5px;
}
.overlay-backdrop{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #00000085;
  z-index: 997;
  width: 100%;
  height: 100%;
}
#confirmContinue{
  display: none;
  display: none;
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: #ffffff;
  z-index: 1000;
  width: 450px; 
  border-radius: 15px;
  padding: 30px;
}

@media (max-width: 768px) {
  #confirmContinue{
    width: 350px; 
  }
}

p.status-text {
  font-size: 14px;
  padding: 0;
  margin: 7px 0 0 0;
  font-weight: 400;
  font-style: italic;
  display: none;
}
.order-label-holder{
  font-size: 19px;
  font-weight: 500;
}

#confirmContinue h4.popupheading{
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; 
  padding-top: 30px;
}
#closePopupBtn{
  position: absolute;
  right: 20px;
  cursor: pointer;
}
/* shop now changes*/
#editStoreForm .shop-now-container {
  display: flex;
  align-items: center;
}

.storeList-logos{
    margin-right:15px;
}

/* shop now changes*/

/*  HYBRIS-7072  customer search suggestion start */
#customerSuggestions {
       display: none;
       position: absolute;
       top: 105%;
       left: 0;
       width: 100%;
       background: white;
       z-index: 1000;
       border: 1px solid #ccc;
       max-height: 200px;
       overflow-y: auto;
       list-style:
       padding: 0;
       margin: 0;
  }

#customerSuggestions li {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

#customerSuggestions li:hover {
    background: #f8f9fa;
}
/*  HYBRIS-7072  customer search suggestion end */

button#exprttocsv {
          background-color: #fff;
          color: #000;
          border-radius: 0;
          border: 0px solid #fff;
          position: absolute;
          left: 250px;
          top: 24px;
          z-index: 555;
          font-weight: 300;
          padding: 0;
 }

.orderDataTable td,
.orderDataTable th {
    white-space: normal !important;
    word-break: break-word;
    vertical-align: middle;
}