main,
footer {
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  margin-top: 60px;
}

.nav-item.dropdown {
  display: block !important;
  /* Always show */
}

/* common header */
/* Task #37414 - Rebuild MAP activity on my.vyvosocialfi.com */
@media (max-width: 320px) {
  .navLogo {
    width: 100px;
  }
}

/* navbar */
.navbar {
  background-color: white;
  height: 80px;
}

.navbar-nav.hasline .nav-item {
  position: relative;
  padding: 0 10px;
}

.navbar-nav.hasline .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 40%;
  height: 25%;
  width: 2px;
  background-color: #000000;
}

.navbar-nav.hasline .nav-item a.nav-link {
  color: #000000;
  font-weight: 300;
}

.nav-item.active a.nav-link {
  /* color: #324A6D !important;
  text-decoration: underline #ff0066 2px; */
  color: #324A6D !important;
  text-decoration: underline !important;
  /* Ensure underline is applied */
  text-decoration-color: #ff0066 !important;
  /* Explicitly set the color */
  text-decoration-thickness: 2px !important;
  /* Adjust the thickness */
  text-underline-offset: 2px !important;
  /* Add an offset for better appearance */
  -webkit-text-decoration-color: #ff0066;
  /* Safari-specific text-decoration color */
  -webkit-text-decoration: underline;
  /* Safari-specific text-decoration fallback */
}

a.nav-link.haslink:hover {
  text-decoration: underline 2px #ff0066;
}

.nav-separator {
  border-right: 2px solid #000;
  padding: 0 3px;
}

.navbar-toggler {
  padding: 3px;
}

.dropdown-menu {
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 1050;
}

.dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu.dropdown-menu-right {
  border-radius: 0 0 20px 0;
}

.dropdown-item:focus,
a.dropdown-item:hover {
  text-decoration: underline 2px #FF0066;
  background-color: #fff;
}

a.nav-link i,
a.nav-link img.hasImage {
  background-color: #262626;
  border-radius: 50%;
  color: #EEEFF0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 7px;
}

.navbar-toggler-icons i {
  background-color: #262626;
  border-radius: 5px;
  padding: 3px 5px;
  color: white;
}

.navbar-collapse.show {
  /* position: absolute; */
  /* top: 100%; */
  z-index: 100;
  background-color: #fff;
  width: 100%;
  /* left: 0px; */
  border-bottom-right-radius: 15%;
}

/* Adds margin for the dropdown section (C) in the row */
.navbar-nav.flex-row .nav-item {
  margin-left: 3px;
}

/* Custom styling to make the dropdown appear outside navbar */
.dropdown-menu.custom-dropdown {
  position: absolute;
  top: 100%;
  z-index: 1000;
}

.li-has-menu,
.active-dropdown-item {
  /* text-decoration: underline 2px #FF0066; */
  text-decoration: underline;
  text-decoration-thickness: 2px;
  /* Adjust thickness */
  text-decoration-color: #FF0066;
  /* Specify color */
  text-underline-offset: 2px;
  /* Add offset for clarity */
}

/* Ensures the dropdown is outside the navbar on small screens */
@media (max-width: 767px) {
  main {
    margin-top: 20px;
  }

  .navbar {
    height: auto;
    justify-content: end;
  }

  .dropdown-menu.custom-dropdown {
    position: relative;
    left: auto;
    right: 0;
  }

  .dropdown-menu.custom-dropdown.language-menu {
    position: absolute;
  }

  .navbar-nav.hasline .nav-item:not(:last-child)::after {
    width: 0px;
  }

  .navbar-nav.hasline .nav-item {
    padding: 3px 10px;
  }

  .language-dropdown-menu-list {
    position: fixed;
    top: 3px;
    right: 18px;
    z-index: 1050;
  }

  li.nav-item.dropdown.li-has-menu.show {
    text-decoration: none;
  }
}

/* navbar */

/* common header */

/* common language - dropdown */
.main-dd-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.main-dd-menu-item {
  position: relative;
  background-color: black;
  border-radius: 50%;
  margin: 1px;
}

.main-dd-menu-item a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  display: block;
}

.main-dd-dropdown-toggle i {
  font-size: 20px;
}

.main-dd-dropdown-toggle-img {
  padding: 7px 3px !important;
}

.main-dd-menu-item:hover {
  background-color: #7b838c;
}

.main-dd-dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  padding: 0;
  margin: 0;
  display: none;
  /* min-width: 160px; */
  opacity: 0;
  transition: opacity 0.3s ease;
  width: fit-content;
  text-wrap: nowrap;
  z-index: 1;
}

.main-dd-dropdown-menu .main-dd-dropdown-item a {
  color: #000000;
  text-decoration: none;
  padding: 10px;
  display: block;
  background-color: #ffffff;
  text-align: left;
}

.main-dd-dropdown-menu .main-dd-dropdown-item a:hover {
  background-color: #f6f5fa;
}

.main-dd-dropdown:hover .main-dd-dropdown-menu {
  display: block;
  opacity: 1;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #212529;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* .main-dd-menu {
    flex-direction: column;
  } */

  .main-dd-menu-item {
    width: 100%;
  }

  /* .main-dd-dropdown-menu {
    position: static;
    opacity: 1;
    display: none;
    transition: none;
  } */

  .main-dd-dropdown:hover .main-dd-dropdown-menu {
    text-align: left;
    /* left: 0; */
    right: -35px;
  }
}


/* common language - dropdown */

.app-download {
  font-size: 21px;
  font-weight: 600;
  line-height: 25px;
  border: 8px solid #9e9e9e57;
  display: inline-block;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.23) 0px 0px 10px 0px
}

.app-download:hover {
  border: 8px solid #fcd8e6;
}

.common-seperator {
  border-top: 5px solid #F4F4F4;
}

.toolSetupListRow {
  word-wrap: break-word;
}

.noConsoleUserDiv {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  width: 98%;
  margin: 0 auto;
  font-size: 20px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

/* invcode tabs */
.invcode-custom-tabs {
  display: flex;
  justify-content: center;
  border-radius: 50px;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.31) 0px -1px 0px 0px;
  justify-content: space-between;
  border-top: 0px solid #DBDBDB;
  border-right: 0px solid #DBDBDB;
  border-bottom: 2px solid #DBDBDB;
  border-left: 0px solid #DBDBDB;
  background-color: #EFF2F9;
  box-shadow: rgba(0, 0, 0, 0.17) 0px 0px 10px 0px inset;
}


.invcode-custom-tab {
  padding: 8px 3px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  border-radius: 50px;
  align-content: center;
  font-size: 15px;
  word-break: break-all;
}

.invcode-custom-tab.active {
  color: #fff;
  background-color: #464E59;
  min-height: 55px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px 0px inset;
}

.invcode-custom-hubs{
    color: black;
  background-color: #e3e3e3;
  border: 1px solid grey
  
  
}

.invcode-custom-hubs.active{
    color: black;
  background-color: #fff;
  border: 1px solid #ff0066
  
  
}
.app-box-content a:hover{
background-color: #7B838C;
}

.tab-content {
  margin-top: 20px;
}

.invcode-tab-pane {
  display: none;
}

.invcode-tab-pane.show {
  display: block;
}

.inv-count {
  font-size: 16px;
  color: #FF0066;
  font-weight: 600;
}

/* invcode tabs */

/* home page */
.home-top-left-box {
  background-color: #E5E9F2;
  border-radius: 20px;
  padding: 20px;
  align-content: center;
  margin: 0 auto;
  padding: 55px 22px 88px 22px;
  max-width: 90%;
  word-break: break-word;
}

.home-bottom-box {
  margin: -55px 0 0 0;
}

.home-bottom-left-box,
.home-bottom-right-box {
  text-align: center;
  align-content: start;
}

.sub-title-text {
  font-size: 25px;
  font-weight: 600;
  line-height: 41px;
  text-decoration: none solid rgb(28, 31, 38);
  text-align: center;
  word-spacing: 0px;
  color: #1C1F26;
}

/* Linear - VITA-17 - section in Hub Console Dashboard */
.sub-title-text-lite {
  font-size: 18px;
  font-weight: 600;
  line-height: 31px;
  text-decoration: none solid rgb(28, 31, 38);
  text-align: center;
  word-spacing: 0px;
  color: #1C1F26;
}

.sub-title-value,
.sub-title-value-1 {
  font-size: 20px;
  line-height: 40px;
  text-decoration: none solid rgb(28, 31, 38);
  text-align: center;
  word-spacing: 0px;
  color: #1C1F26;
}

.sub-title-value {
  background-color: #F3F3F3;
  border-radius: 45px;
  max-width: 60%;
  margin: 0 auto;
  color: #FF0066;
}

.info-icon {
  /* display: inline-block; */
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid grey;
  color: grey;
  font-size: 12px;
  text-align: center;
  line-height: 15px;
  cursor: pointer;
  float: right;
  margin-top: 10px;
}

.okinawaBannerImg {
  width: 100%;
  height: auto;
}

.banner-button {
  padding: 3%;
  border: 2px solid rgb(255, 0, 102);
  border-radius: 30px;
  font-weight: 600;
}

/* Task #37414 - JSF - Rebuild MAP activity on my.vyvosocialfi.com */
.hp-conn-pg-link a,
.hp-conn-pg-link a:hover {
  color: rgb(255, 0, 102);
  text-decoration: none;
}

/* home page */

/* my-invitation page */
.invitation-top-left-box,

.connection-top-box,
.reward-top-left-box,
.tool-top-left-box {
  background-color: #E5E9F2;
  border-radius: 20px;
  padding: 20px;
  align-content: center;
}

.invitation-top-right-box,
.reward-top-right-box,
.tool-top-right-box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 25px;
}

.invitation-top-left-box img {
  height: 125px;
  width: 125px;
}

.invitation-title,
.profile-title,
.home-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 41px;
  text-decoration: none solid rgb(28, 31, 38);
  word-spacing: 0px;
  color: #1C1F26;
  word-break: break-word;
}

.invitation-bottom-left-info-box {
  display: flex;
  /* padding: 20px; */
  align-items: center;
}

.invitation-bottom-left-info-box .info-box-icon {
  border-radius: 20px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.28) 0px 0px 10px 0px;
  min-width: 125px;
  min-height: 125px;
  align-content: center;
}

.info-box-icon .hub-name {
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  color: #1C1F26;
}

.invitation-bottom-left-info-box .info-box-content {
  padding: 0 15px;
  width: 100%;
}

.info-box-text {
  font-size: 25px;
  line-height: 25px;
  text-decoration: none solid rgb(28, 31, 38);
  word-spacing: 0px;
  color: #1C1F26;
}

.info-box-code {
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  text-decoration: none solid rgb(255, 0, 102);
  word-spacing: 0px;
  color: #FF0066;
}

.info-box-content a img,
.info-box-content .invcode-open-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F4F4F4;
  text-align: center;
  line-height: 35px;
  padding: 5px;
}

.info-box-content .invcode-open-link {
  color: #1c1c1c;
  position: absolute;
}

.info-box-content a img:hover,
.info-box-content .invcode-open-link:hover {
  background-color: #7B838C;
}

.invcode-sticky-box {
  height: 550px;
  overflow-y: scroll;
  scrollbar-width: none;
}

/* .modal {
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 500px;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 25px;
  outline: 0;
  top: 15%;
  margin: 0 auto;
  padding: 10px;
} */

.modal {
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  /* Ensure the modal container itself is scrollable */
  z-index: 1000;
  /* To ensure the modal appears above other content */
  padding: 5px;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 500px;
  max-height: 90vh;
  /* Prevent content from exceeding viewport height */
  overflow-y: auto;
  /* Enable vertical scrolling within the modal content */
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 25px;
  outline: 0;
  margin: 20% auto;
  /* Center the modal vertically */
  padding: 10px;
}

#makeScrollDiv {
  max-height: 90vh;
  /* Set a maximum height */
  overflow-y: auto;
  /* Enable vertical scrolling */
}

/* Styling the scrollbar for WebKit browsers (Chrome, Safari, etc.) */
#makeScrollDiv::-webkit-scrollbar {
  width: 1px;
  /* Width of the scrollbar */
}

#makeScrollDiv::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Background of the scrollbar track */
  border-radius: 10px;
  /* Rounded track */
}

#makeScrollDiv::-webkit-scrollbar-thumb {
  background-color: #888;
  /* Color of the scrollbar thumb */
  border-radius: 10px;
  /* Rounded thumb */
  border: 2px solid #f1f1f1;
  /* Add padding between thumb and track */
}

#makeScrollDiv::-webkit-scrollbar-thumb:hover {
  background-color: #555;
  /* Darker on hover */
}

/* Firefox specific scrollbar styling */
#makeScrollDiv {
  scrollbar-width: none;
  /* Thin scrollbar for Firefox */
  /* scrollbar-color: #888 #f1f1f1; */
  /* Thumb color and track color */
}

@media (min-width: 768px) {
  .fit-content-md-lg {
    white-space: nowrap;
    min-width: fit-content;
    margin: 0 auto;
    top: 100px;
  }
}

.invcode-modal-submit-button {
  font-size: 21px;
  font-weight: 600;
  line-height: 25px;
  color: #1C1F26;
  border: 8px solid #9e9e9e57;
  padding: 15px 25px 15px 25px;
  display: inline-block;
  border-radius: 25px;
  background-color: #fff !important;
  box-shadow: rgba(0, 0, 0, 0.23) 0px 0px 10px 0px
}

.invcode-modal-submit-button:hover {
  color: #7B838C;
  border: 8px solid #fcd8e6;
}

.invcode-open-link {
  font-size: 28px;
  color: #FF0066;
}
/* my-invitation page */

/* my-profile page */
.profile-top-left-box {
  background-color: #E5E9F2;
  border-radius: 20px;
  padding: 20px;

}

.profilebox {
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.qrimage {
  position: absolute;
  bottom: 10px;
  right: 10px
}



.emailBadge {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 23px;
  width: 220px;

  text-align: end;

}


.image-container {
  cursor: pointer
}

image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;

}

.popup-image {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 9);
  height: 100%;
  width: 100%;
  z-index: 1200;
  display: none;

}

.popup-image span {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 60px;
  font-weight: bolder;
  color: #fff;
  cursor: pointer;
  z-index: 1200
}

.popup-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  object-fit: cover;
}

@media (max-width:768px) {
  .popup-image img {
    width: 95%;
  }
}

@media (min-width:1200px) {
  .badgeBox {
    gap: 130px;

  }
}

@media (max-width:576px) {
  .badgeBox {
    gap: 35px;

  }

  .border-box-widget {
    width: fit-content;
  }
}

.profile-top-right-box {
  border-radius: 20px;
}

.profile-title-desc {
  font-size: 30px;
  line-height: 30px;
  color: #1C1F26;
}

.profile-info-card {
  border-radius: 20px;
}

.banner-icon {
  top: 50px;
  right: 5px
}

.profile-info-card-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F4F4F4;
  text-align: center;
  line-height: 40px;
  font-size: 25px;
  color: #94D6D5;
  align-content: center;
}

.profile-user-image {
  font-size: 20px;
  background-color: #fff;
  padding: 5px 8px;
  margin: 0px 0 0 -20px;
  border-radius: 0 15px 15px 0px;
}

.profile-user-accepted {
  border: 3px solid #28a745;
  border-left-width: 0px;
}

.profile-user-founder {
  border: 3px solid #daa520 !important;
  border-left-width: 0px !important;
}

.profile-user-image img {
  max-width: 80px;
  border-radius: 100%;
}

.profile-user-icon {
  font-size: 50px;
  color: #94D6D5;
}

.profile-preview-container {
  width: 40px;
  height: 40px;
  margin-left: 10px;
}

.profile-preview-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-file-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#imagePreview {
  max-height: 360px;
  max-width: 360px;
  align-content: center;
  margin: 0 auto;
  border-radius: 20px;
}

#imagePreview img {
  padding: 5px;
  border-radius: 20px;
}

.statusType-missing {
  border: 3px solid #e5e7f3;
}

.statusType-pending {
  border: 3px solid orange;
}

.statusType-rejected {
  border: 3px solid red;
}

.statusType-accepted {
  border: 3px solid green;
}


.profile-action-button {
  cursor: pointer;
}

.profile-action-button i {
  padding: 5px;
  color: grey;
  font-size: 20px;
}

.profile-action-button.view-profile-img i {
  color: green;
}

.profile-action-button.del-profile-img i {
  color: red;
}

/* image upload part starts */
.profile-image-popup {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); */
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-image-popup-content {
  background-color: #fff;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 500px;
  box-sizing: border-box;
  text-align: center;
}

.profile-image-crop-container {
  margin: 20px 0;
  max-width: 100%;
}

#profile-image-crop-btn,
#profile-image-cancel-btn {
  margin: 5px;
  padding: 10px 20px;
  border: none;
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
}

#profile-image-crop-btn:hover,
#profile-image-cancel-btn:hover {
  background-color: #45a049;
}

#container-wrapper {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 400px;
  position: relative;
  overflow: hidden;
}

#image-to-crop {
  max-width: 100%;
  height: auto;
}

#cropped-result {
  margin-top: 20px;
  max-width: 100%;
  width: 400px;
  height: 400px;
  object-fit: cover;
}

/* Circular viewport in the square cropper */
.cropper-view-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 99999px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

.cropper-view-box {
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .profile-image-popup-content {
    width: 95%;
  }

  button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .profile-image-popup-content {
    width: 100%;
    padding: 15px;
  }

  #container-wrapper {
    max-height: 250px;
  }

  button {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* image upload part ends */

/* Task #36804 - Integration Activity for Co-owner Access to the Back Office */
/* Task #37044 - JSF - My Profile Section - Add Co-Owner feature */
.pf-pg-nav-tabs {
  cursor: pointer;
  flex-flow: nowrap;
  overflow-x: scroll;
  white-space: nowrap;
  scrollbar-width: none;
}

a.nav-link.pf-pg-nav-tab {
  border: 1px solid #e5e7f3;
  border-bottom: none;
  margin: 1px;
  color: #000;
  border-radius: 25px 25px 0px 0px;
}

a.nav-link.pf-pg-nav-tab i {
  color: #94D6D5;
  background-color: #fff;
}

a.nav-link.pf-pg-nav-tab.active {
  color: #FF0066 !important;
}

.pf-pg-name-txt {
  top: 50%;
  position: absolute;
}
/* Task #37044 - JSF - My Profile Section - Add Co-Owner feature => update on DEC 18 24 */
#co_submitButton {
  color: #1C1F26;
}

input#co_email {
  text-transform: lowercase;
}
/* my-profile page */

/* my-connections page */
.connection-title,
.reward-title,
.tool-title {
  font-size: 20px;
  letter-spacing: 7px;
  line-height: 30px;
  text-decoration: none solid rgb(255, 0, 102);
  word-spacing: 0px;
  color: #FF0066;
}

.connection-title-desc,
.reward-title-desc {
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  text-decoration: none solid rgb(28, 31, 38);
  word-spacing: 0px;
  color: #1C1F26;
}

.connection-top-box {
  text-align: center;
}

.home-bottom-left-box,
.home-bottom-right-box,
.connection-bottom-box,
.reward-bottom-box,
.invitation-bottom-box,
.invitation-bottom-left-box,
.invitation-bottom-right-box,
.reward-bottom-left-box,
.reward-bottom-middle-box,
.reward-bottom-right-box,
.pf-pg-add-form-box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
}

table.rank-history-table th,
table.rank-history-table td {
  border-top: 0px;
  border-bottom: 0px;
  border-left: 0px;
  text-align: center;
  padding: 10px 0;
}

table.rank-history-table th:last-child,
table.rank-history-table td:last-child {
  border-right: 0px;
}

table.rank-history-table thead {
  text-align-last: center;
  white-space: nowrap;
  font-size: 16px;
  line-height: 20px;
  height: 50px;
}

table.rank-history-table thead td {
  font-size: 15px;
  color: #262626;
  font-weight: 600;
  align-content: center;
  border: 1px solid #fff;
  background-color: #EFF2F9;
}

.rank-history-table thead td:first-child {
  border-radius: 25px 0px 0px 25px;
}

.rank-history-table thead td:last-child {
  border-radius: 0px 25px 25px 0px;
}

table.rank-history-table tbody td {
  font-size: 13px;
}

table.rank-history-table {
  width: 100%;
}

/* Responsive  & Scrollbar */
@media (max-width: 767px) {
  table.reward-table {
    overflow-x: scroll;
    display: block;
  }

  table.rank-history-table::-webkit-scrollbar,
  .invcode-sent-list::-webkit-scrollbar {
    width: 1px;
    /* Adjust scrollbar width as needed */
  }

  table.rank-history-table::-webkit-scrollbar-track,
  .invcode-sent-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Track color */
  }

  table.rank-history-table::-webkit-scrollbar-thumb,
  .invcode-sent-list::-webkit-scrollbar-thumb {
    background: #EFF2F9;
    /* Thumb color */
    border-radius: 5px;
    /* Rounded corners for the thumb */
  }

  table.rank-history-table::-webkit-scrollbar-thumb:hover,
  .invcode-sent-list::-webkit-scrollbar-thumb:hover {
    background: #EFF2F9;
    /* Hover color */
  }

  .profile-user-image {
    font-size: 20px;
    background-color: #fff;
    padding: 5px 10px;
    /* margin: 0px 0 0 -20px; */
    border-radius: 15px;
  }

  .profile-user-image img {
    margin-left: -10px;
  }
}

@media (max-width: 375px) {
  table.connection-table {
    overflow-x: scroll;
    display: block;
  }
}

#filterHubDropdown,
#filterEmail,
.custom-select {
  box-shadow: inset 0 0 5px 2px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

#searchButton {
  background-color: #FF0066;
  border: none;
  border-radius: 20px;
}

/* my-connections page */

/* my-reward page */
.reward-title {
  text-align: left;
}

.reward-norank {
  top: 35%;
  position: relative;
  font-size: 30px;
  font-weight: 600;
  color: #FF0066;
}

.reward-rank {
  font-size: 30px;
  font-weight: 600;
  line-height: 33px;
  text-decoration: none solid rgb(28, 31, 38);
  text-align: left;
  word-spacing: 0px;
  color: #1C1F26;
}

.rbox-info-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 33px;
  text-decoration: none solid rgb(255, 0, 102);
  text-align: left;
  word-spacing: 0px;
  color: #FF0066;
}

.rbox-info-desc {
  font-size: 16px;
  font-weight: 600;
  line-height: 33px;
  text-decoration: none solid rgb(28, 31, 38);
  text-align: left;
  word-spacing: 0px;
  color: #1C1F26;
}

.reward-top-right-box img {
  height: 150px;
  width: 150px;
}

.upcoming-rank-div thead{
  background-color: #FF0066;
  color: #fff;
}

.upcoming-rank-div {
  border-collapse: separate; 
  border-spacing: 0; 
  border-radius: 25px; 
  overflow: hidden; 
}
/* my-reward page */

/* volumes page => Task #35906 - JSF - "Volumes" Page */
.reward-main-tabDiv,
.reward-sub-tabDiv,
.reward-sub-sub-tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  background-color: #EFF2F9;
  box-shadow: rgba(0, 0, 0, 0.17) 0px 0px 10px 0px inset;
}

.reward-main-tab.active,
.reward-sub-tab.active,
.reward-sub-sub-tab.active {
  background-color: #ffffff;
}

.reward-main-tab a {
  color: #000;
  font-weight: 600;
}

.volumeTab-sub-tab-title {
  font-weight: 600;
}

.volumeTab-sub-tab-content-title {
  text-align: center;
  font-weight: bold;
  color: #000;
}

.volumeTab-sub-tab-table {
  width: 100%;
  text-align: left;
  font-size: 16px;
  color: #000;
}

.volumeTab-tab-icon {
  color: #fff;
  background-color: #a9a9a9;
  width: 35px;
  float: right;
  border-radius: 0px 25px 25px 0px;
  height: 40px;
  align-content: center;
}

.community-tab-icon {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid darkgrey;
  color: grey !important;
  font-size: 12px !important;
  text-align: center !important;
  line-height: 12px !important;
  cursor: pointer;
  display: inline-block;
}

.community-content-container {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.31);
  padding: 0 5px;
  background-color: #fff;
  border-radius: 10px;
}

.community-tab-border-icon {
  font-size: 20px;
  color: #fff;
  background-color: #a9a9a9;
  width: 40px;
  float: right;
  margin: 0 -8px -8px 0;
  border-radius: 20px 0 25px 0;
  height: 30px;
  font-weight: 600;
}

.filerVolumeButton {
  background-color: #F3F3F3;
  color: #FF0066;
  font-size: 16px;
  font-weight: 600;
}

.filerVolumeButton:hover {
  color: #fff;
  background-color: #a9a9a9;
}

select.periodList {
  height: 40px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.31) inset;
  border-radius: 34px 34px 34px 34px;
}

.volumeCommunityDt,
.volumeConnectionDt {
  text-wrap: nowrap;
}

.volumeConnectionDtFilter input[type=date],
.volumeCommunityDtFilter input[type=date] {
  height: 40px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.31) inset;
  border-radius: 34px 34px 34px 34px;
  text-align: center;
}

.volumeCommunityDt tbody tr td:nth-child(2),
.volumeConnectionDt.current tbody tr td:nth-child(2),
.volumeConnectionDt.history tbody tr td:nth-child(3) {
  text-align: right;
}

.volumeTab-tabs {
  display: flex;
  flex-direction: column;
}

.volumeTab-tab-links,
.volumeTab-sub-tab-links {
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.volumeTab-tab-links,
.volumeTab-sub-tab-links,
.volumeTab-nested-tab-links,
.volumeTab-nested-sub-tab-links {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 10px;
  border-radius: 25px;
}

.volumeTab-tab-link,
.volumeTab-sub-tab-link,
.volumeTab-nested-tab-link,
.volumeTab-nested-sub-tab-link,
.gpuTab-Label {
  flex: 1;
  background-color: #e3e3e3;
  border-radius: 25px;
  cursor: pointer;
  text-align: center;
  margin: 0 3px;
  border: none;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.31);
  border: 1px solid #a9a9a9;
  align-content: center;
}

.volumeTab-tab-link,
.volumeTab-nested-tab-link {
  font-weight: 600;
}
.nav-tabs .nav-link.active {
    border: 1px solid #ff0066;
    background-color: #fff; /* Colore di sfondo per il tab attivo */
    color: black; /* Colore del testo per il tab attivo */
    border-radius: 25px; /* Bordi arrotondati */
}

/* Stile per i tab inattivi */
.nav-tabs .nav-link {
    border: 1px solid grey;
    background-color: #e3e3e3; /* Colore di sfondo per i tab inattivi */
    color: #999; /* Colore del testo per i tab inattivi */
    border-radius: 25px; /* Bordi arrotondati */
    transition: background-color 0.3s ease; /* Transizione fluida */
}

.volumeTab-sub-tab-link:not(.active) span {
  color: #999; /* Colore desiderato per lo span non attivo */
}

.volumeTab-sub-tab-link:not(.active) .card-text {
  color: #999; /* Colore desiderato per lo span non attivo */
}

.volumeTab-nested-tab-link:not(.active) span {
  color: #999; /* Colore desiderato per lo span non attivo */
}

.volumeTab-sub-tab-link:not(.active) h5 {
  color: #999; /* Colore per gli h5 non attivi */
}

/* Seleziona gli h5 all'interno di .volumeTab-sub-tab-link con la classe "active" */
.volumeTab-sub-tab-link.active .h5 {
  color: #000; /* Colore per gli h5 attivi */
}

#communityResetButton0:hover,#connectionResetButton0:hover,#communityResetButton1:hover,#connectionResetButton1:hover,#communityResetButton2:hover,#connectionResetButton2:hover,#communityResetButton3:hover,#connectionResetButton3:hover{
    background-color:#999;
}

#communityFilterButton0:hover, #connectionFilterButton0:hover,#communityFilterButton1:hover, #connectionFilterButton1:hover,#communityFilterButton2:hover, #connectionFilterButton2:hover,#communityFilterButton3:hover, #connectionFilterButton3:hover{
    background-color:#184e77;
}


#connectionFilterButton0, #communityFilterButton0,#connectionFilterButton1, #communityFilterButton1,#connectionFilterButton2, #communityFilterButton2,#connectionFilterButton3, #communityFilterButton3{
    background-color:#8ecae6
}

#filterRankHistory{
    padding: 5px 10px;
    background-color:#8ecae6;
    color:black;
        border-radius:25px
}

#filterRankHistory:hover{
    background-color:#184e77;
    color:black;
        border-radius:25px
}

#resetRankHistory{
    padding: 5px 10px;
    border-radius:25px;
    color:black;
        border-radius:25px
}



.volumeTab-tab-link.active,
.volumeTab-sub-tab-link.active,
.volumeTab-nested-tab-link.active,
.volumeTab-nested-sub-tab-link.active,
.gpuTab-Label.active {
  border: 1px solid #FF0066;
  background-color: #fff;
}

.volumeTab-tab,
.volumeTab-sub-tab,
.volumeTab-nested-tab,
.volumeTab-nested-sub-tab {
  display: none;
}

.volumeTab-tab.active,
.volumeTab-sub-tab.active,
.volumeTab-nested-tab.active,
.volumeTab-nested-sub-tab.active {
  display: block;
}

.volumeTab-sub-tab-content {
  background-color: #fff;
  padding: 15px;
  border-radius: 25px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.volumeTab-tab-link span,
.volumeTab-sub-tab-link span,
.volumeTab-nested-tab-link span {
  font-size: 18px;
  line-height: 40px;
  text-decoration: none solid rgb(28, 31, 38);
  text-align: center;
  word-spacing: 0px;
  color: #1C1F26;
}

.volumeTab-sub-tab-img-container {
  width: 25%;
}

@media (max-width: 767px) {

  .volumeTab-tab-link,
  .volumeTab-sub-tab-link,
  .volumeTab-nested-tab-link,
  .volumeTab-nested-sub-tab-link {
    flex: 1 1 100%;
  }

  .volumeTab-sub-tab-img-container {
    width: 50%;
  }

  .summary-list {
    border: none !important;
    padding: 0px !important;
    border-radius: 0px !important;
  }
}

@media (max-width: 424px) {
  .volumeTab-sub-tab-img-container {
    width: 60%;
  }
}

@media (max-width: 890px) {

  table.volumeCommunityDt,
  table.volumeConnectionDt,
  table.gpuDt {
    overflow-x: scroll;
    display: block;
  }
}

.volumeTab-tab-link.active .volumeTab-tab-icon,
.volumeTab-sub-tab-link.active .community-tab-border-icon,
.volumeTab-sub-tab-link.active .volumeTab-tab-icon,
.volumeTab-nested-tab-link.active .volumeTab-tab-icon {
  color: #F3F3F3;
  background-color: #FF0066;
}

.lastUpdate {
  font-size: 14px;
}

.summary-list {
  border: 2px solid #a9a9a9;
  padding: 20px;
  border-radius: 25px;
  margin: 0px 10px 0px 10px;
}

/* volumes page */

/* tool-setup page */
.tool-title-desc {
  font-size: 20px;
  line-height: 30px;
  text-decoration: none solid rgb(38, 38, 38);
  word-spacing: 0px;
  color: #262626;
}

.preview-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 33px;
  text-decoration: none solid rgb(255, 0, 102);
  word-spacing: 0px;
  color: #FF0066;
}

.border-box-shadow {
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.23) 0px 0px 10px 0px;
}

.border-box {
  border-radius: 25px;
  border: solid 3px rgb(243 243 243);
}

.border-box-widget {
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.28) 0px 0px 10px 0px;
  align-content: center;
  min-width: 120px;
  min-height: 120px;
}

.border-box-widget img {
  width: 60px;
  padding: 5px;
}

.user-icon {
  color: #464E59;
  padding: 10px;
  background-color: #F4F4F4;
  border-radius: 50%;
  font-size: 25px;
}

.join-owner-info {
  word-break: break-all;
}

.a-rediect-button-div {
  background-color: #e5e9f2;
  padding: 5px 15px;
  border-radius: 15px;
  text-align: center;
}

.a-rediect-button {
  text-decoration: none;
  color: #ff0066;
  font-size: 16px;
  cursor: pointer;
  word-wrap: break-word;
}

.checkbox-table {
  padding: 0px 25px;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 50%;
  /* Make it rounded */
  border-color: #ff0066;
  /* Set the border color to #ff0066 */
}

/* Custom styles for the tick mark when checkbox is checked */
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
  content: '';
  /* No content for the tick mark */
  background-color: #ff0066;
  border-color: #ff0066;
}

.vCardbutttonDiv {
  background-color: #fff;
  border-radius: 40px;
  padding: 20px;
}

#submitVcardButton,
#profileSetupButton,
.rewardSetupButton,
#vscAddressFormSubmit,
#profileImgSubmit,
#co_submitButton {
  font-size: 21px;
  font-weight: 600;
  line-height: 25px;
  border: 8px solid #9e9e9e57;
  padding: 15px 25px 15px 25px;
  display: inline-flex;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.23) 0px 0px 10px 0px
}

#submitpremierWorkshopButton,
#premierWorkshopCloseLink {
  font-size: 20px;
  font-weight: 600;
  line-height: 10px;
  border: 5px solid #9e9e9e57;
  padding: 10px 20px;
  display: inline-flex;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.23) 0px 0px 10px 0px;
}

#submitpremierWorkshopButton:hover,
#premierWorkshopCloseLink:hover {
  border: 5px solid #fcd8e6;
}

#submitVcardButton:hover,
#vscAddressFormSubmit:hover,
#profileSetupButton:hover,
.rewardSetupButton:hover {
  border: 8px solid #fcd8e6;
}

#submitVcardButton #toolSetupButtonName,
#profileSetupButton,
.rewardSetupButton {
  color: #1C1F26 !important;
}


#submitVcardButton #toolSetupButtonName:hover,
#profileSetupButton:hover,
.rewardSetupButton:hover {
  color: #7B838C;
}

#frmVcard input[type="text"],
#eRequestModal input[type="text"],
#eRequestModal input[type="email"],
#eRequestModal select,
#vscAddressForm input[type="text"],
#premierWorkshopForm input[type="text"],
#premierWorkshopForm input[type="email"],
#profileSetupForm input[type="text"],
#profileSetupForm input[type="date"],
#profileSetupForm input[type="tel"],
#profileSetupForm select,
input#co_email {
  height: 40px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.31) inset;
  border-radius: 34px 34px 34px 34px;
}

/* tool-setup page */

/* terms page */
.terms-bottom-box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 0 20px 20px 20px;
}

.terms-banner {
  text-align: center;
}

.terms-banner img {
  max-width: 90%;
  height: auto;
}

.terms-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
  text-decoration: none solid rgb(38, 38, 38);
  text-align: center;
  word-spacing: 0px;
  color: #262626;
  margin-top: 25px;
}

.card-header {
  border-bottom: 1px solid rgba(0, 0, 0, -0.875);
  background-color: #ffffff !important;
}

.terms-title-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  text-align: left;
  text-decoration: none solid #7b838c !important;
  word-spacing: 0px;
  color: #7B838C !important;
}

.active-panel-icon {
  color: #7b838c;
}

.terms-title-value {
  font-size: 16px;
  line-height: 24px;
  text-decoration: none solid rgb(38, 38, 38);
  word-spacing: 0px;
}

/* terms page */

/* Task #36718 - JSF Events Page */
.event-card {
  border-radius: 25px;

}

.event-title {
  box-shadow: rgba(0, 0, 0, 0.094) 0px 0px 10px 0px inset;
  padding: 2%;
  border-radius: 25px;
  text-align: center;
}

.eventDesc {
  font-size: 16px;
  color: #262626;
  text-align: justify;
}

.eventDesc1 {
  font-size: 18px;
  color: #FF0066;
}

.eventDesc2 {
  font-size: 16px;
  color: #262626;
}

.event-conv-button {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  border-radius: 10px;
  background-color: #FF0066;
  color: #ffffff;
  text-align: center;
}

.event-conv-button:hover {
  color: #ffffff;
  text-decoration: none;
}

.event-button-qualified {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  border-radius: 10px;
  border: 1px solid #FF0066;
  color: #FF0066;
  text-align: center;
}

.event-button-unqualified {
  color: #696969;
  border: 1px solid #696969;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  border-radius: 10px;
  text-align: center;
}

.vertical-common-seperator {
  border-left: 5px solid #F4F4F4;
}

/* EVENT PAGE ends here */


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

  .home-top-left-box {
    padding: 30px 30px 95px 30px;
  }

  .home-bottom-box {
    margin: -105px 0 0 0;
  }

  .invitation-title,
  .profile-title,
  .home-title {
    font-size: 25px;
  }

  .profile-title-desc,
  .connection-title,
  .reward-title {
    font-size: 20px;
  }

  .connection-title-desc,
  .reward-title-desc {
    font-size: 25px;
    line-height: 30px;
  }

  .reward-title-desc {
    text-align: center;
  }

  .reward-title {
    text-align: center;
  }

  .reward-norank {
    top: 15%;
    font-size: 25px;
  }

  .reward-top-right-box {
    text-align-last: center;
  }

  .reward-top-right-box img {
    height: 100px;
    width: 100px;
  }

  .invitation-top-left-box {
    text-align: center;
  }

  .invitation-top-left-box img {
    height: 75px;
    width: 75px;
  }
}

@media screen and (max-width: 425px) {
  .home-top-left-box {
    max-width: 80%;
  }

  .home-bottom-box {
    margin: -100px 0 0 0;
  }

  .reward-top-right-box img {
    height: 50px;
    width: 50px;
  }

  .reward-rank {
    font-size: 25px;
  }

  .rbox-info-title {
    font-size: 20px;
  }

  .invitation-bottom-left-info-box {
    padding: 0px;
  }
}

@media screen and (max-width: 374px) {
  .home-bottom-box {
    margin: -90px 0 0 0;
  }

  .invitation-bottom-left-info-box {
    flex-direction: column;
    text-align: center;
  }

  .invitation-bottom-left-info-box .info-box-content {
    margin-top: 15px;
  }
}

/* Task #36262 -  JSF Page to collect VSC ADDRESS */
.vsc-main-container {
  background: #fff;
  height: auto;
  padding: 20px;
  border-radius: 25px;
}

.home-alert {
  max-width: 850px;
  margin: 0 auto;
  border: 2px solid #FF0066;
  background-color: #fff;
  border-radius: 25px;
  padding: 10px;
}

.home-alert-border-icon {
  font-size: 20px;
  background-color: #FF0066;
  color: #F3F3F3;
  width: 40px;
  float: right;
  margin: -18px -10px 0 0;
  border-radius: 20px 0 25px 0;
  text-align: center;
}

.vsc-alert-heading {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
}

.vsc-alert-heading p {
  font-size: 14px;
  text-align: left;
}

.vsc-heading {
  text-align: center;
  font-weight: bold;
  line-height: 30px;
}

.vscPageLink,
.vscPageLink:hover {
  text-transform: none;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 840px) {
  table.vsc-wallet-table {
    overflow-x: scroll;
    display: block;
  }
}

/* Task #36262 -  JSF Page to collect VSC ADDRESS */

.sweet-alert {
  overflow-y: scroll;
  max-height: 600px;
}

#sweet-alert {
  max-height: 90vh;
  overflow-y: auto;
}

#sweet-alert::-webkit-scrollbar {
  width: 1px;
}

#sweet-alert::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

#sweet-alert::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

#sweet-alert::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

#sweet-alert {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

#sweet-alert .cancel,
#sweet-alert .cancel:hover {
  background-color: #808080 !important;
  font-weight: 600;
  font-size: 16px;
}

#sweet-alert .confirm,
#sweet-alert .confirm:hover {
  background-color: #ff0066 !important;
  font-weight: 600;
  font-size: 16px;
}

.sweet-alert p{
  text-align: left;
}

/* Task #37414 - JSF - Rebuild MAP activity on my.vyvosocialfi.com => Loader update on DEC 9 2024 */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1050;
  /* Matches Bootstrap's modal z-index */
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-loader-text {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #FF0066;
}

.dataTables_processing {
  display: none !important;
}
/* page loader */
/* common tab css for all pages  */
.page-tab-container {
  display: flex;
  justify-content: start;
  /* align-items: center; */
  background-color: white;
  border-radius: 25px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-tab-content {
  display: none;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  margin-top: 10px;
}

.page-tab-content.active {
  display: block;
}

/* tab */

/* My-GPU page => Task #38946 - JSF - Transfer GPU function */
.gpuTab-Label h5 {
  color: #999999;
}

.gpuTab-Label.active h5 {
  color: #000000;
}

.gpu-action-transfer i {
  cursor: pointer;
}

.gpu-action-transfer i {
  font-size: 28px;
  color: #FF0066;
}

.confirm-gpu-otp-button,
.confirm-gpu-otp-button:hover {
  background-color: #FF0066;
  color: #fff;
}

.goback-gpu-otp-button,
.goback-gpu-otp-button:hover {
  background-color: #e3e3e3;
  color: #FF0066;
}

.confirm-gpu-otp-button,
.confirm-gpu-otp-button:hover,
.goback-gpu-otp-button,
.goback-gpu-otp-button:hover {
  
  font-size: 18px;
  font-weight: 600;
  border-radius: 25px;
  padding: 3px 12px;
  display: inline-flex;
}

#gpuCountdown,
.countDownCircle {
  height: 40px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.31) inset;
  border-radius: 34px 34px 34px 34px;
  font-weight: bold;
}

.gpu-bottom-box {
  position: relative;
  z-index: 1;
  overflow: hidden;
  align-content: center;
  text-shadow: 0px 2px 2px white; /* update on Apr 18 25 */
}

.gpu-bottom-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../../images/jsfi/personal_gpu_bg.jpg'); 
  background-size: cover;
  background-position: center;
  opacity: 18%; /* update on Apr 18 25 */
  z-index: -1;
}
/* My-GPU page */

.page-item.active .page-link {
  z-index: 3;
  color: #fff !important;
  background-color: #FF0066 !important;
  border-color: #fff !important;
}

.page-link {
  color: #fff;
  color: #FF0066 !important;
}

/* Task #39526 - Add Edit Profile section */
.profileSetupForm {
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  padding: 10px 25px;
}

.gender-option {
  cursor: pointer;
}

.gender-option input[type="radio"] {
  display: none;
}

.gender-option span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #e4e6f1;
  color: #1f2541;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.gender-option .check-icon {
  display: none;
  font-size: 14px;
}

.gender-option input[type="radio"]:checked + span {
  background-color: #e50087;
  color: #fff;
}

.gender-option input[type="radio"]:checked + span .check-icon {
  display: inline;
}

/* reward setup page => Task #38278 - Addition of Owner/Co-Owner Payment Functionality */
.colored-border-box {
  border-radius: 25px;
  border: solid 3px #FF0066;
}

@media (max-width: 767.98px) {
  .border-md-bottom {
    border-bottom: 1px solid #dee2e6; /* Bootstrap's default border color */
  }
}

/* Task #38278 - Addition of Owner/Co-Owner Payment Functionality */
.custom-radio .custom-control-label::before {
  background-color: white !important;
  border-color: #ff0066 !important;
}

.custom-radio .custom-control-label::after {
  border-radius: 50%;
  /* Make it rounded */
  border-color: #ff0066;
  /* Set the border color to #ff0066 */
}

/* Custom styles for the tick mark when checkbox is checked */
.custom-radio .custom-control-input:checked~.custom-control-label::after {
  content: '';
  /* No content for the tick mark */
  background-color: #ff0066;
  border-color: #ff0066;
}

/* Task #40408 - Taiwan Enrollment Process */
.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
} 

.btn-tai-next,
.btn-tai-next:hover {
  background-color: #ff0066;
  border-color: #ff0066;
  border-radius: 25px;
  color: #ffffff;
}

.btn-tai-back,
.btn-tai-back:hover {
  background-color: #ced4da;
  border-color: #ced4da;
  border-radius: 25px;
  color: #000000;
}

.form-section-title {
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-control-file {
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background-color: #f8f9fa;
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s;
}

.form-control-file:hover {
  background-color: #e9ecef;
}

label.required::after, 
span.required::after {
  content: '*';
  color: red;
  margin-left: 4px;
}

.flatInp input[type=text],
.flatInp span {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.flatInp span {
  border: 0px solid;
}

.custom-file-label .selected {
  padding-right: 150px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theme-title {
  color: #FF0066;
  font-weight: 600;
}

.badge-status {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
  margin-right: 8px;
}

.badge-status i {
  margin-right: 6px;
}

/* success */
.badge-status.verified {
  background-color: #e6f6ea;
  color: #28a745;
  border: 1px solid #c3e6cb;
}

/* warning */
.badge-status.reviewing {
  background-color: #fff7e6;
  color: #a97b00;
  border: 1px solid #ffeeba;
}

/* danger */
.badge-status.rejected {
  background-color: #fdeaea;
  color: #dc3545;
  border: 1px solid #f5c6cb;
}

/* Grey */
.badge-status.neutral {
  background-color: #f2f2f2;
  color: #6c757d;
  border: 1px solid #d6d8db;
}

.alert-rejected1 {
  padding: 12px 20px;
  border-radius: 50px;
  /* text-align: center; */
  background: #c31423; /* linear-gradient(135deg, #ff4e50, #c31432); */
  color: white;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(195, 20, 50, 0.4);
  width: 100%;
}

.alert-rejected {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: #dc3545;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.alert-information {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  /* border-left: 5px solid #FF0066; */
  background-color: #e9f3ff;
  color: black;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.alert-information::before {
  content: "i";
  font-size: 1.3rem;
}
/* Task #40408 - Taiwan Enrollment Process */

/* Linear - VITA-39 - International Convention - Backoffice Online Check-in */
#swapBtn {
  display: none;
}

.checkin-camscan {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  /* height: 300px; */
  /* background-color: #f0f0f0; */
}

.checkin-swap-btn {
  display: none;
  place-self: center;
  border-radius: 25px;
  color: #7c95a8;
  padding: 3px 9px;
  font-size: 18px;
  background-color: #ffffff;
  border: 1px solid #7c95a8;
}

.checkin-btn {
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
}

.checkin-btn:not(:disabled),
.checkin-btn:not(:disabled):hover,
.checkin-btn:not(:disabled):focus {
  /* Styles when hovered or focused */
  background-color: #849bad;
  color: #212529;
  border-color: #7c95a8;
}

.checkin-btn:disabled {
  /* Styles when disabled */
  /* background-color: #ffffff;
  color: #212529;
  border-color: #7c95a8;
  cursor: not-allowed; */
  background-color: #ffffff99;
  color: #21252980;
  border-color: #7c95a866;
  cursor: not-allowed;
  opacity: 0.6;
}

.checkin-cnfrm-btn {
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
  border: 1px solid transparent; /* Use a default border to prevent layout shifts */
  cursor: pointer;
  line-height: 20px;
}

.checkin-cnfrm-btn:not(:disabled) {
  /* Styles when active (not disabled) */
  background-color: #008000; /* Green background */
  color: #ffffff;
}

.checkin-cnfrm-btn:not(:disabled):hover,
.checkin-cnfrm-btn:not(:disabled):focus {
  /* Styles for hover and focus */
  background-color: #008000; /* Darker green on hover for visual feedback */
  border-color: #008000;
}

.checkin-cnfrm-btn:disabled {
  /* Styles when disabled */
  background-color: #ffffff99;
  color: #21252980;
  border-color: #7c95a866;
  cursor: not-allowed;
  opacity: 0.6;
}


/* QR Scanner */ 
.scanner-container {
  max-width: 500px;
  margin: auto;
  border-radius: 1rem;
  padding: 1rem;
  overflow: hidden;
}

.scanner-preview {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  /* Make the preview responsive */
  width: 100%;
  aspect-ratio: 2 / 1;
  /* Maintain a 2:1 shape */
  margin: 0 auto;
  /* Center the preview */
  height: 150px !important;

}

.scanner-preview video {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}

/* Corner brackets for the scanning area */
.corner {
  position: absolute;
  width: 2.5rem;
  /* 40px */
  height: 2.5rem;
  /* 40px */
  border: 5px solid white;
  z-index: 1;
  /* Ensure corners are on top of the video */
}

.corner.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.corner.top-right {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.corner.bottom-left {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.corner.bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.qr-shaded-region {
  border-width: 30px 30px !important;
}

/* blue theme */
.btn-save,
.btn-save:hover {
  background-color: #5A8EFF;
  border: 1px solid #5A8EFF !important;
  color: #fff;
  border-radius: 25px;
}

.title {
  color: #5A8EFF;
}

.co-pilot-links,
.co-pilot-links:hover {
  font-size: 22px;
  color: #1c1c1c;
}